-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.php
891 lines (777 loc) · 34.7 KB
/
index.php
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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>blood-X- ONE POINT FOR BLODD ISSUES</title>
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" href="css/fonts/stylesheet.css" />
<link rel="stylesheet" href="css/fonts/fonts.css" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="css/animat/animate.min.css" />
<link rel="stylesheet" href="css/fancybox/jquery.fancybox.css" />
<link rel="stylesheet" href="css/nivo-lightbox/nivo-lightbox.css" />
<link rel="stylesheet" href="css/themes/default/default.css" />
<link rel="stylesheet" href="css/owl-carousel/owl.carousel.css" />
<link rel="stylesheet" href="css/owl-carousel/owl.theme.css" />
<link rel="stylesheet" href="css/owl-carousel/owl.transitions.css">
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/responsive.css" />
</head>
<body>
<div class='preloader'><div class='loaded'> </div></div>
<header id="home" class="header">
<div class="main_menu_bg navbar-fixed-top">
<div class="container">
<div class="row">
<div class="nave_menu">
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-7toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">
<div class="logo">
<h2 class="logo">Blood-X</h2>
<!-- <img src="images/logo.png" alt="" />-->
</div>
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#home">Home</a></li>
<li><a href="#abouts">ABOUT</a></li>
<!-- <li><a href="#service">Service</a></li>-->
<!-- <li><a href="#portfolio">Portfolio</a></li>-->
<li><a href="#team">Team</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="signup.php">SignUp</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
</div>
</div><!--End of row -->
</div><!--End of container -->
</div>
</header> <!--End of header -->
<section id="banner" class="banner">
<div class="container">
<div class="row">
<div class="main_banner_area text-left">
<div class="col-md-12 col-sm-12">
<div class="single_banner_text wow zoomIn" data-wow-duration="1s">
<h2>WITH THE HANDS LET THE BLOOD CONNECT</h2>
<h5>Who is donated may not die.</h5>
<div class="separetor"></div>
</div>
</div>
<div class="scrolldown">
<a href="#abouts" class="scroll_btn"></a>
</div>
</div>
</div>
</div>
</section><!-- End of Banner Section -->
<section id="abouts" class="abouts">
<div class="container">
<div class="row">
<div class="main_abouts_content">
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="single_abouts wow fadeInLeft" data-wow-duration="1s">
<h2>About BLOOD-X</h2>
<div class="separetor2"></div>
<p>BLOOD-X is a only platform for everyone let it be common people who need blood, people who wish to do some good work by donating their blood, people who wish to save their closed ones by finding a donor as fast as possible, let it be the organizations swho wish to organize blood camp or let it be the sponserers who wish to promote their product. Here, everything works in the simplest way.
To learn more click below!!</p>
<a href="" class="btn pink-btn">LEARN MORE !</a>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="single_abouts wow fadeInRight" data-wow-duration="1s">
<img src="images/ab.png" alt="" />
</div>
</div>
</div>
</div>
</div>
</section>
<section id="wedo">
<div class="container">
<div class="row">
<div class="head_title text-center wow fadeIn" data-wow-duration="1.5s">
<h2>WHAT WE DO</h2>
<div class="separetor"></div>
<p>Someone has to take a good step - why don't you take it.. Donate blood now! </p>
</div>
<div class="wedo_content_area">
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="single_wedo wow fadeIn" data-wow-duration="1s">
<div class="single_left_icon">
<a href=""><i class="fa fa-star"></i></a>
</div>
<div class="single_right_text">
<h4>helping people</h4>
<div class="separetor2"></div>
<p>Blood-X helps people to find the donors or the organization which holds the particular type blood. But for that users have to in return accept to the condition that we share their blood details to the people who are in need of that blood.</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="single_wedo wow fadeIn" data-wow-duration="1s">
<div class="single_left_icon">
<a href=""><i class="fa fa-star"></i></a>
</div>
<div class="single_right_text">
<h4>giving back</h4>
<div class="separetor2"></div>
<p>We have come to the world and have done many bad things and good things but why not the number of good things increase in your account. So join us now and donate the blood in the nearest camp which is organized.</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="single_wedo wow fadeIn" data-wow-duration="1s">
<div class="single_left_icon">
<a href=""><i class="fa fa-star"></i></a>
</div>
<div class="single_right_text">
<h4>Helping Organizations</h4>
<div class="separetor2"></div>
<p>Its not an easy work to organize a blood camp. It takes a lot of effort to make sure that blood camp goes well and obviously for holding events, they require money. Hence, we provide them sponsers and any other help in case they need it.</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="single_wedo wow fadeIn" data-wow-duration="1s">
<div class="single_left_icon">
<a href=""><i class="fa fa-star"></i></a>
</div>
<div class="single_right_text">
<h4>helping companies</h4>
<div class="separetor2"></div>
<p>All the companies have their new products come out very soon and they need a good public whom they can promote and pitch their product. Well, here we have their problem solved. They can join us and sponser the events coming up.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="counterUp" class="counterUp">
<div class="counter_overlay">
<div class="container">
<div class="row">
<div class="main_counter_content">
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="sinle_counter wow fadeIn" data-wow-duration="1s">
<h4><i class="fa fa-star"></i><span class="static-counter">531</span></h4>
<p>Organizations Joined</p>
<div class="separetorwhite"></div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="sinle_counter wow fadeIn" data-wow-duration="1.8s">
<h4><i class="fa fa-star"></i><span class="static-counter">129</span></h4>
<p>Sponsers Merged</p>
<div class="separetorwhite"></div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="sinle_counter wow fadeIn" data-wow-duration="2.2s">
<h4><i class="fa fa-star"></i><span class="static-counter">1500</span></h4>
<p>Blood Camp Organized</p>
<div class="separetorwhite"></div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="sinle_counter wow fadeIn" data-wow-duration="2.8s">
<h4><i class="fa fa-star"></i><span class="static-counter">300000</span></h4>
<p>People Joined</p>
<div class="separetorwhite"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="steps" class="steps">
<div class="container">
<div class="row">
<div class="head_title text-center wow fadeIn" data-wow-duration="1.5s">
<h2>THREE SIMPLE STEPS</h2>
<div class="separetor"></div>
<p>Who are you?</p><p>Wish to create a good Identity? </p><p>Follow the three steps to do so...</p>
</div>
<div class="main_steps_content text-center">
<div class="col-md-4">
<div class="single_steps wow fadeIn" data-wow-duration="1s">
<a href=""><i class="fa fa-mobile"></i></a>
<h4>Create Your ID</h4>
<p>Done creating the ID, go to step 2</p>
</div>
</div>
<div class="col-md-4">
<div class="single_steps wow fadeIn" data-wow-duration="1.8s">
<a href=""><i class="fa fa-bar-chart"></i></a>
<h4>Donate</h4>
<p>Start donating blood now</p>
</div>
</div>
<div class="col-md-4">
<div class="single_steps wow fadeIn" data-wow-duration="2.8s">
<a href=""><i class="fa fa-bar-chart"></i></a>
<h4>Donate</h4>
<p>Still not donated, donate now!!</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="featured" class="featured">
<div class="container">
<div class="row">
<div class="head_title text-center wow flipInX" data-wow-duration="1s">
<h2>TOP LISTS HERE</h2>
<div class="separetor"></div>
<p>We dont leave anything Unnoticed. We feature you here if you are worthy enough..</p>
</div>
</div>
</div>
<div class="main_featured_content">
<div class="col-md-4 col-sm-6 col-xs-12 single_featured_area">
<div class="single_featured wow fadeIn" data-wow-duration=".5s">
<img src="images/f1.jpg" alt="" />
<div class="featured_overlay">
<div class="overlay_content">
<br>
<p>Meet XYZ,</p><p> He has donated maximum units of blood till date using our platform.</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 single_featured_area">
<div class="single_featured wow fadeIn" data-wow-duration=".5s">
<img src="images/f2.jpg" alt="" />
<div class="featured_overlay">
<div class="overlay_content">
<p>Here comes the organization</p><p>XYZ</p><p>organizing the maximum events and collecting maximum units of blood till date using our platform for support.</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 single_featured_area">
<div class="single_featured wow fadeIn" data-wow-duration=".5s">
<img src="images/f3.jpg" alt="" />
<div class="featured_overlay">
<div class="overlay_content">
<p>Now, it is even our duty to promote the company</p><p>XYZ</p><p>who has sponsered maxixmum amount for the events with a cause</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
<section id="service" class="service">
<div class="container">
<div class="row">
<div class="head_title text-center wow zoomIn" data-wow-duration="0.5s">
<h2>OUR BEST SERVICE</h2>
<div class="separetor"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry been the industry's standard dummy text</p>
</div>
</div>
</div>
<div class="main_service_content">
<div class="single_service_area single_service_area_one wow fadeIn" data-wow-duration="1.5s">
<div class="col-md-6 col-md-offset-6 col-sm-5 col-sm-offset-7">
<div class="single_service">
<h4>AWESOME TITLE HERE</h4>
<div class="separetorwhite"></div>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock.</p>
</div>
</div>
</div>
<div class="single_service_area single_service_area_two wow fadeIn" data-wow-duration="2.5s">
<div class="col-md-6 col-sm-5 text-right">
<div class="single_service">
<h4>AWESOME TITLE HERE</h4>
<div class="separetorwhite floatright"></div>
<p class="service_P">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock.</p>
</div>
</div>
</div>
<div class="single_service_area single_service_area_three wow fadeIn" data-wow-duration="3.5s">
<div class="col-md-6 col-md-offset-6 col-sm-5 col-sm-offset-7">
<div class="single_service">
<h4>AWESOME TITLE HERE</h4>
<div class="separetorwhite"></div>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock.</p>
</div>
</div>
</div>
</div>
</section>
<section id="business" class="business">
<div class="overlay_business">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="main_business_content text-center wow fadeIn" data-wow-duration="2s">
<h2>CREATE YOUR OWN BUSINESS WITH OUR IDEAS !</h2>
<h4>GET READY TO STAND OUT</h4>
<a href="" class="btn pink-btn">KEEP EXPLORING</a>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!--<div class="clierboth"></div>
<section id="mixitup1" class="sections">
<div class="container">
<div class="row">
<div class="main_mix_content whitebackground text-center">
<div class="head_title text-center">
<h2>OUR PORTFOLIO</h2>
<p></p>
</div>
<div class="main_mix_menu">
<button class="btn btn-primary filter" data-filter="all">Filter In</button>
<button class="btn btn-primary filter" data-filter=".cat1">F1n</button>
<button class="btn btn-primary filter" data-filter=".cat2">F1n2</button>
<button class="btn btn-primary filter" data-filter=".cat3">F1n3</button>
<button class="btn btn-primary filter" data-filter=".cat4">F1n4</button>
</div>
<div id="test" class="test">
<div class="col-md-4 mix cat1 no-padding">
<div class="single_mixi_portfolio">
<img src="images/p1.jpg" alt="" />
<div class="mixi_portfolio_overlay">
<div class="overflow_hover_text">
<a href=""><i class="lnr lnr-plus-circle"></i></a>
<h2>Neque Porro Quisquam</h2>
<p>Hover 1</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 mix cat2 no-padding">
<div class="single_mixi_portfolio">
<img src="images/p2.jpg" alt="" />
<div class="mixi_portfolio_overlay">
<div class="overflow_hover_text">
<a href=""><i class="lnr lnr-plus-circle"></i></a>
<h2>Neque Porro Quisquam</h2>
<p>Hover 1</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 mix cat1 cat4 no-padding">
<div class="single_mixi_portfolio">
<img src="images/p3.jpg" alt="" />
<div class="mixi_portfolio_overlay">
<div class="overflow_hover_text">
<a href=""><i class="lnr lnr-plus-circle"></i></a>
<h2>Neque Porro Quisquam</h2>
<p>Hover 1</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 mix cat3 cat4 no-padding">
<div class="single_mixi_portfolio">
<img src="images/p4.jpg" alt="" />
<div class="mixi_portfolio_overlay">
<div class="overflow_hover_text">
<a href=""><i class="lnr lnr-plus-circle"></i></a>
<h2>Neque Porro Quisquam</h2>
<p>Hover 1</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 mix cat4 no-padding">
<div class="single_mixi_portfolio">
<img src="images/p5.jpg" alt="" />
<div class="mixi_portfolio_overlay">
<div class="overflow_hover_text">
<a href=""><i class="lnr lnr-plus-circle"></i></a>
<h2>Neque Porro Quisquam</h2>
<p>Hover 1</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 mix cat1 cat2 no-padding">
<div class="single_mixi_portfolio">
<img src="images/p6.jpg" alt="" />
<div class="mixi_portfolio_overlay">
<div class="overflow_hover_text">
<a href=""><i class="lnr lnr-plus-circle"></i></a>
<h2>Neque Porro Quisquam</h2>
<p>Hover 1</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 mix cat1 cat3 no-padding">
<div class="single_mixi_portfolio">
<img src="images/p7.jpg" alt="" />
<div class="mixi_portfolio_overlay">
<div class="overflow_hover_text">
<a href=""><i class="lnr lnr-plus-circle"></i></a>
<h2>Neque Porro Quisquam</h2>
<p>Hover 1</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 mix cat1 cat3 no-padding">
<div class="single_mixi_portfolio">
<img src="images/p8.jpg" alt="" />
<div class="mixi_portfolio_overlay">
<div class="overflow_hover_text">
<a href=""><i class="lnr lnr-plus-circle"></i></a>
<h2>Neque Porro Quisquam</h2>
<p>Hover 1</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 mix cat1 cat4 no-padding">
<div class="single_mixi_portfolio">
<img src="images/p9.jpg" alt="" />
<div class="mixi_portfolio_overlay">
<div class="overflow_hover_text">
<a href=""><i class="lnr lnr-plus-circle"></i></a>
<h2>Neque Porro Quisquam</h2>
<p>Hover 1</p>
</div>
</div>
</div>
</div>
<div class="gap"></div>
</div>
</div>
</div>
</div>
</section>
<div class="clierboth"></div>-->
<section id="team" class="team">
<div class="container">
<div class="row">
<div class="head_title text-center wow zoomIn" data-wow-duration="0.5s">
<h2>MEET THE TEAM</h2>
<div class="separetor"></div>
<p>Meet the minds behind BLOOD-X</p>
</div>
<div class="main_team_content text-center">
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="single_team wow fadeIn" data-wow-duration="1.5s">
<div class="single_team_img">
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="single_team wow fadeIn" data-wow-duration="1.5s">
<div class="single_team_img">
<img src="images/tm1.jpg" alt="" />
<div class="single_team_overlay text-center">
<p>Hi ! I m Redwan from bangladesh.I am a Professional graphic designer & expert on print and UI/ UX .</p>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="single_team_name">
<h4>IBN HASAN</h4>
<p>CEO</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="single_team wow fadeIn" data-wow-duration="2s">
<div class="single_team_img">
<img src="images/tm2.jpg" alt="" />
<div class="single_team_overlay text-center">
<p>Hi ! I m Redwan from bangladesh.I am a Professional graphic designer & expert on print and UI/ UX .</p>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="single_team_name">
<h4>RAF REDWAN</h4>
<p>LEAD OF DESIGN </p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="subcribs" class="subcribs">
<div class="counter_overlay">
<div class="container">
<div class="row">
<div class="main_subcribs_content">
<div class="col-md-6 col-sm-12 col-xs-12">
<div class="single_subcribs wow slideInLeft" data-wow-duration="1s">
<h4>SUBSCRIBE TO UPDATE</h4>
<div class="separetorwhite"></div>
<p>Subscribe Blood-X and get regular updates from our side.</p>
</div>
</div>
<div class="col-md-6 col-sm-12 col-xs-12">
<div class="single_subcribs_right wow slideInRight" data-wow-duration="1s">
<input type="text" placeholder="Enter email address" id="sb_text"/>
<input type="submit" value="SUBSCRIBE" name="suscriber"/>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="testimonial" class="testimonial">
<div class="testimonial_overlay">
<div class="container">
<div class="row">
<div class="head_title text-center wow slideInDown" data-wow-duration="0.5s">
<h2>TESTIMONIALS</h2>
<div class="separetorwhite2"></div>
<h5>WHAT PEOPLE THINK ABOUT US</h5>
</div>
<div class="main_testimonial text-center wow fadeIn" data-wow-duration="1s">
<div class="single_testimonial">
<div class="single_testimonial_img">
<img class="img-circle" src="images/tst1.jpg" alt="" />
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,m quia.</p>
<a href="">RAF REDWAN</a>
</div>
</div>
<div class="single_testimonial">
<div class="single_testimonial_img">
<img class="img-circle" src="images/tst1.jpg" alt="" />
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,m quia.</p>
<a href="">RAF REDWAN</a>
</div>
</div>
<div class="single_testimonial">
<div class="single_testimonial_img">
<img class="img-circle" src="images/tst1.jpg" alt="" />
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,m quia.</p>
<a href="">RAF REDWAN</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="blog" class="blog sections">
<div class="container">
<div class="row">
<div class="head_title text-center wow zoomIn" data-wow-duration="0.5s">
<h2>FEATURED BLOGS</h2>
<div class="separetor"></div>
<p>Best blog describing about our events get featured.</p>
</div>
<div class="main_blog">
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="single_blog wow fadeInLeft" data-wow-duration="0.5s">
<div class="single_blog_img">
<img src="images/blog1.jpg" alt="" />
</div>
<div class="single_blog_overlay">
<h4>The Nobel</h4>
<p>Makanika</p>
<div class="separetorwhite"></div>
<p>Lorem ipsum dol. Ut enim minim veniam, qub e eu fugiat anim id est</p>
<a href="" class="date_data"><i class="fa fa-gift"></i>12 th September, 2015</a>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="single_blog wow fadeInRight" data-wow-duration="0.5s">
<div class="single_blog_img">
<img src="images/blog1.jpg" alt="" />
</div>
<div class="single_blog_overlay">
<h4>THE WINTER TAL’S</h4>
<p>Raf Redwan</p>
<div class="separetorwhite"></div>
<p>Lorem ipsum dol. Ut enim minim veniam, qub e eu fugiat anim id est</p>
<a href="" class="date_data"><i class="fa fa-gift"></i>12 th September, 2015</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="pricing">
<div class="container">
<div class="row">
<div class="head_title text-center wow slideInDown" data-wow-duration="0.3s">
<h2>Sponser Events With Great Cause</h2>
<div class="separetor"></div>
<p>Choose your desired package and we will promote your product/company</p>
<p>More advanced package </p>
</div>
<div class="pricing_content_area choose_pricing_content_area text-center">
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="choose_single_pricing_text wow fadeIn" data-wow-duration="1s">
<h3>Level-1</h3>
<div class="choose_pricing_text">
<p>Great for giving a try and sponsoring for a cause</p>
<p class="price">$500</p>
<ul>
<li>Promotion in 1 blood camp</li>
<li>Reach upto 1000 people</li>
<li>x</li>
<li>x</li>
<li>x</li>
<li>x</li>
<li>x</li>
</ul>
<a href="" class="btn btn-lg">Sponsor</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="choose_single_pricing_text proffetional_price wow fadeIn" data-wow-duration="1.5s">
<h3>Level-2</h3>
<div class="choose_pricing_text">
<p>Intermediate package sponsoring for good cause</p>
<p class="price">$2000</p>
<ul>
<li>Promotion in 6 blood camps</li>
<li>Reach upto 10000 people</li>
<li>Banners given to individuals</li>
<li>x</li>
<li>x</li>
<li>x</li>
<li>x</li>
</ul>
<a href="" class="btn btn-lg">Sponsor</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="choose_single_pricing_text wow fadeIn" data-wow-duration="2s">
<h3>Level-3</h3>
<div class="choose_pricing_text">
<p>You are really expert in choosing the correct package!!</p>
<p class="price">$4000</p>
<ul>
<li>Promotion in 12 blood camps</li>
<li>Reach upto 20000 people</li>
<li>Banners given to individuals</li>
<li>Stall provided in the camp</li>
<li>24x7 Support</li>
<li>x</li>
<li>x</li>
</ul>
<a href="" class="btn btn-lg">Sponsor</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End of choose Pricing Section
<!-- Contact form -->
<section id="contact" class="contact">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="head_title text-center wow zoomIn" data-wow-duration="0.5s">
<h2>Get In Touch With Us</h2>
<div class="separetor"></div>
<p>We are here to help. Want to learn more about our services? Please get in touch, we'd love to hear from you!</p>
</div>
</div>
</div>
<div class="row">
<div class="messsage_contant">
<div class="col-md-7 col-sm-7">
<div class="single_message_left wow fadeIn" data-wow-duration="1s">
<form action="#" id="formid">
<!--<div class="col-lg-8 col-md-8 col-sm-10 col-lg-offset-2 col-md-offset-2 col-sm-offset-1">-->
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" name="name" placeholder="Name" required="">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<input type="email" class="form-control" name="email" placeholder="Email" required="">
</div>
</div>
</div>
<div class="form-group">
<textarea class="form-control" name="message" rows="8" placeholder="Message"></textarea>
</div>
<div class="center-content">
<input type="submit" value="SUBMIT NOW" class="btn btn-lg">
</div>
<!--</div>-->
</form>
</div>
</div>
<div class="col-md-5 col-sm-5">
<div class="single_message_right wow fadeIn" data-wow-duration="1s">
<p>
<i class="fa fa-map-marker"></i>
K-407, VIT Mens Hostel
<span>Vellore-632014, Tamilnadu, India</span>
</p>
<p><i class="fa fa-envelope-o"></i>[email protected]</p>
<p><i class="fa fa-phone"></i>+91 98845 23855</p>
</div>
</div>
</div> <!-- End of messsage contant-->
</div>
</div>
</section>
<footer id="footer" class="footer">
<div class="container">
<div class="row">
<div class="main_footer text-center wow zoomIn" data-wow-duration="1s">
<p>Project licensed by<a href="http://bootstrapthemes.co">Apache 2.0.</a>All Rights Reserved</p>
</div>
</div>
</div>
</footer>
<!-- STRAT SCROLL TO TOP -->
<div class="scrollup">
<a href="#"><i class="fa fa-chevron-up"></i></a>
</div>
<script type="text/javascript" src="js/jquery/jquery.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript" src="js/bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="js/fancybox/jquery.fancybox.pack.js"></script>
<script type="text/javascript" src="js/nivo-lightbox/nivo-lightbox.min.js"></script>
<script type="text/javascript" src="js/owl-carousel/owl.carousel.min.js"></script>
<script type="text/javascript" src="js/jquery-easing/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="js/wow/wow.min.js"></script>
<!--<script type="text/javascript" src="js/counterup/counterup.min.js"></script>-->
<!--<script src="http://cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.3/waypoints.min.js"></script>-->
<!--<script type="text/javascript" src="js/counterup/jquery.counterup.min.js"></script>-->
<script type="text/javascript" src="js/isotop/isotope.min.js"></script>
<script type="text/javascript" src="js/isotop/isotop.function.js"></script>
<script type="text/javascript" src="js/masonry/masonry.min.js"></script>
<script type="text/javascript" src="js/mixitup/jquery.mixitup.min.js"></script>
<script type="text/javascript" src="js/masonry/masonry.pkgd.min.js"></script>
</body>
</html>