                   

                   

{"id":769,"date":"2016-03-07T10:00:18","date_gmt":"2016-03-07T10:00:18","guid":{"rendered":"http:\/\/demo.vegatheme.com\/harmonia\/?page_id=769"},"modified":"2016-08-15T09:54:21","modified_gmt":"2016-08-15T09:54:21","slug":"wedding","status":"publish","type":"page","link":"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/","title":{"rendered":"Home"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row fullwidth=&#8221;yes&#8221; css=&#8221;.vc_custom_1471252043771{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_id=&#8221;home&#8221;][vc_column]\t\n   \n    <div class=\"three-quarters-height\" style=\"height:75vh;\">\n\t\t\t\t\n\t\t<div class=\"parallax-business3\" style=\"background-image: url('http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/parallax-business-3.jpg');\"><\/div>\n\t\t\n\t\t<div class=\"hero-wrap-pages\">\n\t\t\t<div class=\"container\">\n\t\t\t\t<div class=\"twelve columns\">\n\t\t\t\t\t<h2>Christin & Thomas<\/h2>\n\t\t\t\t\t<p>WE HOPE TO SEE YOU SOON!<\/p>\t\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"twelve columns\">\n\t\t\t\t\t<ul class=\"countdown\">\n\t\t\t\t\t\t<li> \n\t\t\t\t\t\t\t<span class=\"days\">00<\/span>\n\t\t\t\t\t\t\t<p class=\"days_ref\">days<\/p>\n\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<li class=\"seperator\">.<\/li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<span class=\"hours\">00<\/span>\n\t\t\t\t\t\t\t<p class=\"hours_ref\">hours<\/p>\n\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<li class=\"seperator\">:<\/li>\n\t\t\t\t\t\t<li> \n\t\t\t\t\t\t\t<span class=\"minutes\">00<\/span>\n\t\t\t\t\t\t\t<p class=\"minutes_ref\">minutes<\/p>\n\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<li class=\"seperator\">:<\/li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<span class=\"seconds\">00<\/span>\n\t\t\t\t\t\t\t<p class=\"seconds_ref\">seconds<\/p>\n\t\t\t\t\t\t<\/li>\n\t\t\t\t\t<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\t\t\t\t\n\t<\/div>\n\n\t<script type=\"text\/javascript\">\n\t\/**\n\t * downCount: Simple Countdown clock with offset\n\t * Author: Sonny T. <hi@sonnyt.com>, sonnyt.com\n\t *\/\n\n\t(function ($) {\n\t\t$.fn.downCount = function (options, callback) {\n\t\t\tvar settings = $.extend({\n\t\t\t\t\tdate: null,\n\t\t\t\t\toffset: null\n\t\t\t\t}, options);\n\n\t\t\t\/\/ Throw error if date is not set\n\t\t\tif (!settings.date) {\n\t\t\t\t$.error('Date is not defined.');\n\t\t\t}\n\n\t\t\t\/\/ Throw error if date is set incorectly\n\t\t\tif (!Date.parse(settings.date)) {\n\t\t\t\t$.error('Incorrect date format, it should look like this, 12\/24\/2012 12:00:00.');\n\t\t\t}\n\n\t\t\t\/\/ Save container\n\t\t\tvar container = this;\n\n\t\t\t\/**\n\t\t\t * Change client's local date to match offset timezone\n\t\t\t * @return {Object} Fixed Date object.\n\t\t\t *\/\n\t\t\tvar currentDate = function () {\n\t\t\t\t\/\/ get client's current date\n\t\t\t\tvar date = new Date();\n\n\t\t\t\t\/\/ turn date to utc\n\t\t\t\tvar utc = date.getTime() + (date.getTimezoneOffset() * 60000);\n\n\t\t\t\t\/\/ set new Date object\n\t\t\t\tvar new_date = new Date(utc + (3600000*settings.offset))\n\n\t\t\t\treturn new_date;\n\t\t\t};\n\n\t\t\t\/**\n\t\t\t * Main downCount function that calculates everything\n\t\t\t *\/\n\t\t\tfunction countdown () {\n\t\t\t\tvar target_date = new Date(settings.date), \/\/ set target date\n\t\t\t\t\tcurrent_date = currentDate(); \/\/ get fixed current date\n\n\t\t\t\t\/\/ difference of dates\n\t\t\t\tvar difference = target_date - current_date;\n\n\t\t\t\t\/\/ if difference is negative than it's pass the target date\n\t\t\t\tif (difference < 0) {\n\t\t\t\t\t\/\/ stop timer\n\t\t\t\t\tclearInterval(interval);\n\n\t\t\t\t\tif (callback && typeof callback === 'function') callback();\n\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t\/\/ basic math variables\n\t\t\t\tvar _second = 1000,\n\t\t\t\t\t_minute = _second * 60,\n\t\t\t\t\t_hour = _minute * 60,\n\t\t\t\t\t_day = _hour * 24;\n\n\t\t\t\t\/\/ calculate dates\n\t\t\t\tvar days = Math.floor(difference \/ _day),\n\t\t\t\t\thours = Math.floor((difference % _day) \/ _hour),\n\t\t\t\t\tminutes = Math.floor((difference % _hour) \/ _minute),\n\t\t\t\t\tseconds = Math.floor((difference % _minute) \/ _second);\n\n\t\t\t\t\t\/\/ fix dates so that it will show two digets\n\t\t\t\t\tdays = (String(days).length >= 2) ? days : '0' + days;\n\t\t\t\t\thours = (String(hours).length >= 2) ? hours : '0' + hours;\n\t\t\t\t\tminutes = (String(minutes).length >= 2) ? minutes : '0' + minutes;\n\t\t\t\t\tseconds = (String(seconds).length >= 2) ? seconds : '0' + seconds;\n\n\t\t\t\t\/\/ based on the date change the refrence wording\n\t\t\t\tvar ref_days = (days === 1) ? 'day' : 'days',\n\t\t\t\t\tref_hours = (hours === 1) ? 'hour' : 'hours',\n\t\t\t\t\tref_minutes = (minutes === 1) ? 'minute' : 'minutes',\n\t\t\t\t\tref_seconds = (seconds === 1) ? 'second' : 'seconds';\n\t\t\t\t\t\n\n\t\t\t\t\/\/ set to DOM\n\t\t\t\tcontainer.find('.days').text(days);\n\t\t\t\tcontainer.find('.hours').text(hours);\n\t\t\t\tcontainer.find('.minutes').text(minutes);\n\t\t\t\tcontainer.find('.seconds').text(seconds);\n\n\t\t\t\tcontainer.find('.days_ref').text(ref_days);\n\t\t\t\tcontainer.find('.hours_ref').text(ref_hours);\n\t\t\t\tcontainer.find('.minutes_ref').text(ref_minutes);\n\t\t\t\tcontainer.find('.seconds_ref').text(ref_seconds);\n\t\t\t};\n\t\t\t\n\t\t\t\/\/ start\n\t\t\tvar interval = setInterval(countdown, 1000);\n\t\t};\n\n\t})(jQuery);\t\n\t\n\t(function($) { \"use strict\";      \n\t\t  \/\/Timer\n\t\t  $('.countdown').downCount({\n\t\t\t  date: '12\/31\/2016 12:00:00',\n\t\t\t  offset: +10\n\t\t  }, function () {\n\t\t\t  alert('WOOT WOOT , done!');\n\t\t  });      \n\t})(jQuery);\n\t\n<\/script>\n   \n[\/vc_column][\/vc_row][vc_row fullwidth=&#8221;yes&#8221;][vc_column width=&#8221;1\/2&#8243;]\n\t\t\t\t<div class=\"team-box-2\">\n\t\t\t<div class=\"team-box-in\" style=\"background-image: url('http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/team-wedding-1.jpg');\"><\/div>\n\t\t\t<div class=\"team-box-in arrow darker-background section-shadow\">\n\t\t\t\t<div class=\"team-info\">\n\t\t\t\t\t<h6>CHRISTIN MARTIN<\/h6>\n\t\t\t\t\t<div class=\"subtext\">The Bride<\/div>\n\t\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t<li><a href=\"#\">dribbble<\/a><\/li>\n\t\t\t\t\t<li><a href=\"#\">twitter<\/a><\/li>\t\t\t\t\t<li><a href=\"#\">behance<\/a><\/li>\t\t\t\t<\/ul>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\n[\/vc_column][vc_column width=&#8221;1\/2&#8243;]\n\t\t\t\t<div class=\"team-box-2\">\n\t\t\t<div class=\"team-box-in\" style=\"background-image: url('http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/team-wedding-2.jpg');\"><\/div>\n\t\t\t<div class=\"team-box-in arrow darker-background section-shadow\">\n\t\t\t\t<div class=\"team-info\">\n\t\t\t\t\t<h6>THOMAS MCNROO<\/h6>\n\t\t\t\t\t<div class=\"subtext\">The Groom<\/div>\n\t\t\t\t\t\t\t\t\t<ul>\n\t\t\t\t\t<li><a href=\"#\">dribbble<\/a><\/li>\n\t\t\t\t\t<li><a href=\"#\">twitter<\/a><\/li>\t\t\t\t\t<li><a href=\"#\">behance<\/a><\/li>\t\t\t\t<\/ul>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\n[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1471252394396{padding-top: 80px !important;background-color: #ffffff !important;}&#8221; el_id=&#8221;events&#8221;][vc_column][vc_custom_heading text=&#8221;EVENTS SCHEDULE&#8221; font_container=&#8221;tag:h4|text_align:center&#8221; google_fonts=&#8221;font_family:Dosis%3A200%2C300%2Cregular%2C500%2C600%2C700%2C800|font_style:600%20bold%20regular%3A600%3Anormal&#8221;][vc_custom_heading text=&#8221;List of all the scheduled events for your information.&#8221; font_container=&#8221;tag:p|text_align:center&#8221; google_fonts=&#8221;font_family:Playfair%20Display%3Aregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:400%20italic%3A400%3Aitalic&#8221; el_class=&#8221;subtitle&#8221;][vc_separator color=&#8221;custom&#8221; el_width=&#8221;10&#8243; accent_color=&#8221;#e67e22&#8243; css=&#8221;.vc_custom_1456296247055{margin-bottom: 0px !important;padding-top: 20px !important;}&#8221;][\/vc_column][vc_column width=&#8221;1\/3&#8243;]\t\n\t\t\t\n\t\t<div class=\"services-box-2\">\n\t\t\t<img decoding=\"async\"  src=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/wedding-1.jpg\" alt=\"\" \/>\n\t\t\t<div class=\"number\">01.<\/div>\n\t\t\t<h6> COCKTAIL PARTY<\/h6>\n\t\t\t<div class=\"subtext\">Gokul Banquets, 14th June.<\/div>\n\t\t<\/div>\n\t\t\n[\/vc_column][vc_column width=&#8221;1\/3&#8243;]\t\n\t\t\t\n\t\t<div class=\"services-box-2\">\n\t\t\t<img decoding=\"async\"  src=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/wedding-2.jpg\" alt=\"\" \/>\n\t\t\t<div class=\"number\">02.<\/div>\n\t\t\t<h6>WEDDING CEREMONY<\/h6>\n\t\t\t<div class=\"subtext\">Singhi Palace, 15th June.<\/div>\n\t\t<\/div>\n\t\t\n[\/vc_column][vc_column width=&#8221;1\/3&#8243;]\t\n\t\t\t\n\t\t<div class=\"services-box-2\">\n\t\t\t<img decoding=\"async\"  src=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/wedding-3.jpg\" alt=\"\" \/>\n\t\t\t<div class=\"number\">03.<\/div>\n\t\t\t<h6>AFTER WEDDING PARTY<\/h6>\n\t\t\t<div class=\"subtext\">Ballygunge Place, 16th June.<\/div>\n\t\t<\/div>\n\t\t\n[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1471252535994{padding-top: 80px !important;padding-bottom: 10px !important;background-color: #ffffff !important;}&#8221; el_id=&#8221;photos&#8221;][vc_column css=&#8221;.vc_custom_1457493866439{margin-top: 0px !important;}&#8221;][vc_custom_heading text=&#8221;OUR PHOTOS&#8221; font_container=&#8221;tag:h4|text_align:center&#8221; google_fonts=&#8221;font_family:Dosis%3A200%2C300%2Cregular%2C500%2C600%2C700%2C800|font_style:600%20bold%20regular%3A600%3Anormal&#8221;][vc_custom_heading text=&#8221;Share our story.&#8221; font_container=&#8221;tag:p|text_align:center&#8221; google_fonts=&#8221;font_family:Playfair%20Display%3Aregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:400%20italic%3A400%3Aitalic&#8221; el_class=&#8221;subtitle&#8221;][vc_separator color=&#8221;custom&#8221; el_width=&#8221;10&#8243; accent_color=&#8221;#e67e22&#8243; css=&#8221;.vc_custom_1456296247055{margin-bottom: 0px !important;padding-top: 20px !important;}&#8221;][\/vc_column][vc_column width=&#8221;1\/3&#8243;]\t\t\n\t\t\t\t\t<div class=\"tumb-wrap\">\n\t\t\t\t<a href=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/1-2.jpg\" class=\"fancybox\">\n\t\t\t\t\t<div class=\"zoom\">\ue090<\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t<img decoding=\"async\" src=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/1-2.jpg\" alt=\"\">\n\t\t\t<\/div>\n\t\t\t\t\n[\/vc_column][vc_column width=&#8221;1\/3&#8243;]\t\t\n\t\t\t\t\t<div class=\"tumb-wrap\">\n\t\t\t\t<a href=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/2-3.jpg\" class=\"fancybox\">\n\t\t\t\t\t<div class=\"zoom\">\ue090<\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t<img decoding=\"async\" src=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/2-3.jpg\" alt=\"\">\n\t\t\t<\/div>\n\t\t\t\t\n[\/vc_column][vc_column width=&#8221;1\/3&#8243;]\t\t\n\t\t\t\t\t<div class=\"tumb-wrap\">\n\t\t\t\t<a href=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/3-3.jpg\" class=\"fancybox\">\n\t\t\t\t\t<div class=\"zoom\">\ue090<\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t<img decoding=\"async\" src=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/3-3.jpg\" alt=\"\">\n\t\t\t<\/div>\n\t\t\t\t\n[\/vc_column][vc_column width=&#8221;1\/3&#8243;]\t\t\n\t\t\t\t\t<div class=\"tumb-wrap\">\n\t\t\t\t<a href=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/4-3.jpg\" class=\"fancybox\">\n\t\t\t\t\t<div class=\"zoom\">\ue090<\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t<img decoding=\"async\" src=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/4-3.jpg\" alt=\"\">\n\t\t\t<\/div>\n\t\t\t\t\n[\/vc_column][vc_column width=&#8221;1\/3&#8243;]\t\t\n\t\t\t\t\t<div class=\"tumb-wrap\">\n\t\t\t\t<a href=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/5-2.jpg\" class=\"fancybox\">\n\t\t\t\t\t<div class=\"zoom\">\ue090<\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t<img decoding=\"async\" src=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/5-2.jpg\" alt=\"\">\n\t\t\t<\/div>\n\t\t\t\t\n[\/vc_column][vc_column width=&#8221;1\/3&#8243;]\t\t\n\t\t\t\t\t<div class=\"tumb-wrap\">\n\t\t\t\t<a href=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/6-2.jpg\" class=\"fancybox\">\n\t\t\t\t\t<div class=\"zoom\">\ue090<\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t<img decoding=\"async\" src=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/6-2.jpg\" alt=\"\">\n\t\t\t<\/div>\n\t\t\t\t\n[\/vc_column][\/vc_row][vc_row fullwidth=&#8221;yes&#8221; el_id=&#8221;place&#8221; css=&#8221;.vc_custom_1471252804964{padding-top: 70px !important;background-color: #ffffff !important;}&#8221;][vc_column]\n\t<div id=\"cd-google-map\">\n\t\t<div id=\"google-container\" style=\"position: relative;width: 100%;height: 500px;\"><\/div>\n\t\t<div id=\"cd-zoom-in\"><\/div>\n\t\t<div id=\"cd-zoom-out\"><\/div>\n\t\t\t\t\t<address>\n\t\t\t\t<img decoding=\"async\" src=\"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/03\/wedding-loc.jpg\" alt=\"\">\t\t\t\t<p>Wedding Location<br \/>\nSinghi Palace<\/p>\t\t\t<\/address>\n\t\t\t<\/div>\t\n\n\t<script type=\"text\/javascript\">\n\t\t\n\t\t(function($) { \"use strict\"\n\t\t\tvar latitude = 44.8013716,\n\t\t\t\tlongitude = 20.4631372,\n\t\t\t\tmap_zoom = 15;\n\n\t\t\t\/\/google map custom marker icon - .png fallback for IE11\n\t\t\tvar is_internetExplorer11= navigator.userAgent.toLowerCase().indexOf('trident') > -1;\n\t\t\tvar marker_url = 'http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-content\/uploads\/sites\/6\/2016\/02\/cd-icon-location.png';\n\t\t\t\t\n\t\t\t\/\/define the basic color of your map, plus a value for saturation and brightness\n\t\t\tvar\tmain_color = '#e67e22',\n\t\t\t\tsaturation_value= -50,\n\t\t\t\tbrightness_value= 14;\n\n\t\t\t\/\/we define here the style of the map\n\t\t\tvar style= [\n\t            {\n\t                \"featureType\": \"all\",\n\t                \"elementType\": \"labels.text.fill\",\n\t                \"stylers\": [\n\t                    {\n\t                        \"saturation\": 36\n\t                    },\n\t                    {\n\t                        \"color\": \"#000000\"\n\t                    },\n\t                    {\n\t                        \"lightness\": 40\n\t                    }\n\t                ]\n\t            },\n\t            {\n\t                \"featureType\": \"all\",\n\t                \"elementType\": \"labels.text.stroke\",\n\t                \"stylers\": [\n\t                    {\n\t                        \"visibility\": \"on\"\n\t                    },\n\t                    {\n\t                        \"color\": \"#000000\"\n\t                    },\n\t                    {\n\t                        \"lightness\": 16\n\t                    }\n\t                ]\n\t            },\n\t            {\n\t                \"featureType\": \"all\",\n\t                \"elementType\": \"labels.icon\",\n\t                \"stylers\": [\n\t                    {\n\t                        \"visibility\": \"off\"\n\t                    }\n\t                ]\n\t            },\n\t            {\n\t                \"featureType\": \"administrative\",\n\t                \"elementType\": \"geometry.fill\",\n\t                \"stylers\": [\n\t                    {\n\t                        \"color\": \"#000000\"\n\t                    },\n\t                    {\n\t                        \"lightness\": 20\n\t                    }\n\t                ]\n\t            },\n\t            {\n\t                \"featureType\": \"administrative\",\n\t                \"elementType\": \"geometry.stroke\",\n\t                \"stylers\": [\n\t                    {\n\t                        \"color\": \"#000000\"\n\t                    },\n\t                    {\n\t                        \"lightness\": 17\n\t                    },\n\t                    {\n\t                        \"weight\": 1.2\n\t                    }\n\t                ]\n\t            },\n\t            {\n\t                \"featureType\": \"landscape\",\n\t                \"elementType\": \"geometry\",\n\t                \"stylers\": [\n\t                    {\n\t                        \"color\": \"#000000\"\n\t                    },\n\t                    {\n\t                        \"lightness\": 20\n\t                    }\n\t                ]\n\t            },\n\t            {\n\t                \"featureType\": \"poi\",\n\t                \"elementType\": \"geometry\",\n\t                \"stylers\": [\n\t                    {\n\t                        \"color\": \"#000000\"\n\t                    },\n\t                    {\n\t                        \"lightness\": 21\n\t                    }\n\t                ]\n\t            },\n\t            {\n\t                \"featureType\": \"road.highway\",\n\t                \"elementType\": \"geometry.fill\",\n\t                \"stylers\": [\n\t                    {\n\t                        \"color\": \"#000000\"\n\t                    },\n\t                    {\n\t                        \"lightness\": 17\n\t                    }\n\t                ]\n\t            },\n\t            {\n\t                \"featureType\": \"road.highway\",\n\t                \"elementType\": \"geometry.stroke\",\n\t                \"stylers\": [\n\t                    {\n\t                        \"color\": \"#000000\"\n\t                    },\n\t                    {\n\t                        \"lightness\": 29\n\t                    },\n\t                    {\n\t                        \"weight\": 0.2\n\t                    }\n\t                ]\n\t            },\n\t            {\n\t                \"featureType\": \"road.arterial\",\n\t                \"elementType\": \"geometry\",\n\t                \"stylers\": [\n\t                    {\n\t                        \"color\": \"#000000\"\n\t                    },\n\t                    {\n\t                        \"lightness\": 18\n\t                    }\n\t                ]\n\t            },\n\t            {\n\t                \"featureType\": \"road.local\",\n\t                \"elementType\": \"geometry\",\n\t                \"stylers\": [\n\t                    {\n\t                        \"color\": \"#000000\"\n\t                    },\n\t                    {\n\t                        \"lightness\": 16\n\t                    }\n\t                ]\n\t            },\n\t            {\n\t                \"featureType\": \"transit\",\n\t                \"elementType\": \"geometry\",\n\t                \"stylers\": [\n\t                    {\n\t                        \"color\": \"#000000\"\n\t                    },\n\t                    {\n\t                        \"lightness\": 19\n\t                    }\n\t                ]\n\t            },\n\t            {\n\t                \"featureType\": \"water\",\n\t                \"elementType\": \"geometry\",\n\t                \"stylers\": [\n\t                    {\n\t                        \"color\": \"#000000\"\n\t                    },\n\t                    {\n\t                        \"lightness\": 17\n\t                    }\n\t                ]\n\t            }\n\t        ];\n\t\t\t\t\n\t\t\t\/\/set google map options\n\t\t\tvar map_options = {\n\t\t\t\tcenter: new google.maps.LatLng(latitude, longitude),\n\t\t\t\tzoom: map_zoom,\n\t\t\t\tpanControl: false,\n\t\t\t\tzoomControl: false,\n\t\t\t\tmapTypeControl: false,\n\t\t\t\tstreetViewControl: false,\n\t\t\t\tmapTypeId: google.maps.MapTypeId.ROADMAP,\n\t\t\t\tscrollwheel: false,\n\t\t\t\tstyles: style,\n\t\t\t}\n\t\t\t\/\/inizialize the map\n\t\t\tvar map = new google.maps.Map(document.getElementById('google-container'), map_options);\n\t\t\t\/\/add a custom marker to the map\t\t\t\t\n\t\t\tvar marker = new google.maps.Marker({\n\t\t\t\tposition: new google.maps.LatLng(latitude, longitude),\n\t\t\t\tmap: map,\n\t\t\t\tvisible: true,\n\t\t\t\ticon: marker_url,\n\t\t\t});\n\n\t\t\t\/\/add custom buttons for the zoom-in\/zoom-out on the map\n\t\t\tfunction CustomZoomControl(controlDiv, map) {\n\t\t\t\t\/\/grap the zoom elements from the DOM and insert them in the map \n\t\t\t\tvar controlUIzoomIn= document.getElementById('cd-zoom-in'),\n\t\t\t\t\tcontrolUIzoomOut= document.getElementById('cd-zoom-out');\n\t\t\t\tcontrolDiv.appendChild(controlUIzoomIn);\n\t\t\t\tcontrolDiv.appendChild(controlUIzoomOut);\n\n\t\t\t\t\/\/ Setup the click event listeners and zoom-in or out according to the clicked element\n\t\t\t\tgoogle.maps.event.addDomListener(controlUIzoomIn, 'click', function() {\n\t\t\t\t\tmap.setZoom(map.getZoom()+1)\n\t\t\t\t});\n\t\t\t\tgoogle.maps.event.addDomListener(controlUIzoomOut, 'click', function() {\n\t\t\t\t\tmap.setZoom(map.getZoom()-1)\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tvar zoomControlDiv = document.createElement('div');\n\t\t\tvar zoomControl = new CustomZoomControl(zoomControlDiv, map);\n\n\t\t\t\/\/insert the zoom div on the top left of the map\n\t\t\tmap.controls[google.maps.ControlPosition.LEFT_TOP].push(zoomControlDiv);\t\t\t\n\t\t})(jQuery);\n\n\t<\/script>\n\n\t[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1471252450220{padding-top: 80px !important;padding-bottom: 0px !important;background-color: #ffffff !important;}&#8221;][vc_column][vc_custom_heading text=&#8221;OUR BEST FRIENDS EVER&#8221; font_container=&#8221;tag:h4|text_align:center&#8221; google_fonts=&#8221;font_family:Dosis%3A200%2C300%2Cregular%2C500%2C600%2C700%2C800|font_style:600%20bold%20regular%3A600%3Anormal&#8221;][vc_custom_heading text=&#8221;Thanks for being there.&#8221; font_container=&#8221;tag:p|text_align:center&#8221; google_fonts=&#8221;font_family:Playfair%20Display%3Aregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:400%20italic%3A400%3Aitalic&#8221; el_class=&#8221;subtitle&#8221;][vc_separator color=&#8221;custom&#8221; el_width=&#8221;10&#8243; accent_color=&#8221;#e67e22&#8243; css=&#8221;.vc_custom_1456296247055{margin-bottom: 0px !important;padding-top: 20px !important;}&#8221;][\/vc_column][vc_column width=&#8221;1\/2&#8243;][vc_single_image image=&#8221;2593&#8243; img_size=&#8221;full&#8221; css=&#8221;.vc_custom_1471254837630{margin-bottom: 0px !important;}&#8221;]<div class=\"shop-carousel-wrap\">\n\t\t\t\t<div id=\"sync4\" class=\"sync12 owl-carousel\"><div class=\"item\">rose<\/div><div class=\"item\">mary<\/div><div class=\"item\">hanna<\/div><\/div>\n\t\t\t\t<div id=\"sync3\" class=\"sync11 owl-carousel\"><div class=\"item\"><p>Pellentesque non dolor at felis ultricies aliquam et in tellus. Cum sociis natoque penatibus et magnis dis parturient montes.<\/p><\/div><div class=\"item\"><p>Pellentesque non dolor at felis ultricies aliquam et in tellus. Cum sociis natoque penatibus et magnis dis parturient montes.<\/p><\/div><div class=\"item\"><p>Pellentesque non dolor at felis ultricies aliquam et in tellus. Cum sociis natoque penatibus et magnis dis parturient montes.<\/p><\/div><\/div>\n\t\t\t<\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243;][vc_single_image image=&#8221;2594&#8243; img_size=&#8221;full&#8221; css=&#8221;.vc_custom_1471254848268{margin-bottom: 0px !important;}&#8221;]<div class=\"shop-carousel-wrap\">\n\t\t\t\t<div id=\"sync4\" class=\"sync12 owl-carousel\"><div class=\"item\">jack<\/div><div class=\"item\">martin<\/div><div class=\"item\">thom<\/div><\/div>\n\t\t\t\t<div id=\"sync3\" class=\"sync11 owl-carousel\"><div class=\"item\"><p>Pellentesque non dolor at felis ultricies aliquam et in tellus. Cum sociis natoque penatibus et magnis dis parturient montes.<\/p><\/div><div class=\"item\"><p>Pellentesque non dolor at felis ultricies aliquam et in tellus. Cum sociis natoque penatibus et magnis dis parturient montes.<\/p><\/div><div class=\"item\"><p>Pellentesque non dolor at felis ultricies aliquam et in tellus. Cum sociis natoque penatibus et magnis dis parturient montes.<\/p><\/div><\/div>\n\t\t\t<\/div>[\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1471252456443{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}&#8221; el_id=&#8221;contact&#8221;][vc_column css=&#8221;.vc_custom_1457582221703{margin-top: 0px !important;}&#8221;][vc_custom_heading text=&#8221;RSVP&#8221; font_container=&#8221;tag:h4|text_align:center&#8221; google_fonts=&#8221;font_family:Dosis%3A200%2C300%2Cregular%2C500%2C600%2C700%2C800|font_style:600%20bold%20regular%3A600%3Anormal&#8221;][vc_custom_heading text=&#8221;Be present at the Wedding to give your Blessings &amp; Love.&#8221; font_container=&#8221;tag:p|text_align:center&#8221; google_fonts=&#8221;font_family:Playfair%20Display%3Aregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:400%20italic%3A400%3Aitalic&#8221; el_class=&#8221;subtitle&#8221;][vc_separator color=&#8221;custom&#8221; el_width=&#8221;10&#8243; accent_color=&#8221;#e67e22&#8243; css=&#8221;.vc_custom_1456296247055{margin-bottom: 0px !important;padding-top: 20px !important;}&#8221;][\/vc_column][vc_column]\n<div class=\"wpcf7 no-js\" id=\"wpcf7-f2411-o1\" lang=\"en-US\" dir=\"ltr\" data-wpcf7-id=\"2411\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/harmonia\/wedding\/wp-json\/wp\/v2\/pages\/769#wpcf7-f2411-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<div style=\"display: none;\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"2411\" \/>\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.0.4\" \/>\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/>\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f2411-o1\" \/>\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/>\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/div>\n<div class=\"six columns\">\n\t<p><span class=\"wpcf7-form-control-wrap\" data-name=\"your-name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your Name: *\" value=\"\" type=\"text\" name=\"your-name\" \/><\/span>\n\t<\/p>\n<\/div>\n<div class=\"six columns\">\n\t<p><span class=\"wpcf7-form-control-wrap\" data-name=\"your-email\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"E-MAIL : *\" value=\"\" type=\"email\" name=\"your-email\" \/><\/span>\n\t<\/p>\n<\/div>\n<div class=\"twelve columns\">\n\t<p><span class=\"wpcf7-form-control-wrap\" data-name=\"your-message\"><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" class=\"wpcf7-form-control wpcf7-textarea\" aria-invalid=\"false\" placeholder=\"Tell Us Everything\" name=\"your-message\"><\/textarea><\/span>\n\t<\/p>\n<\/div>\n<div class=\"twelve columns\">\n\t<div id=\"button-con\">\n\t\t<p><button class=\"button-contact send_message button-effect button--moema button--text-thick button--text-upper button--size-s\"  type=\"submit\" id=\"send\" data-lang=\"en\">submit<\/button>\n\t\t<\/p>\n\t<\/div>\n<\/div><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<\/form>\n<\/div>\n[\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row fullwidth=&#8221;yes&#8221; css=&#8221;.vc_custom_1471252043771{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_id=&#8221;home&#8221;][vc_column][\/vc_column][\/vc_row][vc_row fullwidth=&#8221;yes&#8221;][vc_column width=&#8221;1\/2&#8243;][\/vc_column][vc_column width=&#8221;1\/2&#8243;][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1471252394396{padding-top: 80px !important;background-color: #ffffff !important;}&#8221; el_id=&#8221;events&#8221;][vc_column][vc_custom_heading text=&#8221;EVENTS SCHEDULE&#8221; font_container=&#8221;tag:h4|text_align:center&#8221; google_fonts=&#8221;font_family:Dosis%3A200%2C300%2Cregular%2C500%2C600%2C700%2C800|font_style:600%20bold%20regular%3A600%3Anormal&#8221;][vc_custom_heading text=&#8221;List of all the scheduled events for your information.&#8221; font_container=&#8221;tag:p|text_align:center&#8221; google_fonts=&#8221;font_family:Playfair%20Display%3Aregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:400%20italic%3A400%3Aitalic&#8221; el_class=&#8221;subtitle&#8221;][vc_separator color=&#8221;custom&#8221; el_width=&#8221;10&#8243; accent_color=&#8221;#e67e22&#8243; css=&#8221;.vc_custom_1456296247055{margin-bottom: 0px !important;padding-top: 20px !important;}&#8221;][\/vc_column][vc_column width=&#8221;1\/3&#8243;][\/vc_column][vc_column width=&#8221;1\/3&#8243;][\/vc_column][vc_column width=&#8221;1\/3&#8243;][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1471252535994{padding-top: 80px !important;padding-bottom: 10px !important;background-color: #ffffff !important;}&#8221; el_id=&#8221;photos&#8221;][vc_column css=&#8221;.vc_custom_1457493866439{margin-top: [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-templates\/template-onepage.php","meta":{"footnotes":""},"class_list":["post-769","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-json\/wp\/v2\/pages\/769","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-json\/wp\/v2\/comments?post=769"}],"version-history":[{"count":11,"href":"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-json\/wp\/v2\/pages\/769\/revisions"}],"predecessor-version":[{"id":2595,"href":"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-json\/wp\/v2\/pages\/769\/revisions\/2595"}],"wp:attachment":[{"href":"http:\/\/demo.vegatheme.com\/harmonia\/wedding\/wp-json\/wp\/v2\/media?parent=769"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}