
    <script type='text/javascript'>
    jQuery(document).ready(function() {
        jQuery('#calendar').fullCalendar({
            header: {
                left: 'prev,next today',
                center: 'title',
                right: 'month,agendaWeek,agendaDay'
            },
            titleFormat: {
                month: ' MMMM yyyy',                                // September 2009
                week: "MMM d[ yyyy]{ '&#8212;'[ MMM] d yyyy}",      // Sep 7 - 13 2009
                day: 'dddd, MMM d, yyyy'                            // Tuesday, Sep 8, 2009
            },
            editable: false,
            weekends: true,
            timeFormat: 'h:mm{-h:mmtt }',
            axisFormat: 'h:mm{-h:mmtt }',
                        firstDay: 1,
            slotMinutes: 30,
            defaultView: 'month',
            minTime: 10,

            maxTime: 17,
            monthNames: ["January","February","March","April","May","June","July", "August", "September", "October", "November", "December" ],
            monthNamesShort: ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec"],
            dayNames: ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],
            dayNamesShort: ["Sun","Mon", "Tue", "Wed", "Thus", "Fri", "Sat"],
            buttonText: {
                today: "Today",
                day: "Day",
                week:"Week",
                month:"Month"
            },
            selectable: false,
            selectHelper: false,
            select: function(start, end, allDay) {
                    jQuery('#AppFirstModal').show();
                },

            events: [
                                        {
                            title: "Booked",
                            start: new Date(2017, 5, 15, 10, 00),
                            end: new Date(2017, 5, 15, 10, 30),
                            allDay: false,
                            backgroundColor : "#1FCB4A",
                            textColor: "black",
                        },                         {
                            title: "Booked",
                            start: new Date(2017, 5, 15, 10, 30),
                            end: new Date(2017, 5, 15, 11, 00),
                            allDay: false,
                            backgroundColor : "#1FCB4A",
                            textColor: "black",
                        },                         {
                            title: "Booked",
                            start: new Date(2017, 5, 15, 11, 00),
                            end: new Date(2017, 5, 15, 11, 30),
                            allDay: false,
                            backgroundColor : "#1FCB4A",
                            textColor: "black",
                        },                         {
                            title: "Booked",
                            start: new Date(2017, 5, 15, 11, 30),
                            end: new Date(2017, 5, 15, 12, 00),
                            allDay: false,
                            backgroundColor : "#1FCB4A",
                            textColor: "black",
                        },                         {
                            title: "Booked",
                            start: new Date(2017, 5, 15, 12, 00),
                            end: new Date(2017, 5, 15, 12, 30),
                            allDay: false,
                            backgroundColor : "#1FCB4A",
                            textColor: "black",
                        },                         {
                            title: "Booked",
                            start: new Date(2017, 5, 15, 12, 30),
                            end: new Date(2017, 5, 15, 13, 00),
                            allDay: false,
                            backgroundColor : "#1FCB4A",
                            textColor: "black",
                        },                         {
                            title: "Booked",
                            start: new Date(2017, 5, 16, 10, 30),
                            end: new Date(2017, 5, 16, 11, 00),
                            allDay: false,
                            backgroundColor : "#1FCB4A",
                            textColor: "black",
                        },                         {
                            title: "Booked",
                            start: new Date(2017, 5, 26, 10, 30),
                            end: new Date(2017, 5, 26, 11, 00),
                            allDay: false,
                            backgroundColor : "#1FCB4A",
                            textColor: "black",
                        },                         {
                        }
            ]
        });

        //jQuery UI date picker on modal for
        //document.addnewappointment.appdate.value = jQuery.datepicker.formatDate('', new Date());
        /*jQuery(function(){
            jQuery("#datepicker").datepicker({
                inline: true,
                minDate: 0,
                altField: '#alternate',
                firstDay: ,
                //beforeShowDay: unavailable,
                onSelect: function(dateText, inst) {
                    var dateAsString = dateText;
                    var seleteddate = jQuery.datepicker.formatDate('', new Date(dateAsString));
                    var seleteddate2 = jQuery.datepicker.formatDate('dd-mm-yy', new Date(dateAsString));
                    document.addnewappointment.appdate.value = seleteddate;
                },
            });
            //jQuery( "#datepicker" ).datepicker( jQuery.datepicker.regional[ "af" ] );
        });*/

        //Modal Form Works - show frist modal
        jQuery('#addappointment').click(function(){
            var todaydate = jQuery.fullCalendar.formatDate(new Date(),'dd-MM-yyyy');
            jQuery('#appdate').val(todaydate);
            jQuery('#AppFirstModal').show();
        });

        //hide modal
        jQuery('#close').click(function(){
            jQuery('#AppFirstModal').hide();
        });

        //AppFirstModal Validation
        jQuery('#next1').click(function(){
            jQuery(".apcal-error").hide();
            if(jQuery('#service').val() == 0) {
                jQuery("#service").after("<span class='apcal-error'><br><strong>Select any service.</strong></span>");
                return false;
            }
            var ServiceId =  jQuery('#service').val();
            var AppDate =  jQuery('#appdate').val();
            var SecondData = "ServiceId=" + ServiceId + "&AppDate=" + AppDate;
            jQuery('#loading1').show(); // loading button onclick next1 at first modal
            jQuery('#next1').hide();    // hide next button
            jQuery.ajax({
            dataType : 'html',
            type: 'GET',
            url : location.href,
            cache: false,
            data : SecondData,
            complete : function() {  },
            success: function(data) {
                    data = jQuery(data).find('div#AppSecondModal');
                    jQuery('#loading1').hide();
                    jQuery('#AppFirstModal').hide();
                    jQuery('#AppSecondModalDiv').show();
                    jQuery('#AppSecondModalDiv').html(data);
                }
            });
        });

        //Second Modal form validation
        jQuery('#booknowapp').click(function(){
            jQuery(".apcal-error").hide();
            var start_time = jQuery('input[name=start_time]:radio:checked').val();
            if(!start_time) {
                jQuery("#selecttimediv").after("<span class='apcal-error'><br><strong>Select any time.</strong></span>");
                return false;
            }

            if( !jQuery('#clientname').val() ) {
                jQuery("#clientname").after("<span class='apcal-error'><br><strong>Name required.</strong></span>");
                return false;
            } else if(!isNaN( jQuery('#clientname').val() )) {
                jQuery("#clientname").after("<span class='apcal-error'><p><strong>Invalid name.</strong></p></span>");
                return false;
            }

            var regex = /^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
            if( !jQuery('#clientemail').val() ) {
                jQuery("#clientemail").after("<span class='apcal-error'><br><strong>Email required.</strong></span>");
                return false;
            } else {
                if(regex.test(jQuery('#clientemail').val()) == false ) {
                    jQuery("#clientemail").after("<span class='apcal-error'><p><strong>Invalid Email.</strong></p></span>");
                    return false;
                }
            }

            if( !jQuery('#clientphone').val() ) {
                jQuery("#clientphone").after("<span class='apcal-error'><br><strong>Phone required.</strong></span>");
                return false;
            } else if(isNaN( jQuery('#clientphone').val() )) {
                jQuery("#clientphone").after("<span class='apcal-error'><p><strong>Invalid phone number.</strong></p></span>");
                return false;
            }
        });

        //back button show first modal
        jQuery('#back').click(function(){
            jQuery('#AppFirstModal').show();
            jQuery('#AppSecondModal').hide();
        });
    });


    //Modal Form Works
    function Backbutton() {
        jQuery('#AppFirstModal').show();
        jQuery('#AppSecondModalDiv').hide();
        jQuery('#next1').show();
    }

    //validation on second modal form submissions == appointment_register_nonce_field
    function CheckValidation() {
        jQuery(".apcal-error").hide();
        var start_time = jQuery('input[name=start_time]:radio:checked').val();
        if(!start_time) {
            jQuery("#selecttimediv").after("<p style='width:350px; padding:2px;' class='apcal-error'><strong>Select any time.</strong></p>");
            return false;
        }

        if( !jQuery('#clientname').val() ) {
            jQuery("#clientname").after("<span class='apcal-error'><br><strong>Name required.</strong></span>");
            return false;
        } else if(!isNaN( jQuery('#clientname').val() )) {
            jQuery("#clientname").after("<span class='apcal-error'><br><strong>Invalid Name</strong></span>");
            return false;
        }

        var regex = /^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
        if( !jQuery('#clientemail').val() ) {
            jQuery("#clientemail").after("<span class='apcal-error'><br><strong>Email required.</strong></span>");
            return false;
        } else {
            if(regex.test(jQuery('#clientemail').val()) == false ) {
                jQuery("#clientemail").after("<span class='apcal-error'><br><strong>Invalid Email</strong></span>");
                return false;
            }
        }

        if( !jQuery('#clientphone').val() ) {
            jQuery("#clientphone").after("<span class='apcal-error'><br><strong>Phone required.</strong></span>");
            return false;
        } else if(isNaN( jQuery('#clientphone').val() )) {
            jQuery("#clientphone").after("<span class='apcal-error'><br><strong>Invalid phone number.</strong></span>");
            return false;
        }
		
		var wp_nonce = jQuery('#appointment_register_nonce_field').val();
		 
        var ServiceId = jQuery('#serviceid').val();
        var AppDate = jQuery('#appointmentdate').val();
        var  ServiceDuration =  jQuery('#serviceduration').val();
        var StartTime = jQuery('input[name=start_time]:radio:checked').val();
        var Client_Name =  jQuery('#clientname').val();
        var Client_Email =  jQuery('#clientemail').val();
        var Client_Phone =  jQuery('#clientphone').val();
        var Client_Note =  jQuery('#clientnote').val();
        var currenturl = jQuery(location).attr('href');
        var SecondData = "ServiceId=" + ServiceId + "&AppDate=" + AppDate + "&StartTime=" + StartTime + '&Client_Name=' + Client_Name +'&Client_Email=' + Client_Email +'&Client_Phone=' + Client_Phone +'&Client_Note=' + Client_Note+'&Service_Duration=' + ServiceDuration + '&wp_nonce=' + wp_nonce;
        var currenturl = jQuery(location).attr('href');
        var url = currenturl;
        jQuery('#loading2').show();     // loading button onclick next1 at first modal
        jQuery('#buttonbox').hide();    // loading button onclick book now at first modal
        jQuery.ajax({
            dataType : 'html',
            type: 'POST',
            url : url,
            cache: false,
            data : SecondData,
            complete : function() {  },
            success: function() {
                jQuery('#AppSecondModalDiv').hide();
                alert("Thank you for scheduling appointment with us. A confirmation mail will be forward to you soon after admin approval.");
                var currenturl = jQuery(location).attr('href');
                var url = currenturl.replace("#","");
                window.location = url;
            }
        });
    }
    </script>
    <style type='text/css'>
    .apcal-error{
        color: #FF0000;
    }
    </style>

    <!---Display Booking Instruction--->
        <div id="bookinginstructions" align="center">
        Put your booking instructions here.<br>Or you can save It blank in case of nothing want to display.    </div>
    
    <!---Schedule New New Appointment Button--->
    <div id="bkbtndiv" align="center" style="padding:5px;">
        <button name="addappointment" class="apcal_btn apcal_btn-primary apcal_btn-large" type="submit" id="addappointment">
            <strong></strong><i class="icon-calendar icon-white"></i>
                Schedule An Appointment            </strong>
        </button>
    </div>

    <!---Show appointment calendar--->
    <div id='calendar'>
        <div align="right">Appointment Calendar Powered By: <a href="http://appointzilla.com/" title="Appointment Scheduling plugin for Wordpress" target="_blank">AppointZilla</a></div>
        <!---AppSecondModal For Schedule New Appointment--->
        <div id="AppSecondModalDiv" style="display:none;"></div>
    </div>


    <!---AppFirstModal For Schedule New Appointment--->
    <div id="AppFirstModal" style="display:none">
        <div class="apcal_modal" id="myModal" style="z-index:99999;">
            <form action="" method="post" name="addnewappointment" id="addnewappointment" >
                <div class="apcal_modal-info">
                    <div class="apcal_alert apcal_alert-info">
                        <div><a href="#" style="float:right; margin-right:-4px;" id="close"><i class="icon-remove"></i></a>
                        </div>
                        <p><strong>Schedule New Appointment</strong></p>
                        <div>Select Date & Service</div>
                    </div>
                </div>

                <div class="apcal_modal-body">
                    <div id="firdiv" style="float:left;">
                        <div id="datepicker"></div>

                         <!--PHP Date-picker -->
                         <form id="form1" name="form1" method="post" action="">
						 
                         <SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript">
