-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1150 lines (974 loc) · 46.1 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>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<!-- Page Title -->
<title>Neela - Responsive One/Multi-Page Wedding HTML5 Template</title>
<meta name="keywords" content="one-page, single page, multi-page, wedding template, retina ready, responsive, modern html5 template, bootstrap, css3, wedding, venue">
<meta name="description" content="Neela - Responsive One/Multi-Page Wedding HTML5 Template">
<meta name="author" content="Wisely Themes">
<!-- Mobile Meta Tag -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Fav and touch icons -->
<link rel="icon" href="images/fav_touch_icons/favicon.ico" sizes="any">
<link rel="icon" href="images/fav_touch_icons/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="images/fav_touch_icons/apple-touch-icon-180x180.png">
<link rel="manifest" href="images/fav_touch_icons/manifest.json">
<!-- IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Google Web Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
<!-- FontAwesome CSS -->
<link href="css/fontawesome-all.min.css" rel="stylesheet" />
<!-- Neela Icon Set CSS -->
<link href="css/neela-icon-set.css" rel="stylesheet" />
<!-- Owl Carousel CSS -->
<link href="css/owl.carousel.min.css" rel="stylesheet" />
<!-- Template CSS -->
<link href="css/style.css" rel="stylesheet" />
<!-- Modernizr JS -->
<script src="js/modernizr-3.6.0.min.js"></script>
</head>
<body>
<!-- BEGIN PRELOADER -->
<div id="preloader">
<div class="loading-heart">
<svg viewBox="0 0 512 512" width="100">
<path d="M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z" />
</svg>
<div class="preloader-title">
Isabella<br>
<small>&</small><br>
Andrew
</div>
</div>
</div>
<!-- END PRELOADER -->
<!-- BEGIN WRAPPER -->
<div id="wrapper">
<!-- BEGIN HEADER -->
<header id="header">
<div class="nav-section">
<div class="container">
<div class="row">
<div class="col-sm-12">
<a href="#hero" class="nav-logo"><img src="images/logo.png" alt="Neela" /></a>
<!-- BEGIN MAIN MENU -->
<nav class="navbar">
<ul class="nav navbar-nav">
<li><a href="#hero">Home</a></li>
<li class="dropdown">
<a href="#about-us" data-toggle="dropdown" data-hover="dropdown">About Us<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#loveline">Loveline</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#the-wedding" data-toggle="dropdown" data-hover="dropdown">The Wedding<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#the-wedding">Invite</a></li>
<li><a href="#location">Location</a></li>
<li><a href="#bridesmaids">Bridesmaids</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#groomsmen">Groomsmen</a></li>
<li><a href="#giftregistry">Gift Registry</a></li>
<li class="dropdown-submenu">
<a href="#">Another Menu</a>
<ul class="dropdown-menu">
<li><a href="#">Another Menu</a></li>
<li><a href="#">Another Menu</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#rsvp">RSVP</a></li>
</ul>
<button id="nav-mobile-btn"><i class="fas fa-bars"></i></button><!-- Mobile menu button -->
</nav>
<!-- END MAIN MENU -->
</div>
</div>
</div>
</div>
</header>
<!-- END HEADER -->
<!-- BEGIN HERO SECTION -->
<section id="hero" class="bg-slideshow section-divider-bottom-1">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="hero-wrapper v-center">
<h2 data-animation-direction="fade" data-animation-delay="600">Save the Date</h2>
<h1 class="hero-title light ">
<span data-animation-direction="from-right" data-animation-delay="300">Isabella</span>
<small data-animation-direction="from-top" data-animation-delay="300">&</small>
<span data-animation-direction="from-left" data-animation-delay="300">Andrew</span>
</h1>
<div class="hero-subtitle light" data-animation-direction="fade" data-animation-delay="1000">SEPT <span>24</span> 2022</div>
<div data-animation-direction="fade" data-animation-delay="1000">
<a href="#rsvp" class="btn btn-light scrollto">RSVP</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END HERO SECTION -->
<!-- BEGIN ABOUT US SECTION -->
<section id="about-us">
<div class="container">
<div class="row about-elems-wrapper">
<div class="element col-md-6 col-xl-4 offset-xl-2" data-animation-direction="from-left" data-animation-delay="300">
<div class="image">
<img src="https://via.placeholder.com/600x600.png" alt="" />
<div class="hover-info neela-style">
<div class="content">
<h3>Andrew Miller<small>The Groom</small></h3>
<p>I am so incredibly blessed and excited to spend everyday for the rest of my life with my best friend!</p>
<ul class="sn-icons">
<li><a href="#"><i class="fab fa-instagram-square"></i></a></li>
<li><a href="#"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-square"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="divider-about-us" data-animation-direction="fade" data-animation-delay="500">
<i class="icon-two-hearts"></i>
</div>
<div class="element col-md-6 col-xl-4" data-animation-direction="from-right" data-animation-delay="400">
<div class="image">
<img src="https://via.placeholder.com/600x600.png" alt="" />
<div class="hover-info neela-style">
<div class="content">
<h3>Isabella Walker<small>The Bride</small></h3>
<p>She's everything I've always dreamed of and I'm so excited to spend the rest of my life with her!</p>
<ul class="sn-icons">
<li><a href="#"><i class="fab fa-instagram-square"></i></a></li>
<li><a href="#"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-square"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="about-us-desc col-lg-8 offset-lg-2" data-animation-direction="from-bottom" data-animation-delay="300">
<h3><small>We are</small>Getting Married</h3>
<p>Today and always, beyond tomorrow, I need you beside me, always as my best friend, lover and forever soul mate. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce tincidunt porttitor venenatis. Vestibulum sit amet est nisl. Vestibulum iaculis finibus sem nec condimentum. Quisque nulla orci, aliquet sit amet sem eget, pellentesque euismod enim. Aenean quis nisl at est consequat elementum sed vel turpis. Phasellus dignissim sit amet orci vitae mattis. Phasellus a imperdiet ligula, efficitur dignissim ex. Mauris placerat aliquet sem commodo molestie.</p>
<img src="https://via.placeholder.com/300x60.png?text=Signature" alt="Signature">
</div>
</div>
</div>
</section>
<!-- END ABOUT US SECTION -->
<!-- BEGIN OUR STORY TITLE SECTION -->
<section id="our-story-title" class="parallax-background bg-color-overlay section-divider-bottom-2 padding-divider-top">
<div class="section-divider-top-1 off-section"></div><!-- The class "section-divider-top-1" can also be applied to the tag <section>. In this case, it was added on a new <div> because the tag <section> have all pseudo elements (::after and ::before) in use. -->
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1 class="section-title light">Our love story</h1>
</div>
</div>
</div>
</section>
<!-- END OUR STORY TITLE SECTION -->
<!-- BEGIN TIMELINE SECTION -->
<section id="loveline">
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-10 offset-lg-1 col-xl-8 offset-xl-2">
<div class="timeline">
<div class="year" data-animation-direction="from-top" data-animation-delay="250">
<span class="neela-style">2018</span>
</div>
<div class="template-1">
<div class="date" data-parallax="3" data-animation-direction="fade" data-animation-delay="350">
<span class="neela-style">22 September</span>
</div>
<div class="image-1" data-parallax="-4" data-animation-direction="from-left" data-animation-delay="250">
<img src="https://via.placeholder.com/600x600.png" alt="">
</div>
<div class="image-2" data-parallax="6" data-animation-direction="from-right" data-animation-delay="250">
<img src="https://via.placeholder.com/600x820.png" alt="">
</div>
<div class="description-wrapper" data-parallax="-6" data-animation-direction="from-bottom" data-animation-delay="250">
<div class="description" data-parallax="-6" data-animation-direction="from-bottom" data-animation-delay="250">
<div class="neela-style">
<h4>Our first date & kiss</h4>
<p>Andrew was extremely nervous. He was afraid to expose his feelings to Isabella, but didn’t want to risk staying in the friend zone. So it was now or never! After all, Isabella was the one. "It was about time!" she said. It was...PERFECT!</p>
</div>
</div>
</div>
</div>
<div class="year" data-animation-direction="from-top" data-animation-delay="250">
<span class="neela-style">2019</span>
</div>
<div class="gallery-container">
<div class="timeline-gallery-wrapper" data-animation-direction="from-left" data-animation-delay="250">
<div class="timeline-gallery owl-carousel">
<div class="item">
<a class="hover-img" href="https://via.placeholder.com/1920x1080.png?text=Timeline+Gallery+Fullsize+Image" data-lightbox="gallery-timeline" title="Our Vacations"><span class="btn btn-light btn-sm">+</span></a>
<img src="https://via.placeholder.com/620x430.png" alt="" />
</div>
<div class="item">
<a class="hover-img" href="https://via.placeholder.com/1920x1080.png?text=Timeline+Gallery+Fullsize+Image" data-lightbox="gallery-timeline" title="Our Vacations"><span class="btn btn-light btn-sm">+</span></a>
<img src="https://via.placeholder.com/620x430.png" alt="" />
</div>
<div class="item">
<a class="hover-img" href="https://via.placeholder.com/1920x1080.png?text=Timeline+Gallery+Fullsize+Image" data-lightbox="gallery-timeline" title="Our Vacations"><span class="btn btn-light btn-sm">+</span></a>
<img src="https://via.placeholder.com/620x430.png" alt="" />
</div>
<div class="item">
<a class="hover-img" href="https://via.placeholder.com/1920x1080.png?text=Timeline+Gallery+Fullsize+Image" data-lightbox="gallery-timeline" title="Our Vacations"><span class="btn btn-light btn-sm">+</span></a>
<img src="https://via.placeholder.com/620x430.png" alt="" />
</div>
<div class="item">
<a class="hover-img" href="https://via.placeholder.com/1920x1080.png?text=Timeline+Gallery+Fullsize+Image" data-lightbox="gallery-timeline" title="Our Vacations"><span class="btn btn-light btn-sm">+</span></a>
<img src="https://via.placeholder.com/620x430.png" alt="" />
</div>
<div class="item">
<a class="hover-img" href="https://via.placeholder.com/1920x1080.png?text=Timeline+Gallery+Fullsize+Image" data-lightbox="gallery-timeline" title="Our Vacations"><span class="btn btn-light btn-sm">+</span></a>
<img src="https://via.placeholder.com/620x430.png" alt="" />
</div>
<div class="item">
<a class="hover-img" href="https://via.placeholder.com/1920x1080.png?text=Timeline+Gallery+Fullsize+Image" data-lightbox="gallery-timeline" title="Our Vacations"><span class="btn btn-light btn-sm">+</span></a>
<img src="https://via.placeholder.com/620x430.png" alt="" />
</div>
<div class="item">
<a class="hover-img" href="https://via.placeholder.com/1920x1080.png?text=Timeline+Gallery+Fullsize+Image" data-lightbox="gallery-timeline" title="Our Vacations"><span class="btn btn-light btn-sm">+</span></a>
<img src="https://via.placeholder.com/620x430.png" alt="" />
</div>
</div>
</div>
<div class="description-wrapper" data-animation-direction="from-bottom" data-animation-delay="250">
<div class="description">
<div class="neela-style">
<h4>Some of our most memorable moments</h4>
<p>They had taken overnight trips before, but this was their first huge vacations outside the USA. Isabella and Andrew travelled to the Baltic region and visited a number of countries including Iceland, Finland, Denmark, Russia, Poland and Germany.</p>
</div>
</div>
</div>
</div>
<div class="year" data-animation-direction="from-top" data-animation-delay="250">
<span class="neela-style">2021</span>
</div>
<div class="template-2">
<div class="date" data-parallax="3" data-animation-direction="fade" data-animation-delay="250">
<span class="neela-style">15 July</span>
</div>
<div class="videoEmbed" data-parallax="6" data-animation-direction="from-top" data-animation-delay="250">
<iframe src="https://player.vimeo.com/video/136240001" width="590" height="330" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="image-1" data-parallax="-2" data-animation-direction="from-left" data-animation-delay="250">
<img src="https://via.placeholder.com/600x800.png" alt="">
</div>
<div class="image-2" data-parallax="4" data-animation-direction="from-right" data-animation-delay="250">
<img src="https://via.placeholder.com/600x800.png" alt="">
</div>
<div class="description-wrapper" data-parallax="-5" data-animation-direction="from-bottom" data-animation-delay="250">
<div class="description" data-parallax="-6" data-animation-direction="from-bottom" data-animation-delay="250">
<div class="neela-style">
<h4>She said Yes!</h4>
<p>So how did Mark pop the question? On a Cruise ... off the shore ... of the Cayman Islands! (YES!) On their way down to dinner with the Ship's Captain, Mark's nerves got the best of him and he pulled Sarah back to the room and straight onto the balcony for the best proposal a girl could ask for!</p>
</div>
</div>
</div>
</div>
</div>
<div class="timeline_footer">
<i class="icon-diamond-ring" data-animation-direction="from-top" data-animation-delay="250"></i>
<div class="punchline" data-animation-direction="from-bottom" data-animation-delay="250"><small>This is where our</small>forever<br>begins!</div>
</div>
</div>
</div>
</div>
</section>
<!-- END TIMELINE SECTION -->
<!-- BEGIN THE WEDDING SECTION -->
<section id="the-wedding" class="parallax-background bg-color-overlay padding-divider-top section-divider-bottom-1">
<div class="section-divider-top-1 off-section"></div><!-- The class "section-divider-top-1" can also be applied to the tag <section>. In this case, it was added on a new <div> because the tag <section> have all pseudo elements (::after and ::before) in use. -->
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1 class="section-title light">Invitation</h1>
</div>
</div>
<div class="row">
<div class="col-md-12 col-lg-10 offset-lg-1 col-xl-8 offset-xl-2 center">
<div class="invite neela-style" data-animation-direction="from-left" data-animation-delay="100">
<div class="invite_title">
<div class="text">
Save<small>the</small>Date
</div>
</div>
<div class="invite_info">
<h2>Isabella <small>&</small> Andrew</h2>
<div class="uppercase">Request the honor of your presence on their wedding day</div>
<div class="date">September 24, 2022<small>at 03:00 pm</small></div>
<div class="uppercase">At Birchwood Church<br>4181 Birchwood Ave Seal Beach, CA</div>
<h5>Reception to follow</h5>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END THE WEDDING SECTION -->
<!-- BEGIN WEDDING LOCATION SECTION -->
<section id="location">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h2 class="section-title">Location</h2>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12 col-xl-10 offset-xl-1">
<div class="map-info-container">
<div class="info-wrapper" data-animation-direction="from-bottom" data-animation-delay="100">
<div class="location-info">
<div class="neela-style">
<h4 class="has-icon"><i class="icon-big-church"></i>Ceremony<small>03:00pm</small></h4>
<h5>Birchwood Church</h5>
<p>4181 Birchwood Ave Seal Beach, CA<br>33.776825, -118.059113</p>
<div class="info-map-divider"></div>
<h4 class="has-icon"><i class="icon-champagne-glasses"></i>Reception<small>05:30pm</small></h4>
<h5>Old Ranch Country Club</h5>
<p>29033 West Lake Drive, Agoura Hills, CA<br>33.776025, -118.065314</p>
</div>
</div>
</div>
<div class="map-wrapper" data-animation-direction="fade" data-animation-delay="100">
<div id="map_canvas" class="gmap"></div>
<div class="map_pins">
<ul class="pins">
<li><i class="fas fa-bell"></i>Ceremony</li>
<li><i class="fas fa-glass-cheers"></i>Reception</li>
<li><i class="fas fa-bed"></i>Accomodations</li>
<li><i class="fas fa-plane"></i>Transportation</li>
</ul>
</div>
</div>
</div>
<div class="center">
<a href="#rsvp" class="btn btn-primary scrollto">RSVP</a>
</div>
</div>
</div>
</div>
</section>
<!-- END WEDDING LOCATION SECTION -->
<!-- BEGIN BRIDESMAIDS SECTION -->
<section id="bridesmaids" class="parallax-background bg-color-overlay">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h2 class="section-title light">Bridesmaids</h2>
</div>
</div>
<div class="row center">
<div class="element bmaid-gmen col-sm-6 col-lg-4" data-animation-direction="from-top" data-animation-delay="300">
<div class="image">
<img src="https://via.placeholder.com/600x600.png" alt="" />
<div class="hover-info neela-style">
<div class="content center">
<h3>Emily Garcia<small>Maid of honour</small></h3>
<ul class="sn-icons">
<li><a href="#"><i class="fab fa-instagram-square"></i></a></li>
<li><a href="#"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-square"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="element bmaid-gmen col-sm-6 col-lg-4" data-animation-direction="from-top" data-animation-delay="400">
<div class="image">
<img src="https://via.placeholder.com/600x600.png" alt="" />
<div class="hover-info neela-style">
<div class="content center">
<h3>Rachel Harris<small>Bridesmaid</small></h3>
<ul class="sn-icons">
<li><a href="#"><i class="fab fa-instagram-square"></i></a></li>
<li><a href="#"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-square"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="element bmaid-gmen col-sm-6 col-lg-4" data-animation-direction="from-top" data-animation-delay="500">
<div class="image">
<img src="https://via.placeholder.com/600x600.png" alt="" />
<div class="hover-info neela-style">
<div class="content center">
<h3>Sarah Williams<small>Bridesmaid</small></h3>
<ul class="sn-icons">
<li><a href="#"><i class="fab fa-instagram-square"></i></a></li>
<li><a href="#"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-square"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END BRIDESMAIDS SECTION -->
<!-- BEGIN TESTIMONIALS SECTION -->
<section id="testimonials" class="bg-color side-flowers-light">
<div class="container">
<div class="row">
<div class="col-lg-12 col-xl-10 offset-xl-1">
<div id="testimonials-slider" class="owl-carousel testimonials light" data-animation-direction="from-bottom" data-animation-delay="300">
<div class="item">
<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In varius ante libero, a sollicitudin elit malesuada et. Nulla facilisi. Pellentesque magna diam, mattis a gravida eget, lobortis ut velit. Nam interdum hendrerit nisl et malesuada. Nulla facilisis velit neque, sed ultrices nibh facilisis non.</blockquote>
<div class="author">
<h3>John Doe<small>Best Man</small></h3>
</div>
</div>
<div class="item">
<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In varius ante libero, a sollicitudin elit malesuada et. Nulla facilisi. Pellentesque magna diam, mattis a gravida eget, lobortis ut velit. Nam interdum hendrerit nisl et malesuada. Nulla facilisis velit neque, sed ultrices nibh facilisis non.</blockquote>
<div class="author">
<h3>John Doe<small>Best Man</small></h3>
</div>
</div>
<div class="item">
<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In varius ante libero, a sollicitudin elit malesuada et. Nulla facilisi. Pellentesque magna diam, mattis a gravida eget, lobortis ut velit. Nam interdum hendrerit nisl et malesuada. Nulla facilisis velit neque, sed ultrices nibh facilisis non.</blockquote>
<div class="author">
<h3>John Doe<small>Best Man</small></h3>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END TESTIMONIALS SECTION -->
<!-- BEGIN GROOMSMEN SECTION -->
<section id="groomsmen" class="parallax-background bg-color-overlay">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h2 class="section-title light">Groomsmen</h2>
</div>
</div>
<div class="row center">
<div class="element bmaid-gmen col-sm-6 col-lg-4" data-animation-direction="from-top" data-animation-delay="300">
<div class="image">
<img src="https://via.placeholder.com/600x600.png" alt="" />
<div class="hover-info neela-style">
<div class="content center">
<h3>Michael Scott<small>Best Man</small></h3>
<ul class="sn-icons">
<li><a href="#"><i class="fab fa-instagram-square"></i></a></li>
<li><a href="#"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-square"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="element bmaid-gmen col-sm-6 col-lg-4" data-animation-direction="from-top" data-animation-delay="400">
<div class="image">
<img src="https://via.placeholder.com/600x600.png" alt="" />
<div class="hover-info neela-style">
<div class="content center">
<h3>Daniel Wright<small>Groomsman</small></h3>
<ul class="sn-icons">
<li><a href="#"><i class="fab fa-instagram-square"></i></a></li>
<li><a href="#"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-square"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="element bmaid-gmen col-sm-6 col-lg-4" data-animation-direction="from-top" data-animation-delay="500">
<div class="image">
<img src="https://via.placeholder.com/600x600.png" alt="" />
<div class="hover-info neela-style">
<div class="content center">
<h3>Ryan Anderson<small>Groomsman</small></h3>
<ul class="sn-icons">
<li><a href="#"><i class="fab fa-instagram-square"></i></a></li>
<li><a href="#"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-square"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END GROOMSMEN SECTION -->
<!-- BEGIN WEDDING GIFTS SECTION -->
<section id="giftregistry" class="section-bg-color parallax-background">
<div class="container">
<div class="row">
<div class="col-md-8 col-xl-6">
<h2 class="section-title-lg uppercase desc"><small>Gift</small><strong>Registry</strong></h2>
<div class="section-desc">Lorem ipsum dolor sit amet, consectetur adipiscing elit. In varius ante libero, amet as sollicitudin elit malesuada et. Nulla facilisi. Pellentesque magna diam, mattis gravida eget, lobortis ut velit. Nam interdum hendrerit nisl et malesuada.</div>
</div>
</div>
<div class="row">
<div class="col-md-8 col-xl-6">
<ul class="wedding-gifts">
<li id="gift-list" data-animation-direction="from-bottom" data-animation-delay="300">
<div class="neela-style">
<i class="icon-wedding"></i>
<h3>Check our<br>wedding gift list</h3>
<div class="info">
<a href="#" class="img"><img src="https://via.placeholder.com/215x75.png?text=Store+Logo" alt="Macy's" /></a>
<a href="#" class="img"><img src="https://via.placeholder.com/215x75.png?text=Store+Logo" alt="Target" /></a>
</div>
</div>
</li>
<li id="help-wedding" data-animation-direction="from-bottom" data-animation-delay="300">
<div class="neela-style">
<i class="icon-wedding-day"></i>
<h3>Help with the<br>wedding planning</h3>
<div class="info">
<a href="#rsvp" class="btn btn-primary reverse scrollto"><i class="fa fa-envelope"></i>Contact us</a>
</div>
</div>
</li>
<li id="help-honeymoon" data-animation-direction="from-bottom" data-animation-delay="300">
<div class="neela-style">
<i class="icon-honeymoon"></i>
<h3>Contribute to our<br>dream honeymoon</h3>
<div class="info">
<a href="#" class="btn btn-primary reverse">$50</a>
<a href="#" class="btn btn-primary reverse">$100</a>
<a href="#" class="btn btn-primary reverse">$200</a>
<br>
<a href="#" id="otheramount" class="btn btn-primary reverse">Other Amount</a>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- END WEDDING GIFTS SECTION -->
<!-- BEGIN GALLERY SECTION -->
<section id="gallery" class="section-bg-color">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1 class="section-title">Wedding Gallery</h1>
</div>
</div>
</div>
<div class="gallery-wrapper">
<div class="gallery-left"><i class="fas fa-chevron-left"></i></div>
<div class="gallery-right"><i class="fas fa-chevron-right"></i></div>
<div class="gallery-scroller">
<ul>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
</ul>
<ul>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
<li>
<div class="hover-info">
<a class="btn btn-light btn-sm only-icon" href="https://via.placeholder.com/1920x1080.png?text=Gallery+Image+Fullsize" data-lightbox="WeddingPhotos" title="Wedding Photos">
<i class="fa fa-link"></i>
</a>
</div>
<img src="https://via.placeholder.com/635x635.png" alt="" />
</li>
</ul>
</div>
</div>
</section>
<!-- END GALLERY SECTION -->
<!-- BEGIN BLOG SECTION -->
<section id="blog" class="section-bg-color divider-bottom-2 divider-pattern divider-bg-color">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1 class="section-title">Wedding Blog</h1>
</div>
</div>
<div class="row">
<!-- BEGIN BLOG MAIN CONTENT -->
<div class="col-sm-12">
<!-- BEGIN BLOG LISTING -->
<div class="blog-listing clearfix">
<div class="row gx-5">
<!-- BEGIN BLOG ITEM -->
<article class="item col-md-6">
<div class="image">
<a href="blog-single-post.html">
<span class="btn btn-light"><i class="fa fa-file-o"></i> Read More</span>
</a>
<img src="https://via.placeholder.com/800x500.png" alt="" />
</div>
<div class="date">July 20, 2021</div>
<div class="info-blog">
<h3 class="post-title"><a href="blog-single-post.html">Wedding trends to obsess over this year</a></h3>
<p>If you've always dreamt of carrying a bouquet of old fashioned garden roses down the aisle, but your budget doesn't quite match up to the dream, try this!</p>
<div class="bottom-info">
<ul class="blog-meta">
<li><a href="#">Wedding</a>, <a href="#">Ideas</a>, <a href="#">Tips</a></li>
<li>/ By <a href="#">WiselyThemes</a></li>
</ul>
<div class="blog-share">
<a target="_blank" href="http://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.wiselythemes.com%2Fhtml%2Fneela%2Fblog-single-post.html"><i class="fab fa-facebook-f"></i></a>
<a target="_blank" href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fwww.wiselythemes.com%2Fhtml%2Fneela%2Fblog-single-post.html%2F&text=5%20ways%20to%20have%20a%20beautiful%20wedding"><i class="fab fa-twitter"></i></a>
<a target="_blank" href="http://pinterest.com/pin/create/button/?url=https%3A%2F%2Fwww.wiselythemes.com%2Fhtml%2Fneela%2Fblog-single-post.html%2F&description=Wedding%20trends%20to%20obsess%20over%20this%20year&media=https%3A%2F%2Fwww.wiselythemes.com%2Fhtml%2Fneela%2Fimages%2Fblog-img-detail.jpg"><i class="fab fa-pinterest-p"></i></a>
</div>
</div>
</div>
</article>
<!-- END BLOG ITEM -->
<!-- BEGIN BLOG ITEM -->
<article class="item col-md-6">
<div class="image">
<a href="blog-single-post.html">
<span class="btn btn-light"><i class="fa fa-file-o"></i> Read More</span>
</a>
<img src="https://via.placeholder.com/800x500.png" alt="" />
</div>
<div class="date">August 2, 2021</div>
<div class="info-blog">
<h3 class="post-title"><a href="blog-single-post.html">The ultimate guide to plan your wedding</a></h3>
<p>When you consider that the average wedding costs over $20,000, you may be thinking that there’s no way you can afford the day of your dreams.</p>
<div class="bottom-info">
<ul class="blog-meta">
<li><a href="#">Wedding</a>, <a href="#">Ideas</a>, <a href="#">Tips</a></li>
<li>/ By <a href="#">WiselyThemes</a></li>
</ul>
<div class="blog-share">
<a target="_blank" href="http://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.wiselythemes.com%2Fhtml%2Fneela%2Fblog-single-post.html"><i class="fab fa-facebook-f"></i></a>
<a target="_blank" href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fwww.wiselythemes.com%2Fhtml%2Fneela%2Fblog-single-post.html%2F&text=DIY%3A%20A%20Garden%20Rose%20Bouquet"><i class="fab fa-twitter"></i></a>
<a target="_blank" href="http://pinterest.com/pin/create/button/?url=https%3A%2F%2Fwww.wiselythemes.com%2Fhtml%2Fneela%2Fblog-single-post.html%2F&description=DIY%3A%20A%20Garden%20Rose%20Bouquet&media=http%3A%2F%2Fplacehold.it%2F750x580"><i class="fab fa-pinterest-p"></i></a>
</div>
</div>
</div>
</article>
<!-- END BLOG ITEM -->
</div>
</div>
<!-- END BLOG LISTING -->
<div class="center">
<a class="btn btn-primary" href="blog-listing-sidebar-right.html">View all blog posts</a>
</div>
</div>
</div>
</div>
</section>
<!-- END BLOG SECTION -->
<!-- BEGIN CONTACTS SECTION -->
<section id="rsvp" class="section-bg-color extra-padding-section">
<div class="container">
<div class="row">
<div class="col-lg-10 offset-lg-1 col-xl-8 offset-xl-2 col-xxl-6 offset-xxl-3">
<div class="form-wrapper flowers neela-style">
<h1 class="section-title">Will you Attend?</h1>
<form id="form-rsvp" method="post" action="#">
<div class="form-floating">
<input type="text" name="Name" id="name" placeholder="Your Name*" class="form-control required fromName">
<label for="name">Your Name*</label>
</div>
<div class="form-floating">
<input type="email" name="E-mail" id="email" placeholder="E-mail*" class="form-control required fromEmail">
<label for="email">E-mail*</label>
</div>
<div class="form-check-wrapper">
<div class="form-check form-check-inline">
<input class="form-check-input required" type="radio" name="Attend wedding" id="attend_wedding_yes">