forked from SAHDigitals/SAHDigitals.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1165 lines (762 loc) · 35.9 KB
/
index.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" class="no-js">
<!-- Start Head -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="text" content="">
<meta name="author" content="">
<!-- description -->
<meta name="description"
content="SAH Digitals we are a bunch of enthustic mind who make your business reach million throught online marketing and create a digitial portfolio of your business to be accessable by anyone.">
<!-- keywords -->
<meta name="keywords" content="sahdigital,sahdigitals,SAH Digitals,virtual tour,360 vr,vr 360">
<!--Start Title -->
<title>SAH Digitals VR-Tours</title>
<!--End Title -->
<!-- Start Favicon -->
<link rel="shortcut icon" href="favicon.ico">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!-- <link rel="apple-touch-icon" href="images/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> -->
<!-- END Favicon -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet">
<!-- Plugins -->
<link href="css\plugins.min.css" rel="stylesheet">
<!-- Main Stylesheet -->
<link rel="stylesheet" href="css\style.css">
<!-- Responsive -->
<link rel="stylesheet" href="css\responsive.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<!-- End Head -->
<!-- Main Body -->
<body class="bg-black">
<a href="javascript:" id="return-to-top"><span data-uk-icon="icon: chevron-up; ratio: 1"></span></a>
<!-- Loading Screen -->
<div id="loader-wrapper">
<!-- Loading Image -->
<div class="loader-img"><img src="images\loading-screen.gif" alt=""></div>
<!-- END Loading Image -->
<!-- Loading Screen Split -->
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
<!-- End Loading Screen Split -->
</div>
<!-- End Loading Screen -->
<!-- Off-Canvas Navigation -->
<div id="offcanvas-nav" data-uk-offcanvas="mode: push; overlay: true; esc-close: true;">
</div>
<!-- End Off-Canvas Navigation -->
<!-- Home -->
<div class="bg-black uk-position-relative uk-visible-toggle uk-light" tabindex="-1" data-uk-slider="finite: true">
<!-- Slider Container -->
<ul class="uk-slider-items uk-child-width-1@m" data-uk-height-viewport="">
<li class="uk-transition-toggle uk-animation-toggle">
<!-- Overlay -->
<div class="bg-black uk-position-cover swipe-white">
<!-- Overlay Content -->
<div class="uk-position-center text-center text-gray-regular">
<!-- Heading -->
<h1
class="title-extra-large text-weight-200 text-gradient-gold sm-width-100 sm-margin-left-right-auto sm-text-weight-300 padding-bottom-10px">
<span class="font-dotted text-capatilize">SAH</span> Digitals</h1>
<!-- Text -->
<p class="text-extra-large text-weight-300 width-60 margin-left-right-auto">The best
Photographer & Virtual Tour Designer.</p>
<a class="btn btn-small btn-gold border-radius-50 sm-margin-left-right-auto sm-display-table"
href="page-works.html">See Our Works</a>
</div>
<!-- Overlay Content -->
</div>
<!-- End Overlay -->
</li>
</ul>
<a class="uk-position-center-left uk-position-small uk-hidden-hover overlay-black-dense width-50px height-50px line-height-35 border-radius-100 text-center"
href="#" data-uk-slidenav-previous="" data-uk-slider-item="previous"></a>
<a class="uk-position-center-right uk-position-small uk-hidden-hover overlay-black-dense width-50px height-50px line-height-35 border-radius-100 text-center"
href="#" data-uk-slidenav-next="" data-uk-slider-item="next"></a>
</div>
<!-- End Home -->
<!-- Header -->
<div id="header" class="z-index-999">
</div>
<!-- End Header Light -->
<!-- About -->
<div id="about" class="image-bg overlay-black-dense padding-top-bottom-150px">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row"
data-uk-scrollspy="cls: uk-animation-slide-bottom-medium; target: > div ; delay: 150; repeat: false">
<!-- Column -->
<div class="col-md-8 col-sm-12 col-xs-12 center-col text-center"
data-uk-scrollspy="cls: uk-animation-slide-left-medium; target: > div ; delay: 50; repeat: false">
<!-- Title -->
<h1
class="title-extra-large text-weight-200 sm-width-90 sm-margin-left-right-auto text-gradient-gold sm-text-weight-300 padding-bottom-10px">
<span class="font-dotted text-capitalize">SAH</span> Digitals</h1>
<!-- Semi Title -->
<h6 class="text-weight-200 roboto text-white margin-left-right-auto no-margin-bottom">Creative
Photography and Virtual Tour of your Business <br><span class="text-lime">and many more.</span>
</h6>
<!-- Separator -->
<div
class="separator width-30px center-col bottom-border border-2px border-color-gray-dark margin-top-bottom-30px sm-margin-left-right-auto">
</div>
<!-- Text Description -->
<p
class="text-medium text-weight-300 text-gray-light width-75 margin-left-right-auto margin-bottom-30px">
We would love to hear from you or in person and talk about your work.<br />Reach us throught
contact page.</p>
<!-- Button -->
<a class="btn btn-small btn-white border-radius-50 sm-margin-left-right-auto sm-display-table"
href="#contact">Contact</a>
</div>
<!-- End Column -->
</div>
<!-- End Row -->
</div>
<!-- End Container -->
</div>
<!-- End About -->
<!-- Services -->
<div id="services" class="padding-top-bottom-150px image-bg-2 overlay-black-dense">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- Product Description Column -->
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 center-col text-center uk-flex uk-flex-middle"
data-uk-scrollspy="cls: uk-animation-slide-right-medium; target: > div ; delay: 50; repeat: false">
<div class="text-left sm-text-center sm-width-100">
<!-- Title -->
<h1
class="title-extra-large text-weight-200 text-gradient-gold sm-width-90 margin-bottom-20px sm-margin-left-right-auto sm-text-weight-300">
Our Services.</h1>
<!-- Semi Title -->
<h6 class="text-weight-200 roboto text-white margin-left-right-auto">We provide premium<br><span
class="text-lime">quality services.</span></h6>
<!-- Button -->
<a class="btn btn-small btn-white border-radius-50 sm-margin-left-right-auto sm-display-table"
href="page-about.html">Read More</a>
</div>
</div>
<div class="col-lg-6 col-md-12 col-xs-12 center-col text-center md-margin-top-75px">
<!-- Animation -->
<div
data-uk-scrollspy="cls: uk-animation-slide-right-small; target: > .row > div ; delay: 50; repeat: false">
<!-- Row -->
<div class="row">
<!-- Column -->
<div class="col-md-6 col-sm-12 col-xs-12 margin-bottom-100px text-left sm-text-center">
<span class="text-gold ext-center" data-uk-icon="icon: camera; ratio: 1.5"></span>
<h6
class="text-weight-200 roboto margin-top-20px margin-bottom-15px text-white sm-text-weight-300">
Portraits & Landscapges.</h6>
<a href="#" class="text-underline roboto no-margin text-weight-400 text-medium">Check
Out.</a>
</div>
<!-- End Column -->
<!-- Column -->
<div class="col-md-6 col-sm-12 col-xs-12 margin-bottom-100px text-left sm-text-center">
<span class="text-gold ext-center" data-uk-icon="icon: video-camera; ratio: 1.5"></span>
<h6
class="text-weight-200 roboto margin-top-20px margin-bottom-15px text-white sm-text-weight-300">
Cinematography.</h6>
<a href="#" class="text-underline roboto no-margin text-weight-400 text-medium">Check
Out.</a>
</div>
<!-- End Column -->
<!-- Column -->
<div class="col-md-6 col-sm-12 col-xs-12 margin-bottom-100px text-left sm-text-center">
<span class="text-gold ext-center" uk-svg="./images/tiny-planet.svg"
style="width: 2rem;"></span>
<h6
class="text-weight-200 roboto margin-top-20px margin-bottom-15px text-white sm-text-weight-300">
Tiny Planets.</h6>
<a href="#" class="text-underline roboto no-margin text-weight-400 text-medium">Check
Out.</a>
</div>
<!-- End Column -->
<!-- Column -->
<div class="col-md-6 col-sm-12 col-xs-12 margin-bottom-100px text-left sm-text-center">
<span class="text-gold ext-center" uk-svg="./images/vr-cardboard-solid.svg"
style="width: 2rem;"></span>
<h6
class="text-weight-200 roboto margin-top-20px margin-bottom-15px text-white sm-text-weight-300">
Virtual Tour.</h6>
<a href="page-works.html"
class="text-underline roboto no-margin text-weight-400 text-medium">Check
Out.</a>
</div>
<!-- End Column -->
<!-- Column -->
<div class="col-md-6 col-sm-12 col-xs-12 sm-margin-bottom-100px text-left sm-text-center">
<span class="text-gold ext-center" data-uk-icon="icon: tag; ratio: 1.5"></span>
<h6
class="text-weight-200 roboto margin-top-20px margin-bottom-15px text-white sm-text-weight-300">
Branding.</h6>
<a href="#" class="text-underline roboto no-margin text-weight-400 text-medium">Check
Out.</a>
</div>
<!-- End Column -->
<!-- Column -->
<div class="col-md-6 col-sm-12 col-xs-12 text-left sm-text-center">
<i class="fas fa-chart-line text-gold ext-center" style="font-size: 2rem"></i>
<h6
class="text-weight-200 roboto margin-top-20px margin-bottom-15px text-white sm-text-weight-300">
Marketing Solutions.</h6>
<a href="#" class="text-underline roboto no-margin text-weight-400 text-medium">Check
Out.</a>
</div>
<!-- End Column -->
</div>
<!-- End Row -->
</div>
<!-- End Animation -->
</div>
</div>
<!-- End Row -->
</div>
<!-- End Container -->
</div>
<!-- End Services -->
<!-- Counter -->
<div class="image-bg-5 overlay-black-dense padding-top-bottom-150px">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row"
data-uk-scrollspy="cls: uk-animation-slide-bottom-medium; target: > div ; delay: 150; repeat: false">
<!-- Column -->
<div class="col-md-8 col-sm-12 col-xs-12 center-col text-center"
data-uk-scrollspy="cls: uk-animation-slide-left-medium; target: > div ; delay: 50; repeat: false">
<!-- Title -->
<h1
class="title-extra-large text-weight-200 sm-width-90 margin-bottom-10px sm-margin-left-right-auto text-gradient-gold sm-text-weight-300">
Facts.</h1>
<!-- Separator -->
<div
class="separator width-30px center-col bottom-border border-2px border-color-gray-dark margin-top-bottom-30px m-margin-left-right-auto">
</div>
<!-- Semi Title -->
<h6 class="text-weight-200 roboto text-white margin-left-right-auto no-margin-bottom">We do some
pretty<br><span class="text-lime">creative stuff to be honest.</span></h6>
</div>
<!-- End Column -->
</div>
<!-- End Row -->
<!-- Animation -->
<div class="margin-top-75px"
data-uk-scrollspy="cls: uk-animation-slide-bottom-medium; target: > .row > div ; delay: 50; repeat: false">
<!-- Row -->
<div class="row">
<!-- Counter -->
<div class="col-md-3 col-sm-6 col-xs-12 counter-box text-center sm-margin-bottom-75px">
<span class="margin-bottom-30px text-gray-light" data-uk-icon="icon: camera; ratio: 1.5"></span>
<h2 id="photo-count" class="timer text-gray-dark text-white roboto text-weight-100 no-margin"
data-speed="3000" data-to="412">0</h2>
<p class="text-medium text-gold text-center text-weight-300 margin-top-20px no-margin-bottom">
Photo Taken</p>
</div>
<!-- End Counter -->
<!-- Counter -->
<div class="col-md-3 col-sm-6 col-xs-12 counter-box text-center sm-margin-bottom-75px">
<span class="margin-bottom-30px text-gray-light" data-uk-icon="icon: happy; ratio: 1.5"></span>
<h2 class="timer text-gray-dark text-white roboto text-weight-100 no-margin" data-speed="3000"
data-to="568">568</h2>
<p class="text-medium text-gold text-center text-weight-300 margin-top-25px no-margin-bottom">
Happy Clients</p>
</div>
<!-- End Counter -->
<!-- Counter -->
<div class="col-md-3 col-sm-6 col-xs-12 counter-box text-center xs-margin-bottom-75px">
<span class="margin-bottom-30px text-gray-light" data-uk-icon="icon: star; ratio: 1.5"></span>
<h2 id="view-count" class="timer text-gray-dark text-white roboto text-weight-100 no-margin"
data-speed="3000" data-to="287442">0</h2>
<p class="text-medium text-gold text-center text-weight-300 margin-top-25px no-margin-bottom">
Views</p>
</div>
<!-- End Counter -->
<!-- Counter -->
<div class="col-md-3 col-sm-6 col-xs-12 counter-box text-center">
<span class="margin-bottom-30px text-gray-light" data-uk-icon="icon: clock; ratio: 1.5"></span>
<h2 class="timer text-gray-dark text-white roboto text-weight-100 no-margin" data-speed="3000"
data-to="4"></h2>
<p class="text-medium text-gold text-center text-weight-300 margin-top-25px no-margin-bottom">
Years in The Business</p>
</div>
<!-- End Counter -->
</div>
<!-- End Row -->
</div>
<!-- End Animation -->
</div>
<!-- End Container -->
</div>
<!-- End Counter -->
<!-- Featured Works-->
<div id="works" class="bg-black padding-top-bottom-150px">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row"
data-uk-scrollspy="cls: uk-animation-slide-bottom-medium; target: > div ; delay: 150; repeat: false">
<!-- Column -->
<div class="col-md-8 col-sm-12 col-xs-12 center-col text-center"
data-uk-scrollspy="cls: uk-animation-slide-left-medium; target: > div ; delay: 50; repeat: false">
<!-- Title -->
<h1
class="title-extra-large text-weight-200 sm-width-90 margin-bottom-10px sm-margin-left-right-auto text-gradient-gold sm-text-weight-300">
Featured Works.</h1>
<!-- Separator -->
<div
class="separator width-30px center-col bottom-border border-2px border-color-gray-dark margin-top-bottom-30px sm-margin-left-right-auto">
</div>
<!-- Semi Title -->
<h6 class="text-weight-200 roboto text-white margin-left-right-auto no-margin-bottom">Award winning
and<br><span class="text-lime">critically acclaimed works.</span></h6>
</div>
<!-- End Column -->
</div>
<!-- End Row -->
</div>
<!-- End Container -->
</div>
<!-- End Featured Works -->
<!-- Featured Project -->
<div class="row no-margin no-padding bg-black">
<!-- Column -->
<div class="col-10 col-lg-6 col-md-11 col-sm-11 col-xs-11 no-padding center-col"
data-uk-scrollspy="cls: uk-animation-slide-left-medium; target: > div ; delay: 50; repeat: false">
<!-- Image -->
<div class="images" data-uk-lightbox="animation: fade">
<!-- <a href="images\backgrounds\bg-08.jpg" class="uk-inline-clip uk-transition-toggle" tabindex="0"
data-caption="This is a caption."> -->
<!-- Image -->
<!-- <img src="images\backgrounds\bg-08.jpg" alt=""> -->
<!-- </a> -->
<iframe
src="https://www.google.com/maps/embed?pb=!4v1579092744617!6m8!1m7!1sCAoSLEFGMVFpcFBEcThYaTgwNWVZb0k0ekM0YUxIUnJlSXFwX3ZDSThEd3ZkU2V5!2m2!1d12.6089252!2d80.1895117!3f220.90492749579755!4f23.201106258333255!5f0.7820865974627469"
width="100%" frameborder="0" style="border:0;" allowfullscreen=""></iframe>
</div>
<!-- End Image -->
</div>
<!-- End Column -->
<!-- Column -->
<div
class="col-lg-6 col-md-12 col-sm-12 col-xs-12 no-margin no-padding uk-flex uk-flex-middle md-padding-top-bottom-150px md-padding-left-15px md-padding-right-15px">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row"
data-uk-scrollspy="cls: uk-animation-slide-right-medium; target: > div ; delay: 50; repeat: false">
<!-- Product Description Column -->
<div class="col-lg-8 col-md-12 col-sm-12 col-xs-12 center-col text-left md-text-center">
<h4 class="text-weight-100 roboto text-white margin-bottom-35px sm-text-weight-200">360° View
of <span class="text-gradient-gold">Pancha Rathas in Chennai</span>.</h4>
<ul class="margin-bottom-45px no-margin-top no-padding no-list-style">
<li class="padding-bottom-10px text-weight-300 roboto text-gray-light text-medium"><span
class="text-gold margin-right-10px" data-uk-icon="icon: minus; ratio: 1"></span>
360 View or Virtual Reality (VR).</li>
<li class="padding-top-bottom-10px text-weight-300 roboto text-gray-light text-medium"><span
class="text-gold margin-right-10px" data-uk-icon="icon: minus; ratio: 1"></span>
Swipe left or right on 360-Photo to experience this VR.</li>
</ul>
<a class="btn btn-small btn-gold border-radius-50 sm-display-table no-margin-bottom md-margin-left-right-auto"
href="page-works.html" target="_self">See More</a>
</div>
<!-- End Product Description Column -->
</div>
<!-- End Row -->
</div>
<!-- End Container -->
</div>
<!-- End Column -->
</div>
<!-- End Featured Project -->
<!-- Featured Project -->
<div class="row no-margin no-padding bg-black md-bg-gray-extra-dark uk-flex-row-reverse">
<!-- Column -->
<div class="col-10 col-lg-6 col-md-11 col-sm-11 col-xs-11 no-padding center-col "
data-uk-scrollspy="cls: uk-animation-slide-right-medium; target: > div ; delay: 50; repeat: false">
<!-- Image -->
<div class="images" data-uk-lightbox="animation: fade">
<iframe
src="https://www.google.com/maps/embed?pb=!4v1579092154859!6m8!1m7!1sCAoSLEFGMVFpcE1qNi1xMkRYbkdCb3lWc1h5d24xb1c0Y2dVckNqSklqTzNseXl0!2m2!1d17.34948597947164!2d78.49395062774418!3f166.04174099650402!4f-10.831024467155856!5f0.7820865974627469"
width="100%" height="500px" frameborder="0" style="border:0;" allowfullscreen=""></iframe>
</div>
<!-- End Image -->
</div>
<!-- End Column -->
<!-- Column -->
<div
class="col-lg-6 col-md-12 col-sm-12 col-xs-12 no-margin no-padding uk-flex uk-flex-middle md-padding-top-bottom-150px md-padding-left-15px md-padding-right-15px">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row"
data-uk-scrollspy="cls: uk-animation-slide-left-medium; target: > div ; delay: 50; repeat: false">
<!-- Product Description Column -->
<div class="col-lg-8 col-md-12 col-sm-12 col-xs-12 center-col text-left md-text-center">
<h4 class="text-weight-100 roboto text-white margin-bottom-15px sm-text-weight-200">Walkthrough
of <span class="text-gradient-gold">Fashion Fever</span>.</h4>
<ul class="margin-bottom-45px no-margin-top no-padding no-list-style">
<li class="padding-bottom-10px text-weight-300 roboto text-gray-light text-medium"><span
class="text-gold margin-right-10px" data-uk-icon="icon: minus; ratio: 1"></span>
Have a complete tour of your any business.</li>
<li class="padding-bottom-10px text-weight-300 roboto text-gray-light text-medium"><span
class="text-gold margin-right-10px" data-uk-icon="icon: minus; ratio: 1"></span>
Experience this walkthrough using arrow button in a 360-Photo.</li>
<li class="padding-bottom-10px text-weight-300 roboto text-gray-light text-medium"><span
class="text-gold margin-right-10px" data-uk-icon="icon: minus; ratio: 1"></span>
No validity required because you are getting lifetime subscription on it.</li>
<a class="btn btn-small btn-gold border-radius-50 sm-display-table no-margin-bottom md-margin-left-right-auto"
href="page-works.html" target="_self">See more</a>
</div>
<!-- End Product Description Column -->
</div>
<!-- End Row -->
</div>
<!-- End Container -->
</div>
<!-- End Column -->
</div>
<!-- End Featured Project -->
<!-- Featured Project -->
<div class="row no-margin no-padding bg-black md-bg-gray-extra-dark">
<!-- Column -->
<div class="col-10 col-lg-6 col-md-11 col-sm-11 col-xs-11 no-padding center-col"
data-uk-scrollspy="cls: uk-animation-slide-right-medium; target: > div ; delay: 50; repeat: false">
<!-- Image -->
<div class="images" data-uk-lightbox="animation: fade">
<iframe
src="https://www.google.com/maps/embed?pb=!4v1579092358989!6m8!1m7!1sCAoSLEFGMVFpcE1HWkJXLUFrNEVXNmtDeWJPbDZPbXg4ZXJxSFJ6QVFxazMwUGhq!2m2!1d17.3433725!2d78.46635237!3f179.08196262642574!4f21.286900467204063!5f0.4000000000000002"
width="100%" height="500px" frameborder="0" style="border:0;" allowfullscreen=""></iframe>
</div>
<!-- End Image -->
</div>
<!-- End Column -->
<!-- Column -->
<div
class="col-lg-6 col-md-12 col-sm-12 col-xs-12 no-margin no-padding uk-flex uk-flex-middle md-padding-top-bottom-150px md-padding-left-15px md-padding-right-15px">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row"
data-uk-scrollspy="cls: uk-animation-slide-left-medium; target: > div ; delay: 50; repeat: false">
<!-- Product Description Column -->
<div class="col-lg-8 col-md-12 col-sm-12 col-xs-12 center-col text-left md-text-center">
<h4 class="text-weight-100 roboto text-white margin-bottom-15px sm-text-weight-200">Complete
Walkthrough and Flooring of <span class="text-gradient-gold">Crsytal Palace</span>.</h4>
<ul class="margin-bottom-45px no-margin-top no-padding no-list-style">
<li class="padding-bottom-10px text-weight-300 roboto text-gray-light text-medium"><span
class="text-gold margin-right-10px" data-uk-icon="icon: minus; ratio: 1"></span>
Have a complete tour of your business using flooring.</li>
<li class="padding-bottom-10px text-weight-300 roboto text-gray-light text-medium"><span
class="text-gold margin-right-10px" data-uk-icon="icon: minus; ratio: 1"></span>
Experience this walkthrough using arrow button in a 360-Photo.</li>
<li class="padding-bottom-10px text-weight-300 roboto text-gray-light text-medium"><span
class="text-gold margin-right-10px" data-uk-icon="icon: minus; ratio: 1"></span>
For reaching to other floors you can find button "FF & GF" on right side in a frame
which means First Floor and Ground Floor</li>
<li class="padding-bottom-10px text-weight-300 roboto text-gray-light text-medium"><span
class="text-gold margin-right-10px" data-uk-icon="icon: minus; ratio: 1"></span>
No validity required because you are getting lifetime subscription on it.</li>
<a class="btn btn-small btn-gold border-radius-50 sm-display-table no-margin-bottom md-margin-left-right-auto"
href="page-works.html" target="_self">See more</a>
</div>
<!-- End Product Description Column -->
</div>
<!-- End Row -->
</div>
<!-- End Container -->
</div>
<!-- End Column -->
</div>
<!-- End Featured Project -->
<!-- Pricing Table -->
<div id="pricing" class="image-bg-6 overlay-black-dense padding-top-bottom-150px">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row"
data-uk-scrollspy="cls: uk-animation-slide-bottom-medium; target: > div ; delay: 150; repeat: false">
<!-- Column -->
<div class="col-md-8 col-sm-12 col-xs-12 center-col text-center"
data-uk-scrollspy="cls: uk-animation-slide-left-medium; target: > div ; delay: 50; repeat: false">
<!-- Title -->
<h1
class="title-extra-large text-weight-200 sm-width-90 margin-bottom-10px sm-margin-left-right-auto text-gradient-gold sm-text-weight-300">
Prices.</h1>
<!-- Separator -->
<div
class="separator width-30px center-col bottom-border border-2px border-color-gray-dark margin-top-bottom-30px sm-margin-left-right-auto">
</div>
<!-- Semi Title -->
<h6 class="text-weight-200 roboto text-white margin-left-right-auto no-margin-bottom">We do some
pretty<br><span class="text-lime">creative stuff to be honest.</span></h6>
</div>
<!-- End Column -->
</div>
<!-- End Row -->
<!-- Animation -->
<div class="margin-top-75px"
data-uk-scrollspy="cls: uk-animation-slide-bottom-medium; target: > .row > div ; delay: 100; repeat: false">
<!-- Row -->
<div class="row">
<!-- Column -->
<div class="col-lg-4 col-md-12 col-sm-12 col-xs-12 sm-margin-bottom-25px">
<!-- Pricing Table Header -->
<div class="pricing-table-header text-center bg-black padding-25px padding-top-50px">
<span class="margin-bottom-30px text-gray-light"
data-uk-icon="icon: camera; ratio: 2"></span>
<h3 class="roboto no-margin-bottom text-weight-200 text-gradient-gold sm-text-weight-400">
₹1k/day</h3>
<h5 class="margin-top-30px text-weight-300 text-gray-light sm-text-weight-400">Portraits
</h5>
</div>
<!-- End Pricing Table Header -->
<!-- Pricing Table Body -->
<div
class="pricing-table-body text-center bg-black padding-25px padding-bottom-50px no-padding-top">
<!-- Table Features -->
<ul class="margin-bottom-50px no-margin-top no-padding no-list-style">
<li class="padding-bottom-10px text-weight-300 roboto text-gray-light text-medium">One
Session</li>
<li class="padding-top-bottom-10px text-weight-300 roboto text-gray-light text-medium">1
Photographer</li>
<li class="padding-top-bottom-10px text-weight-300 roboto text-gray-light text-medium">
100 Photos</li>
<li class="padding-top-bottom-10px text-weight-300 roboto text-gray-light text-medium">
25 Edited Photos</li>
<li class="text-gray-light roboto text-weight-300 padding-top-10px text-medium">
Professional Editing (Charges apply)</li>
</ul>
<!-- End Table Features -->
<!-- Button -->
<a href="#"
class="btn btn-small btn-white border-radius-50 sm-display-table sm-margin-left-right-auto no-margin-bottom">Get
Now</a>
</div>
<!-- End Pricing Table Body -->
</div>
<!-- End Column -->
<!-- Column -->
<div class="col-lg-4 col-md-12 col-sm-12 col-xs-12 sm-margin-bottom-25px">
<!-- Pricing Table Header -->
<div class="pricing-table-header text-center bg-black padding-25px padding-top-50px">
<span class="margin-bottom-30px text-gray-light"
data-uk-icon="icon: video-camera; ratio: 2"></span>
<h3 class="roboto no-margin-bottom text-weight-200 text-gradient-gold sm-text-weight-400">
₹5k/day</h3>
<h5 class="margin-top-30px text-weight-300 text-gray-light sm-text-weight-400">
Cinematography</h5>
</div>
<!-- End Pricing Table Header -->
<!-- Pricing Table Body -->
<div
class="pricing-table-body text-center bg-black padding-25px padding-bottom-50px no-padding-top">
<!-- Table Features -->
<ul class="margin-bottom-50px no-margin-top no-padding no-list-style">
<li class="padding-bottom-10px text-weight-300 roboto text-gray-light text-medium">1
Session</li>
<li class="padding-top-bottom-10px text-weight-300 roboto text-gray-light text-medium">1
Cameraman</li>
<li class="padding-top-bottom-10px text-weight-300 roboto text-gray-light text-medium">
3Hr Video</li>
<li class="padding-top-bottom-10px text-weight-300 roboto text-gray-light text-medium">
Professional Editing (Charges Apply)</li>
<li class="text-gray-light roboto text-weight-300 padding-top-10px text-medium">Customer
Support</li>
</ul>
<!-- End Table Features -->
<!-- Button -->
<a href="#"
class="btn btn-small btn-white border-radius-50 sm-display-table sm-margin-left-right-auto no-margin-bottom">Get
Now</a>
</div>
<!-- End Pricing Table Body -->
</div>
<!-- End Column -->
<!-- Column -->
<div class="col-lg-4 col-md-12 col-sm-12 col-xs-12">
<!-- Pricing Table Header -->
<div class="pricing-table-header text-center bg-black padding-25px padding-top-50px">
<span class="margin-bottom-30px text-gray-light" data-uk-icon="icon: bolt; ratio: 2"></span>
<h3 class="roboto no-margin-bottom text-weight-200 text-gradient-gold sm-text-weight-400">
Cost/click</h3>
<h5 class="margin-top-30px text-weight-300 text-gray-light sm-text-weight-400">360° View
</h5>
</div>
<!-- End Pricing Table Header -->
<!-- Pricing Table Body -->
<div
class="pricing-table-body text-center bg-black padding-25px padding-bottom-50px no-padding-top">
<!-- Table Features -->
<ul class="margin-bottom-50px no-margin-top no-padding no-list-style">
<div
class="border-1px border-color-gray-dark border-style-solid padding-top-10px margin-bottom-10px">
<li class="padding-bottom-10px text-weight-300 roboto text-gray-light text-medium">
Hiring Photographer for <span class="text-lime">Business</span></li>
<li
class="padding-top-bottom-10px text-weight-300 roboto text-gray-light text-medium">
₹500/click</li>
</div>
<br />
<div class="border-1px border-color-gray-dark border-style-solid padding-bottom-10px">
<li
class="padding-top-bottom-10px text-weight-300 roboto text-gray-light text-medium">
Hiring Photographer for <span class="text-lime">occasion</span></li>
<li
class="padding-top-bottom-10px text-weight-300 roboto text-gray-light text-medium">
₹1500/day</li>
</div>
</ul>
<!-- End Table Features -->
<!-- Button -->
<a href="#"
class="btn btn-small btn-white border-radius-50 sm-display-table sm-margin-left-right-auto no-margin-bottom">Get
Now</a>
</div>
<!-- End Pricing Table Body -->
</div>
<!-- End Column -->
</div>
<!-- End Row -->
</div>
<!-- End Animation -->
</div>
<!-- End Container -->
</div>
<!-- End Pricing Table -->
<!-- FAQ -->
<div class="row no-margin no-padding bg-black md-bg-gray-extra-dark">
<!-- Column -->
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 no-margin no-padding"
data-uk-scrollspy="cls: uk-animation-slide-left-medium; target: > div ; delay: 50; repeat: false">
<!-- Image -->
<div class="images" data-uk-lightbox="animation: fade">
<a href="images\backgrounds\bg-13.jpg" class="uk-inline-clip uk-transition-toggle" tabindex="0"
data-caption="This is a caption.">
<!-- Image -->
<img src="images\backgrounds\bg-13.jpg" alt="">
</a>
</div>
<!-- End Image -->
</div>
<!-- End Column -->
<!-- Column -->
<div
class="col-lg-6 col-md-12 col-sm-12 col-xs-12 no-margin no-padding uk-flex uk-flex-middle md-padding-top-bottom-150px md-padding-left-15px md-padding-right-15px">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row"