<!--
//	JS strings
	var l_lang = "en_US";
	var l_sel_date = "Select Date";
	var l_not_allowed = "This date is not allowed to be selected";
	var l_date_before = "Please choose a date before %s";
	var l_date_after = "Please choose a date after %s";
	var l_date_between = "Please choose a date between\n%s and %s";
	var l_use_ymd_drop = "0";
	var l_day = "Day";
	var l_month = "Month";
	var l_year = "Year";
//	Long Month Names
	var l_january = "January";
	var l_february = "February";
	var l_march = "March";
	var l_april = "April";
	var l_may = "May";
	var l_june = "June";
	var l_july = "July";
	var l_august = "August";
	var l_september = "September";
	var l_october = "October";
	var l_november = "November";
	var l_december = "December";
if(l_lang == "el_GR"){
//	Date Month Names Greek
	var l_januaryu = "";
	var l_februaryu = "";
	var l_marchu = "";
	var l_aprilu = "";
	var l_mayu = "";
	var l_juneu = "";
	var l_julyu = "";
	var l_augustu = "";
	var l_septemberu = "";
	var l_octoberu = "";
	var l_novemberu = "";
	var l_decemberu = "";
}
//	Short Month Names
	var s_jan = "Jan";
	var s_feb = "Feb";
	var s_mar = "Mar";
	var s_apr = "Apr";
	var s_may = "May";
	var s_jun = "Jun";
	var s_jul = "Jul";
	var s_aug = "Aug";
	var s_sep = "Sep";
	var s_oct = "Oct";
	var s_nov = "Nov";
	var s_dec = "Dec";
