-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php.20210720
1407 lines (1246 loc) · 69.7 KB
/
index.php.20210720
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="">
<meta name="description" content="New York's premiere event space in Midtown & Times Square">
<meta name="keywords" content="New York venues, New venue, New venues, New York city venues, Manhattan venues, New York party venues, Times square wedding, New York city weddings, New York city meeting spaces, Midtown meeting spaces, Manhattan meeting spaces, Times square meeting spaces, Times square event spaces, Times square new event spaces">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Manhattan Manor">
<meta property="og:url" content="http://manhattanmanor.com/">
<meta property="og:description" content="New York's premiere event space in Midtown & Times Square">
<meta property="og:title" content="Manhattan Manor | New York City | Wedding Venues">
<meta property="og:image" content="http://www.manhattanclubnyc.com/files/225cc26e28ea005522d97ff16320ed33_full_size.jpg">
<meta property="og:image" content="http://www.manhattanclubnyc.com/files/dafc668c8b2aa3103781978afee6c269_full_size.jpg">
<meta property="og:image" content="http://www.manhattanclubnyc.com/files/8c9e598f29cb46f0b7508823a5ec29cd_full_size.jpg">
<link rel="icon" type="image/png" href="./img/favicon.png" />
<title>Manhattan Manor</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet">
<!-- <link href="https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700" rel="stylesheet"> -->
<!-- <link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700" rel="stylesheet"> -->
<link href="https://fonts.googleapis.com/css?family=Noto+Sans:700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/animate.css" rel="stylesheet">
<link href="vendor/owl-carousel/owl.carousel.css" rel="stylesheet">
<link href="vendor/owl-carousel/owl.theme.default.css" rel="stylesheet">
<link href="vendor/magnific-popup/magnific-popup.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js" defer></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js" defer></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js" defer></script>
<!-- Owl carusel -->
<script src="vendor/owl-carousel/owl.carousel.min.js" defer></script>
<!-- Set elements with equal height -->
<script src="vendor/magic-height/magic-height.min.js" defer></script>
<!-- Animations when scrolling -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js" defer></script>
<script src="vendor/scroll-magic/ScrollMagic.js" defer></script>
<script src="vendor/scroll-magic/animation.gsap.js" defer></script>
<!-- <script src="vendor/scroll-magic/animation.velocity.js"></script> -->
<!-- Modal Pop-Ups -->
<script src="vendor/magnific-popup/jquery.magnific-popup.min.js" defer></script>
<!-- Google Maps -->
<!-- <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD75RO2DlvtjAGoG4R9IrlokF_GUqlU07o&callback=initMap"></script> -->
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB72v_EXqDG1we2kj2UBQ49OIT6mWDCXoM&callback=initMap"></script>
<!-- Instagram feed -->
<script src="vendor/instafeed/instafeed.min.js" defer></script>
<!-- Custom scripts for this template -->
<script src="js/scripts.js" defer></script>
<script src="js/index.js" defer></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-134617649-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-134617649-1');
</script>
</head>
<body id="page-top" class="bg-black">
<a id="skip-to" href="#main">Skip to main content</a>
<?php include "./layout/navigation.inc" ?>
<main id="main">
<!-- Header Section -->
<section id="header">
<div class="overlay"></div>
<video playsinline="playsinline" autoplay="autoplay" muted="true" loop="loop" tabindex="-1">
<!-- <source src="./video/mhcn-hdv2-720.mp4" type="video/mp4"> -->
<!-- <source src="./video/demo_proc.mp4" type="video/mp4"> -->
<!-- <source src="./video/Mmanor.m4v" type="video/mp4"> -->
<source src="./video/Mmanor-cut.mp4" type="video/mp4">
</video>
<div class="container h-100">
<div class="d-flex text-center h-100">
<div class="text-white w-100" style="margin-top : 18vh; margin-bottom : 33vh;">
<!-- <h1 class="text-primary text-uppercase" style="font-family : Oswald; font-weight : 600;">MM</h1> -->
<img alt="Manhattan Manor Logo" src="img/logo-big.png" class="img-fluid" style="max-height : 25vh;" />
<p class="mt-4" style="font-size : 135%; font-weight : 300;">New York's Most Central Venue<p>
<!-- <button onClick="document.getElementById('signup').scrollIntoView();" class="header-button fill">Book Now</button> -->
<!-- <p class="mt-4 text-uppercase" style="letter-spacing : 0.0313rem; font-size : 100%; font-weight : 600;">Unleash Your Dreams</p> -->
<a href="#services" class="text-white js-scroll-trigger" aria-label="Go to Manhattan Manor Services" ><i class="fas fa-chevron-down fa-2x"></i></a>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="services-section bg-black">
<div class="container content-tween">
<div class="row align-items-center no-gutters demo-selector">
<div class="col-12 col-lg-5 content-tween-left">
<img class="img-fluid" src="img/mm-outside-2.jpg" alt="sideview"/>
</div>
<div class="col-12 col-lg-7 p-4 content-tween-right">
<h1 class="section-title text-center text-lg-left" >Who We Are</h1>
<div class="text-center text-lg-left">
<!-- Whether it be a corporate event, private party, wedding, gala, or red carpet, our staff is devoted to making sure every aspect of your event is customized to your specific needs. -->
Manhattan Manor is home to two luxurious event venues in one prime midtown Manhattan location. 6,000 square feet of luxurious space with gorgeous French Doors, skylights, exposed brick, mahogany floors, and spectacular views from Central Park to Times Square. Our team provides turnkey intimate services for corporate, social and not-for-profit events. An independent, dedicate special event space for 20 years with one of the newest, most modern, divine spaces in New York.
</div>
<div>
<!--
<div id="carousel-testimonials" class="owl-carousel owl-theme text-white pt-4 pb-0">
<div class="item text-center text-lg-left">
<h2 class="mb-0">Elegance</h2>
</div>
<div class="item text-center text-lg-left">
<h2 class="mb-0">Style</h2>
</div>
<div class="item text-center text-lg-left">
<h2 class="mb-0">Glamour</h2>
</div>
<div class="item text-center text-lg-left">
<h2 class="mb-0">Unique</h2>
</div>
</div>
-->
</div>
</div>
</div>
</div>
</section>
<!-- Venues Section -->
<section id="venues" class="venues-section bg-black">
<div id="parallax-trigger-venues" class="container">
<div class="row align-items-center no-gutters">
<div id="parallax-text-venues" class="col-lg-12 single-tween-item">
<div class="text-center px-4 mb-5">
<h1 class="section-title" >Venues</h1>
<p style="color: #dbdbdb">
Two unique spaces that are easy, versatile, and lend themselves to all types of events. Whether you are hosting an all day conference, elegant wedding, photo shoot, or special family celebration, Manhattan Manor is the place.
</p>
</div>
</div>
<div class="col-lg-12">
<div class="row">
<div class="col-12 col-md-6 pt-5 pt-md-0">
<div class="carousel-venue-container">
<div class="carousel-venue owl-carousel owl-theme pt-4 pt-md-0">
<div class="item text-center" style="position : relative;">
<img alt="Skylight Room photo" src="img/venue-skylight.jpg" class="img-fluid mb-3"/>
<h2 class="text-white text-left p-3" style="font-family : Oswald; position : absolute; bottom : 0px;">Skylight Room</h2>
</div>
<div class="item px-3 py-3 px-lg-5">
<h2 class="text-primary text-shadow text-center mb-3" style="font-family : Oswald;">Skylight Room</h2>
<h4 class="font-italic">Venue Size</h4>
<ul>
<li>3,408 Square Feet</li>
</ul>
<h4 class="font-italic ">Capacity:</h4>
<ul>
<li>275 Cocktail Reception</li>
<li>275 Seated Dinner</li>
<li>250 Seated Dinner with Dance Floor</li>
<li>125 Classroom Conference</li>
<li>225 Theatre Seating</li>
<li>120 U-Shape Conference</li>
</ul>
</div>
</div>
</div>
<div class="text-center">
<div>
<button class="header-button fill skylight-gallery" style="width : 250px;" aria-label="Open Skylight Room image gallery"><i class="far fa-images"></i> Gallery</button>
</div>
<div>
<button class="header-button fill skylight-video" style="width : 250px;" aria-label="Open Skylight Room video"><i class="far fa-play-circle"></i> Venue</button>
</div>
<form method="get" action="docs/Floor Plan - Skylight.pdf">
<button class="header-button fill" style="width : 250px;" aria-label="Open Skylight Room floor plans"><i class="far fa-map"></i> Floor Plans</button>
</form>
</div>
</div>
<div class="col-12 col-md-6 pt-5 pt-md-0">
<div class="carousel-venue-container">
<div class="carousel-venue owl-carousel owl-theme pt-4 pt-md-0">
<div class="item text-center" style="position : relative;">
<img alt="Manhattan Club photo" src="img/venue-manhattanclub.jpg" class="img-fluid mb-3"/>
<h2 class="text-white text-shadow text-left p-3" style="font-family : Oswald; position : absolute; bottom : 0px;">Manhattan Club</h2>
</div>
<div class="item px-3 py-3 px-lg-5">
<h2 class="text-primary text-center mb-3" style="font-family : Oswald;">Manhattan Club</h2>
<h4 class="font-italic">Venue Size:</h4>
<ul>
<li>3,520 Square feet</li>
</ul>
<h4 class="font-italic ">Capacity:</h4>
<ul>
<li>280 Cocktail Reception</li>
<li>250 Seated Dinner</li>
<li>200 Seated Dinner with Dance Floor</li>
<li>100 Classroom Conference</li>
<li>200 Theatre Seating</li>
<li>120 U-Shape Conferece</li>
</ul>
</div>
</div>
</div>
<div class="text-center">
<div>
<button class="header-button fill mc-gallery" style="width : 250px;" aria-label="Open Manhattan Club image gallery"><i class="far fa-images"></i> Gallery</button>
</div>
<div>
<button class="header-button fill mc-video" style="width : 250px;" aria-label="Open Manhattan Club Room video"><i class="far fa-play-circle"></i> Venue</button>
</div>
<form method="get" action="docs/Floor Plan - Manhattan Club.pdf">
<button class="header-button fill" style="width : 250px;"><i class="far fa-map"></i> Floor Plans</button>
</form>
</div>
</div>
<!--
<div id="parallax-text-findus" class="col-lg-12 single-tween-item">
<div class="text-center px-4 py-5">
<h1 class="section-title" >Find Us</h1>
<p>
201 West 52<sup>nd</sup> St New York City
</p>
</div>
</div>
<div id="map" class="col-12" style="position : relative;">
<iframe title="Location of Manhattan Manor on a map" tabindex="-1" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3021.9729696805166!2d-73.98479384882764!3d40.76261924235239!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c258f87ddf7eab%3A0x83ec575b5ef68816!2s201%20W%2052nd%20St%2C%20New%20York%2C%20NY%2010019%2C%20USA!5e0!3m2!1sen!2sar!4v1624387059697!5m2!1sen!2sar" style="border:0; height : 50vh; width : 100%;" allowfullscreen="" loading="lazy"></iframe>
<div class="text-center p-3" style="position : absolute; bottom : 0px; left : 0px; right : 0px; z-index : 100;">
<form method="get" action="docs/MM-Directions.pdf">
<button class="header-button fill" style="width : 250px;">Download Directions</button>
</form>
</div>
</div>
-->
</div>
</div>
</div>
</div>
</section>
<!-- Event Types Section -->
<section id="event-type" class="event-type-section">
<div class="container-fluid">
<div class="row align-items-center no-gutters">
<div id="parallax-text-venues" class="col-lg-12 single-tween-item">
<div class="text-center px-4 mb-5">
<h1 class="section-title" >Our Services</h1>
</div>
</div>
</div>
<div class="row justify-content-center no-gutters stagger-tween">
<div class="col-md-6 col-xl-3 p-2 stagger-tween-item">
<div class="reveal-container">
<img alt="Corporate event photo" class="img-fluid" src="img/events/ev-corporate.jpg" />
<h5 class="text-white text-uppercase text-shadow p-3 px-lg-4" style="position : absolute; bottom : 0px;">Corporate</h5>
<div class="px-3 py-2 p-md-3 px-lg-4 py-lg-4 d-flex flex-row align-items-center reveal-subcontainer">
<div class="reveal-content">
An ideal venue for early morning breakfasts, lunch meetings, corporate dinners, full day conferences, holiday parties, and galas – the Manhattan Manor is a full service catering facility located in the center of midtown with easy access to all public transportation.
</div>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3 p-2 stagger-tween-item">
<div class="reveal-container">
<img alt="Wedding event photo" class="img-fluid" src="img/events/ev-wedding.jpg" />
<h5 class="text-white text-uppercase text-shadow p-3 px-lg-4" style="position : absolute; bottom : 0px;">Wedding</h5>
<div class="px-3 py-2 p-md-3 px-lg-4 py-lg-4 d-flex flex-row align-items-center reveal-subcontainer">
<div class="reveal-content">
Two magnificent venues to celebrate your special day! Guests will bask in natural light during the ceremony streaming through the skylights, then enjoy cocktails in the elegant Manhattan Club, followed by a memorable reception in the brand new Skylight Room with its exposed brick and magnificent chandeliers. A full service catering facility with you as our only focus.
</div>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3 p-2 stagger-tween-item">
<div class="reveal-container">
<img alt="Production event photo" class="img-fluid" src="img/events/ev-production.jpg" />
<h5 class="text-white text-uppercase text-shadow p-3 px-lg-4" style="position : absolute; bottom : 0px;">Special Productions</h5>
<div class="px-3 py-2 p-md-3 px-lg-4 py-lg-4 d-flex flex-row align-items-center reveal-subcontainer">
<div class="reveal-content">
A versatile open space in a central, convenient location with easy street access, natural light or black out, 24- hour access, and full catering.
</div>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3 p-2 stagger-tween-item">
<div class="reveal-container">
<img alt="Non-profit event photo" class="img-fluid" src="img/events/ev-nonprofit.jpg" />
<h5 class="text-white text-uppercase text-shadow p-3 px-lg-4" style="position : absolute; bottom : 0px;">Not for profit</h5>
<div class="px-3 py-2 p-md-3 px-lg-4 py-lg-4 d-flex flex-row align-items-center reveal-subcontainer">
<div class="reveal-content">
Two perfect venues to host special guests for important conferences or meetings as well as an elegant gala to celebrate your accomplishments. Full service catering to meet your needs.
</div>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3 p-2 stagger-tween-item">
<div class="reveal-container">
<img alt="Mitzvah event photo" class="img-fluid" src="img/events/ev-mitzvah.jpg" />
<h5 class="text-white text-uppercase text-shadow p-3 px-lg-4" style="position : absolute; bottom : 0px;">Mitzvahs</h5>
<div class="px-3 py-2 p-md-3 px-lg-4 py-lg-4 d-flex flex-row align-items-center reveal-subcontainer">
<div class="reveal-content">
A fun flexible space, the Manhattan Manor offers ease, convenience and a true New York Experience. Steps from Times Square kids and adults alike will walk into the magical Skylight Room bedecked with all of the stellar activities and food to make it a fun, memorable day for all.
</div>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3 p-2 stagger-tween-item">
<div class="reveal-container">
<img alt="Fashion event photo" class="img-fluid" src="img/events/ev-fashion.jpg" />
<h5 class="text-white text-uppercase text-shadow p-3 px-lg-4" style="position : absolute; bottom : 0px;">Fashion</h5>
<div class="px-3 py-2 p-md-3 px-lg-4 py-lg-4 d-flex flex-row align-items-center reveal-subcontainer">
<div class="reveal-content">
Whether you’re hosting a fashion show or need a unique event space to show your collection, the Manhattan Manor is available for all types of special events with full catering service.
</div>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3 p-2 stagger-tween-item">
<div class="reveal-container">
<img alt="Product presentation event photo" class="img-fluid" src="img/events/ev-product.jpg" />
<h5 class="text-white text-uppercase text-shadow p-3 px-lg-4" style="position : absolute; bottom : 0px;">Product Launches</h5>
<div class="px-3 py-2 p-md-3 px-lg-4 py-lg-4 d-flex flex-row align-items-center reveal-subcontainer">
<div class="reveal-content">
Product launch events are essential for any business. Our venues offer the perfect backdrop just steps from all major subways and trains. Our staff is there to assist in your achieving the specific purpose of creating awareness and publicity for your particular product/brand.
</div>
</div>
</div>
</div>
<div class="col-md-6 col-xl-3 p-2 stagger-tween-item">
<div class="reveal-container">
<img alt="Broadcast event photo" class="img-fluid" src="img/events/ev-broadcast.jpg" />
<h5 class="text-white text-uppercase text-shadow p-3 px-lg-4" style="position : absolute; bottom : 0px;">Broadcast</h5>
<div class="px-3 py-2 p-md-3 px-lg-4 py-lg-4 d-flex flex-row align-items-center reveal-subcontainer">
<div class="reveal-content">
A versatile space with easy loading and unloading, natural light or black out, full catering, and 24 hour Access.
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about-section bg-black">
<div id="parallax-trigger-about" class="container content-tween">
<div class="row align-items-center no-gutters">
<div class="col-12 single-tween-item">
<div class="text-center px-4 mb-5">
<h1 id="parallax-text-about" class="section-title" >Our Team</h1>
</div>
</div>
<div clas#s="col-12">
<div class="row" style="border-bottom: solid 1px #545454; margin-bottom: 20px">
<div class="col-md-2" style="padding-bottom: 10px;">
<img class="img-fluid" src="img/Caroline_Carty.jpg" alt="Caroline Carty"/>
</div>
<div class="col-md-10" style="padding-bottom: 15px; padding-top: 2px; padding right: 10px; padding-left: 10px">
<p style="color: #ffffff; font-weight: bold">
Caroline Carty
</p>
<p>
<i>Designer and Owner of Manhattan Manor</i>
</p>
<p>
A graduate of New York School of Interior Design, Caroline is well known for her innate sense of
style and passion for design. Her interiors draw inspiration from her European and New York
background. The use of sophisticated textures, clean lines, natural tones, subtle fusion of color
and minimalistic, yet elegant and timeless design, define her style and aesthetic.
</p>
<p>
The Skylight Room is one of Caroline’s many projects that she’s very proud to showcase. The use of
geometric shapes throughout the space leading from the staircase to the exposed beams and wall
paneling juxtapose the old and new. Working alongside the renowned contracting team Duggan & Son
they created a beautiful, refined and timeless space. The relentless attention to detail is seen
throughout the space especially in the restoration of the majestic pièce de résistance Belgian
fireplace which stands tall among the many featured chandeliers.
</p>
</div>
</div>
<div class="row" style="border-bottom: solid 1px #545454; margin-bottom: 20px">
<div class="col-md-2" style="padding-bottom: 10px;">
<img alt="Amanda Smith" class="img-fluid" src="img/Amanda_Smith.jpg" />
</div>
<div class="col-md-10" style="padding-bottom: 15px; padding-top: 2px; padding right: 10px; padding-left: 10px">
<p style="color: #ffffff; font-weight: bold">
Amanda Smith
</p>
<p>
<i>Director of Event Sales</i>
</p>
<p>
Amanda has more than 15 years working in the event industry. Before joining the Manhattan Manor as
Director of Events, Amanda oversaw the full operation of a boutique catering business, Amanda Smith
Caterers. She has catered events for renowned companies like Town & Country, TOD’S, Carl Hansen;
numerous not-for-profit organizations including Room to Read, the Alzheimer’s Association, and the
Central Park Conservancy; as well as private families.
</p>
<p>
A graduate of Cornell University’s hotel school, Amanda works closely with her clients to make
their events exactly how they want them and is known for her calm demeanor and efficiency. With
the solid group of chefs, servers, and event managers at the Manhattan Manor, Amanda will make sure
that your event is seamless and memorable.
</p>
</div>
</div>
<div class="row">
<div class="col-md-2" style="padding-bottom: 10px;">
<img alt="Mary Burke" class="img-fluid" src="img/Mary_Burke.jpg" />
</div>
<div class="col-md-10" style="padding-bottom: 15px; padding-top: 2px; padding right: 10px; padding-left: 10px">
<p style="color: #ffffff; font-weight: bold">
Mary Burke
</p>
<p>
<i>Events Manager</i>
</p>
<p>
Mary is the catering manager and favorite person at the Manhattan Manor. After 18 years working
here, she has become synonymous with the club and guests know that they are in good hands. She
runs a tight ship and is always willing to do the utmost for her clients and their guests.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- News Section -->
<?php
include_once './app_includes/db_connect.php';
$mysqli->query("SET NAMES 'utf8'");
$sql = "SELECT recordid, title, subtitle, url_link, img_bg, img_sm, description, news_date FROM news WHERE status = 'active' ORDER BY news_date DESC LIMIT 10";
$result = $mysqli->query($sql);
$rows_count = $result->num_rows;
$rows = array();
if ($rows_count > 0) {
?>
<section id="news" class="news-section bg-black">
<div id="parallax-trigger-news" class="container">
<div id="parallax-text-news" class="single-tween-item">
<div class="text-center px-4 mb-5">
<h1 class="section-title" >The Latest</h1>
</div>
</div>
<div id="carousel-news" class="owl-carousel owl-theme">
<?php
for ($i = 0; $i < $rows_count; ++$i) {
$row = $result->fetch_assoc();
?>
<div class="item p-2">
<div class="news-body">
<?php
if ($row['img_sm'] <> "N/A") {
?>
<img alt="News photo" src="../cp/upl_docs/<?php echo $row['img_sm']; ?>" class="img-fluid mb-3" />
<?php
}
?>
<a href="#" onclick="showModal('<?php echo $row['recordid']; ?>-modal'); return false;" >
<h5 class="text-white text-uppercase mb-3"><?php echo $row['title']; ?></h5>
</a>
<p class="mb-4 text-white-50"><?php echo $row['subtitle']; ?></p>
</div>
<hr class="d-lg-block">
<p class="mt-3 text-white-50 text-right"><?php echo date('M t, g:ia', strtotime($row['news_date'])); ?></p>
</div>
<?php
} // for ($i = 0; $i < $rows_count; ++$i)
?>
</div>
</div>
</section>
<?php
// The modals must be created outside the carousel
$result->data_seek(0);
for ($i = 0; $i < $rows_count; ++$i) {
$row = $result->fetch_assoc();
?>
<!-- Modal -->
<div class="modal fade text-left" id="<?php echo $row['recordid']; ?>-modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<?php
if ($row['img_bg'] <> "N/A") {
?>
<img alt="Photo" src="../cp/upl_docs/<?php echo $row['img_bg']; ?>" class="img-fluid mb-3" />
<?php
}
?>
<p class="mb-0"><?php echo date('M t, g:ia', strtotime($row['news_date'])); ?></p>
<h4 class=""><?php echo $row['title']; ?></h4>
<p class="mb-0"><?php echo $row['subtitle']; ?></p>
<hr class="d-lg-block ml-0">
<p class="mb-0"><?php echo $row['description']; ?></p>
<?php
if (isset($row['url_link']) && $row['url_link'] !== '') {
?>
<p class="mb-0 mt-3"><a href="<?php echo $row['url_link']; ?>" target="blank">Read full article</a></p>
<?php
}
?>
</div>
<div class="modal-footer border-top-0">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<!-- <button type="button" class="btn btn-primary">Save changes</button> -->
</div>
</div>
</div>
</div>
<?php
} // for ($i = 0; $i < $rows_count; ++$i)
?>
<?php
} // if ($rows_count > 0)
$result->close;
$row->close;
// Closed later
//include_once './app_includes/db_close.php';
?>
<!-- Instagram Section -->
<section id="instagram" class="instagram-section bg-black">
<div id="parallax-trigger-instagram" class="container content-tween">
<div class="row align-items-center no-gutters">
<div id="parallax-text-instagram" class="col-lg-12 single-tween-item">
<div class="text-center px-4 mb-5">
<h1 class="section-title" >Instagram</h1>
<p>
Connect with us <a href="http://instagram.com/manhattanmanor" target="_blank">@manhattanmanor</a>
</p>
</div>
</div>
<div class="col-12">
<div class="col-lg-12">
<div id="instafeed" class="row no-gutters">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section id="gallery" class="gallery-section text-center bg-black">
<div id="parallax-trigger-gallery" class="container">
<div class="row align-items-center no-gutters">
<div id="parallax-text-gallery" class="col-lg-12 single-tween-item">
<div class="text-center px-4 mb-5">
<h1 class="section-title" >Gallery</h1>
</div>
</div>
<div class="col-lg-12">
<div class="row no-gutters popup-gallery stagger-tween">
<div class="col-6 col-md-3 mx-auto p-3">
<a href="img/gallery/gallery-01.jpg" aria-label="Show image 01"><img class="img-fluid stagger-tween-item" src="img/gallery/gallery-01-sm.jpg" alt="01"/></a>
</div>
<div class="col-6 col-md-3 mx-auto p-3">
<a href="img/gallery/gallery-02.jpg" aria-label="Show image 02"><img class="img-fluid stagger-tween-item" src="img/gallery/gallery-02-sm.jpg" alt="02"/></a>
</div>
<div class="col-6 col-md-3 mx-auto p-3">
<a href="img/gallery/gallery-03.jpg" aria-label="Show image 03"><img class="img-fluid stagger-tween-item" src="img/gallery/gallery-03-sm.jpg" alt="03"/></a>
</div>
<div class="col-6 col-md-3 mx-auto p-3">
<a href="img/gallery/gallery-04.jpg" aria-label="Show image 04"><img class="img-fluid stagger-tween-item" src="img/gallery/gallery-04-sm.jpg" alt="04"/></a>
</div>
<div class="col-6 col-md-3 mx-auto p-3">
<a href="img/gallery/gallery-05.jpg" aria-label="Show image 05"><img class="img-fluid stagger-tween-item" src="img/gallery/gallery-05-sm.jpg" alt="05"/></a>
</div>
<div class="col-6 col-md-3 mx-auto p-3">
<a href="img/gallery/gallery-06.jpg" aria-label="Show image 06"><img class="img-fluid stagger-tween-item" src="img/gallery/gallery-06-sm.jpg" alt="06"/></a>
</div>
<div class="col-6 col-md-3 mx-auto p-3">
<a href="img/gallery/gallery-07.jpg" aria-label="Show image 07"><img class="img-fluid stagger-tween-item" src="img/gallery/gallery-07-sm.jpg" alt="07"/></a>
</div>
<div class="col-6 col-md-3 mx-auto p-3">
<a href="img/gallery/gallery-08.jpg" aria-label="Show image 08"><img class="img-fluid stagger-tween-item" src="img/gallery/gallery-08-sm.jpg" alt="08"/></a>
</div>
<div class="col-6 col-md-3 mx-auto p-3">
<a href="img/gallery/gallery-09.jpg" aria-label="Show image 09"><img class="img-fluid stagger-tween-item" src="img/gallery/gallery-09-sm.jpg" alt="09"/></a>
</div>
<div class="col-6 col-md-3 mx-auto p-3">
<a href="img/gallery/gallery-10.jpg" aria-label="Show image 10"><img class="img-fluid stagger-tween-item" src="img/gallery/gallery-10-sm.jpg" alt="10"/></a>
</div>
<div class="col-6 col-md-3 mx-auto p-3">
<a href="img/gallery/gallery-11.jpg" aria-label="Show image 11"><img class="img-fluid stagger-tween-item" src="img/gallery/gallery-11-sm.jpg" alt="11"/></a>
</div>
<div class="col-6 col-md-3 mx-auto p-3">
<a href="img/gallery/gallery-12.jpg" aria-label="Show image 12"><img class="img-fluid stagger-tween-item" src="img/gallery/gallery-12-sm.jpg" alt="12"/></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials-section" class="about-section bg-black">
<div id="parallax-trigger-testimonials" class="container content-tween">
<div class="row align-items-center no-gutters">
<div class="col-12 single-tween-item">
<div class="text-center px-4 mb-5">
<h1 id="parallax-text-testimonials" class="section-title" >Testimonials</h1>
</div>
</div>
</div>
<div class="row" id="testimonials">
<div class="col-md-4">
"Thank you for your work on behalf of the Clinton Global Initiative (CGI). Your efforts helped make the 2010 Annual Meeting a great success.
As we continue to expand the scope of our work, I want you to know that I appreciate your support."<br><br>
<span style="font-style: italic; color: #9a9a9a">Bill Clinton<br>
42nd President of the United States</span>
</div>
<div class="col-md-4">
"You are the best at what you do and that make US better at what we do.
Thank You."<br><br>
<span style="font-style: italic; color: #9a9a9a">S. Rosin</span>
</div>
<div class="col-md-4">
"Thank you so much for everything you do to help us pull off this conference! We couldn’t do it without you."<br><br>
<span style="font-style: italic; color: #9a9a9a">The Workman Gift Team</span>
</div>
</div>
<div class="row" id="testimonials">
<div class="col-md-4">
"We love working with you and seeing you every year! We appreciate the dedication to Belvoir and thanks for making our reunion so wonderful each year! Thank you for your continued connection with us and your professionalism and enthusiastic spirit!"<br><br>
<span style="font-style: italic; color: #9a9a9a">Diane and Nancy</span>
</div>
<div class="col-md-4">
"Just a little something to show our appreciations for everything you to make our meeting as success. You always take the extra steps to make everyone happy and we want you to know that it does not go unnoticed."<br><br>
<span style="font-style: italic; color: #9a9a9a">Thank you HUB International</span>
</div>
<div class="col-md-4">
"All our guests couldn’t get over how easy it was to get to our conference and how unusual and wonderful it was to have natural light. The service as always was stellar, you made everything so easy for us"<br><br>
<span style="font-style: italic; color: #9a9a9a">Anthony</span>
</div>
</div>
</div>
</section>
<!-- Find Us Section -->
<section id="find-us" class="find-us-section bg-black">
<div id="parallax-trigger-venues" class="container">
<div class="row align-items-center no-gutters">
<div id="parallax-text-findus" class="col-lg-12 single-tween-item">
<div class="text-center px-4 py-5">
<h1 class="section-title" >Find Us</h1>
<p>
201 West 52<sup>nd</sup> St New York City
</p>
</div>
</div>
<div id="map" class="col-12" style="position : relative;">
<!-- <div id="map" style="height : 50vh;"></div> -->
<iframe title="Location of Manhattan Manor on a map" tabindex="-1" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3021.9729696805166!2d-73.98479384882764!3d40.76261924235239!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c258f87ddf7eab%3A0x83ec575b5ef68816!2s201%20W%2052nd%20St%2C%20New%20York%2C%20NY%2010019%2C%20USA!5e0!3m2!1sen!2sar!4v1624387059697!5m2!1sen!2sar" style="border:0; height : 50vh; width : 100%;" allowfullscreen="" loading="lazy"></iframe>
<div class="text-center p-3" style="position : absolute; bottom : 0px; left : 0px; right : 0px; z-index : 100;">
<form method="get" action="docs/Directions for Manhattan Manor.pdf">
<button class="header-button fill" style="width : 250px;">Download Directions</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Clients Section -->
<section id="clients" class="clients-section bg-black">
<div id="parallax-trigger-clients" class="container content-tween">
<div class="row align-items-center no-gutters">
<div id="parallax-text-clients" class="col-lg-12 single-tween-item">
<div class="text-center px-4 mb-5">
<h1 class="section-title" >Clients</h1>
</div>
</div>
<div class="col-lg-12">
<div>
<div id="carousel-clients" class="owl-carousel owl-theme text-white pt-4 pb-0">
<div class="item text-center text-center">
<img alt="Apollo logo" class="img-fluid" src="img/logos/apollo.png" />
</div>
<div class="item text-center text-center">
<img alt="Barclays logo" class="img-fluid" alt="" src="img/logos/barclays.png" />
</div>
<div class="item text-center text-center">
<img alt="BNP logo" class="img-fluid" src="img/logos/bnp.png" />
</div>
<div class="item text-center text-center">
<img alt="CBS logo" class="img-fluid" src="img/logos/cbs.png" />
</div>
<div class="item text-center text-center">
<img alt="DCINY logo" class="img-fluid" src="img/logos/dciny.png" />
</div>
<div class="item text-center text-center">
<img alt="Douglas Elliman Real State logo" class="img-fluid" src="img/logos/douglas-eliman.png" />
</div>
<div class="item text-center text-center">
<img alt="Ernst & Young logo" class="img-fluid" src="img/logos/enest-and young.png" />
</div>
<div class="item text-center text-center">
<img alt="New York City Fire Department logo" class="img-fluid" src="img/logos/fdny.png" />
</div>
<div class="item text-center text-center">
<img alt="Hub International logo" class="img-fluid" src="img/logos/hub-international.png" />
</div>
<div class="item text-center text-center">
<img alt="Lazard logo" class="img-fluid" src="img/logos/lazard.png" />
</div>
<div class="item text-center text-center">
<img alt="Morgan Stanley logo" class="img-fluid" src="img/logos/morgan-stanley.png" />
</div>
<div class="item text-center text-center">
<img alt="Society for Vascular Surgery logo" class="img-fluid" src="img/logos/nysvs.png" />
</div>
<div class="item text-center text-center">
<img alt="Phillips Club logo" class="img-fluid" src="img/logos/phillips-club.png" />
</div>
<div class="item text-center text-center">
<img alt="Siegel+Gale logo" class="img-fluid" src="img/logos/siegel-gale.png" />
</div>
<div class="item text-center text-center">
<img alt="Stony Brook Medicine logo" class="img-fluid" src="img/logos/stony-brook medicine.png" />
</div>
<div class="item text-center text-center">
<img alt="UBS logo" class="img-fluid" src="img/logos/ubs.png" />
</div>
<div class="item text-center text-center">
<img alt="Workman Publishing logo" class="img-fluid" alt="" src="img/logos/workman-publishing.png" />
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Vendors Section -->
<section id="vendors" class="vendors-section bg-black">
<div id="parallax-trigger-vendors" class="container content-tween">
<div class="row align-items-center no-gutters">
<div id="parallax-text-vendors" class="col-lg-12 single-tween-item">
<div class="text-center px-4 mb-5">
<h1 class="section-title" >Vendors</h1>
</div>
</div>
<div class="col-lg-12">
<div>
<div id="carousel-vendors" class="owl-carousel owl-theme text-white pt-4 pb-0">
<div class="item text-center text-center">
<img alt="Alpine Group logo" class="img-fluid" src="img/logos-vendors/alpine-group.png" />
</div>
<div class="item text-center text-center">
<img alt="Beautini logo" class="img-fluid" src="img/logos-vendors/beatuni.png" />
</div>
<div class="item text-center text-center">
<img alt="KVL logo" class="img-fluid" src="img/logos-vendors/kvl.png" />
</div>
<div class="item text-center text-center">
<img alt="Sheraton logo" class="img-fluid" src="img/logos-vendors/sheraton.png" />
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Embed Eventbrite 1 -->
<section id="eventbrite_1" class="vendors-section bg-black">
<div id="parallax-trigger-vendors" class="container content-tween">
<div class="row align-items-center no-gutters">
<div id="parallax-text-vendors" class="col-lg-12 single-tween-item">
<div class="text-center px-4 mb-5">
<h1 class="section-title" >New Year's Eve Celebration</h1>
</div>
</div>
<div class="col-lg-12">
<div id="eventbrite-widget-container-87385104199"></div>
<script src="https://www.eventbrite.com/static/widgets/eb_widgets.js"></script>
<script type="text/javascript">
var exampleCallback = function() {
console.log('Order complete!');
};
window.EBWidgets.createWidget({
// Required
widgetType: 'checkout',
eventId: '87385104199',
iframeContainerId: 'eventbrite-widget-container-87385104199',
// Optional
iframeContainerHeight: 425, // Widget height in pixels. Defaults to a minimum of 425px if not provided
onOrderComplete: exampleCallback // Method called when an order has successfully completed
});
</script>
</div>
</div>
</div>
</section>
<!-- Signup Section -->
<section id="signup" class="signup-section">
<div class="container">
<div class="row">
<div class="col-md-10 col-lg-8 mx-auto text-center">
<!-- <i class="far fa-paper-plane fa-2x mb-2 text-white"></i> -->
<div id="contact-form-container">
<h2 class="text-white mb-5">Contact Us</h2>
<form id="contact-form" class="form-inline d-flex">
<input type="text" class="form-control mr-0 mb-3" id="inputFirstName" placeholder="First Name" aria-required="true" required />
<input type="text" class="form-control mr-0 mb-3" id="inputLastName" placeholder="Last Name" aria-required="true" required />
<input type="text" class="form-control mr-0 mb-3" id="inputCompany" placeholder="Company" />
<input type="email" class="form-control mr-0 mb-3" id="inputEmail" placeholder="Email" aria-required="true" required />
<input type="text" class="form-control mr-0 mb-3" id="inputPhone" placeholder="Phone" />
<input type="date" class="form-control mr-0 mb-3" id="inputProposedDate" placeholder="Date of Proposed Event" title="Date of Proposed Event" />
<input type="text" class="form-control mr-0 mb-3" id="inputProposedTime" placeholder="Time of Proposed Event" />
<input type="number" class="form-control mr-0 mb-3" id="inputGuests" placeholder="Number of Guests" title="Number of Guests" />
<input type="text" class="form-control mr-0 mb-3" id="inputEventType" placeholder="Type of Event" />
<textarea type="text" class="form-control mr-0 mb-3" id="inputMessage" placeholder="Please tell us about your event and special arrangements" aria-required="true" required></textarea>
<div class="w-100 form-control mr-0 mb-3 d-flex flex-row align-items-center" style="padding : 1rem 1.25rem;">
<input type="checkbox" id="inputSubscribe" value="subscribe" style="width : initial;" aria-labelledby="subscribeCheckboxSpan">
<span id="subscribeCheckboxSpan" class="text-left pl-3" style="color : #6c757d;">Subscribe me to your newsletter</span>
</div>
<button id="btn-subscribe" type="submit" class="btn btn-primary mx-auto btn-block">Submit</button>
</form>
</div>
</div>
</div>
</div>
</section>
</main>
<?php include "./layout/footer.inc" ?>
<!-- Example Modal -->
<div id="exampleModal" class="modal fade modal-subscription p-0" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<!--
<div class="modal-header text-center">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span class="fa-stack text-dark" style="vertical-align: top;">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fas fa-times fa-stack-1x fa-inverse"></i>
</span>
</button>
</div>
-->
<div class="modal-body d-flex flex-row align-items-center">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span class="fa-stack text-dark" style="vertical-align: top;">
<!-- <i class="fas fa-circle fa-stack-2x"></i> -->
<i class="fas fa-times fa-stack-1x fa-inverse"></i>
</span>
<!-- <img src="img/close-button.png" style="width : 30px; height : 30px;"/> -->
</button>
<!--
<div class="w-100">
<h2 class="modal-title text-light text-center mb-3" id="exampleModalLabel">Signup to our newsletter</h2>
<form id="modal-form" action="#">
<div class="form-group col-md-12">
<input id="modalInputEmail" type="email" class="form-control mr-0 mb-3" placeholder="Email" required />
</div>
<div class="form-group col-md-12">
<input id="btn-subscribe-modal" type="submit" class="btn btn-primary btn-lg btn-block" value="Subscribe">
</div>
<div class="mt-5 text-center">
<a href="#" onclick="$('#exampleModal').modal('hide'); return false">No, thanks.</a>
</div>
</form>
</div>
-->
<!--
<div class="w-100">
<h2 class="modal-title text-primary text-center" style="font-family : Oswald;">Sample Announcement</h2>
</div>
-->
<div class="w-100">
<img alt="New Year's Eve Party" src="./img/modal/mm-popup.jpg" class="img-fluid" style="padding-bottom: 16px;" />