                   

                   

{"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-03-07T10:00:18","modified_gmt":"2016-03-07T10:00:18","slug":"wedding","status":"publish","type":"page","link":"https:\/\/acetik.rs\/index.php\/wedding\/","title":{"rendered":"Homepage wedding"},"content":{"rendered":"<p>[vc_row fullwidth=&#8220;yes&#8220; css=&#8220;.vc_custom_1457584716285{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8220;][vc_column]\t\n   \n    <div class=\"three-quarters-height\" style=&quot;height:75vh;&quot;>\n\t\t\t\t\n\t\t<div class=\"parallax-business3\" style=\"background-image: url('https:\/\/acetik.rs\/wp-content\/uploads\/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=&#8220;yes&#8220;][vc_column width=&#8220;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('https:\/\/acetik.rs\/wp-content\/uploads\/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=&#8220;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('https:\/\/acetik.rs\/wp-content\/uploads\/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=&#8220;.vc_custom_1456222114531{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}&#8220;][vc_column][vc_custom_heading text=&#8220;EVENTS SCHEDULE&#8220; font_container=&#8220;tag:h4|text_align:center&#8220; google_fonts=&#8220;font_family:Dosis%3A200%2C300%2Cregular%2C500%2C600%2C700%2C800|font_style:600%20bold%20regular%3A600%3Anormal&#8220;][vc_custom_heading text=&#8220;List of all the scheduled events for your information.&#8220; font_container=&#8220;tag:p|text_align:center&#8220; google_fonts=&#8220;font_family:Playfair%20Display%3Aregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:400%20italic%3A400%3Aitalic&#8220; el_class=&#8220;subtitle&#8220;][vc_separator color=&#8220;custom&#8220; el_width=&#8220;10&#8243; accent_color=&#8220;#e67e22&#8243; css=&#8220;.vc_custom_1456296247055{margin-bottom: 0px !important;padding-top: 20px !important;}&#8220;][\/vc_column][vc_column width=&#8220;1\/3&#8243;]\t\n\t\t\t\n\t\t<div class=\"services-box-2\">\n\t\t\t<img decoding=\"async\"  src=\"https:\/\/acetik.rs\/wp-content\/uploads\/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=&#8220;1\/3&#8243;]\t\n\t\t\t\n\t\t<div class=\"services-box-2\">\n\t\t\t<img decoding=\"async\"  src=\"https:\/\/acetik.rs\/wp-content\/uploads\/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=&#8220;1\/3&#8243;]\t\n\t\t\t\n\t\t<div class=\"services-box-2\">\n\t\t\t<img decoding=\"async\"  src=\"https:\/\/acetik.rs\/wp-content\/uploads\/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=&#8220;.vc_custom_1457493872195{padding-bottom: 80px !important;background-color: #ffffff !important;}&#8220;][vc_column css=&#8220;.vc_custom_1457493866439{margin-top: 0px !important;}&#8220;][vc_custom_heading text=&#8220;OUR PHOTOS&#8220; font_container=&#8220;tag:h4|text_align:center&#8220; google_fonts=&#8220;font_family:Dosis%3A200%2C300%2Cregular%2C500%2C600%2C700%2C800|font_style:600%20bold%20regular%3A600%3Anormal&#8220;][vc_custom_heading text=&#8220;Share our story.&#8220; font_container=&#8220;tag:p|text_align:center&#8220; google_fonts=&#8220;font_family:Playfair%20Display%3Aregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:400%20italic%3A400%3Aitalic&#8220; el_class=&#8220;subtitle&#8220;][vc_separator color=&#8220;custom&#8220; el_width=&#8220;10&#8243; accent_color=&#8220;#e67e22&#8243; css=&#8220;.vc_custom_1456296247055{margin-bottom: 0px !important;padding-top: 20px !important;}&#8220;][\/vc_column][vc_column width=&#8220;1\/3&#8243;]\t\t\n\t\t\t\t\t<div class=\"tumb-wrap\">\n\t\t\t\t<a href=\"https:\/\/acetik.rs\/wp-content\/uploads\/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=\"https:\/\/acetik.rs\/wp-content\/uploads\/2016\/03\/1-2.jpg\" alt=\"\">\n\t\t\t<\/div>\n\t\t\t\t\n[\/vc_column][vc_column width=&#8220;1\/3&#8243;]\t\t\n\t\t\t\t\t<div class=\"tumb-wrap\">\n\t\t\t\t<a href=\"https:\/\/acetik.rs\/wp-content\/uploads\/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=\"https:\/\/acetik.rs\/wp-content\/uploads\/2016\/03\/2-3.jpg\" alt=\"\">\n\t\t\t<\/div>\n\t\t\t\t\n[\/vc_column][vc_column width=&#8220;1\/3&#8243;]\t\t\n\t\t\t\t\t<div class=\"tumb-wrap\">\n\t\t\t\t<a href=\"https:\/\/acetik.rs\/wp-content\/uploads\/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=\"https:\/\/acetik.rs\/wp-content\/uploads\/2016\/03\/3-3.jpg\" alt=\"\">\n\t\t\t<\/div>\n\t\t\t\t\n[\/vc_column][vc_column width=&#8220;1\/3&#8243;]\t\t\n\t\t\t\t\t<div class=\"tumb-wrap\">\n\t\t\t\t<a href=\"https:\/\/acetik.rs\/wp-content\/uploads\/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=\"https:\/\/acetik.rs\/wp-content\/uploads\/2016\/03\/4-3.jpg\" alt=\"\">\n\t\t\t<\/div>\n\t\t\t\t\n[\/vc_column][vc_column width=&#8220;1\/3&#8243;]\t\t\n\t\t\t\t\t<div class=\"tumb-wrap\">\n\t\t\t\t<a href=\"https:\/\/acetik.rs\/wp-content\/uploads\/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=\"https:\/\/acetik.rs\/wp-content\/uploads\/2016\/03\/5-2.jpg\" alt=\"\">\n\t\t\t<\/div>\n\t\t\t\t\n[\/vc_column][vc_column width=&#8220;1\/3&#8243;]\t\t\n\t\t\t\t\t<div class=\"tumb-wrap\">\n\t\t\t\t<a href=\"https:\/\/acetik.rs\/wp-content\/uploads\/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=\"https:\/\/acetik.rs\/wp-content\/uploads\/2016\/03\/6-2.jpg\" alt=\"\">\n\t\t\t<\/div>\n\t\t\t\t\n[\/vc_column][\/vc_row][vc_row fullwidth=&#8220;yes&#8220;][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=\"https:\/\/acetik.rs\/wp-content\/uploads\/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 = 'https:\/\/acetik.rs\/wp-content\/uploads\/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=&#8220;.vc_custom_1457494142829{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}&#8220;][vc_column][vc_custom_heading text=&#8220;OUR BEST FRIENDS EVER&#8220; font_container=&#8220;tag:h4|text_align:center&#8220; google_fonts=&#8220;font_family:Dosis%3A200%2C300%2Cregular%2C500%2C600%2C700%2C800|font_style:600%20bold%20regular%3A600%3Anormal&#8220;][vc_custom_heading text=&#8220;Thanks for being there.&#8220; font_container=&#8220;tag:p|text_align:center&#8220; google_fonts=&#8220;font_family:Playfair%20Display%3Aregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:400%20italic%3A400%3Aitalic&#8220; el_class=&#8220;subtitle&#8220;][vc_separator color=&#8220;custom&#8220; el_width=&#8220;10&#8243; accent_color=&#8220;#e67e22&#8243; css=&#8220;.vc_custom_1456296247055{margin-bottom: 0px !important;padding-top: 20px !important;}&#8220;][\/vc_column][vc_column width=&#8220;1\/2&#8243;][vc_single_image image=&#8220;922&#8243; img_size=&#8220;full&#8220; css=&#8220;.vc_custom_1457513321238{margin-bottom: 0px !important;}&#8220;]<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=&#8220;1\/2&#8243;][vc_single_image image=&#8220;923&#8243; img_size=&#8220;full&#8220; css=&#8220;.vc_custom_1457582132610{margin-bottom: 0px !important;}&#8220;]<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=&#8220;.vc_custom_1457582217060{padding-bottom: 80px !important;background-color: #ffffff !important;}&#8220;][vc_column css=&#8220;.vc_custom_1457582221703{margin-top: 0px !important;}&#8220;][vc_custom_heading text=&#8220;RSVP&#8220; font_container=&#8220;tag:h4|text_align:center&#8220; google_fonts=&#8220;font_family:Dosis%3A200%2C300%2Cregular%2C500%2C600%2C700%2C800|font_style:600%20bold%20regular%3A600%3Anormal&#8220;][vc_custom_heading text=&#8220;Be present at the Wedding to give your Blessings &amp; Love.&#8220; font_container=&#8220;tag:p|text_align:center&#8220; google_fonts=&#8220;font_family:Playfair%20Display%3Aregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:400%20italic%3A400%3Aitalic&#8220; el_class=&#8220;subtitle&#8220;][vc_separator color=&#8220;custom&#8220; el_width=&#8220;10&#8243; accent_color=&#8220;#e67e22&#8243; css=&#8220;.vc_custom_1456296247055{margin-bottom: 0px !important;padding-top: 20px !important;}&#8220;][\/vc_column][vc_column]<p class=\"wpcf7-contact-form-not-found\"><strong>\u0413\u0440\u0435\u0448\u043a\u0430:<\/strong> \u041e\u0431\u0440\u0430\u0437\u0430\u0446 \u0437\u0430 \u043a\u043e\u043d\u0442\u0430\u043a\u0442 \u043d\u0438\u0458\u0435 \u043f\u0440\u043e\u043d\u0430\u0452\u0435\u043d\u0430.<\/p>[\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row fullwidth=&#8220;yes&#8220; css=&#8220;.vc_custom_1457584716285{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8220;][vc_column][\/vc_column][\/vc_row][vc_row fullwidth=&#8220;yes&#8220;][vc_column width=&#8220;1\/2&#8243;][\/vc_column][vc_column width=&#8220;1\/2&#8243;][\/vc_column][\/vc_row][vc_row css=&#8220;.vc_custom_1456222114531{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}&#8220;][vc_column][vc_custom_heading text=&#8220;EVENTS SCHEDULE&#8220; font_container=&#8220;tag:h4|text_align:center&#8220; google_fonts=&#8220;font_family:Dosis%3A200%2C300%2Cregular%2C500%2C600%2C700%2C800|font_style:600%20bold%20regular%3A600%3Anormal&#8220;][vc_custom_heading text=&#8220;List of all the scheduled events for your information.&#8220; font_container=&#8220;tag:p|text_align:center&#8220; google_fonts=&#8220;font_family:Playfair%20Display%3Aregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:400%20italic%3A400%3Aitalic&#8220; el_class=&#8220;subtitle&#8220;][vc_separator color=&#8220;custom&#8220; el_width=&#8220;10&#8243; accent_color=&#8220;#e67e22&#8243; css=&#8220;.vc_custom_1456296247055{margin-bottom: 0px !important;padding-top: 20px !important;}&#8220;][\/vc_column][vc_column width=&#8220;1\/3&#8243;][\/vc_column][vc_column width=&#8220;1\/3&#8243;][\/vc_column][vc_column width=&#8220;1\/3&#8243;][\/vc_column][\/vc_row][vc_row css=&#8220;.vc_custom_1457493872195{padding-bottom: 80px !important;background-color: #ffffff !important;}&#8220;][vc_column css=&#8220;.vc_custom_1457493866439{margin-top: 0px !important;}&#8220;][vc_custom_heading text=&#8220;OUR [&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-canvas.php","meta":{"footnotes":""},"class_list":["post-769","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/acetik.rs\/index.php\/wp-json\/wp\/v2\/pages\/769","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/acetik.rs\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/acetik.rs\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/acetik.rs\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/acetik.rs\/index.php\/wp-json\/wp\/v2\/comments?post=769"}],"version-history":[{"count":0,"href":"https:\/\/acetik.rs\/index.php\/wp-json\/wp\/v2\/pages\/769\/revisions"}],"wp:attachment":[{"href":"https:\/\/acetik.rs\/index.php\/wp-json\/wp\/v2\/media?parent=769"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}