-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.themepunch.revolution.html
1182 lines (1102 loc) · 58.8 KB
/
jquery.themepunch.revolution.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
<link rel="profile" href="https//gmpg.org/xfn/11">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script> 'use strict'; (function (html) { html.className = html.className.replace(/\bno-js\b/, 'js') })(document.documentElement);</script>
<title>Page not found – Optico Demo1</title>
<style media="screen">
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a.ui-state-active,
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a.ui-state-active:hover,
body #booked-profile-page input[type=submit].button-primary:hover,
body .booked-list-view button.button:hover,
body .booked-list-view input[type=submit].button-primary:hover,
body table.booked-calendar input[type=submit].button-primary:hover,
body .booked-modal input[type=submit].button-primary:hover,
body table.booked-calendar th,
body table.booked-calendar thead,
body table.booked-calendar thead th,
body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button:hover,
body #booked-profile-page .booked-profile-header,
body #booked-profile-page .booked-tabs li.active a,
body #booked-profile-page .booked-tabs li.active a:hover,
body #booked-profile-page .appt-block .google-cal-button>a:hover,
#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header {
background: #c4f2d4 !important;
}
body #booked-profile-page input[type=submit].button-primary:hover,
body table.booked-calendar input[type=submit].button-primary:hover,
body .booked-list-view button.button:hover,
body .booked-list-view input[type=submit].button-primary:hover,
body .booked-modal input[type=submit].button-primary:hover,
body table.booked-calendar th,
body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button:hover,
body #booked-profile-page .booked-profile-header,
body #booked-profile-page .appt-block .google-cal-button>a:hover {
border-color: #c4f2d4 !important;
}
body table.booked-calendar tr.days,
body table.booked-calendar tr.days th,
body .booked-calendarSwitcher.calendar,
body #booked-profile-page .booked-tabs,
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar thead,
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar thead th {
background: #039146 !important;
}
body table.booked-calendar tr.days th,
body #booked-profile-page .booked-tabs {
border-color: #039146 !important;
}
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a,
#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a:hover,
body #booked-profile-page input[type=submit].button-primary,
body table.booked-calendar input[type=submit].button-primary,
body .booked-list-view button.button,
body .booked-list-view input[type=submit].button-primary,
body .booked-list-view button.button,
body .booked-list-view input[type=submit].button-primary,
body .booked-modal input[type=submit].button-primary,
body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button,
body #booked-profile-page .booked-profile-appt-list .appt-block.approved .status-block,
body #booked-profile-page .appt-block .google-cal-button>a,
body .booked-modal p.booked-title-bar,
body table.booked-calendar td:hover .date span,
body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active,
body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active:hover,
.booked-ms-modal .booked-book-appt
/* Multi-Slot Booking */
{
background: #56c477;
}
body #booked-profile-page input[type=submit].button-primary,
body table.booked-calendar input[type=submit].button-primary,
body .booked-list-view button.button,
body .booked-list-view input[type=submit].button-primary,
body .booked-list-view button.button,
body .booked-list-view input[type=submit].button-primary,
body .booked-modal input[type=submit].button-primary,
body #booked-profile-page .appt-block .google-cal-button>a,
body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button,
body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active,
body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active:hover {
border-color: #56c477;
}
body .booked-modal .bm-window p i.fa,
body .booked-modal .bm-window a,
body .booked-appt-list .booked-public-appointment-title,
body .booked-modal .bm-window p.appointment-title,
.booked-ms-modal.visible:hover .booked-book-appt {
color: #56c477;
}
.booked-appt-list .timeslot.has-title .booked-public-appointment-title {
color: inherit;
}
</style>
<link rel='dns-prefetch' href='//www.google.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Optico Demo1 » Feed"
href="https://optico.themestek.com/demo1/feed/" />
<link rel="alternate" type="application/rss+xml" title="Optico Demo1 » Comments Feed"
href="https://optico.themestek.com/demo1/comments/feed/" />
<script>
window._wpemojiSettings = { "baseUrl": "https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/72x72\/", "ext": ".png", "svgUrl": "https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/svg\/", "svgExt": ".svg", "source": { "concatemoji": "https:\/\/optico.themestek.com\/demo1\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.2.9" } };
!function (a, b, c) { function d(a, b) { var c = String.fromCharCode; l.clearRect(0, 0, k.width, k.height), l.fillText(c.apply(this, a), 0, 0); var d = k.toDataURL(); l.clearRect(0, 0, k.width, k.height), l.fillText(c.apply(this, b), 0, 0); var e = k.toDataURL(); return d === e } function e(a) { var b; if (!l || !l.fillText) return !1; switch (l.textBaseline = "top", l.font = "600 32px Arial", a) { case "flag": return !(b = d([55356, 56826, 55356, 56819], [55356, 56826, 8203, 55356, 56819])) && (b = d([55356, 57332, 56128, 56423, 56128, 56418, 56128, 56421, 56128, 56430, 56128, 56423, 56128, 56447], [55356, 57332, 8203, 56128, 56423, 8203, 56128, 56418, 8203, 56128, 56421, 8203, 56128, 56430, 8203, 56128, 56423, 8203, 56128, 56447]), !b); case "emoji": return b = d([55357, 56424, 55356, 57342, 8205, 55358, 56605, 8205, 55357, 56424, 55356, 57340], [55357, 56424, 55356, 57342, 8203, 55358, 56605, 8203, 55357, 56424, 55356, 57340]), !b }return !1 } function f(a) { var c = b.createElement("script"); c.src = a, c.defer = c.type = "text/javascript", b.getElementsByTagName("head")[0].appendChild(c) } var g, h, i, j, k = b.createElement("canvas"), l = k.getContext && k.getContext("2d"); for (j = Array("flag", "emoji"), c.supports = { everything: !0, everythingExceptFlag: !0 }, i = 0; i < j.length; i++)c.supports[j[i]] = e(j[i]), c.supports.everything = c.supports.everything && c.supports[j[i]], "flag" !== j[i] && (c.supports.everythingExceptFlag = c.supports.everythingExceptFlag && c.supports[j[i]]); c.supports.everythingExceptFlag = c.supports.everythingExceptFlag && !c.supports.flag, c.DOMReady = !1, c.readyCallback = function () { c.DOMReady = !0 }, c.supports.everything || (h = function () { c.readyCallback() }, b.addEventListener ? (b.addEventListener("DOMContentLoaded", h, !1), a.addEventListener("load", h, !1)) : (a.attachEvent("onload", h), b.attachEvent("onreadystatechange", function () { "complete" === b.readyState && c.readyCallback() })), g = c.source || {}, g.concatemoji ? f(g.concatemoji) : g.wpemoji && g.twemoji && (f(g.twemoji), f(g.wpemoji))) }(window, document, window._wpemojiSettings);
</script>
<style>
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='jquery-ui-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/booking-calendar/css/jquery-ui.css?ver=10.7'
media='all' />
<link rel='stylesheet' id='wpdevart-font-awesome-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/booking-calendar/css/font-awesome/font-awesome.css?ver=10.7'
media='all' />
<link rel='stylesheet' id='wpdevart-style-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/booking-calendar/css/style.css?ver=10.7'
media='all' />
<link rel='stylesheet' id='wpdevart-effects-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/booking-calendar/css/effects.css?ver=10.7'
media='all' />
<link rel='stylesheet' id='wpdevartcalendar-style-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/booking-calendar/css/booking.css?ver=10.7'
media='all' />
<link rel='stylesheet' id='wp-block-library-css'
href='https://optico.themestek.com/demo1/wp-includes/css/dist/block-library/style.min.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='wc-block-style-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/woo-gutenberg-products-block/build/style.css?ver=2.1.0'
media='all' />
<link rel='stylesheet' id='twenty20-style-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/twenty20/assets/css/twenty20.css?ver=1.55'
media='all' />
<link rel='stylesheet' id='booked-icons-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/booked/assets/css/icons.css?ver=2.2.5'
media='all' />
<link rel='stylesheet' id='booked-tooltipster-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/booked/assets/js/tooltipster/css/tooltipster.css?ver=3.3.0'
media='all' />
<link rel='stylesheet' id='booked-tooltipster-theme-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/booked/assets/js/tooltipster/css/themes/tooltipster-light.css?ver=3.3.0'
media='all' />
<link rel='stylesheet' id='booked-animations-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/booked/assets/css/animations.css?ver=2.2.5'
media='all' />
<link rel='stylesheet' id='booked-styles-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/booked/assets/css/styles.css?ver=2.2.5'
media='all' />
<link rel='stylesheet' id='booked-responsive-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/booked/assets/css/responsive.css?ver=2.2.5'
media='all' />
<link rel='stylesheet' id='contact-form-7-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.1.3'
media='all' />
<link rel='stylesheet' id='rs-plugin-settings-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/revslider/public/assets/css/settings.css?ver=5.4.8.3'
media='all' />
<style id='rs-plugin-settings-inline-css'>
#rs-demo-id {}
</style>
<link rel='stylesheet' id='font-awesome-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/js_composer/assets/lib/bower/font-awesome/css/font-awesome.min.css?ver=6.0.3'
media='all' />
<link rel='stylesheet' id='ts-optometrist-icons-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/libraries/ts-optometrist-icons/font/flaticon.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='themify-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/libraries/themify-icons/themify-icons.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='pac-styles-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/woocommerce-product-archive-customiser/assets/css/pac.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='pac-layout-styles-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/woocommerce-product-archive-customiser/assets/css/layout.css?ver=5.2.9'
media='only screen and (min-width: 768px)' />
<link rel='stylesheet' id='woocommerce-layout-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=3.6.4'
media='all' />
<link rel='stylesheet' id='woocommerce-smallscreen-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=3.6.4'
media='only screen and (max-width: 768px)' />
<link rel='stylesheet' id='woocommerce-general-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=3.6.4'
media='all' />
<style id='woocommerce-inline-inline-css'>
.woocommerce form .form-row .required {
visibility: visible;
}
</style>
<link rel='stylesheet' id='booked-fea-styles-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/booked-frontend-agents/css/styles.css?ver=2.2.5'
media='all' />
<link rel='stylesheet' id='wc-gateway-ppec-frontend-cart-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/woocommerce-gateway-paypal-express-checkout/assets/css/wc-gateway-ppec-frontend-cart.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='ts-cs-google-fonts-css'
href='https://fonts.googleapis.com/css?family=Poppins%3A300%2C400%2C500%2C600%2C700%7CMontserrat%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2Citalic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CArimo%3A400%7CVollkorn%3A700&ver=1.0.0'
media='all' />
<link rel='stylesheet' id='perfect-scrollbar-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/libraries/perfect-scrollbar/perfect-scrollbar.min.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='chrisbracco-tooltip-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/libraries/chrisbracco-tooltip/chrisbracco-tooltip.min.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='multi-columns-row-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/css/multi-columns-row.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='ts-select2-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/libraries/select2/select2.min.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='flexslider-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/js_composer/assets/lib/bower/flexslider/flexslider.min.css?ver=6.0.3'
media='all' />
<link rel='stylesheet' id='ts-optico-icons-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/libraries/ts-optico-icons/css/ts-optico-icons.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='slick-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/libraries/slick/slick.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='slick-theme-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/libraries/slick/slick-theme.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='prettyphoto-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/js_composer/assets/lib/prettyphoto/css/prettyPhoto.min.css?ver=6.0.3'
media='all' />
<!--[if lt IE 9]>
<link rel='stylesheet' id='vc_lte_ie9-css' href='https://optico.themestek.com/demo1/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css?ver=6.0.3' media='screen' />
<![endif]-->
<link rel='stylesheet' id='bootstrap-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/css/bootstrap.min.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='bootstrap-theme-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/css/bootstrap-theme.min.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='optico-core-style-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/css/core.min.css?ver=5.2.9' media='all' />
<link rel='stylesheet' id='js_composer_front-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/js_composer/assets/css/js_composer.min.css?ver=6.0.3'
media='all' />
<link rel='stylesheet' id='optico-master-style-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/css/master.min.css?ver=5.2.9' media='all' />
<link rel='stylesheet' id='optico-responsive-style-css'
href='https://optico.themestek.com/demo1/wp-content/themes/optico/css/responsive.min.css?ver=5.2.9'
media='all' />
<link rel='stylesheet' id='tste-optico-theme-style-css'
href='https://optico.themestek.com/demo1/wp-admin/admin-ajax.php?action=themestek_theme_css&ver=5.2.9'
media='all' />
<link rel='stylesheet' id='rpt-css'
href='https://optico.themestek.com/demo1/wp-content/plugins/dk-pricr-responsive-pricing-table/inc/css/rpt_style.min.css?ver=5.2.9'
media='all' />
<script src='https://optico.themestek.com/demo1/wp-includes/js/jquery/jquery.js?ver=1.12.4-wp'></script>
<script src='https://optico.themestek.com/demo1/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script>
/* <![CDATA[ */
var wpdevart = { "ajaxUrl": "https:\/\/optico.themestek.com\/demo1\/wp-admin\/admin-ajax.php", "ajaxNonce": "9f60f7e704", "required": "is required.", "file_size": " The file size is too large!", "file_type": " The file type not allowed!", "emailValid": "Enter the valid email address.", "date": "Date", "hour": "Hour" };
/* ]]> */
</script>
<script
src='https://optico.themestek.com/demo1/wp-content/plugins/booking-calendar/js/booking.js?ver=10.7'></script>
<script
src='https://optico.themestek.com/demo1/wp-content/plugins/booking-calendar/js/script.js?ver=10.7'></script>
<script src='https://www.google.com/recaptcha/api.js?ver=10.7'></script>
<script
src='https://optico.themestek.com/demo1/wp-content/plugins/booking-calendar/js/jquery.scrollTo-min.js?ver=10.7'></script>
<script
src='https://optico.themestek.com/demo1/wp-content/plugins/revslider/public/assets/js/jquery.themepunch.tools.min.js?ver=5.4.8.3'></script>
<script
src='https://optico.themestek.com/demo1/wp-content/plugins/revslider/public/assets/js/jquery.themepunch.revolution.min.js?ver=5.4.8.3'></script>
<script
src='https://optico.themestek.com/demo1/wp-content/plugins/themestek-optico-extras/js/jquery-resize.min.js?ver=5.2.9'></script>
<script
src='https://optico.themestek.com/demo1/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.70'></script>
<script>
/* <![CDATA[ */
var wc_add_to_cart_params = { "ajax_url": "\/demo1\/wp-admin\/admin-ajax.php", "wc_ajax_url": "\/demo1\/?wc-ajax=%%endpoint%%", "i18n_view_cart": "View cart", "cart_url": "https:\/\/optico.themestek.com\/demo1\/cart\/", "is_cart": "", "cart_redirect_after_add": "no" };
/* ]]> */
</script>
<script
src='https://optico.themestek.com/demo1/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=3.6.4'></script>
<script>
/* <![CDATA[ */
var wpgmza_google_api_status = { "message": "Enqueued", "code": "ENQUEUED" };
/* ]]> */
</script>
<script
src='https://optico.themestek.com/demo1/wp-content/plugins/wp-google-maps/wpgmza_data.js?ver=5.2.9'></script>
<script
src='https://optico.themestek.com/demo1/wp-content/plugins/js_composer/assets/js/vendors/woocommerce-add-to-cart.js?ver=6.0.3'></script>
<script
src='https://optico.themestek.com/demo1/wp-content/plugins/dk-pricr-responsive-pricing-table/inc/js/rpt.min.js?ver=5.2.9'></script>
<link rel='https://api.w.org/' href='https://optico.themestek.com/demo1/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD"
href="https://optico.themestek.com/demo1/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml"
href="https://optico.themestek.com/demo1/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.2.9" />
<meta name="generator" content="WooCommerce 3.6.4" />
<!-- Inline CSS Start -->
<!-- Inline CSS End -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-121833870-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-121833870-2');
</script> <noscript>
<style>
.woocommerce-product-gallery {
opacity: 1 !important;
}
</style>
</noscript>
<style>
.recentcomments a {
display: inline !important;
padding: 0 !important;
margin: 0 !important;
}
</style>
<meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress." />
<meta name="generator"
content="Powered by Slider Revolution 5.4.8.3 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
<link rel="icon"
href="https://optico.themestek.com/demo1/wp-content/uploads/sites/2/2018/06/cropped-favicon-32x32.png"
sizes="32x32" />
<link rel="icon"
href="https://optico.themestek.com/demo1/wp-content/uploads/sites/2/2018/06/cropped-favicon-192x192.png"
sizes="192x192" />
<link rel="apple-touch-icon-precomposed"
href="https://optico.themestek.com/demo1/wp-content/uploads/sites/2/2018/06/cropped-favicon-180x180.png" />
<meta name="msapplication-TileImage"
content="https://optico.themestek.com/demo1/wp-content/uploads/sites/2/2018/06/cropped-favicon-270x270.png" />
<script>function setREVStartSize(e) {
try {
e.c = jQuery(e.c); var i = jQuery(window).width(), t = 9999, r = 0, n = 0, l = 0, f = 0, s = 0, h = 0;
if (e.responsiveLevels && (jQuery.each(e.responsiveLevels, function (e, f) { f > i && (t = r = f, l = e), i > f && f > r && (r = f, n = e) }), t > r && (l = n)), f = e.gridheight[l] || e.gridheight[0] || e.gridheight, s = e.gridwidth[l] || e.gridwidth[0] || e.gridwidth, h = i / s, h = h > 1 ? 1 : h, f = Math.round(h * f), "fullscreen" == e.sliderLayout) { var u = (e.c.width(), jQuery(window).height()); if (void 0 != e.fullScreenOffsetContainer) { var c = e.fullScreenOffsetContainer.split(","); if (c) jQuery.each(c, function (e, i) { u = jQuery(i).length > 0 ? u - jQuery(i).outerHeight(!0) : u }), e.fullScreenOffset.split("%").length > 1 && void 0 != e.fullScreenOffset && e.fullScreenOffset.length > 0 ? u -= jQuery(window).height() * parseInt(e.fullScreenOffset, 0) / 100 : void 0 != e.fullScreenOffset && e.fullScreenOffset.length > 0 && (u -= parseInt(e.fullScreenOffset, 0)) } f = u } else void 0 != e.minHeight && f < e.minHeight && (f = e.minHeight); e.c.closest(".rev_slider_wrapper").css({ height: f })
} catch (d) { console.log("Failure at Presize of Slider:" + d) }
};</script>
<noscript>
<style>
.wpb_animate_when_almost_visible {
opacity: 1;
}
</style>
</noscript>
</head>
<body
class="error404 wc-pac-hide-sale-flash woocommerce-no-js ts-headerstyle-infostack themestek-wide themestek-page-full-width wpb-js-composer js-comp-ver-6.0.3 vc_responsive">
<div id="ts-home"></div>
<div class="main-holder">
<div id="page" class="hfeed site">
<header id="masthead" class=" ts-header-style-infostack themestek-main-menu-total-6">
<div
class="ts-header-block ts-mmenu-active-color-skin ts-dmenu-active-color-custom ts-dmenu-sep-white">
<div class="ts-search-overlay">
<div class="ts-search-outer">
<div class="ts-search-logo"><img
src="https//optico.themestek.com/demo1/wp-content/uploads/sites/2/2018/06/logo-searchbg.png"
alt="Optico Demo1" /></div>
<div class="ts-icon-close"></div>
<form method="get" class="ts-site-searchform"
action="https://optico.themestek.com/demo1">
<input type="search" class="field searchform-s" name="s"
placeholder="Type Word Then Enter" />
<button type="submit"><span class="ts-optico-icon-search"></span></button>
</form>
</div>
</div>
<div class="themestek-pre-header-wrapper ts-bgcolor-white ts-textcolor-dark">
<div class="themestek-pre-header-inner">
<div class="container">
<div class="ts-table ts-pre-header-content">
<div class="ts-table-cell">
<ul class="top-contact">
<li><i class="ts-optico-icon-location-pin"></i>7501 Carrlton
Cuevas Rd, Gulfport, MS, 395503</li>
</ul>
</div>
<div class="ts-table-cell ts-align-right">
<ul class="top-contact ts-highlight">
<li><i class="ti-time"></i>Mon - Sat 8.00 - 18.00</li>
</ul>
<div class="ts-last-sep-none">
<div class="themestek-social-links-wrapper">
<ul class="social-icons">
<li class="ts-social-facebook"><a class=" tooltip-top"
target="_blank" href="#"><i
class="ts-optico-icon-facebook"></i></a>
</li>
<li class="ts-social-twitter"><a class=" tooltip-top"
target="_blank" href="#"><i
class="ts-optico-icon-twitter"></i></a>
</li>
<li class="ts-social-flickr"><a class=" tooltip-top"
target="_blank" href="#"><i
class="ts-optico-icon-flickr"></i></a>
</li>
<li class="ts-social-linkedin"><a class=" tooltip-top"
target="_blank" href=""><i
class="ts-optico-icon-linkedin"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="site-header"
class="site-header ts-bgcolor-white ts-sticky-bgcolor-white ts-mmmenu-override-yes ts-above-content-yes">
<div class="site-header-main ts-table">
<div class="ts-header-top-wrapper container">
<div class="site-branding">
<div class="headerlogo themestek-logotype-image ts-stickylogo-no"><span
class="site-title"><a class="home-link"
href="https://optico.themestek.com/demo1/"
title="Optico Demo1" rel="home"><span
class="ts-sc-logo ts-sc-logo-type-image"><img
class="themestek-logo-img standardlogo"
alt="Optico Demo1"
src=" https://optico.themestek.com/demo1/wp-content/uploads/sites/2/2018/06/logo.png"></span></a></span>
<h2 class="site-description">Optometrist WordPress theme</h2>
</div>
</div><!-- .site-branding -->
<div class="ts-infostack-right-content">
<div class="info-widget">
<div class="info-widget-inner">
<div class="media-left">
<div class="icon"> <i class="ts-optico-icon-mail"></i></div>
</div>
<div class="media-right">
<h6>Email us </h6>
<h3>info@optico.com </h3>
</div>
</div>
</div>
<div class="info-widget">
<div class="info-widget-inner">
<div class="media-left">
<div class="icon"> <i
class="ts-optico-icon-headphone-alt"></i></div>
</div>
<div class="media-right">
<h6>Call us now </h6>
<h3>123456789 </h3>
</div>
</div>
</div>
<div class="info-widget">
<div class="info-widget-inner">
<div class="ts-vc_btn3-container ts-vc_btn3-inline"><a
class="ts-vc_general ts-vc_btn3 ts-vc_btn3-size-md ts-vc_btn3-shape-rounded ts-vc_btn3-style-outline ts-vc_btn3-weight-yes ts-vc_btn3-color-skincolor"
href="#" title="">APPOINTMENT</a></div>
</div>
</div>
</div>
</div><!-- .ts-header-top-wrapper -->
<div id="ts-stickable-header-w" class="ts-stickable-header-w ts-bgcolor-white"
style="height:60px">
<div id="site-header-menu" class="site-header-menu">
<div
class="site-header-menu-inner ts-stickable-header ts-header-menu-bg-color-darkgrey ts-bgcolor-darkgrey ts-sticky-bgcolor-darkgrey">
<div
class="site-header-menu-middle ts-header-menu-bg-color-darkgrey ts-bgcolor-darkgrey ts-sticky-bgcolor-darkgrey">
<div class="container ">
<div>
<nav id="site-navigation" class="main-navigation"
aria-label="Primary Menu" data-sticky-height="70">
<button id="menu-toggle" class="menu-toggle">
<span class="ts-hide">Toggle menu</span><i
class="ts-optico-icon-bars"></i>
</button>
<div class="nav-menu">
<ul id="menu-main-menu" class="nav-menu">
<li id="menu-item-5259"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-5259">
<a href="#">Home</a>
<ul class="sub-menu">
<li id="menu-item-5269"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5269">
<a
href="https://optico.themestek.com/demo1/homepage-1/">Homepage
1</a></li>
<li id="menu-item-5274"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-5274">
<a
href="https://optico.themestek.com/demo1/">Homepage
2</a></li>
<li id="menu-item-5270"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5270">
<a
href="https://optico.themestek.com/demo1/homepage-3/">Homepage
3</a></li>
</ul>
</li>
<li id="menu-item-5248"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-5248">
<a href="#">Pages</a>
<ul class="sub-menu">
<li id="menu-item-5271"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5271">
<a
href="https://optico.themestek.com/demo1/about-us/">About
Us</a></li>
<li id="menu-item-5272"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5272">
<a
href="https://optico.themestek.com/demo1/treatments/">Treatments</a>
</li>
<li id="menu-item-5277"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5277">
<a
href="https://optico.themestek.com/demo1/make-appointments/">Make
Appointments</a>
</li>
<li id="menu-item-5276"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5276">
<a
href="https://optico.themestek.com/demo1/our-doctors/">Our
Doctors</a></li>
<li id="menu-item-5278"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5278">
<a
href="https://optico.themestek.com/demo1/faq/">Faq</a>
</li>
<li id="menu-item-5263"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5263">
<a
href="https://optico.themestek.com/demo1/elements/">Elements</a>
</li>
</ul>
</li>
<li id="menu-item-5249"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-5249">
<a href="#">Services</a>
<ul class="sub-menu">
<li id="menu-item-5279"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5279">
<a
href="https://optico.themestek.com/demo1/services-style-1/">Services
Style 1</a></li>
<li id="menu-item-5280"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5280">
<a
href="https://optico.themestek.com/demo1/services-style-2/">Services
Style 2</a></li>
<li id="menu-item-5293"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5293">
<a
href="https://optico.themestek.com/demo1/services-style-3/">Services
Style 3</a></li>
<li id="menu-item-5261"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-5261">
<a href="#">Services
Single</a>
<ul class="sub-menu">
<li id="menu-item-5346"
class="menu-item menu-item-type-post_type menu-item-object-ts-portfolio menu-item-5346">
<a
href="https://optico.themestek.com/demo1/optometrist-service/paeditaric-ophthalmology/">Single
Style
1</a></li>
<li id="menu-item-5347"
class="menu-item menu-item-type-post_type menu-item-object-ts-portfolio menu-item-5347">
<a
href="https://optico.themestek.com/demo1/optometrist-service/surgical-procedures/">Single
Style
2</a></li>
<li id="menu-item-5348"
class="menu-item menu-item-type-post_type menu-item-object-ts-portfolio menu-item-5348">
<a
href="https://optico.themestek.com/demo1/optometrist-service/transitions-lenses/">Single
Style
3</a></li>
</ul>
</li>
</ul>
</li>
<li id="menu-item-5282"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5282">
<a
href="https://optico.themestek.com/demo1/before-after/">Before
& After</a></li>
<li id="menu-item-5260"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-5260">
<a href="#">Blog</a>
<ul class="sub-menu">
<li id="menu-item-5275"
class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-5275">
<a
href="https://optico.themestek.com/demo1/blog/">Blog
Large Image</a></li>
<li id="menu-item-5281"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5281">
<a
href="https://optico.themestek.com/demo1/blog-grid-view/">Blog
Grid View</a></li>
<li id="menu-item-5292"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5292">
<a
href="https://optico.themestek.com/demo1/blog-left-image-view/">Blog
Left Image</a></li>
<li id="menu-item-5268"
class="menu-item menu-item-type-post_type menu-item-object-post menu-item-5268">
<a
href="https://optico.themestek.com/demo1/2017/09/29/make-sure-your-childs-eyes-are-ready-for-school-and-activities/">Blog
Single View</a></li>
</ul>
</li>
<li id="menu-item-5273"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5273">
<a
href="https://optico.themestek.com/demo1/contact-us/">Contact
Us</a></li>
</ul>
</div>
</nav><!-- .main-navigation -->
</div>
<div class="ts-phone">
<div class="ts-search-overlay">
<div class="ts-search-outer">
<div class="ts-search-logo"><img
src="https//optico.themestek.com/demo1/wp-content/uploads/sites/2/2018/06/logo-searchbg.png"
alt="Optico Demo1" /></div>
<div class="ts-icon-close"></div>
<form method="get" class="ts-site-searchform"
action="https://optico.themestek.com/demo1">
<input type="search"
class="field searchform-s" name="s"
placeholder="Type Word Then Enter" />
<button type="submit"><span
class="ts-optico-icon-search"></span></button>
</form>
</div>
</div>
<div class="ts-header-icons "><span
class="ts-header-icon ts-header-wc-cart-link"><a
href="https://optico.themestek.com/demo1/cart/"><i
class="ts-optico-icon-shopping-cart"></i><span
class="number-cart">0</span></a></span><span
class="ts-header-icon ts-header-search-link"><a
href="#"><i
class="ts-optico-icon-search-1"></i></a></span>
</div>
</div>
</div>
</div>
</div>
</div><!-- .site-header-menu -->
</div>
</div><!-- .site-header-main -->
</div>
<div
class="ts-titlebar-wrapper ts-bg ts-bgcolor-custom ts-titlebar-align-left ts-textcolor-white ts-bgimage-yes">
<div class="ts-titlebar-wrapper-bg-layer ts-bg-layer"></div>
<div class="ts-titlebar entry-header">
<div class="ts-titlebar-inner-wrapper">
<div class="ts-titlebar-main">
<div class="container">
<div class="ts-titlebar-main-inner">
<div class="entry-title-wrapper">
<div class="container">
<h1 class="entry-title"> Madicine</h1>
</div>
</div>
<div class="breadcrumb-wrapper">
<div class="container">
<div class="breadcrumb-wrapper-inner">
<!-- Breadcrumb NavXT output --><span><a
title="Go to Optico Demo1."
href="https://optico.themestek.com/demo1"
class="home"><i
class="fa fa-home"></i></a></span><span
class="ts-bread-sep"> ―
</span><span><span>404</span></span>
</div>
</div>
</div>
</div>
</div>
</div><!-- .ts-titlebar-main -->
</div><!-- .ts-titlebar-inner-wrapper -->
</div><!-- .ts-titlebar -->
</div><!-- .ts-titlebar-wrapper -->
</div>
</header><!-- .site-header -->
<div id="content-wrapper" class="site-content-wrapper">
<div class="ts-bg-layer"></div>
<div id="content" class="site-content container">
<div id="content-inner" class="site-content-inner ">
<div id="primary" class="content-area ">
<main id="main" class="site-main">
<section class="error-404 not-found">
<div class="ts-big-icon"><i class="fa fa-thumbs-o-down"></i></div>
<header class="page-header">
<h1 class="page-title">404 ERROR</h1>
</header><!-- .page-header -->
<div class="page-content">
<p>This page may have been moved or deleted. Be sure to check your
spelling.</p>
</div><!-- .page-content -->
<div class="ts-404-search-form">
<form role="search" method="get" class="search-form"
action="https://optico.themestek.com/demo1/">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field"
placeholder="Search …" value="" name="s" />
</label>
<input type="submit" class="search-submit" value="Search" />
</form>
</div><!-- .ts-404-search-form -->
</section><!-- .error-404 -->
</main><!-- .site-main -->
</div><!-- .content-area -->
</div><!-- .site-content-inner -->
</div><!-- .site-content -->
</div><!-- .site-content-wrapper -->
<footer id="colophon" class="site-footer ">
<div class="footer_inner_wrapper footer ts-bg ts-bgcolor-grey ts-bgimage-no">
<div class="site-footer-bg-layer ts-bg-layer"></div>
<div class="site-footer-w">
<div class="footer-rows">
<div class="footer-rows-inner">
<div id="first-footer"
class="sidebar-container first-footer ts-bg ts-bgcolor-skincolor ts-textcolor-dark ts-bgimage-no"
role="complementary">
<div class="first-footer-bg-layer ts-bg-layer"></div>
<div class="container">
<div class="first-footer-inner">
<div class="row multi-columns-row">
<div
class="widget-area col-xs-12 col-sm-12 col-md-12 col-lg-12 first-widget-area">
<aside id="enhancedtextwidget-2"
class="ts-footer-cta widget widget_text enhanced-text-widget">
<div class="textwidget widget-text">
<section class="ts-vc_cta3-container">
<div
class="ts-vc_general ts-vc_cta3 ts-cta3-only ts-vc_cta3-style-classic ts-vc_cta3-shape-square ts-vc_cta3-align-left ts-vc_cta3-color-transparent ts-vc_cta3-icon-size-lg ts-vc_cta3-icons-left ts-vc_cta3-actions-right ts-cta3-without-desc">
<div
class="ts-vc_cta3-icons ts-wrap-cell">
<div
class="ts-vc_icon_element ts-vc_icon_element-outer ts-vc_icon_element-align-left ts-vc_icon_element-have-style">
<div
class="ts-vc_icon_element-inner ts-vc_icon_element-have-style-inner ts-vc_icon_element-color-black ts-vc_icon_element-size-lg ts-vc_icon_element-style-rounded ts-vc_icon_element-background ts-vc_icon_element-background-color-white">
<span
class="ts-vc_icon_element-icon themifyicon ti-headphone-alt"></span>
</div>
</div>
</div>
<div
class="ts-vc_cta3_content-container">
<div
class="ts-vc_cta3-content">
<div
class="ts-vc_cta3-content-header ts-wrap">
<div
class="ts-vc_cta3-headers ts-wrap-cell">
<h2 style="font-size:22px;line-height:36px;"
class="ts-custom-heading ">
If you
Have Any
Questions
Schedule
an
Appointment
<strong>With
Our
Doctor
OR
Call
Us On
(010)123-456-7890</strong>
</h2>
</div>
</div>
</div>
<div
class="ts-vc_cta3-actions">
<div
class="ts-vc_btn3-container ts-vc_btn3-right">
<a class="ts-vc_general ts-vc_btn3 ts-vc_btn3-size-md ts-vc_btn3-shape-rounded ts-vc_btn3-style-flat ts-vc_btn3-weight-yes ts-vc_btn3-color-black"
href=""
title=""> Make
an
Appointment</a>
</div>
</div>
</div>
</div>
</section>
</div>
</aside>
</div><!-- .widget-area -->
</div><!-- .row.multi-columns-row -->
</div><!-- .first-footer-inner -->
</div><!-- -->
</div><!-- #secondary -->
<div id="second-footer"
class="sidebar-container second-footer ts-bg ts-bgcolor-transparent ts-textcolor-dark ts-bgimage-no"
role="complementary">
<div class="second-footer-bg-layer ts-bg-layer"></div>
<div class="container">
<div class="second-footer-inner">
<div class="row multi-columns-row">
<div
class="widget-area col-xs-12 col-sm-6 col-md-3 col-lg-3">
<aside id="enhancedtextwidget-3"
class="widget widget_text enhanced-text-widget">
<div class="textwidget widget-text">
<div class="footerlogo"><img alt="Optico"
src="https//optico.themestek.com/wp-content/uploads/2018/06/logo.png"
height="54"></div>
Lorem ipsum dolor sit amet, consectetur
adipiscing elit, sed do eiusmod tempor asin
cididunt ut labore et dolore magna ali qua.
Lorem ipsum dolor sit amet.
<div class="vc_empty_space"
style="height: 30px"><span
class="vc_empty_space_inner"></span>
</div>
<div class="themestek-social-links-wrapper">
<ul class="social-icons">
<li class="ts-social-facebook"><a
class=" tooltip-top"
target="_blank" href="#"
data-tooltip="Facebook"><i
class="ts-optico-icon-facebook"></i></a>
</li>
<li class="ts-social-twitter"><a
class=" tooltip-top"
target="_blank" href="#"
data-tooltip="Twitter"><i
class="ts-optico-icon-twitter"></i></a>
</li>
<li class="ts-social-flickr"><a
class=" tooltip-top"
target="_blank" href="#"
data-tooltip="Flickr"><i
class="ts-optico-icon-flickr"></i></a>
</li>
<li class="ts-social-linkedin"><a
class=" tooltip-top"
target="_blank" href=""
data-tooltip="LinkedIn"><i
class="ts-optico-icon-linkedin"></i></a>
</li>
</ul>
</div>
</div>
</aside>
</div><!-- .widget-area -->
<div
class="widget-area col-xs-12 col-sm-6 col-md-3 col-lg-3">
<aside id="nav_menu-2" class="widget widget_nav_menu">
<h3 class="widget-title">Usefull Links</h3>
<div class="menu-footer-usefull-links-container">
<ul id="menu-footer-usefull-links-1"
class="menu">
<li
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5283">
<a
href="https://optico.themestek.com/demo1/make-appointments/">Make
Appointments</a></li>
<li
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5284">
<a
href="https://optico.themestek.com/demo1/contact-us/">Contact
Us</a></li>
<li
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5285">
<a
href="https://optico.themestek.com/demo1/treatments/">Treatments</a>
</li>
<li
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5286">
<a
href="https://optico.themestek.com/demo1/about-us/">About
Us</a></li>
<li
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5287">
<a
href="https://optico.themestek.com/demo1/our-doctors/">Our
Doctors</a></li>
<li
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5288">
<a
href="https://optico.themestek.com/demo1/before-after/">Before
& After</a></li>
</ul>
</div>
</aside>
</div><!-- .widget-area -->
<div
class="widget-area col-xs-12 col-sm-6 col-md-3 col-lg-3">
<aside id="nav_menu-3" class="widget widget_nav_menu">
<h3 class="widget-title">Our Services</h3>
<div class="menu-footer-service-menu-container">
<ul id="menu-footer-service-menu-1"
class="menu">
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5250">
<a href="#">Glaucoma Surgery</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5251">
<a href="#">Laser Eye Surgery</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5252">
<a href="#">Cataract Surgery</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5253">
<a href="#">Vision Correction</a>
</li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5254">
<a href="#">Oculoplastic
Surgery</a></li>
<li
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5255">
<a href="#">Vitreo Retinal
Surgery</a></li>