forked from rohansh1997/SAP-Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient view.html
More file actions
1170 lines (1086 loc) · 51.5 KB
/
client view.html
File metadata and controls
1170 lines (1086 loc) · 51.5 KB
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>
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Wizard Wheezes</title>
<!-- Mobile Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.ico">
<!-- Web Fonts -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700,300&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:700,400,300' rel='stylesheet' type='text/css'>
<!-- Bootstrap core CSS -->
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- Font Awesome CSS -->
<link href="fonts/font-awesome/css/font-awesome.css" rel="stylesheet">
<!-- Plugins -->
<link href="css/animations.css" rel="stylesheet">
<!-- Core CSS file -->
<link href="css/style.css" rel="stylesheet">
<!-- Custom css -->
<link href="css/custom.css" rel="stylesheet">
<link href="formstyle.css" rel="stylesheet">
</head>
<body class="no-trans">
<!-- scrollToTop -->
<!-- ================ -->
<div class="scrollToTop"><i class="icon-up-open-big"></i></div>
<!-- header start -->
<!-- ================ -->
<header class="header fixed clearfix navbar navbar-fixed-top">
<div class="container">
<div class="row">
<div class="col-md-4">
<!-- header-left start -->
<!-- ================ -->
<div class="header-left clearfix">
<!-- logo -->
<div class="logo smooth-scroll">
<a href="#banner"><img id="logo" src="images/logo.png" alt="Hogwarts"></a>
</div>
<!-- name-and-slogan -->
<div class="site-name-and-slogan smooth-scroll">
<div class="site-name"><a href="#banner">Wizard Wheezes</a></div>
<div class="site-slogan">Hogwarts School of Witchcraft and Wizardry</div>
</div>
</div>
<!-- header-left end -->
</div>
<div class="col-md-8">
<!-- header-right start -->
<!-- ================ -->
<div class="header-right clearfix">
<!-- main-navigation start -->
<!-- ================ -->
<div class="main-navigation animated">
<!-- navbar start -->
<!-- ================ -->
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<!-- Toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse scrollspy smooth-scroll" id="navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#banner">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#clients">Client Reviews</a></li>
<li><a href="#contact">Suggestions</a></li>
</ul>
</div>
</div>
</nav>
<!-- navbar end -->
</div>
<!-- main-navigation end -->
</div>
<!-- header-right end -->
</div>
</div>
</div>
</header>
<!-- header end -->
<!-- banner start -->
<!-- ================ -->
<div id="banner" class="banner">
<div class="banner-image"></div>
<div class="banner-caption">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 object-non-visible" data-animation-effect="fadeIn">
<h1 class="text-center">We are <span>Wizard Wheezes Chitkara</span></h1>
<p class="lead text-center"> Hogwarts School of Witchcraft and Wizardry is a fictional boarding school in J. K. Rowling's best-selling Harry Potter series. It is a school of magic for witches and wizards between the ages of eleven and seventeen living in the United Kingdom, the Republic of Ireland and Scotland. </p>
</div>
</div>
</div>
</div>
</div>
<!-- banner end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix object-non-visible" data-animation-effect="fadeIn">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 id="about" class="title text-center">About <span>Wizard Wheezes</span></h1>
<p class="lead text-center">Wizard Wheezes is a complete technical help support, ready to help our Wizards.</p>
<div class="space"></div>
<div class="row">
<div class="col-md-6">
<img src="images/section-image-1.png" alt="">
<div class="space"></div>
</div>
<div class="col-md-6">
<p>Hogwarts School of Witchcraft and Wizardry is a fictional boarding school in J. K. Rowling's best-selling Harry Potter series. It is a school of magic for witches and wizards between the ages of eleven and seventeen living in the United Kingdom, the Republic of Ireland and Scotland. </p>
<p>Our dear Wizards, often encounter day to day problems which require expert help and service. This is what we are here for! </p>
<ul class="list-unstyled">
<li><i class="fa fa-caret-right pr-10 text-colored"></i> Best in class Service</li>
<li><i class="fa fa-caret-right pr-10 text-colored"></i> Live Chat Support</li>
<li><i class="fa fa-caret-right pr-10 text-colored"></i> Quick Issue Rederessal </li>
<li><i class="fa fa-caret-right pr-10 text-colored"></i> Social Forums</li>
</ul>
</div>
</div>
<div class="space"></div>
<h2>“ You can do unfocused and uncontrolled magic without a wand but to do really good spells, yes, you need a wand. ” </h2>
<div class="row">
<div class="col-md-6">
<p>A great deal of effort is expended in keeping the Muggles unaware of magic. Originally the two worlds co-existed; however, persecution of those with magic meant magical laws have been put in place over the centuries, designed to keep the existence of the magical world hidden from Muggles. The first and most important statute is the International Statute of Wizarding Secrecy of 1692. Enchantment of Muggle artifacts is forbidden; under-age wizards are restricted from using magic outside school, and any deliberate revelation of magical ability to the Muggle community is punishable. However, allowances are made for the use of magic in the presence of a Muggle in case of a life-threatening situation (for the wizard or the Muggle). These laws are enforced by the Ministry of Magic, while a special arm of it, the Obliviators, has the job of making certain that Muggles who have seen magic in action will be left with no "inconvenient" memories. Exceptions to the statute of secrecy include wizards' Muggle relatives and high-ranking political leaders; the Prime Minister of the United Kingdom, for instance.</p>
</div>
<div class="col-md-6">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
The Magical Geography
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
There is no separate "magical land" in the Harry Potter universe; the wizarding world not only coexists alongside the world of Muggles, but also is embedded within it. Only one settlement in Britain, the village of Hogsmeade, is home to an entirely magical population. The vast majority of witches' and wizards' locations are integrated within the wider non-magical area.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Creatures of Magical World
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body">
The Wizarding World is home to many magical creatures and plants, some of which are familiar from folklore and myth. Giants, dragons, unicorns, boggarts, and goblins all have roles in the series, while many plants long believed to have magical properties, such as mandrake root, aconite, asphodel and wormwood, also make appearances.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Pre-Hogwarts Education
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
There appears to be no official precursor to a magical education; apparently, wizard parents home-school their children in basic non-magical topics, such as literacy and arithmetic. Muggle-born wizards (or Muggle-raised wizards), however, clearly experience an ordinary Muggle primary education before enrolling at Hogwarts, something that could be viewed as either a cognitive edge or a disadvantage. There are also no compulsory educational laws that exist in the British Wizarding World.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section translucent-bg bg-image-1 blue">
<div class="container object-non-visible" data-animation-effect="fadeIn">
<h1 id="services" class="text-center title">Wizard Wheezes Services</h1>
<div class="space"></div>
<div class="row">
<div class="col-sm-6">
<div class="media">
<div class="media-body text-right">
<h4 class="media-heading">Service 1</h4>
<p>The Wizards often use lots and lots of inventory, which needs maintenance. We are here to help you with the wear n tears. </p>
</div>
<div class="media-right">
<i class="fa fa-cog"></i>
</div>
</div>
<div class="media">
<div class="media-body text-right">
<h4 class="media-heading">Service 2</h4>
<p>Maintaining quality is our top priority. We never compromise with customer satisfaction, making us an edge apart!</p>
</div>
<div class="media-right">
<i class="fa fa-check"></i>
</div>
</div>
<div class="media">
<div class="media-body text-right">
<h4 class="media-heading">Service 3</h4>
<p>Live chat screening and problem discussions resulting in a quicker issue resolving process is our aim. Fixed just like Magic!</p>
</div>
<div class="media-right">
<i class="fa fa-desktop"></i>
</div>
</div>
<div class="media">
<div class="media-body text-right">
<h4 class="media-heading">Service 4</h4>
<p>Collaborative effort with joint team effort of our team ensures innovation of new ideas which would change your world.</p>
</div>
<div class="media-right">
<i class="fa fa-users"></i>
</div>
</div>
</div>
<div class="space visible-xs"></div>
<div class="col-sm-6">
<div class="media">
<div class="media-left">
<i class="fa fa-leaf"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Service 5</h4>
<p>Reduce, Reuse and Recycle has always been our motto. Helping you out with your old inventory, makes us more than happy to help! </p>
</div>
</div>
<div class="media">
<div class="media-left">
<i class="fa fa-area-chart"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Service 6</h4>
<p>Growth without hinderance for our clients is what we aspire for. Hence a complete solution to scale up with your growth is our passion.</p>
</div>
</div>
<div class="media">
<div class="media-left">
<i class="fa fa-child"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Service 7</h4>
<p>Every wizard and muggle is important to us and hence, we are strengthened by our belief to help everyone. </p>
</div>
</div>
<div class="media">
<div class="media-left">
<i class="fa fa-codepen"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Service 8</h4>
<p>Keeping up with our magical recipe checklist, whe ensure the SLA's are guranteed each and evertime. </p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="default-bg space blue">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="text-center">Let's Work Together!</h1>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section">
<div class="container">
<h1 class="text-center title" id="portfolio">Product Portfolio</h1>
<div class="separator"></div>
<p class="lead text-center">We provide our assistance for a wide line of inventory used by our magicians.</p>
<br>
<div class="row object-non-visible" data-animation-effect="fadeIn">
<div class="col-md-12">
<!-- isotope filters start -->
<div class="filters text-center">
<ul class="nav nav-pills">
<li class="active"><a href="#" data-filter="*">All</a></li>
<li><a href="#" data-filter=".web-design">Artifacts</a></li>
<li><a href="#" data-filter=".app-development">Utility</a></li>
<li><a href="#" data-filter=".site-building">Transport</a></li>
</ul>
</div>
<!-- isotope filters end -->
<!-- portfolio items start -->
<div class="isotope-container row grid-space-20">
<div class="col-sm-6 col-md-3 isotope-item site-building">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-1.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-1">
<i class="fa fa-search-plus"></i>
<span>Transport</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-1">Broom Sticks</a>
</div>
<!-- Modal -->
<div class="modal fade" id="project-1" tabindex="-1" role="dialog" aria-labelledby="project-1-label" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="project-1-label">Broom Sticks</h4>
</div>
<div class="modal-body">
<h3>Product Description</h3>
<div class="row">
<div class="col-md-6">
<p>Brooms are just what they sound like: magical brooms that allow the witch or wizard to fly. Normally, first-years at Hogwarts are not allowed brooms of their own, although they can and do take flying lessons from Madam Hooch using the old and much-beaten school brooms.<br> handy mode of transport for wizards, and used to play Quidditch on<br><br>
Bluebottle
Cleansweep series brooms
Comet series brooms
The Firebolt, developed by Randolph Spudmore
Moontrimmer (Gladys Boothby)
Nimbus series brooms
Oakshaft 79 (Elias Grimstone)
Shooting Star, developed by Universal Brooms Limited
Silver Arrow, developed by Leonard Jewkes
Swiftstick (Ellerby & Spudmore)
Tinderblast (Ellerby & Spudmore)
Twigger 90, developed by Flyte and Barker
</p>
</div>
<div class="col-md-6">
<img src="images/portfolio-1.jpg" alt="">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal end -->
</div>
<div class="col-sm-6 col-md-3 isotope-item app-development">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-2.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-2">
<i class="fa fa-search-plus"></i>
<span>Utility</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-2">Sorting Hat</a>
</div>
<!-- Modal -->
<div class="modal fade" id="project-2" tabindex="-1" role="dialog" aria-labelledby="project-2-label" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="project-2-label">Sorting Hat</h4>
</div>
<div class="modal-body">
<h3>Product Description</h3>
<div class="row">
<div class="col-md-6">
<p>The famous Hogwarts Sorting Hat gives an account of its own genesis in a series of songs.During the opening banquet at the beginning of each school year, the first-year students are lined up and their names read aloud alphabetically. Each then takes a seat on a stool and the hat is placed on her or his head.
The hat is battered and old; it's patched, frayed, and extremely dirty. In order to speak and sing, a tear along the brim opens like a mouth. It speaks to the wearer inside of the hat with a small, quiet voice, using Legilimency to interpret their thoughts and respond to them.After a time of consideration, the hat announces its choice aloud for all to hear, and the student joins the selected house. The moment of consideration varies in length, from over five minutes (known as "hatstall") to less than a second. </p>
</div>
<div class="col-md-6">
<img src="images/portfolio-2.jpg" alt="">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal end -->
</div>
<div class="col-sm-6 col-md-3 isotope-item site-building">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-3.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-3">
<i class="fa fa-search-plus"></i>
<span>Transport</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-3">Hogwarts Express</a>
</div>
<!-- Modal -->
<div class="modal fade" id="project-3" tabindex="-1" role="dialog" aria-labelledby="project-3-label" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="project-3-label">Hogwarts Express</h4>
</div>
<div class="modal-body">
<h3>Product Description</h3>
<div class="row">
<div class="col-md-6">
<p>The Hogwarts Express is the name of the train that makes a run between London, King's Cross Station Platform 9¾ and Hogsmeade Station. It makes this run at about six times a year, maybe more, as needed. The Express dutifully carries students to and from Hogwarts School of Witchcraft and Wizardry at the start and end of every term.
The train leaves Platform 9¾ without fail on 1 September at 11 o'clock in the morning, arriving at Hogsmeade Station in the early evening. Some students take the train back to King's Cross Station to go home for the Christmas and Easter holidays, but some do not, as they stay at Hogwarts. It also makes the run back again to London at the end of term in June. </p>
</div>
<div class="col-md-6">
<img src="images/portfolio-3.jpg" alt="">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal end -->
</div>
<div class="col-sm-6 col-md-3 isotope-item web-design">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-4.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-4">
<i class="fa fa-search-plus"></i>
<span>Artifact</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-4">Invisibility Cloak</a>
</div>
<!-- Modal -->
<div class="modal fade" id="project-4" tabindex="-1" role="dialog" aria-labelledby="project-4-label" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="project-4-label">Invisibility Cloak</h4>
</div>
<div class="modal-body">
<h3>Product Description</h3>
<div class="row">
<div class="col-md-6">
<p>An invisibility cloak is a magical garment which renders whomever or whatever it covers unseeable. These are common items that are massed produced in the wizarding world. The first known cloak was made by Death for Ignotus Peverell in the 13th century and it is one of a kind.
The other cloaks were made later by various manufacturers using different materials and do not possess the same longevity. They may be made from hair of Demiguise, a magical creature that possesses the power to become invisible. This property is used to make the wearer of the cloak invisible. However, as Xenophilius Lovegood tells Harry, Ron, and Hermione, such a cloak will gradually lose its effectiveness as the hair becomes more and more opaque. </p>
</div>
<div class="col-md-6">
<img src="images/portfolio-4.jpg" alt="">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal end -->
</div>
<div class="col-sm-6 col-md-3 isotope-item web-design">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-5.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-5">
<i class="fa fa-search-plus"></i>
<span>Artifact</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-5">Maraunder's Map</a>
</div>
<!-- Modal -->
<div class="modal fade" id="project-5" tabindex="-1" role="dialog" aria-labelledby="project-5-label" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="project-5-label">Maraunder's Map</h4>
</div>
<div class="modal-body">
<h3>Product Description</h3>
<div class="row">
<div class="col-md-6">
<p>The Marauder's Map is a magical document that reveals all of Hogwarts School of Witchcraft and Wizardry. Not only does it show every classroom, every hallway, and every corner of the castle, but it also shows every inch of the grounds, as well as all the secret passages that are hidden within its walls and the location of every person in the grounds, portrayed by a dot. It is also capable of accurately identifying each person, and is not fooled by animagi, Polyjuice Potions, or invisibility cloaks; even the Hogwarts ghosts are not exempt from this.
One of the map's possible flaws lies in the fact that it cannot differentiate people who bear similar names (the shared names are not given a Junior or Senior at the end). Also, it does not seem to show unplottable rooms, since it was Dobby and not the map that showed where the Room of Requirement was or even existed. </p>
</div>
<div class="col-md-6">
<img src="images/portfolio-5.jpg" alt="">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal end -->
</div>
<div class="col-sm-6 col-md-3 isotope-item web-design">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-6.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-6">
<i class="fa fa-search-plus"></i>
<span>Artifacts</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-6">Mirror of Erised</a>
</div>
<!-- Modal -->
<div class="modal fade" id="project-6" tabindex="-1" role="dialog" aria-labelledby="project-6-label" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="project-6-label">Mirror of Erised</h4>
</div>
<div class="modal-body">
<h3>Product Description</h3>
<div class="row">
<div class="col-md-6">
<p>The Mirror of Erised is a mirror, which, according to Albus Dumbledore, shows the "deepest, most desperate desire of our hearts." The name "Erised" is "desire" spelled backwards, as if reflected in a mirror. The happiest person in the world would look in the mirror and see a reflection of them, exactly as they were.
The writing engraved on the frame of the mirror is supposedly in a foreign and probably dead language, but if you look closely it says "I show not your face but your heart's desire" backwards, with the spaces rearranged. Erised stra ehru oyt ube cafru oyt on wohsi. </p>
</div>
<div class="col-md-6">
<img src="images/portfolio-6.jpg" alt="">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal end -->
</div>
<div class="col-sm-6 col-md-3 isotope-item app-development">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-7.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-7">
<i class="fa fa-search-plus"></i>
<span>Utility</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-7">The Monster Book of Monsters</a>
</div>
<!-- Modal -->
<div class="modal fade" id="project-7" tabindex="-1" role="dialog" aria-labelledby="project-7-label" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="project-7-label">The Monster Book of Monsters</h4>
</div>
<div class="modal-body">
<h3>Product Description</h3>
<div class="row">
<div class="col-md-6">
<p>The Monster Book of Monsters, by Edwardus Lima, is a particularly vicious textbook that is used in Care of Magical Creatures while Rubeus Hagrid (who thought the book's aggressive nature was funny) was the teacher.
The book is quite informative, but one usually finds it difficult to access the information within due to the book's unfortunate tendency to try and bite off the reader's fingers. The only way to subdue the book is to stroke its spine, upon which the book opens placidly. </p>
</div>
<div class="col-md-6">
<img src="images/portfolio-7.jpg" alt="">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal end -->
</div>
<div class="col-sm-6 col-md-3 isotope-item app-development">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-8.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-8">
<i class="fa fa-search-plus"></i>
<span>Utility</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-8">Penseive</a>
</div>
<!-- Modal -->
<div class="modal fade" id="project-8" tabindex="-1" role="dialog" aria-labelledby="project-8-label" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="project-8-label">Penseive</h4>
</div>
<div class="modal-body">
<h3>Product Description</h3>
<div class="row">
<div class="col-md-6">
<p>The Pensieve is an object used to review memories. It has the appearance of a shallow stone or metal basin, into which runes and strange symbols are carved and precious stones are fitted. It is filled with a silvery substance that appears to be a cloud-like liquid/gas; the collected memories of people who have siphoned their recollections into it.
Memories can then be viewed from a non-participant, third-person point of view. Owing to the highly personal nature of extracted memories, and the potential for abuse, most Pensieves are entombed with their owners along with the memories they contain. Some witches and wizards will pass on their Pensive/memories to another person, as is the case with the Hogwarts Pensieve. </p>
</div>
<div class="col-md-6">
<img src="images/portfolio-8.jpg" alt="">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal end -->
</div>
<div class="col-sm-6 col-md-3 isotope-item app-development">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-9.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-9">
<i class="fa fa-search-plus"></i>
<span>Utility</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-9">Wizard's Chess</a>
</div>
<!-- Modal -->
<div class="modal fade" id="project-9" tabindex="-1" role="dialog" aria-labelledby="project-9-label" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="project-9-label">Wizard's Chess</h4>
</div>
<div class="modal-body">
<h3>Product Description</h3>
<div class="row">
<div class="col-md-6">
<p>Wizard's Chess is the enchanted variant of the classic board game in which the pieces move of their own accord when commanded by the player. When a piece is taken, it is removed by the attacking piece, often in a barbaric manner where the losing piece is smashed violently by the winning piece. </p>
</div>
<div class="col-md-6">
<img src="images/portfolio-9.jpg" alt="">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal end -->
</div>
<div class="col-sm-6 col-md-3 isotope-item app-development">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-10.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-10">
<i class="fa fa-search-plus"></i>
<span>Utility</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-10">Remembrall</a>
</div>
<!-- Modal -->
<div class="modal fade" id="project-10" tabindex="-1" role="dialog" aria-labelledby="project-10-label" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="project-10-label">Remembrall</h4>
</div>
<div class="modal-body">
<h3>Product Description</h3>
<div class="row">
<div class="col-md-6">
<p>A Remembrall is a large marble sized glass ball that contains smoke which turns red when its owner has forgotten something. It turns clear once whatever was forgotten is remembered.</p>
</div>
<div class="col-md-6">
<img src="images/portfolio-10.jpg" alt="">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal end -->
</div>
<div class="col-sm-6 col-md-3 isotope-item web-design">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-11.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-11">
<i class="fa fa-search-plus"></i>
<span>Artifacts</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-11">Golden Snitch</a>
</div>
<!-- Modal -->
<div class="modal fade" id="project-11" tabindex="-1" role="dialog" aria-labelledby="project-11-label" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="project-11-label">Golden Snitch</h4>
</div>
<div class="modal-body">
<h3>Product Description</h3>
<div class="row">
<div class="col-md-6">
<p>The Golden Snitch, often called simply the Snitch, is the third and smallest ball used in Quidditch.[2] It is a walnut-sized gold-coloured sphere with silver wings. It flies around the Quidditch field at high speeds, sometimes pausing and hovering in place. The Seeker's goal is to catch the Snitch before the other team's seeker, which is worth one-hundred and fifty points. The game can only end when the Snitch has been caught, or by mutual agreement of the two teams' Captains; the latter is very rare, however, as one team would have to lose.
The Quidditch rule also stated that only the two team's Seeker has the right to catch (or touch) the Snitch, any player other than the Seeker to do so commits a foul called a Snitchnip. </p>
</div>
<div class="col-md-6">
<img src="images/portfolio-11.jpg" alt="">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal end -->
</div>
<div class="col-sm-6 col-md-3 isotope-item web-design">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-12.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-12">
<i class="fa fa-search-plus"></i>
<span>Artifact</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-12">Sword of Gryffindor</a>
</div>
<!-- Modal -->
<div class="modal fade" id="project-12" tabindex="-1" role="dialog" aria-labelledby="project-12-label" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="project-12-label">Sword of Gryffindor</h4>
</div>
<div class="modal-body">
<h3>Product Description</h3>
<div class="row">
<div class="col-md-6">
<p>The Sword of Gryffindor was a thousand-year-old, goblin-made sword owned by the famed wizard Godric Gryffindor, one of the four founders of Hogwarts School of Witchcraft and Wizardry.
The sword was later used in Albus Dumbledore's and Harry Potter's hunt for Horcruxes, as a tool of destruction against the Horcruxes, as means to make Lord Voldemort mortal again. </p>
</div>
<div class="col-md-6">
<img src="images/portfolio-12.jpg" alt="">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal end -->
</div>
</div>
<!-- portfolio items end -->
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="default-bg space">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="text-center">Have a problem for to solve?</h1>
</div>
</div>
<div class="formcontainer">
<form id="contact" action="" method="get">
<h3>Generate Ticket</h3>
<h4>Contact us today, and get reply with in 24 hours!</h4>
<fieldset>
<input placeholder="Your name" type="text" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<select id="productTypeSel" size="1">
<option value="" selected="selected">-- Select Product --</option>
</select>
<select id="subTypeSel" size="1">
<option value="" selected="selected">-- Select Subtype --</option>
</select>
</fieldset>
<fieldset>
<input placeholder="Serial-number" type="text" tabindex="4" required>
</fieldset>
<fieldset>
<input placeholder="Your Email Address" type="email" tabindex="2" required>
</fieldset>
<fieldset>
<input placeholder="Your Phone Number" type="tel" tabindex="3" required>
</fieldset>
<fieldset>
<textarea placeholder="Type your Problem Here...." tabindex="5" required></textarea>
</fieldset>
<fieldset>
<p>Date of Purchase : <input type="date" id="fdate"></p>
</fieldset>
<fieldset>
<button name="submit" type="submit" id="contact-submit" data-submit="...Sending">Submit</button>
</fieldset>
</form>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section translucent-bg bg-image-2 pb-clear">
<div class="container object-non-visible" data-animation-effect="fadeIn">
<h1 id="clients" class="title text-center">Client Reviews</h1>
<div class="space"></div>
<div class="row">
<div class="col-md-4">
<div class="media testimonial">
<div class="media-left">
<img src="images/testimonial-1.png" alt="">
</div>
<div class="media-body">
<h3 class="media-heading">You are Amazing!</h3>
<blockquote>
<footer>Albus Dumbledore in <cite title="Source Title">Hogwarts</cite></footer>
</blockquote>
</div>
</div>
</div>
<div class="col-md-4">
<div class="media testimonial">
<div class="media-left">
<img src="images/testimonial-2.png" alt="">
</div>
<div class="media-body">
<h3 class="media-heading">Yeah!</h3>
<blockquote>
<footer>Professor Snape in <cite title="Source Title">Hogwarts</cite></footer>
</blockquote>
</div>
</div>
</div>
<div class="col-md-4">
<div class="media testimonial">
<div class="media-left">
<img src="images/testimonial-3.png" alt="">
</div>
<div class="media-body">
<h3 class="media-heading">Thank You!</h3>
<blockquote>
<footer>Lucius Malfoy in <cite title="Source Title">Ministry of Magic</cite></footer>
</blockquote>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="media testimonial">
<div class="media-left">
<img src="images/testimonial-2.png" alt="">
</div>
<div class="media-body">
<h3 class="media-heading">My Goto Place!</h3>
<blockquote>
<footer>Minerva McGonagall in <cite title="Source Title">Hogwarts</cite></footer>
</blockquote>
</div>
</div>
</div>
<div class="col-md-4">
<div class="media testimonial">
<div class="media-left">
<img src="images/testimonial-3.png" alt="">
</div>
<div class="media-body">
<h3 class="media-heading">Amazing!</h3>
<blockquote>
<footer>Hermoine Granger in <cite title="Source Title">Gryffindor</cite></footer>
</blockquote>
</div>
</div>
</div>
<div class="col-md-4">
<div class="media testimonial">
<div class="media-left">
<img src="images/testimonial-1.png" alt="">
</div>
<div class="media-body">
<h3 class="media-heading">Best!</h3>
<blockquote>
<footer>Nymphadora Tonks</footer>
</blockquote>
</div>