-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcompany.html
1684 lines (1555 loc) · 96.7 KB
/
company.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="is-loading">
<!-- Mirrored from mcbridedesign.com/company by HTTrack Website Copier/3.x [XR&CO'2014], Tue, 01 Oct 2019 20:04:44 GMT -->
<!-- Added by HTTrack -->
<meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="google-site-verification" content="CFwZqO_hmY2DPIR13xESIkBHT2_aBi8DzFyv306yz8Q" />
<link rel="apple-touch-icon" sizes="57x57" href="assets/meta-icons/apple-icon-57x57.html" />
<link rel="apple-touch-icon" sizes="60x60" href="assets/meta-icons/apple-icon-60x60.html" />
<link rel="apple-touch-icon" sizes="72x72" href="assets/meta-icons/apple-icon-72x72.html" />
<link rel="apple-touch-icon" sizes="76x76" href="assets/meta-icons/apple-icon-76x76.html" />
<link rel="apple-touch-icon" sizes="114x114" href="assets/meta-icons/apple-icon-114x114.html" />
<link rel="apple-touch-icon" sizes="120x120" href="assets/meta-icons/apple-icon-120x120.html" />
<link rel="apple-touch-icon" sizes="144x144" href="assets/meta-icons/apple-icon-144x144.html" />
<link rel="apple-touch-icon" sizes="152x152" href="assets/meta-icons/apple-icon-152x152.html" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/meta-icons/apple-icon-180x180.html" />
<link rel="icon" type="image/png" sizes="32x32" href="assets/meta-icons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="96x96" href="assets/meta-icons/favicon-96x96.png" />
<link rel="icon" type="image/png" sizes="16x16" href="assets/meta-icons/favicon-16x16.png" />
<meta name="application-name" content="McBride" />
<meta name="msapplication-square70x70logo" content="msapplication-square70x70logo.html" />
<meta name="msapplication-square150x150logo" content="msapplication-square150x150logo.html" />
<meta name="msapplication-square310x310logo" content="msapplication-square310x310logo.html" />
<meta name="msapplication-TileColor" content="#0b202b" />
<!-- This site is optimized with the Sprout SEO plugin v1.1.1 - http://sprout.barrelstrengthdesign.com/craft-plugins/seo -->
<title>Who we are and how we do it - The McBride Company</title>
<meta name="description"
content="We are a passionate group of creative professionals who work across conceptional design, interior design, and architectural design." />
<link rel="canonical" href="company" />
<meta property="og:locale" content="en_us" />
<!-- / Sprout SEO Craft CMS plugin -->
<link rel="preload" href="assets/fonts/Neutraface2Text-Book.html" as="font" type="font/woff2" crossorigin="" />
<link rel="preload" href="assets/fonts/Neutraface2Text-Demi.woff2" as="font" type="font/woff2" crossorigin="" />
<link rel="preload" href="assets/fonts/Neutraface2Text-Light.html" as="font" type="font/woff2" crossorigin="" />
<style>
@font-face {
font-family: "Neutraface Book";
src: url("assets/fonts/Neutraface2Text-Book.html") format("woff2"),
url("assets/fonts/Neutraface2Text-Book-2.html") format("woff");
}
@font-face {
font-family: "Neutraface Demi";
src: url("assets/fonts/Neutraface2Text-Demi.woff2") format("woff2"),
url("assets/fonts/Neutraface2Text-Demi.html") format("woff");
}
@font-face {
font-family: "Neutraface Light";
src: url("assets/fonts/Neutraface2Text-Light.html") format("woff2"),
url("assets/fonts/Neutraface2Text-Light-2.html") format("woff");
}
</style>
<link rel="stylesheet" href="_compiled/app.css" />
<script>
(function (i, s, o, g, r, a, m) {
i["GoogleAnalyticsObject"] = r;
(i[r] =
i[r] ||
function () {
(i[r].q = i[r].q || []).push(arguments);
}),
(i[r].l = 1 * new Date());
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m);
})(
window,
document,
"script",
"../www.google-analytics.com/analytics.js",
"ga"
);
ga("create", "UA-54096748-1", "auto");
ga("send", "pageview");
</script>
<!-- Facebook Pixel Code -->
<script>
!(function (f, b, e, v, n, t, s) {
if (f.fbq) return;
n = f.fbq = function () {
n.callMethod
? n.callMethod.apply(n, arguments)
: n.queue.push(arguments);
};
if (!f._fbq) f._fbq = n;
n.push = n;
n.loaded = !0;
n.version = "2.0";
n.queue = [];
t = b.createElement(e);
t.async = !0;
t.src = v;
s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s);
})(
window,
document,
"script",
"../connect.facebook.net/en_US/fbevents.js"
);
fbq("init", "1727596993987394");
fbq("track", "PageView");
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1727596993987394&ev=PageView&noscript=1" /></noscript>
<!-- End Facebook Pixel Code -->
</head>
<body>
<a class="sr" href="#barba-wrapper">Skip to Main Content</a>
<header class="site--header js-header">
<div href="#" class="menu-btn js-menu-btn o-media__icon no-barba">
<span class="icon x is--inactive"></span>
<span class="tx--caption">Menu</span>
</div>
<span class="logo-wrapper js-logo">
<a href="index.html" class="c-logo">
<svg class="c-logo__svg" width="48" height="41" viewBox="0 0 48 41" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path id="line-15" d="M1.0144 27.0139L23.5144 40.3094" stroke="currentColor" stroke-width="1.37143"
stroke-linecap="round" stroke-linejoin="round" />
<path id="line-14" d="M16.0144 1.30933L1.0144 27.0139" stroke="currentColor" stroke-width="1.37143"
stroke-linecap="round" stroke-linejoin="round" />
<path id="line-13"
d="M18.2492 16.5613C18.3207 16.9332 18.6802 17.1767 19.0521 17.1051C19.424 17.0336 19.6675 16.6742 19.5959 16.3023L18.2492 16.5613ZM16.6878 1.17983C16.6163 0.807936 16.2568 0.564432 15.8849 0.63595C15.513 0.707469 15.2695 1.06693 15.341 1.43882L16.6878 1.17983ZM19.5959 16.3023L16.6878 1.17983L15.341 1.43882L18.2492 16.5613L19.5959 16.3023Z"
fill="currentColor" />
<path id="line-12"
d="M22.9275 14.0731C23.1234 14.3972 23.545 14.5012 23.8691 14.3053C24.1932 14.1094 24.2971 13.6878 24.1013 13.3637L22.9275 14.0731ZM16.6013 0.954634C16.4054 0.630524 15.9838 0.526581 15.6597 0.722472C15.3356 0.918363 15.2317 1.33991 15.4276 1.66402L16.6013 0.954634ZM24.1013 13.3637L16.6013 0.954634L15.4276 1.66402L22.9275 14.0731L24.1013 13.3637Z"
fill="currentColor" />
<path id="line-11"
d="M23.8633 14.3087C24.1893 14.1161 24.2975 13.6956 24.1048 13.3695C23.9121 13.0435 23.4916 12.9354 23.1656 13.128L23.8633 14.3087ZM18.5738 15.8414C18.2477 16.0341 18.1396 16.4545 18.3323 16.7806C18.5249 17.1066 18.9454 17.2148 19.2715 17.0221L18.5738 15.8414ZM23.1656 13.128L18.5738 15.8414L19.2715 17.0221L23.8633 14.3087L23.1656 13.128Z"
fill="currentColor" />
<path id="line-10"
d="M19.2714 17.0221C19.5974 16.8295 19.7056 16.409 19.5129 16.0829C19.3203 15.7569 18.8998 15.6488 18.5737 15.8414L19.2714 17.0221ZM0.665561 26.4235C0.33952 26.6162 0.231394 27.0367 0.424055 27.3627C0.616715 27.6887 1.03721 27.7969 1.36325 27.6042L0.665561 26.4235ZM18.5737 15.8414L0.665561 26.4235L1.36325 27.6042L19.2714 17.0221L18.5737 15.8414Z"
fill="currentColor" />
<path id="line-9"
d="M22.841 40.4388C22.9125 40.8107 23.272 41.0542 23.6439 40.9827C24.0158 40.9111 24.2593 40.5517 24.1878 40.1798L22.841 40.4388ZM19.596 16.3023C19.5245 15.9304 19.165 15.6869 18.7931 15.7584C18.4212 15.8299 18.1777 16.1894 18.2492 16.5613L19.596 16.3023ZM24.1878 40.1798L19.596 16.3023L18.2492 16.5613L22.841 40.4388L24.1878 40.1798Z"
fill="currentColor" />
<path id="line-8"
d="M22.8287 40.3093C22.8287 40.688 23.1357 40.995 23.5144 40.995C23.8931 40.995 24.2001 40.688 24.2001 40.3093H22.8287ZM24.2001 13.7184C24.2001 13.3397 23.8931 13.0327 23.5144 13.0327C23.1357 13.0327 22.8287 13.3397 22.8287 13.7184H24.2001ZM24.2001 40.3093V13.7184H22.8287V40.3093H24.2001Z"
fill="currentColor" />
<path id="line-7"
d="M46.3632 27.6043C46.6893 27.4116 46.7974 26.9911 46.6048 26.6651C46.4121 26.339 45.9916 26.2309 45.6656 26.4236L46.3632 27.6043ZM23.1656 39.719C22.8395 39.9117 22.7314 40.3322 22.9241 40.6582C23.1167 40.9843 23.5372 41.0924 23.8632 40.8997L23.1656 39.719ZM45.6656 26.4236L23.1656 39.719L23.8632 40.8997L46.3632 27.6043L45.6656 26.4236Z"
fill="currentColor" />
<path id="line-6"
d="M31.6067 0.963717C31.4158 0.636627 30.9959 0.526203 30.6688 0.717078C30.3417 0.907952 30.2313 1.32785 30.4222 1.65494L31.6067 0.963717ZM45.4222 27.3595C45.613 27.6866 46.0329 27.797 46.36 27.6061C46.6871 27.4152 46.7975 26.9954 46.6067 26.6683L45.4222 27.3595ZM30.4222 1.65494L45.4222 27.3595L46.6067 26.6683L31.6067 0.963717L30.4222 1.65494Z"
fill="currentColor" />
<path id="line-5"
d="M27.4328 16.3023C27.3613 16.6742 27.6048 17.0336 27.9767 17.1051C28.3486 17.1767 28.7081 16.9332 28.7796 16.5613L27.4328 16.3023ZM31.6877 1.43882C31.7593 1.06693 31.5158 0.707469 31.1439 0.63595C30.772 0.564432 30.4125 0.807936 30.341 1.17983L31.6877 1.43882ZM28.7796 16.5613L31.6877 1.43882L30.341 1.17983L27.4328 16.3023L28.7796 16.5613Z"
fill="currentColor" />
<path id="line-4"
d="M22.9276 13.3637C22.7317 13.6878 22.8356 14.1094 23.1597 14.3053C23.4838 14.5012 23.9054 14.3972 24.1013 14.0731L22.9276 13.3637ZM31.6013 1.66402C31.7971 1.33991 31.6932 0.918363 31.3691 0.722472C31.045 0.526581 30.6234 0.630524 30.4275 0.954634L31.6013 1.66402ZM24.1013 14.0731L31.6013 1.66402L30.4275 0.954634L22.9276 13.3637L24.1013 14.0731Z"
fill="currentColor" />
<path id="line-3"
d="M23.8632 13.128C23.5372 12.9354 23.1167 13.0435 22.9241 13.3695C22.7314 13.6956 22.8395 14.1161 23.1656 14.3087L23.8632 13.128ZM27.7574 17.0221C28.0834 17.2148 28.5039 17.1066 28.6966 16.7806C28.8893 16.4545 28.7811 16.0341 28.4551 15.8414L27.7574 17.0221ZM23.1656 14.3087L27.7574 17.0221L28.4551 15.8414L23.8632 13.128L23.1656 14.3087Z"
fill="currentColor" />
<path id="line-2"
d="M28.455 15.8414C28.129 15.6488 27.7085 15.7569 27.5159 16.0829C27.3232 16.409 27.4313 16.8295 27.7574 17.0221L28.455 15.8414ZM45.6655 27.6042C45.9916 27.7969 46.4121 27.6887 46.6047 27.3627C46.7974 27.0367 46.6892 26.6162 46.3632 26.4235L45.6655 27.6042ZM27.7574 17.0221L45.6655 27.6042L46.3632 26.4235L28.455 15.8414L27.7574 17.0221Z"
fill="currentColor" />
<path id="line-1"
d="M22.841 40.1798C22.7695 40.5517 23.013 40.9111 23.3849 40.9827C23.7568 41.0542 24.1163 40.8107 24.1878 40.4388L22.841 40.1798ZM28.7796 16.5613C28.8511 16.1894 28.6076 15.8299 28.2357 15.7584C27.8638 15.6869 27.5043 15.9304 27.4328 16.3023L28.7796 16.5613ZM24.1878 40.4388L28.7796 16.5613L27.4328 16.3023L22.841 40.1798L24.1878 40.4388Z"
fill="currentColor" />
</svg>
<div class="c-logo__txt">
<span>TheMcBride</span><span>Company</span>
</div>
</a>
<div class="loading-content">
<p>Think, Design, Brand</p>
</div>
</span>
<a href="projects" class="projects-btn o-media__icon tx--gray-light">
<span class="tx--caption">View Projects</span>
<svg class="icon icon-projects" width="19" height="18" fill="none">
<circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(0 6)" />
<circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(16 6)" />
<circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(8 8)" />
<circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(8)" />
<circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(3 15)" />
<circle cx="1.5" cy="1.5" r="1.5" fill="currentColor" transform="translate(13 15)" />
</svg>
</a>
</header>
<div class="site-nav js-nav">
<div class="nav-container">
<nav class="main-nav">
<ul>
<li>
<a class="main-nav__link tx--title-3 first" href="index.html" title="Home">Home</a>
</li>
<li>
<a class="main-nav__link tx--title-3" href="projects" title="Projects">Projects</a>
</li>
<li>
<a class="main-nav__link tx--title-3 active" href="company" title="Who We Are">Who We Are</a>
</li>
<li>
<a class="main-nav__link tx--title-3" href="news.html" title="News & Press">News & Press</a>
</li>
<li>
<a class="main-nav__link tx--title-3" href="connect" title="Contact Us">Contact Us</a>
</li>
<li>
<a class="main-nav__link tx--title-3" href="careers.html" title="Careers">Careers</a>
</li>
</ul>
</nav>
<nav class="more-nav">
<span class="more-nav__label tx--callout">MORE</span>
<ul class="more-nav__list">
<span>
<li>
<a class="no-barba tx--caption first" href="https://www.facebook.com/CelestaIITP/" title="Facebook"
target="_blank">Facebook</a>
</li>
<li>
<a class="no-barba tx--caption" href="https://twitter.com/celesta_iitp" title="Twitter"
target="_blank">Twitter</a>
</li>
<li>
<a class="no-barba tx--caption" href="https://www.instagram.com/celestaiitp_official/" title="Instagram"
target="_blank">Instagram</a>
</li>
<li>
<a class="no-barba tx--caption" href="https://www.youtube.com/channel/UCd8RpmJktBOwqT4OehcCjjg" title="Youtube"
target="_blank">Youtube</a>
</li>
<li>
<a class="no-barba tx--caption" href="https://www.linkedin.com/company/in/celesta-iit-patna-3722b6166/"
title="Linkedin" target="_blank">Linkedin</a>
</li>
</span>
<span>
<li>
<a class="main-nav__link" href="developers.html" title="Developers">Core Developers</a>
</li>
<!-- <li>
<a class="no-barba tx--caption" href="#" title="Site Credits" target="_blank">Link</a>
</li> -->
</span>
</ul>
</nav>
</div>
</div>
<main id="barba-wrapper" class="main">
<div class="barba-container" data-namespace="prismFaded" data-prismstroke="true">
<ul class="viewport-links">
<li class="right ">
<a href="connect" title="Contact Us" class="tx--caption">Contact Us</a>
</li>
</ul>
<div class="company-anchor-links">
<a href="#company-content" class="scrollto">Company</a>
<a href="#departments" class="scrollto">Departments</a>
<a href="#services" class="scrollto">Services</a>
<a href="#talent" class="scrollto">Talent</a>
</div>
<section id="company" class="company-section js-company">
<div class="company-intro">
<picture class="company-intro__image poly-3">
<source srcset="/assets/images/home/_2000x2000_fit_center-center_100/the-mcbride-company-team-photo.jpeg"
media="(min-width: 1200px)" />
<source srcset="
/assets/images/home/_1600x1600_fit_center-center_100/the-mcbride-company-team-photo.jpeg 1x,
/assets/images/home/_2000x2000_fit_center-center_100/the-mcbride-company-team-photo.jpeg 2x
" media="(min-width: 800px)" />
<div class="company-intro__image-inner">
<img srcset="
/assets/images/home/_1000x1000_fit_center-center_100/the-mcbride-company-team-photo.jpeg 1x,
/assets/images/home/_1600x1600_fit_center-center_100/the-mcbride-company-team-photo.jpeg 2x
" alt="The McBride Company -- A team photo of The McBride Company staff." />
</div>
</picture>
<p class="company-intro__text">
We are a concept and design firm that creates branded
entertainment and hospitality experiences around the world.
</p>
</div>
<div class="brands-slider">
<div class="slider index-1"
data-flickity-options='{ "initialIndex": 2, "lazyLoad": 4, "wrapAround": true, "pageDots": false, "autoPlay": 4000, "prevNextButtons": false }'>
<picture>
<img class="carousel-cell-image"
data-flickity-lazyload-src="assets/images/company/cartoon-network-1.svg" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/crayola-1.svg" />
</picture>
<picture>
<img class="carousel-cell-image"
data-flickity-lazyload-src="assets/images/company/discovery-channel-3.svg" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/disney.svg" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/espn.svg" />
</picture>
<picture>
<img class="carousel-cell-image"
data-flickity-lazyload-src="assets/images/company/four-seasons-hotels-and-resorts.svg" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/hasbro-2.svg" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/nascar-1.svg" />
</picture>
<picture>
<img class="carousel-cell-image"
data-flickity-lazyload-src="assets/images/company/smithsonian-institution-1.svg" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/universal-3.svg" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/atlantis.png" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/BHOF.png" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/ideal-image.png" />
</picture>
</div>
<div class="slider index-2"
data-flickity-options='{ "initialIndex": 2, "lazyLoad": 4, "wrapAround": true , "sync": ".index-1"}'>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/peanuts.png" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/simon.png" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/Ethan-Allen.png" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/Nick.png" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/Hard-Rock.png" />
</picture>
<picture>
<img class="carousel-cell-image"
data-flickity-lazyload-src="assets/images/company/Outback-Steakhouse.png" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/Harrahs.png" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/Wyndham.png" />
</picture>
<picture>
<img class="carousel-cell-image"
data-flickity-lazyload-src="assets/images/company/Karisma-Hotels-Resorts.png" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/Zoo-Miami.png" />
</picture>
<picture>
<img class="carousel-cell-image"
data-flickity-lazyload-src="assets/images/company/Norwegian-Cruise-Line.png" />
</picture>
<picture>
<img class="carousel-cell-image" data-flickity-lazyload-src="assets/images/company/Longhorn.png" />
</picture>
</div>
</div>
<div class="company-wrap">
<div class="company-sec">
<h2 class="company-sec_title">Our Company</h2>
</div>
</div>
<div id="company-content" class="company-content company-wrap">
<div class="copy grid">
<h3 class="cols-lg-7 cols-md-12 cols-xs-12 headline">
A spirit of boundless imagination in combination with the
discipline of practical application drives the daily activities
of The McBride Company.
</h3>
<div class="cols-lg-5 spacer"></div>
<div class="cols-lg-3 spacer"></div>
<div class="cols-lg-5 cols-md-6 cols-xs-12 copy">
<p>
The firm’s clients represent nearly every facet of the
hospitality and leisure industries that include ESPN, Four
Seasons Hotels and Resorts, The Pyramid Companies,
Margaritaville, Smithsonian Institute, Simon Property Group,
The Walt Disney Company, Universal Parks & Resorts, The
Breakers Palm Beach, Starwood and the Discovery Channel. The
firm’s ability to successfully design experiential spaces and
places helps clients achieve positive business objectives
while providing guests more enjoyable experiences.
</p>
</div>
<div class="cols-lg-4 cols-md-6 cols-xs-12 copy">
<p>
The McBride Company’s talent draws upon our years of
experience, unique perspectives and passions. We take both a
creative and analytical approach to transforming a client’s
idea into a tangible reality. The results of our work are
destinations experienced and enjoyed by millions of people
across the globe each year.
</p>
</div>
</div>
</div>
<div class="company-slider">
<div class="slider"
data-flickity-options='{ "lazyLoad": 2, "pageDots": false, "wrapAround": true, "prevNextButtons": false }'>
<svg width="157" height="145" viewBox="0 0 157 145" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M83.5089 21.8571L34.3998 40.9524L23.845 75.1714L30.6085 103.1L60.3421 123.33L123.83 103.1L134.271 61.5828L97.9149 24.6623L83.5089 21.8571Z"
fill="url(#paint0_linear)" />
<path opacity="0.5"
d="M17.4443 75.5393L29.2307 37.3275L84.2302 15.9418L100.176 19.0468L140.854 60.3558L129.22 106.615L58.1484 129.261L24.991 106.702L17.4443 75.5393Z"
stroke="url(#paint1_linear)" />
<path
d="M62.7321 76.1752H64.7891C67.1981 76.1752 68.7821 74.6792 68.7821 72.4352C68.7821 70.1912 67.1871 68.6952 64.7891 68.6952H62.7321V76.1752ZM63.8981 75.1522V69.7182H64.7121C66.6591 69.7182 67.5721 70.8402 67.5721 72.4352C67.5721 74.0302 66.6591 75.1522 64.7121 75.1522H63.8981ZM71.3301 76.1752H72.4961V73.4032H73.8491L75.4661 76.1752H76.7971L75.0371 73.2162C75.9501 72.8972 76.5551 72.1822 76.5551 71.0712C76.5551 69.4212 75.3781 68.6952 73.8381 68.6952H71.3301V76.1752ZM72.4961 72.4242V69.7182H73.7941C74.7731 69.7182 75.3561 70.1032 75.3561 71.0712C75.3561 72.0172 74.7841 72.4242 73.7941 72.4242H72.4961ZM78.5717 76.1752H79.6937L80.2437 74.8112H83.4227L83.9727 76.1752H85.1827L81.9047 68.6182H81.7727L78.5717 76.1752ZM80.6397 73.8432L81.4537 71.8082C81.6297 71.3792 81.8057 70.7412 81.8167 70.7082C81.8277 70.7632 82.0257 71.4012 82.1907 71.8082L83.0047 73.8432H80.6397ZM90.5561 76.2742C91.9421 76.2742 92.9761 75.7572 93.4601 75.3172V72.3362H90.3801V73.3482H92.3931V74.7452C91.9751 75.0312 91.3151 75.2292 90.5561 75.2292C88.8511 75.2292 87.7511 74.0302 87.7511 72.4352C87.7511 70.8402 88.8401 69.6522 90.4021 69.6522C91.2931 69.6522 91.8431 69.9382 92.2721 70.3892L93.0531 69.6082C92.4481 68.9262 91.5461 68.6072 90.4021 68.6072C88.1801 68.6072 86.5631 70.2022 86.5631 72.4352C86.5631 74.6682 88.2131 76.2742 90.5561 76.2742Z"
fill="#ECF2F7" />
<defs>
<linearGradient id="paint0_linear" x1="53.7154" y1="26.3894" x2="94.6709" y2="122.844"
gradientUnits="userSpaceOnUse">
<stop stop-color="#3850CF" />
<stop offset="1" stop-color="#00FFEE" />
</linearGradient>
<linearGradient id="paint1_linear" x1="50.5983" y1="20.5325" x2="96.7665" y2="129.264"
gradientUnits="userSpaceOnUse">
<stop stop-color="#3850CF" />
<stop offset="1" stop-color="#00FFEE" />
</linearGradient>
</defs>
</svg>
<picture>
<img class="poly-1 carousel-cell-image" data-flickity-lazyload-srcset="
/assets/images/company/_1400xAUTO_fit_center-center_100/the-mcbride-company-team.jpg 1024w,
/assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-team.jpg 720w,
/assets/images/company/_600xAUTO_fit_center-center_100/the-mcbride-company-team.jpg 360w"
sizes="(min-width: 1024px) 720px, 360px"
data-flickity-lazyload-src="assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-team.jpg" />
</picture>
<picture>
<img class="poly-2 carousel-cell-image" data-flickity-lazyload-srcset="
/assets/images/company/_1400xAUTO_fit_center-center_100/the-mcbride-company-working.jpg 1024w,
/assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-working.jpg 720w,
/assets/images/company/_600xAUTO_fit_center-center_100/the-mcbride-company-working.jpg 360w"
sizes="(min-width: 1024px) 720px, 360px"
data-flickity-lazyload-src="assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-working.jpg" />
</picture>
<picture>
<img class="poly-3 carousel-cell-image" data-flickity-lazyload-srcset="
/assets/images/company/_1400xAUTO_fit_center-center_100/the-mcbride-company-manny-working.jpg 1024w,
/assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-manny-working.jpg 720w,
/assets/images/company/_600xAUTO_fit_center-center_100/the-mcbride-company-manny-working.jpg 360w"
sizes="(min-width: 1024px) 720px, 360px"
data-flickity-lazyload-src="assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-manny-working.jpg" />
</picture>
<picture>
<img class="poly-1 carousel-cell-image" data-flickity-lazyload-srcset="
/assets/images/company/_1400xAUTO_fit_center-center_100/the-mcbride-company-our-dog-lucky.jpg 1024w,
/assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-our-dog-lucky.jpg 720w,
/assets/images/company/_600xAUTO_fit_center-center_100/the-mcbride-company-our-dog-lucky.jpg 360w"
sizes="(min-width: 1024px) 720px, 360px"
data-flickity-lazyload-src="assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-our-dog-lucky.jpg" />
</picture>
<picture>
<img class="poly-2 carousel-cell-image" data-flickity-lazyload-srcset="
/assets/images/company/_1400xAUTO_fit_center-center_100/the-mcbride-company-candice.jpg 1024w,
/assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-candice.jpg 720w,
/assets/images/company/_600xAUTO_fit_center-center_100/the-mcbride-company-candice.jpg 360w"
sizes="(min-width: 1024px) 720px, 360px"
data-flickity-lazyload-src="assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-candice.jpg" />
</picture>
<picture>
<img class="poly-3 carousel-cell-image" data-flickity-lazyload-srcset="
/assets/images/company/_1400xAUTO_fit_center-center_100/the-mcbride-company-our-office.jpg 1024w,
/assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-our-office.jpg 720w,
/assets/images/company/_600xAUTO_fit_center-center_100/the-mcbride-company-our-office.jpg 360w"
sizes="(min-width: 1024px) 720px, 360px"
data-flickity-lazyload-src="assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-our-office.jpg" />
</picture>
<picture>
<img class="poly-1 carousel-cell-image" data-flickity-lazyload-srcset="
/assets/images/company/_1400xAUTO_fit_center-center_100/the-mcbride-company-colin-candice.jpg 1024w,
/assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-colin-candice.jpg 720w,
/assets/images/company/_600xAUTO_fit_center-center_100/the-mcbride-company-colin-candice.jpg 360w"
sizes="(min-width: 1024px) 720px, 360px"
data-flickity-lazyload-src="assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-colin-candice.jpg" />
</picture>
<picture>
<img class="poly-2 carousel-cell-image" data-flickity-lazyload-srcset="
/assets/images/company/_1400xAUTO_fit_center-center_100/the-mcbride-company-remote-teams.jpg 1024w,
/assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-remote-teams.jpg 720w,
/assets/images/company/_600xAUTO_fit_center-center_100/the-mcbride-company-remote-teams.jpg 360w"
sizes="(min-width: 1024px) 720px, 360px"
data-flickity-lazyload-src="assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-remote-teams.jpg" />
</picture>
<picture>
<img class="poly-3 carousel-cell-image" data-flickity-lazyload-srcset="
/assets/images/company/_1400xAUTO_fit_center-center_100/the-mcbride-company-manny.jpg 1024w,
/assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-manny.jpg 720w,
/assets/images/company/_600xAUTO_fit_center-center_100/the-mcbride-company-manny.jpg 360w"
sizes="(min-width: 1024px) 720px, 360px"
data-flickity-lazyload-src="assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-manny.jpg" />
</picture>
<picture>
<img class="poly-1 carousel-cell-image" data-flickity-lazyload-srcset="
/assets/images/company/_1400xAUTO_fit_center-center_100/the-mcbride-company-teamwork.jpg 1024w,
/assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-teamwork.jpg 720w,
/assets/images/company/_600xAUTO_fit_center-center_100/the-mcbride-company-teamwork.jpg 360w"
sizes="(min-width: 1024px) 720px, 360px"
data-flickity-lazyload-src="assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-teamwork.jpg" />
</picture>
<picture>
<img class="poly-2 carousel-cell-image" data-flickity-lazyload-srcset="
/assets/images/company/_1400xAUTO_fit_center-center_100/the-mcbride-company-brainstorming.jpg 1024w,
/assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-brainstorming.jpg 720w,
/assets/images/company/_600xAUTO_fit_center-center_100/the-mcbride-company-brainstorming.jpg 360w"
sizes="(min-width: 1024px) 720px, 360px"
data-flickity-lazyload-src="assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-brainstorming.jpg" />
</picture>
<picture>
<img class="poly-3 carousel-cell-image" data-flickity-lazyload-srcset="
/assets/images/company/_1400xAUTO_fit_center-center_100/the-mcbride-company-marisa-jess.jpg 1024w,
/assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-marisa-jess.jpg 720w,
/assets/images/company/_600xAUTO_fit_center-center_100/the-mcbride-company-marisa-jess.jpg 360w"
sizes="(min-width: 1024px) 720px, 360px"
data-flickity-lazyload-src="assets/images/company/_1000xAUTO_fit_center-center_100/the-mcbride-company-marisa-jess.jpg" />
</picture>
</div>
</div>
</section>
<section id="departments" class="company-section">
<div class="company-wrap">
<div class="company-sec">
<h2 class="company-sec_title">Departments</h2>
</div>
</div>
<div class="departments company-wrap">
<div class="department alpha" id="think">
<div class="logo">
<svg viewBox="0 0 149 195" width="149" height="195" fill="none">
<path stroke="#fff" stroke-linejoin="round" stroke-width="3.525"
d="M66.59 114.275L53 44.311m0 0L0 75.318 44.393 0 53 44.31z"
transform="rotate(-7.919 89.948 -245.638) skewX(.164)" />
<path fill="#fff"
d="M5.466 180.877H20.41l2.097 5.318h1.28l-10.752-27.058h-.156L2.127 186.195H3.37l2.097-5.318zm14.518-1.087H5.893l7.065-17.78 7.026 17.78zm7.604 6.405h1.164v-27.562h-1.164v27.562zm6.025 8.23h1.164v-10.909c1.048 1.941 2.834 2.99 5.047 2.99 3.649 0 6.327-2.834 6.327-6.483 0-3.65-2.678-6.483-6.327-6.483-2.213 0-3.999 1.048-5.047 2.989v-2.679h-1.164v20.575zm6.21-8.968c-3.027 0-5.123-2.29-5.123-5.434 0-3.145 2.096-5.435 5.124-5.435 3.028 0 5.124 2.29 5.124 5.435 0 3.144-2.096 5.434-5.124 5.434zm10.015.738h1.165v-7.026c0-2.834 1.863-4.581 4.542-4.581 2.329 0 3.688 1.242 3.688 4.115v7.492h1.164v-7.686c0-3.416-2.135-4.97-4.813-4.97-2.02 0-3.572.932-4.581 2.64v-17.546h-1.165v27.562zm23.357-7.376h-4.193c-2.562 0-4.852 1.165-4.852 3.766 0 2.6 2.135 3.92 4.814 3.92 1.94 0 3.416-.815 4.231-1.94v1.63h1.165v-7.92c0-3.221-1.825-4.735-4.62-4.735-2.096 0-3.61.815-4.775 2.562l.854.582c.932-1.475 2.135-2.135 3.921-2.135 2.135 0 3.455 1.087 3.455 3.804v.466zm0 1.01v2.251c0 2.33-2.057 3.377-4.076 3.377-2.213 0-3.805-.854-3.805-2.872 0-2.058 1.825-2.757 3.844-2.757h4.037zm12.514 6.366h2.523v-24.146h8.152v-2.252H77.518v2.252h8.19v24.146zm13.441 0h2.368v-7.065c0-2.446 1.514-3.882 3.804-3.882 2.019 0 3.106 1.087 3.106 3.338v7.609h2.368v-7.842c0-3.455-2.096-5.24-4.891-5.24-1.941 0-3.455.815-4.387 2.368v-16.848H99.15v27.562zm16.711-17.43c.854 0 1.63-.699 1.63-1.63 0-.932-.776-1.631-1.63-1.631-.854 0-1.631.699-1.631 1.63 0 .932.777 1.63 1.631 1.63zm-1.204 17.43h2.407v-12.772h-2.407v12.772zm6.443 0h2.368v-7.065c0-2.446 1.514-3.882 3.804-3.882 2.019 0 3.106 1.087 3.106 3.338v7.609h2.368v-7.842c0-3.455-2.096-5.24-4.891-5.24-1.941 0-3.572.815-4.387 2.368v-2.058H121.1v12.772zm17.797-3.416c.699-.777 1.864-2.135 1.864-2.096l4.231 5.512h2.951l-5.629-7.298 4.813-5.474h-2.795l-5.435 6.29v-21.08h-2.368v27.562h2.368v-3.416z" />
</svg>
</div>
<div class="content">
We sell creativity. We deliver results. And it all starts with
the idea. Alpha Think is the thought lab for the McBride Company
and specializes in creative orchestration, expansive thinking,
and brainstorming. It functions as the nexus for ideation and
creative solutions to complex problems. Alpha Think constantly
partners with clients and companies in the presentation of
future trends, consumer behavior and ideation of client needs
and development strategies.
</div>
</div>
<div class="dep-grid">
<div class="department beta" id="beta">
<div class="logo">
<svg width="146" height="211" viewBox="0 0 146 211" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M4.02558 32H13.7152C19.4317 32 22.3102 28.5134 22.3102 24.1753C22.3102 20.4049 19.9587 17.648 16.2288 16.7155C18.6208 15.702 19.9182 13.7559 19.9182 10.9585C19.9182 7.3097 17.364 4.4312 12.4178 4.4312H4.02558V32ZM5.32293 16.3507V5.56638H12.2962C16.6748 5.56638 18.6208 7.91784 18.6208 10.9585C18.6208 14.0397 16.9991 16.3507 13.1071 16.3507H5.32293ZM5.32293 30.8648V17.4858H13.5125C18.5397 17.4858 21.0128 20.3643 21.0128 24.1753C21.0128 27.9458 18.7019 30.8648 13.5125 30.8648H5.32293ZM26.557 32H27.7733V24.5402C27.7733 21.905 29.5166 19.9184 31.5437 19.9184C32.314 19.9184 32.76 19.9995 33.1654 20.2427L33.6114 19.2292C32.9627 18.8643 32.5167 18.7832 31.6248 18.7832C29.9626 18.7832 28.5841 19.7968 27.7733 21.3779V19.1075H26.557V32ZM44.7342 24.297H40.3556C37.6799 24.297 35.2879 25.5132 35.2879 28.2296C35.2879 30.9459 37.5177 32.3243 40.3151 32.3243C42.3422 32.3243 43.8828 31.4729 44.7342 30.2972V32H45.9505V23.7294C45.9505 20.3643 44.045 18.7832 41.126 18.7832C38.9367 18.7832 37.3555 19.6346 36.1392 21.459L37.0312 22.0671C38.0042 20.5265 39.261 19.8373 41.126 19.8373C43.3558 19.8373 44.7342 20.9725 44.7342 23.8104V24.297ZM44.7342 25.3511V27.7025C44.7342 30.1351 42.5855 31.2297 40.4773 31.2297C38.1664 31.2297 36.5041 30.3378 36.5041 28.2296C36.5041 26.0808 38.4096 25.3511 40.5178 25.3511H44.7342ZM50.7082 32H51.9245V24.6618C51.9245 21.7022 53.911 19.8778 56.6679 19.8778C59.1005 19.8778 60.5194 21.1752 60.5194 24.1753V32H61.7357V23.9726C61.7357 20.4049 59.5059 18.7832 56.7085 18.7832C54.6003 18.7832 52.7759 19.8373 51.9245 21.5401V19.1075H50.7082V32ZM71.9796 32.3243C74.2905 32.3243 76.1555 31.2297 77.2501 29.2026V32H78.4664V3.21493H77.2501V21.905C76.1555 19.8778 74.2905 18.7832 71.9796 18.7832C68.1687 18.7832 65.3712 21.7428 65.3712 25.5538C65.3712 29.3647 68.1687 32.3243 71.9796 32.3243ZM71.9796 31.2297C68.8173 31.2297 66.628 28.8377 66.628 25.5538C66.628 22.2698 68.8173 19.8778 71.9796 19.8778C75.1419 19.8778 77.3312 22.2698 77.3312 25.5538C77.3312 28.8377 75.1419 31.2297 71.9796 31.2297ZM84.505 32H94.5595C100.519 32 103.438 28.4323 103.438 23.9726C103.438 20.2833 101.208 17.648 97.7218 16.7155C99.9516 15.702 101.249 13.837 101.249 11.2018C101.249 7.43133 98.6948 4.4312 93.5054 4.4312H84.505V32ZM87.1403 15.8236V6.78266H93.3432C97.1137 6.78266 98.6137 8.72869 98.6137 11.2423C98.6137 13.9181 97.2758 15.8236 93.7892 15.8236H87.1403ZM87.1403 29.6485V18.0534H94.2352C98.6948 18.0534 100.762 20.5265 100.762 23.8915C100.762 27.1755 98.8975 29.6485 94.3163 29.6485H87.1403ZM108.782 26.243H119.971C120.052 21.6617 117.458 18.3372 113.201 18.3372C109.309 18.3372 106.187 21.3374 106.187 25.3511C106.187 29.3242 109.147 32.3243 113.485 32.3243C116.12 32.3243 117.944 31.4324 119.16 29.9729L117.62 28.4728C116.728 29.4864 115.512 30.2161 113.444 30.2161C110.849 30.2161 109.147 28.7161 108.782 26.243ZM108.863 24.1753C109.268 21.905 110.89 20.4454 113.201 20.4454C115.714 20.4454 117.052 22.0671 117.377 24.1753H108.863ZM123.803 20.7698V28.5134C123.803 31.1486 125.222 32.3243 127.411 32.3243C128.627 32.3243 129.6 31.9189 130.209 31.3513L129.154 29.608C128.79 29.8918 128.303 30.1756 127.695 30.1756C126.722 30.1756 126.276 29.608 126.276 28.3917V20.7698H129.6V18.6616H126.276V10.3504H123.803V18.6616H122.06V20.7698H123.803ZM141.523 23.9321H137.509C134.671 23.9321 132.279 25.3105 132.279 28.0268C132.279 30.9459 134.549 32.3243 137.347 32.3243C139.171 32.3243 140.631 31.6351 141.523 30.4999V32H143.996V23.8104C143.996 20.1211 141.888 18.3372 138.482 18.3372C136.171 18.3372 134.387 19.1886 133.049 20.9725L134.631 22.3509C135.563 21.0941 136.698 20.4454 138.401 20.4454C140.306 20.4454 141.523 21.3374 141.523 23.8104V23.9321ZM141.523 25.9186V27.3782C141.523 29.2431 139.739 30.2972 137.752 30.2972C135.887 30.2972 134.752 29.5269 134.752 28.0268C134.752 26.5268 136.05 25.9186 137.671 25.9186H141.523Z"
transform="translate(0 170.266)" fill="white" />
<path
d="M53.3552 32.0605L0.346539 1.72877e-06L3.63165e-07 1.95582L52.4211 33.6609C52.8552 33.9235 53.4163 33.7781 53.6742 33.3362C53.9322 32.8942 53.7893 32.3231 53.3552 32.0605Z"
transform="matrix(0.981206 -0.192961 0.188679 0.982039 50.1523 55.7061)" stroke="white"
stroke-width="2" stroke-linejoin="round" />
<path
d="M0.0160676 118.951C-0.0786038 119.463 0.254776 119.956 0.760692 120.052C1.26661 120.148 1.75348 119.81 1.84815 119.298L23.6996 1.11685C23.7943 0.604825 23.4609 0.112076 22.955 0.0162616C22.449 -0.0795526 21.9622 0.257851 21.8675 0.769873L0.0160676 118.951Z"
transform="matrix(0.981206 -0.192961 0.188679 0.982039 27.5781 13.2505)" stroke="white"
stroke-width="2" stroke-linejoin="round" />
<path
d="M1.3877 41.5716L68.2135 1.74568C68.6526 1.48399 68.7999 0.909893 68.5425 0.463395C68.2852 0.0168977 67.7206 -0.132918 67.2815 0.128773L0.455723 39.9547C0.0166194 40.2164 -0.130715 40.7905 0.126643 41.237C0.384 41.6835 0.948594 41.8333 1.3877 41.5716Z"
transform="matrix(0.981206 -0.192961 0.188679 0.982039 42.3652 90.2109)" stroke="white"
stroke-width="2" stroke-linejoin="round" />
<path
d="M46.5982 78.4068L1.71613 0.46257C1.46035 0.0183689 0.896842 -0.13208 0.457505 0.126533C0.0181681 0.385146 -0.130633 0.954889 0.125148 1.39909L45.0072 79.3433C45.263 79.7875 45.8265 79.938 46.2659 79.6793C46.7052 79.4207 46.854 78.851 46.5982 78.4068Z"
transform="matrix(0.981206 -0.192961 0.188679 0.982039 49.1113 9.01587)" stroke="white"
stroke-width="2" stroke-linejoin="round" />
</svg>
</div>
<div class="content">
Brand Identity is the new currency. We enable our clients to
create memorable and profitable branded experiences. Brand
Beta specializes in the creation of brand identities, graphic
nomenclature, brand language and visual content. The graphic
identity and multi-channel products created by Brand Beta are
closely integrated into the overall design process and
constantly evolve based on the Client needs and project
evolution.
</div>
</div>
<div class="department design" id="design">
<div class="logo">
<svg viewBox="0 0 198 143" width="198" height="143" fill="none">
<path fill="#fff"
d="M3.891 134h1.133v-23.03l10.609 13.931h.113l10.722-13.931V134h1.133v-26.201h-.151l-11.704 15.366-11.704-15.366h-.15V134zm34.041.302c2.039 0 3.775-.68 4.908-2.039l-.793-.68c-.906 1.058-2.34 1.737-4.115 1.737-2.87 0-4.87-2.303-4.87-5.323 0-3.02 2-5.323 4.908-5.323 1.585 0 2.794.49 3.7 1.51l.792-.68c-1.17-1.245-2.642-1.812-4.492-1.812-3.436 0-6.079 2.756-6.079 6.305s2.643 6.305 6.041 6.305zm9.207-.302h9.023c5.324 0 8.004-3.247 8.004-7.287 0-3.51-2.19-6.078-5.663-6.946 2.227-.944 3.435-2.756 3.435-5.361 0-3.398-2.378-6.079-6.984-6.079h-7.815V134zm1.208-14.573v-10.043h6.494c4.077 0 5.89 2.19 5.89 5.022 0 2.869-1.51 5.02-5.135 5.02h-7.249zm0 13.516v-12.459h7.626c4.682 0 6.985 2.68 6.985 6.23 0 3.51-2.152 6.229-6.985 6.229h-7.626zM68.121 134h1.132v-6.947c0-2.454 1.624-4.304 3.511-4.304.718 0 1.133.076 1.51.302l.416-.944c-.604-.34-1.02-.415-1.85-.415-1.548 0-2.832.944-3.587 2.416v-2.114h-1.132V134zm10.081-17.367c.49 0 .944-.415.944-.944a.959.959 0 0 0-.944-.944.959.959 0 0 0-.944.944c0 .529.453.944.944.944zM77.636 134h1.132v-12.006h-1.132V134zm10.994.302c2.152 0 3.888-1.02 4.908-2.907V134h1.132v-26.805h-1.132v17.404c-1.02-1.888-2.756-2.907-4.908-2.907-3.55 0-6.154 2.756-6.154 6.305s2.605 6.305 6.154 6.305zm0-1.02c-2.945 0-4.984-2.227-4.984-5.285 0-3.058 2.039-5.286 4.984-5.286s4.983 2.228 4.983 5.286c0 3.058-2.038 5.286-4.983 5.286zm10.833-5.058h10.798c-.076-3.851-2.379-6.532-5.928-6.532-3.322 0-6.04 2.756-6.04 6.305s2.605 6.305 6.305 6.305c2.303 0 3.964-.83 5.059-2.228l-.755-.679c-.944 1.17-2.152 1.925-4.304 1.925-2.832 0-5.022-1.925-5.135-5.096zm.038-.982c.302-2.643 2.19-4.568 4.832-4.568 2.983 0 4.455 2 4.757 4.568H99.5zM114.857 134h6.418c8.533 0 13.554-5.248 13.554-12.836 0-7.589-5.059-12.837-13.554-12.837h-6.418V134zm2.454-2.228v-21.217h3.738c7.588 0 11.213 4.38 11.213 10.609s-3.625 10.608-11.213 10.608h-3.738zm22.033-3.133h10.42c.076-4.266-2.34-7.362-6.304-7.362-3.625 0-6.532 2.794-6.532 6.531 0 3.7 2.756 6.494 6.796 6.494 2.454 0 4.153-.83 5.285-2.19l-1.434-1.397c-.831.944-1.964 1.624-3.889 1.624-2.416 0-4.002-1.397-4.342-3.7zm.076-1.926c.377-2.114 1.888-3.473 4.04-3.473 2.34 0 3.586 1.51 3.888 3.473h-7.928zm17.461 7.589c2.945 0 4.72-1.397 4.72-3.738 0-2.265-1.662-3.36-4.304-4.04-1.926-.49-2.719-.792-2.719-1.887 0-.793.718-1.397 1.964-1.397 1.283 0 2.076.529 2.68 1.321l1.548-1.283c-.982-1.284-2.303-2.001-4.266-2.001-2.454 0-4.078 1.397-4.078 3.435 0 2.19 1.473 3.134 3.927 3.814 2.152.604 3.02 1.057 3.02 2.152 0 1.019-.906 1.66-2.492 1.66-1.661 0-2.907-.754-3.662-2l-1.661 1.17c1.133 1.737 2.945 2.794 5.323 2.794zm9.037-17.254c.831 0 1.586-.68 1.586-1.585 0-.906-.755-1.586-1.586-1.586-.83 0-1.586.68-1.586 1.586s.756 1.585 1.586 1.585zM164.748 134h2.341v-12.421h-2.341V134zm12.835-12.421a5.757 5.757 0 0 0-1.85-.302c-2.869 0-5.059 2.039-5.059 4.87 0 1.322.529 2.53 1.397 3.36-1.02.416-1.661 1.17-1.661 2.266 0 1.057.566 2.038 1.887 2.416-1.925.566-3.02 1.812-3.02 3.7 0 2.794 2.567 4.53 6.569 4.53 4.078 0 6.645-1.888 6.645-4.87 0-2.567-1.812-4.38-6.38-4.568-3.247-.114-3.663-.604-3.663-1.435 0-.529.302-.944.831-1.095.717.34 1.51.529 2.454.529 2.832 0 5.021-2.039 5.021-4.833 0-1.02-.377-1.963-.981-2.718h2.303v-1.85h-4.493zm-1.85 7.55c-1.774 0-2.983-1.245-2.983-2.982 0-1.774 1.209-3.02 2.983-3.02s2.945 1.246 2.945 3.02c0 1.737-1.171 2.983-2.945 2.983zm.113 11.29c-2.643 0-4.417-.907-4.417-2.681 0-1.661 1.321-2.68 4.077-2.68 3.436 0 4.682.905 4.682 2.566 0 1.813-1.737 2.794-4.342 2.794zm8.92-6.419h2.303v-6.871c0-2.379 1.472-3.776 3.7-3.776 1.963 0 3.02 1.057 3.02 3.247v7.4h2.303v-7.626c0-3.36-2.039-5.097-4.757-5.097-1.888 0-3.473.793-4.266 2.303v-2.001h-2.303V134z" />
<path stroke="#fff" stroke-linejoin="round" stroke-width="2"
d="M44.243 35.77l55.89-33.33a.775.775 0 0 0 .27-1.062.771.771 0 0 0-1.059-.269l-55.89 33.33a.775.775 0 0 0-.27 1.062.771.771 0 0 0 1.06.27z" />
<path stroke="#fff" stroke-linejoin="round" stroke-width="2"
d="M156.057 34.437L100.167 1.11a.771.771 0 0 0-1.059.27.777.777 0 0 0 .27 1.063l55.89 33.328a.77.77 0 0 0 1.059-.27.777.777 0 0 0-.27-1.063zM99.374 67.781l-55.893-33.31a.764.764 0 0 0-1.055.28.791.791 0 0 0 .275 1.072l55.894 33.31a.764.764 0 0 0 1.055-.279.791.791 0 0 0-.276-1.073z" />
<path stroke="#fff" stroke-linejoin="round" stroke-width="2"
d="M99.405 69.134l55.893-33.311c.367-.22.49-.7.275-1.073a.764.764 0 0 0-1.054-.28L98.625 67.782a.791.791 0 0 0-.275 1.072.764.764 0 0 0 1.055.28z" />
</svg>
</div>
<div class="content">
McBride Design specializes in strategic planning,
comprehensive design and development coordination for
innovative projects around the world. We create unique,
economically successful concepts and designs for atmospheric
destinations such as resorts, lodging, restaurants, museums,
attractions, casinos, retail centers and RD&E complexes
both domestically and internationally. Our design products are
unparalleled in the industry and have received numerous
industry awards and recognition for creativity, productivity
and brand integration.
</div>
</div>
</div>
<svg class="bg bg-1" viewbox="0 0 773 671" xmlns="http://www.w3.org/2000/svg" width="773" height="671"
fill="none">
<path stroke="url(#paint0_linear)"
d="M294.371.98L55.728 410.155l358.295 211.838 358.295-211.838L533.674.98 414.451 198.35l-.428.709-.428-.709L294.371.98z" />
<path stroke="url(#paint1_linear)"
d="M294.371.98L55.728 410.155l358.295 211.838 358.295-211.838L533.674.98 414.451 198.35l-.428.709-.428-.709L294.371.98z" />
<path stroke="url(#paint2_linear)"
d="M294.371.98L55.728 410.155l358.295 211.838 358.295-211.838L533.674.98 414.451 198.35l-.428.709-.428-.709L294.371.98z" />
<path stroke="url(#paint3_linear)"
d="M303.545 25.005L83.25 402.758l330.772 195.584 330.772-195.584L524.5 25.005 414.45 207.206l-.428.709-.428-.709-110.049-182.2z"
opacity=".3" />
<path stroke="url(#paint4_linear)"
d="M276.024 49.03L55.729 426.785l330.772 195.584 330.772-195.584L496.978 49.031 386.929 231.232l-.428.708-.428-.708L276.024 49.031z"
opacity=".1" />
<path stroke="url(#paint5_linear)"
d="M248.5 73.056L28.206 450.81l330.771 195.584 330.772-195.584L469.455 73.056l-110.05 182.201-.428.709-.428-.709L248.5 73.057z"
opacity=".1" />
<path stroke="url(#paint6_linear)"
d="M220.977 97.082L.682 474.835l330.772 195.584 330.772-195.584L441.931 97.082 331.882 279.283l-.428.708-.428-.708L220.977 97.082z" />
<defs>
<linearGradient id="paint0_linear" x1="414.023" x2="414.023" y2="622.573" gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
<linearGradient id="paint1_linear" x1="414.023" x2="414.023" y2="622.573" gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
<linearGradient id="paint2_linear" x1="414.023" x2="488.024" y2="126.956" gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
<linearGradient id="paint3_linear" x1="414.022" x2="414.022" y1="24.026" y2="598.923"
gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
<linearGradient id="paint4_linear" x1="386.501" x2="386.501" y1="48.051" y2="622.949"
gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
<linearGradient id="paint5_linear" x1="358.977" x2="358.977" y1="72.077" y2="646.974"
gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
<linearGradient id="paint6_linear" x1="331.454" x2="331.454" y1="96.102" y2="671"
gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
</defs>
</svg>
<svg class="bg bg-2" viewbox="0 0 344 671" width="344" height="671" fill="none">
<g>
<path stroke="url(#paint0_linear)"
d="M-134.629 670.02l-238.643-409.175L-14.977 49.007l358.295 211.838L104.674 670.02-14.549 472.65l-.428-.709-.428.709-119.224 197.37z" />
<path stroke="url(#paint1_linear)"
d="M-134.629 670.02l-238.643-409.175L-14.977 49.007l358.295 211.838L104.674 670.02-14.549 472.65l-.428-.709-.428.709-119.224 197.37z" />
<path stroke="url(#paint2_linear)"
d="M-134.629 670.02l-238.643-409.175L-14.977 49.007l358.295 211.838L104.674 670.02-14.549 472.65l-.428-.709-.428.709-119.224 197.37z" />
<path stroke="url(#paint3_linear)"
d="M-125.455 645.995l-220.294-377.753L-14.978 72.657l330.772 195.585L95.5 645.995-14.55 463.794l-.428-.709-.428.709-110.049 182.201z"
opacity=".3" />
<path stroke="url(#paint4_linear)"
d="M-152.976 621.969l-220.295-377.753L-42.499 48.632l330.772 195.584L67.978 621.969l-110.05-182.201-.427-.708-.428.708-110.049 182.201z"
opacity=".1" />
<path stroke="url(#paint5_linear)"
d="M-180.5 597.944l-220.294-377.753L-70.022 24.607 260.749 220.19 40.455 597.944l-110.05-182.201-.427-.709-.428.709-110.05 182.201z"
opacity=".1" />
<path stroke="url(#paint6_linear)"
d="M-208.023 573.918l-220.295-377.753L-97.546.581l330.772 195.584L12.931 573.918-97.118 391.717l-.428-.708-.428.708-110.049 182.201z" />
</g>
<defs>
<linearGradient id="paint0_linear" x1="-14.977" x2="-14.977" y1="671" y2="48.427"
gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
<linearGradient id="paint1_linear" x1="-14.977" x2="-14.977" y1="671" y2="48.427"
gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
<linearGradient id="paint2_linear" x1="-14.977" x2="59.024" y1="671" y2="544.044"
gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
<linearGradient id="paint3_linear" x1="-14.978" x2="-14.978" y1="646.974" y2="72.077"
gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
<linearGradient id="paint4_linear" x1="-42.499" x2="-42.499" y1="622.949" y2="48.051"
gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
<linearGradient id="paint5_linear" x1="-70.022" x2="-70.022" y1="598.923" y2="24.026"
gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
<linearGradient id="paint6_linear" x1="-97.546" x2="-97.546" y1="574.898" gradientUnits="userSpaceOnUse">
<stop stop-color="#1489D9" />
<stop offset="1" stop-color="#18FBFF" />
</linearGradient>
</defs>
</svg>
</div>
</section>
<section id="services" class="company-section">
<div class="company-wrap">
<div class="company-sec">
<h2 class="company-sec_title">Our Services</h2>
</div>
</div>
<div class="company-services company-wrap" data-js-list-opener="mouseover click">
<h4 class="title is--active" data-js-list-title="1">
CONCEPTUAL DESIGN
<span class="icon x is--inactive"></span>
</h4>
<div class="description is--active poly-1" data-js-list-content="1">
<p>
This is the phase where a client's vision develops into a
tangible concept through brainstorming, research and artistic
visualizations. During this process, we will discover what the
concept is, what it will look like, and how much it will cost.
</p>
</div>
<h4 class="title" data-js-list-title="2">
INTERIOR DESIGN
<span class="icon x is--inactive"></span>
</h4>
<div class="description poly-1" data-js-list-content="2">
<p>
Our veteran interior design team creates beautiful immersive
designs that strike the delicate balance of colors, materials,
furniture, fixtures and equipment that make our projects
interesting, unique and dynamic.
</p>
</div>
<h4 class="title" data-js-list-title="3">
ARCHITECTURAL DESIGN
<span class="icon x is--inactive"></span>
</h4>
<div class="description poly-1" data-js-list-content="3">
<p>
Building upon the design concept, our team produces highly
detailed schematic, design development and construction
documentation. We use innovative 3D software for highly
efficient design and visualization that lays the framework for
the physical space.
</p>
</div>
<h4 class="title" data-js-list-title="4">
SPECIALTY FEATURE DESIGN
<span class="icon x is--inactive"></span>
</h4>
<div class="description poly-1" data-js-list-content="4">
<p>
To capture the right atmosphere for each project, our
specialties team produces props, dressings and special finishes
to make our projects unique. Whether it’s custom artwork, larger
than life sculptures, or dancing fountains, we design special
features to enhance guests’ experience.
</p>
</div>
<h4 class="title" data-js-list-title="5">
INSTALLATION SUPERVISION
<span class="icon x is--inactive"></span>
</h4>
<div class="description poly-1" data-js-list-content="5">
<p>
As construction starts, our work continues. Our goal is to
ensure that the creative intent is carried through to the
finished product. We provide on-site staff that is well versed
in both the technical aspects of construction and the creative
design approach to perform art direction and installation
supervision services.
</p>
</div>
<h4 class="title" data-js-list-title="6">
SIGNAGE & GRAPHICS DESIGN
<span class="icon x is--inactive"></span>
</h4>
<div class="description poly-1" data-js-list-content="6">
<p>
Unlike other firms, our team includes award-winning signage and
graphic designers that have created some of the most iconic
logos, murals and signage in the hospitality and leisure
industries.
</p>
</div>
</div>
</section>
<section id="talent" class="company-section">
<div class="company-wrap">
<div class="company-sec">
<h2 class="company-sec_title">Talent</h2>
</div>
</div>
<div class="team grid company-wrap">
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/home/_1400x1400_crop_center-center_75/Pat.jpg" alt="Pat" class="poly-1" />
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Pat</h3>
<span class="position">Chief Executive Officer</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>
As founder and CEO, Pat has guided the firm over the
past 30 years to become one of the preeminent privately
held design firms in the hospitality and leisure
industries. In this role, he oversees the firm’s key
projects and manages relationships with clients. Focused
on ensuring The McBride Company continues to deliver on
its reputation for design innovation, Pat is committed
to mentoring the firm’s talent and instilling in every
employee the values expected from a family-owned and
operated firm. A sought-after speaker for a variety of
hospitality, development and entertainment
organizations, Pat has appeared on national television
and is an oft-quoted on entertainment design in
publications like The Robb Report and USA Today.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="content-block grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<p class="label tx--aqua-bright tx--callout">Team</p>
<h5 class="title">
Our team is a collaborative collective of world-class
designers, art directors and project managers.
</h5>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/home/_1400x1400_crop_center-center_75/Brenda.jpg" alt="Brenda" class="poly-3" />
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Brenda</h3>
<span class="position">Senior Signage and Graphics Designer</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>
Brenda’s extensive skills in graphic design are derived
from years of practical experience in the commercial
sign and advertising business. This has provided her
with a unique, creative perspective in all aspects of
the industry’s design-build process. Brenda’s work
includes signage and graphics programs for restaurants,
retail and entertainment complexes. Her expertise in
branding has led her to create some of the most
recognizable logos, signage, and design in the
hospitality and entertainment industries such as
Margaritaville, NASCAR, iPic and more. Brenda’s unique
project signage has been widely recognized in national
trade magazines.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="team-member grid-item cols-lg-6 cols-md-12 cols-sm-12 cols-xs-12">
<div class="content">
<picture>
<img src="assets/images/home/_1400x1400_crop_center-center_75/Candice.jpg" alt="Candice"
class="poly-2" />
</picture>
<div class="header">
<div class="meta">
<h3 class="title">Candice</h3>
<span class="position">Architectural Designer</span>
</div>
<div class="bio">
<div class="bar"></div>
<div class="bio-text">
<p>
Candice received a Master of Architecture degree from
the Savannah College of Art & Design where her passion
for interdisciplinary design was cultivated. She was the
recipient of the US Green Building Council-Savannah
Chapter Thesis Award for her design and research that
explored the ideas of biophilic design of architecture
in an agricultural setting. She gained restaurant and
hospitality design experience while working with an
international architecture and design firm in Chicago.
At The McBride Company, Candice combines her eclectic