//	Long Day Names
	var l_monday = "Monday";
	var l_tuesday = "Tuesday";
	var l_wednesday = "Wednesday";
	var l_thursday = "Thursday";
	var l_friday = "Friday";
	var l_saturday = "Saturday";
	var l_sunday = "Sunday";
//	Short Day Names
	var s_mon = "Mo";
	var s_tue = "Tu";
	var s_wed = "We";
	var s_thu = "Th";
	var s_fri = "Fr";
	var s_sat = "Sa";
	var s_sun = "Su";
// -->
</SCRIPT>
<input type="hidden" name="date1" id="date1" value="2026-04-16" /><input type="hidden" name="date1_dp" id="date1_dp" value="" /><input type="hidden" name="date1_year_start" id="date1_year_start" value="2026" /><input type="hidden" name="date1_year_end" id="date1_year_end" value="2035" /><input type="hidden" name="date1_da1" id="date1_da1" value="1776211200" /><input type="hidden" name="date1_da2" id="date1_da2" value="2051222400" /><input type="hidden" name="date1_sna" id="date1_sna" value="" /><input type="hidden" name="date1_aut" id="date1_aut" value="" /><input type="hidden" name="date1_frm" id="date1_frm" value="" /><input type="hidden" name="date1_tar" id="date1_tar" value="" /><input type="hidden" name="date1_inp" id="date1_inp" value="1" /><input type="hidden" name="date1_fmt" id="date1_fmt" value="F j, Y" /><input type="hidden" name="date1_dis" id="date1_dis" value="" /><input type="hidden" name="date1_pr1" id="date1_pr1" value="" /><input type="hidden" name="date1_pr2" id="date1_pr2" value="" /><input type="hidden" name="date1_prv" id="date1_prv" value="" /><input type="hidden" name="date1_pth" id="date1_pth" value="http://demo.amytheme.com/petcare/demo-2/wp-content/plugins/appointment-calendar/calendar/" /><input type="hidden" name="date1_spd" id="date1_spd" value="[[],[],[]]" /><input type="hidden" name="date1_spt" id="date1_spt" value="0" /><input type="hidden" name="date1_och" id="date1_och" value="myChanged%28%29" /><input type="hidden" name="date1_str" id="date1_str" value="0" /><input type="hidden" name="date1_rtl" id="date1_rtl" value="0" /><input type="hidden" name="date1_wks" id="date1_wks" value="" /><input type="hidden" name="date1_int" id="date1_int" value="1" /><input type="hidden" name="date1_hid" id="date1_hid" value="1" /><input type="hidden" name="date1_hdt" id="date1_hdt" value="1000" /><input type="hidden" name="date1_hl" id="date1_hl" value="en_US" /><div id="div_date1" style="position:relative;visibility:visible;z-index:100;;margin-left:20px" class="div_calendar calendar-border"   onmouseover="javascript:cancelHide('date1');"><IFRAME id="date1_frame" src="http://demo.amytheme.com/petcare/demo-2/wp-content/plugins/appointment-calendar/calendar/calendar_form.php?objname=date1&selected_day=16&selected_month=04&selected_year=2026&year_start=2026&year_end=2035&dp=0&da1=1776211200&da2=2051222400&sna=&aut=&frm=&tar=&inp=1&fmt=F j, Y&dis=&pr1=&pr2=&prv=&pth=http://demo.amytheme.com/petcare/demo-2/wp-content/plugins/appointment-calendar/calendar/&spd=[[],[],[]]&spt=0&och=myChanged%28%29&str=0&rtl=0&wks=&int=1&hid=1&hdt=1000&hl=en_US" frameBorder="0" scrolling="no" allowtransparency="true" width="250px" height="100%" style="z-index: 100;height:201px;" margin-left=20px></IFRAME></div>							
                        </form>

                        <script language="javascript">
                        function myChanged() {
                            var x = document.getElementById('date1').value;
                            x = moment(x).format('DD-MM-YYYY');
                            document.getElementById('appdate').value = x;
                        }
                        </script>
                    </div>

                    <div id="secdiv" style="float:right;">
                        <strong>Your Appointment Date:</strong><br>
                        <input name="appdate" id="appdate" type="text" readonly="" height="30px;" style="height:30px;" />
                        
												
						<br /><br />
                        <strong>Select Service:</strong><br />
                        <select name="service" id="service">
                            <option value="0">Select Service</option>
                                                                                                                                            <option value="1">
                                        Default (30min/$100)                                    </option>
                                                        </select>
                        <br>
                        <button name="next1" class="apcal_btn" type="button" id="next1" value="next1">Next <i class="icon-arrow-right"></i></button>
                        <div id="loading1" style="display:none;">Loading...<img src="http://demo.amytheme.com/petcare/demo-2/wp-content/plugins/appointment-calendar/images/loading.gif" /></div>
                    </div>
                </div>
            </form>
          </div>
    </div>
    <!---AppSecondModal For Schedule New Appointment--->
	
    {"id":2239,"date":"2017-06-14T02:56:25","date_gmt":"2017-06-14T02:56:25","guid":{"rendered":"http:\/\/demo.amytheme.com\/petcare\/demo-2\/?page_id=2239"},"modified":"2017-06-16T07:39:34","modified_gmt":"2017-06-16T07:39:34","slug":"single-team","status":"publish","type":"page","link":"http:\/\/demo.amytheme.com\/petcare\/demo-2\/single-team\/","title":{"rendered":"Single Team"},"content":{"rendered":"<p>[vc_row amy_add_container=&#8221;yes&#8221; css=&#8221;.vc_custom_1497429245964{padding-top: 90px !important;padding-bottom: 30px !important;}&#8221;][vc_column]<div class=\"amy-info-member row \"><div class=\"col-md-4\"><div class=\"box-left\"><div class=\"entry-avatar\"><img width=\"150\" height=\"150\" src=\"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-content\/uploads\/2017\/06\/it4-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" loading=\"lazy\" \/><\/div><div class=\"entry-social\"><a href=\"#\"><i class=\"fa fa-facebook\"><\/i><\/a><a href=\"#\"><i class=\"fa fa-twitter\"><\/i><\/a><a href=\"#\"><i class=\"fa fa-google-plus\"><\/i><\/a><a href=\"#\"><i class=\"fa fa-pinterest\"><\/i><\/a><\/div><\/div><\/div><div class=\"col-md-8\"><div class=\"box-right\"><header class=\"entry-header\"><div class=\"entry-name\"><h4 class=\"entry-title\">John<\/h4><span class=\"entry-position\">Doctor<\/span><\/div><div class=\"entry-phone\"><h6>Phone:<\/h6><span>(488) 208-8614<\/span><\/div><div class=\"entry-email\"><h6>Email:<\/h6><span><a href=\"mailto:contact@example.com\" target=\"_top\">contact@example.com<\/a><\/span><\/div><\/header><div class=\"entry-description\"><br \/>\nGrew up in a small town in north central West Virginia. He received his undergraduate degree from West Virginia University College of Agriculture and Forestry in 1996. During his undergraduate education, Jared was an avid hiker, enjoyed cycling, and worked at local animal hospitals. He graduated from The Ohio State University College of Veterinary Medicine in 2000 and worked as a veterinarian at an outstanding veterinary hospital in the Raleigh area for 3 years. He is the founder of Complete Pet Care Animal Hospital and is involved in small animal practice with an emphasis on internal medicine and orthopedic surgery.<\/p>\n<p>Dr. Jared and his wife, Kellie, have one daughter, Katlyn, two sons, Sean and Lachlan, their Great Dane Addie, and four cats. He contributes his time and skills to the SPCA of Wake County and actively participates in community programs with his local church.<br \/>\n<\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row amy_add_container=&#8221;yes&#8221; css=&#8221;.vc_custom_1497434148965{padding-bottom: 90px !important;}&#8221;][vc_column width=&#8221;1\/3&#8243; css=&#8221;.vc_custom_1497428831315{padding-right: 45px !important;}&#8221;][vc_custom_heading text=&#8221;Schedule&#8221; font_container=&#8221;tag:h2|font_size:25|text_align:left|color:%233c78b3&#8243; google_fonts=&#8221;font_family:Roboto%20Condensed%3A300%2C300italic%2Cregular%2Citalic%2C700%2C700italic|font_style:700%20bold%20regular%3A700%3Anormal&#8221;]<div class=\"amy-schedule \"><ul><li class=\"clearfix\">\n<span class=\"pull-left\">Monday:<\/span>\n<span class=\"pull-right\">9:00am - 3:30pm<\/span><li class=\"clearfix\">\n<span class=\"pull-left\">Tuesday:<\/span>\n<span class=\"pull-right\">10:15am - 4:15pm<\/span><li class=\"clearfix\">\n<span class=\"pull-left\">Wednesday:<\/span>\n<span class=\"pull-right\">8:30am - 5:30pm<\/span><li class=\"clearfix\">\n<span class=\"pull-left\">Thursday:<\/span>\n<span class=\"pull-right\">9:00am - 3:30pm<\/span><li class=\"clearfix\">\n<span class=\"pull-left\">Friday:<\/span>\n<span class=\"pull-right\">9:00am - 3:30pm<\/span><li class=\"clearfix\">\n<span class=\"pull-left\">Weekend:<\/span>\n<span class=\"pull-right\">Family Doctor<\/span><\/ul><\/div>[\/vc_column][vc_column width=&#8221;1\/3&#8243;][vc_custom_heading text=&#8221;Skills&#8221; font_container=&#8221;tag:h2|font_size:25|text_align:left|color:%233c78b3&#8243; google_fonts=&#8221;font_family:Roboto%20Condensed%3A300%2C300italic%2Cregular%2Citalic%2C700%2C700italic|font_style:700%20bold%20regular%3A700%3Anormal&#8221;]<div class=\"amy-skills \"><ul><li class=\"amy-skillbar\" data-percent=\"95%\">\n<div class=\"skillbar-title\">Pet Grooming - 95%<\/div>\n<div class=\"skillbar-bar\" style=\"width: 95%;\"><\/div><li class=\"amy-skillbar\" data-percent=\"80%\">\n<div class=\"skillbar-title\">Emergency - 80%<\/div>\n<div class=\"skillbar-bar\" style=\"width: 80%;\"><\/div><li class=\"amy-skillbar\" data-percent=\"100%\">\n<div class=\"skillbar-title\">Puppy Training - 100%<\/div>\n<div class=\"skillbar-bar\" style=\"width: 100%;\"><\/div><li class=\"amy-skillbar\" data-percent=\"75%\">\n<div class=\"skillbar-title\">Vet Services - 75%<\/div>\n<div class=\"skillbar-bar\" style=\"width: 75%;\"><\/div><\/ul><\/div>[\/vc_column][vc_column width=&#8221;1\/3&#8243;][vc_custom_heading text=&#8221;Education &amp; Training&#8221; font_container=&#8221;tag:h2|font_size:25|text_align:left|color:%233c78b3&#8243; google_fonts=&#8221;font_family:Roboto%20Condensed%3A300%2C300italic%2Cregular%2Citalic%2C700%2C700italic|font_style:700%20bold%20regular%3A700%3Anormal&#8221;]<div class=\"smile_icon_list_wrap ult_info_list_container ult-adjust-bottom-margin margin-bottom-30  vc_custom_1497428898791\"><ul class=\"smile_icon_list left circle with_bg\"><li class=\"icon_list_item\" style=\" font-size:36px;\"><div class=\"icon_list_icon\" data-animation=\"\" data-animation-delay=\"03\" style=\"font-size:12px;border-width:2px;border-style:solid;background:#ffffff;color:#333333;border-color:#417bb5;\"><img class=\"list-img-icon\" alt=\"null\" src=\"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-content\/uploads\/2017\/06\/cc.png\"\/><\/div><div class=\"icon_description\" id=\"Info-list-wrap-7190\" style=\"font-size:12px;\"><h3 class=\"ult-responsive info-list-heading\"  data-ultimate-target='#Info-list-wrap-7190 h3'  data-responsive-json-new='{\"font-size\":\"desktop:22px;\",\"line-height\":\"desktop:24px;\"}'  style=\"font-weight:bold;color:#3c78b3;\">2007: Health Care<\/h3><div class=\"icon_description_text ult-responsive\"  data-ultimate-target='#Info-list-wrap-7190 .icon_description_text'  data-responsive-json-new='{\"font-size\":\"desktop:16px;\",\"line-height\":\"desktop:18px;\"}'  style=\"color:#666666;\"><p>Compassionate veterinary professionals is committed to serving.<\/p>\n<\/div><\/div><div class=\"icon_list_connector\" data-animation=\"fadeInUp\" data-animation-delay=\"03\" style=\"border-right-width: 1px;border-right-style: dashed;border-color: #3c78b3;\"><\/div><\/li><li class=\"icon_list_item\" style=\" font-size:36px;\"><div class=\"icon_list_icon\" data-animation=\"\" data-animation-delay=\"03\" style=\"font-size:12px;border-width:2px;border-style:solid;background:#ffffff;color:#333333;border-color:#417bb5;\"><img class=\"list-img-icon\" alt=\"null\" src=\"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-content\/uploads\/2017\/06\/cc.png\"\/><\/div><div class=\"icon_description\" id=\"Info-list-wrap-4603\" style=\"font-size:12px;\"><h3 class=\"ult-responsive info-list-heading\"  data-ultimate-target='#Info-list-wrap-4603 h3'  data-responsive-json-new='{\"font-size\":\"desktop:22px;\",\"line-height\":\"desktop:24px;\"}'  style=\"font-weight:bold;color:#3c78b3;\">2012: Spa Services<\/h3><div class=\"icon_description_text ult-responsive\"  data-ultimate-target='#Info-list-wrap-4603 .icon_description_text'  data-responsive-json-new='{\"font-size\":\"desktop:16px;\",\"line-height\":\"desktop:18px;\"}'  style=\"color:#666666;\"><p>Neighborhood veterinarian and we value each and every relationship.<\/p>\n<\/div><\/div><div class=\"icon_list_connector\" data-animation=\"fadeInUp\" data-animation-delay=\"03\" style=\"border-right-width: 1px;border-right-style: dashed;border-color: #3c78b3;\"><\/div><\/li><li class=\"icon_list_item\" style=\" font-size:36px;\"><div class=\"icon_list_icon\" data-animation=\"\" data-animation-delay=\"03\" style=\"font-size:12px;border-width:2px;border-style:solid;background:#ffffff;color:#333333;border-color:#417bb5;\"><img class=\"list-img-icon\" alt=\"null\" src=\"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-content\/uploads\/2017\/06\/cc.png\"\/><\/div><div class=\"icon_description\" id=\"Info-list-wrap-9587\" style=\"font-size:12px;\"><h3 class=\"ult-responsive info-list-heading\"  data-ultimate-target='#Info-list-wrap-9587 h3'  data-responsive-json-new='{\"font-size\":\"desktop:22px;\",\"line-height\":\"desktop:24px;\"}'  style=\"font-weight:bold;color:#3c78b3;\">2015: Babysitting Pets<\/h3><div class=\"icon_description_text ult-responsive\"  data-ultimate-target='#Info-list-wrap-9587 .icon_description_text'  data-responsive-json-new='{\"font-size\":\"desktop:16px;\",\"line-height\":\"desktop:18px;\"}'  style=\"color:#666666;\"><p>We are here for you and your pets every step of the way.<\/p>\n<\/div><\/div><div class=\"icon_list_connector\" data-animation=\"fadeInUp\" data-animation-delay=\"03\" style=\"border-right-width: 1px;border-right-style: dashed;border-color: #3c78b3;\"><\/div><\/li><\/ul><\/div>[\/vc_column][\/vc_row][vc_row amy_add_container=&#8221;yes&#8221; amy_row_padding=&#8221;amy-lg-padding&#8221; css=&#8221;.vc_custom_1497429134290{background-color: #3c78b3 !important;}&#8221;][vc_column]<div class=\"amy-testimonial amy-slick-testimonial \" data-slick='{\"autoplay\":true,\"autoplaySpeed\":3000,\"arrows\":false,\"infinite\":true,\"slidesToShow\": 1,\"slidesToScroll\": 1,\"cssEase\":\"linear\",\"dotsClass\": \"slick-dots style-2\",\"dots\":true}'><div class=\"testimonial-item\"><span class=\"quote\" style=\"color: #ffffff;border-color: #ffffff;\"><i class=\"fa fa-quote-left\"><\/i><\/span><div class=\"entry-content\"><p style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\u00a0Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat\u00a0aute irure dolor.<\/p><\/div><div class=\"entry-meta\"><div class=\"meta-image-wrap\"><div class=\"meta-avatar\"><img width=\"90\" height=\"90\" src=\"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-content\/uploads\/2011\/05\/6-150x150.png\" class=\"attachment-90x90 size-90x90\" alt=\"\" loading=\"lazy\" \/><\/div><\/div><div class=\"meta-info-wrap\"><h4 class=\"meta-name\" style=\"color: #ffffff;\">Labore Et<\/h4><span class=\"meta-position\" style=\"color: #b1d0ee;\">CEO<\/span><\/div><\/div><\/div><div class=\"testimonial-item\"><span class=\"quote\" style=\"color: #ffffff;border-color: #ffffff;\"><i class=\"fa fa-quote-left\"><\/i><\/span><div class=\"entry-content\"><p style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\u00a0Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat\u00a0aute irure dolor.<\/p><\/div><div class=\"entry-meta\"><div class=\"meta-image-wrap\"><div class=\"meta-avatar\"><img width=\"90\" height=\"90\" src=\"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-content\/uploads\/2011\/05\/5-150x150.png\" class=\"attachment-90x90 size-90x90\" alt=\"\" loading=\"lazy\" \/><\/div><\/div><div class=\"meta-info-wrap\"><h4 class=\"meta-name\" style=\"color: #ffffff;\">Eiusmod Tempor<\/h4><span class=\"meta-position\" style=\"color: #b1d0ee;\">CEO<\/span><\/div><\/div><\/div><div class=\"testimonial-item\"><span class=\"quote\" style=\"color: #ffffff;border-color: #ffffff;\"><i class=\"fa fa-quote-left\"><\/i><\/span><div class=\"entry-content\"><p style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\u00a0Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat\u00a0aute irure dolor.<\/p><\/div><div class=\"entry-meta\"><div class=\"meta-image-wrap\"><div class=\"meta-avatar\"><img width=\"90\" height=\"90\" src=\"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-content\/uploads\/2011\/05\/4-150x150.png\" class=\"attachment-90x90 size-90x90\" alt=\"\" loading=\"lazy\" \/><\/div><\/div><div class=\"meta-info-wrap\"><h4 class=\"meta-name\" style=\"color: #ffffff;\">Ipsum Dolor<\/h4><span class=\"meta-position\" style=\"color: #b1d0ee;\">Manager<\/span><\/div><\/div><\/div><div class=\"testimonial-item\"><span class=\"quote\" style=\"color: #ffffff;border-color: #ffffff;\"><i class=\"fa fa-quote-left\"><\/i><\/span><div class=\"entry-content\"><p style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\u00a0Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat\u00a0aute irure dolor.<\/p><\/div><div class=\"entry-meta\"><div class=\"meta-image-wrap\"><div class=\"meta-avatar\"><img width=\"90\" height=\"90\" src=\"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-content\/uploads\/2011\/05\/2-150x150.png\" class=\"attachment-90x90 size-90x90\" alt=\"\" loading=\"lazy\" \/><\/div><\/div><div class=\"meta-info-wrap\"><h4 class=\"meta-name\" style=\"color: #ffffff;\">Consequat\u00a0Aute<\/h4><span class=\"meta-position\" style=\"color: #b1d0ee;\">CEO<\/span><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row amy_add_container=&#8221;yes&#8221; amy_row_padding=&#8221;amy-lg-padding&#8221;][vc_column]<div id=\"amy-petcare-heading-1\" class=\"amy-heading  text-center\"><h2 style=\"\" class=\"entry-title\">My Calendar<\/h2><p style=\"\" class=\"entry-sub-title\">Put your booking instructions here. Or you can save It blank in case of nothing want to display.<\/p><\/div>[vc_column_text][\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row amy_add_container=&#8221;yes&#8221; css=&#8221;.vc_custom_1497429245964{padding-top: 90px !important;padding-bottom: 30px !important;}&#8221;][vc_column][\/vc_column][\/vc_row][vc_row amy_add_container=&#8221;yes&#8221; css=&#8221;.vc_custom_1497434148965{padding-bottom: 90px !important;}&#8221;][vc_column width=&#8221;1\/3&#8243; css=&#8221;.vc_custom_1497428831315{padding-right: 45px !important;}&#8221;][vc_custom_heading text=&#8221;Schedule&#8221; font_container=&#8221;tag:h2|font_size:25|text_align:left|color:%233c78b3&#8243; google_fonts=&#8221;font_family:Roboto%20Condensed%3A300%2C300italic%2Cregular%2Citalic%2C700%2C700italic|font_style:700%20bold%20regular%3A700%3Anormal&#8221;][\/vc_column][vc_column width=&#8221;1\/3&#8243;][vc_custom_heading text=&#8221;Skills&#8221; font_container=&#8221;tag:h2|font_size:25|text_align:left|color:%233c78b3&#8243; google_fonts=&#8221;font_family:Roboto%20Condensed%3A300%2C300italic%2Cregular%2Citalic%2C700%2C700italic|font_style:700%20bold%20regular%3A700%3Anormal&#8221;][\/vc_column][vc_column width=&#8221;1\/3&#8243;][vc_custom_heading text=&#8221;Education &amp; Training&#8221; font_container=&#8221;tag:h2|font_size:25|text_align:left|color:%233c78b3&#8243; google_fonts=&#8221;font_family:Roboto%20Condensed%3A300%2C300italic%2Cregular%2Citalic%2C700%2C700italic|font_style:700%20bold%20regular%3A700%3Anormal&#8221;][\/vc_column][\/vc_row][vc_row amy_add_container=&#8221;yes&#8221; amy_row_padding=&#8221;amy-lg-padding&#8221; css=&#8221;.vc_custom_1497429134290{background-color: #3c78b3 !important;}&#8221;][vc_column][\/vc_column][\/vc_row][vc_row amy_add_container=&#8221;yes&#8221; amy_row_padding=&#8221;amy-lg-padding&#8221;][vc_column][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"_links":{"self":[{"href":"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-json\/wp\/v2\/pages\/2239"}],"collection":[{"href":"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-json\/wp\/v2\/comments?post=2239"}],"version-history":[{"count":15,"href":"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-json\/wp\/v2\/pages\/2239\/revisions"}],"predecessor-version":[{"id":2493,"href":"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-json\/wp\/v2\/pages\/2239\/revisions\/2493"}],"wp:attachment":[{"href":"http:\/\/demo.amytheme.com\/petcare\/demo-2\/wp-json\/wp\/v2\/media?parent=2239"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}