-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1059 lines (854 loc) · 28.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="viewport" content="width=device-width, initial-scale=1">
<title>Los Banditos</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="description"
content="For over 25 years we at Los Banditos East in Green Bay, Wisconsin have committed ourselves to treat every customer as if they were a guest in our home.">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" />
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
<link href="http://fonts.googleapis.com/css?family=Titillium+Web:400,700,600|Varela+Round|Pacifico" rel="stylesheet" type="text/css" />
<link href="/favicons.png" rel="icon" type="image/x-icon" /><script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script><script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script><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', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-79857767-1', 'auto');
ga('send', 'pageview');
</script><!--Burger Nav--><script type="text/javascript">
jQuery(function ($) {
$('.menu-btn').click(function () {
$('.main-nav').toggleClass('expand')
})
})
</script><!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --><!-- WARNING: Respond.js doesn't work if you view the page via file:// --><!--[if lt IE 9]>
<script src="http://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="http://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style type="text/css">p {
font-family: 'Titillium Web', sans-serif;
font-weight: 400;
line-height: 28px;
margin-bottom: 10px;
font-size: 18px;
}
header {
background-color: #963f44;
}
header ul {
padding: 0;
margin: 0px;
}
header ul li {
list-style: none;
display: inline-block;
}
header ul li a {
font-family: 'Titillium Web', sans-serif;
font-weight: 600;
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
padding: 20px 10px;
margin: 0 10px;
line-height: 55px;
font-size: 16px;
transition: all 400ms;
}
header ul li a:hover {
color: #000;
text-decoration: none;
background-color: #dfb2b6;
}
header .main-nav {
margin-top: 20px;
display: block;
}
header .menu-btn {
display: none;
}
header .expand {
display: block !important;
}
.logo {
float: left;
padding: 20px;
max-width: 150px;
}
#slides {
position: relative;
}
#slides .slider {
position: relative;
width: 100%;
}
#slides .logo {
z-index: 999;
bottom: 0;
position: absolute;
}
#slides .call-out {
position: absolute;
bottom: 100px;
right: 100px;
font-size: 36px;
color: #fff;
padding: 25px;
background-color: #963f44;
font-family: 'Varela Round', sans-serif;
}
#intro {
margin: 15px 0 45px 0;
}
#intro h5 {
margin-bottom: 5px;
display: inline-block;
clear: none;
font-family: 'Titillium Web', sans-serif;
font-weight: 700;
font-size: 16px;
}
#intro p {
font-family: 'Titillium Web', sans-serif;
font-weight: 400;
}
#where-you-at {
padding: 15px 0 45px;
}
#where-you-at h2 {
color: #412a22;
font-family: 'Varela Round', sans-serif;
font-size: 46px;
}
#where-you-at h3 {
margin-top: 0;
color: #412a22;
font-family: 'Varela Round', sans-serif;
font-size: 36px;
}
#where-you-at h5 {
margin-top: 0;
margin-bottom: 0;
display: inline-block;
clear: none;
font-family: 'Titillium Web', sans-serif;
font-weight: 700;
font-size: 16px;
}
#where-you-at p {
font-family: 'Titillium Web', sans-serif;
font-weight: 400;
}
#where-you-at a {
text-decoration: underline;
color: #963f44;
}
#menu {
padding: 35px 0 65px 0;
background-color: #dfb2b6;
}
#menu h3 {
color: #963f44;
text-align: center;
font-family: 'Varela Round', sans-serif;
margin-bottom: 45px;
font-size: 64px;
}
#menu h3 em {
color: #963f44;
vertical-align: text-top;
padding-top: 15px;
line-height: 50px;
font-family: 'Pacifico', sans-serif;
font-size: 24px;
}
#menu h4 {
color: #963f44;
text-align: center;
font-family: 'Varela Round', sans-serif;
margin-bottom: 45px;
font-size: 36px;
}
#menu .menu-card {
padding: 25px;
margin-bottom: 30px;
background-color: #fff;
border-radius: 15px;
}
#menu .menu-card h5 {
margin-bottom: 0;
margin-top: 0;
display: inline-block;
clear: none;
font-family: 'Titillium Web', sans-serif;
font-weight: 700;
font-size: 16px;
}
#menu .menu-card .price {
font-family: 'Titillium Web', sans-serif;
font-weight: 400;
font-size: 14px;
margin-left: 10px;
color: #72ccd5;
}
#menu .menu-card p {
font-family: 'Titillium Web', sans-serif;
font-weight: 400;
}
#menu .inline-p p {
display: inline-block;
}
.fluid-padding {
padding-left: 2%;
padding-right: 2%;
}
#north {
padding: 15px 0 45px 0;
min-height: 400px;
background: url("compass.png") no-repeat;
background-color: #efb962;
color: #fff;
}
#north h2 {
color: #412a22;
text-align: center;
font-family: 'Varela Round', sans-serif;
margin: 0px 0 30px 0;
font-size: 64px;
}
#north h3 {
color: #fff;
text-align: center;
font-family: 'Varela Round', sans-serif;
margin: 30px 0 0 0;
font-size: 36px;
}
#north p {
font-family: 'Titillium Web', sans-serif;
font-weight: 400;
line-height: 28px;
color: #412a22;
margin-bottom: 10px;
font-size: 18px;
}
#events {
padding: 25px 0 65px 0;
}
#events h2 {
color: #72ccd5;
font-family: 'Varela Round', sans-serif;
font-weight: bold;
margin-bottom: 30px;
font-size: 36px;
}
#events h3 {
font-family: 'Titillium Web', sans-serif;
font-weight: 400;
text-transform: uppercase;
color: #fff;
margin: 0;
padding: 10px 20px 10px 20px;
background-color: #72ccd5;
text-align: center;
}
#events h4 {
font-family: 'Titillium Web', sans-serif;
font-weight: 400;
color: #72ccd5;
font-size: 28px;
text-align: center;
}
#events h5 {
font-family: 'Titillium Web', sans-serif;
font-weight: 700;
margin-bottom: 8px;
font-size: 18px;
}
#events p {
font-family: 'Titillium Web', sans-serif;
font-weight: 400;
margin-bottom: 15px;
font-size: 14px;
}
#events .event {
padding: 0;
border: solid #72ccd5 3px;
background-color: #fff;
}
#about-us {
padding: 35px 0;
background-color: #e3695e;
}
#about-us h2 {
clear: right;
font-family: 'Varela Round', sans-serif;
color: #fff;
font-size: 36px;
margin-top: 35px;
margin-bottom: 0;
}
#about-us h3 {
margin-left: 3px;
font-family: 'Titillium Web', sans-serif;
font-weight: 400;
margin-top: 0;
margin-bottom: 8px;
font-size: 18px;
color: #fff;
}
#about-us p {
font-size: 14px;
line-height: 22px;
font-family: 'Titillium Web', sans-serif;
font-weight: 400;
color: #fff;
}
#about-us img {
padding: 25px;
float: left;
}
#about-us a,
#catering a,
#menu a {
text-decoration: underline;
color: #963f44;
}
#about-us a:hover,
#catering a:hover,
#menu a:hover {
color: #dfb2b6;
}
#la-familia {
padding: 15px 0 45px 0;
color: #fff;
background-color: #963f44;
}
#la-familia h2 {
color: #fff;
font-family: 'Varela Round', sans-serif;
font-size: 46px;
}
#la-familia p {
font-family: 'Titillium Web', sans-serif;
font-weight: 400;
line-height: 28px;
margin-bottom: 10px;
font-size: 18px;
color: #fff;
}
#la-familia input {
padding: 15px;
margin: 1rem;
width: 100%;
border: none;
border-radius: 8px;
}
::placeholder {
text-transform: capitalize;
color: #963f44;
}
#la-familia .button {
color: #000;
font-family: 'Varela Round', sans-serif;
font-size: 24px;
background-color: #efb962;
border-bottom: 2px solid #b18846;
width: 100%;
padding: 10px;
border-radius:4px;
}
#la-familia .button:hover {
color: #fff;
background-color: #412a22;
border-bottom: 2px solid #412a22;
}
#la-familia ul {
padding: 0;
list-style: none;
}
#la-familia input[type=checkbox],
#la-familia input[type=radio] {
margin-right: 5px;
width: auto;
}
#la-familia .locate {
padding-top: 10px;
}
#catering {
padding: 15px 0 45px 0;
}
#catering h3 {
color: #412a22;
text-align: center;
font-family: 'Varela Round', sans-serif;
margin-bottom: 30px;
font-size: 36px;
}
#catering h5 {
margin-bottom: 0;
display: inline-block;
clear: none;
font-family: 'Titillium Web', sans-serif;
font-weight: 700;
font-size: 16px;
}
#contact-us {
padding: 45px 0 25px 0;
}
#contact-us h2 {
font-family: 'Varela Round', sans-serif;
color: #412a22;
font-size: 36px;
margin-bottom: 25px;
}
#contact-us ul {
margin-top: 20px;
float: right;
list-style: none;
}
#contact-us li {
margin-right: 10px;
display: inline-block;
}
#contact-us li a {
color: #963f44;
}
#contact-us li a:hover {
color: #dfb2b6;
}
#contact-us img {
margin-bottom: 25px;
width: 100%;
}
#footer {
background-color: #412a22;
}
#footer p {
margin: 45px 0;
color: #fff;
font-family: 'Titillium Web', sans-serif;
font-weight: 400;
}
#footer a {
text-decoration: underline;
color: #dfb2b6;
}
#footer a:hover {
color: #963f44;
}
#specials{
margin: 2rem 0;
}
@media screen and (max-width: 991px) {
header ul li a {
padding: 0;
}
#slides .call-out {
display: none;
}
#menu .menu-card {
margin-bottom: 25px;
}
#events h3 {
padding: 0px;
}
#contact-us img {
padding: 0px;
}
#contact-us h2 {
margin-bottom: 25px;
}
#footer {
padding: 25px 0 45px 0;
}
#footer p {
margin: 0;
}
}
@media screen and (max-width : 768px) {
.logo {
float: none;
}
header ul li {
display: block;
}
header ul li a {
font-size: 16px;
margin: 0 5px 0 0;
}
header .main-nav {
display: none;
}
header .menu-btn {
display: block;
}
header .fa {
float: right;
color: #fff;
padding: 15px;
font-size: 24px;
}
#slides .call-out {
font-size: 32px;
}
.fluid-padding {
padding: 0px;
}
#events .col-xs-12 {
margin-bottom: 15px;
}
#about-us .col-xs-12 {
text-align: center;
}
#about-us img {
padding: 15px 0;
float: none;
}
#about-us h2 {
margin-top: 0px;
}
#contact-us h2 {
margin-top: 10px;
margin-bottom: 0px;
text-align: center;
}
#contact-us ul {
margin-bottom: 25px;
float: none;
text-align: center;
}
}
</style>
<!--SMOOTH SCROLL--><script>
$(function () {
$('a[href*=#]:not([href=#])').click(function () {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location
.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
</script>
</head>
<body>
<div id="piNotes"></div>
<header>
<div class="container-fluid">
<div class="row fluid-padding">
<div class="col-md-12">
<div class="menu-btn" id="menu-btn"></div>
<img class="logo" src="logo.png" />
<div class="main-nav">
<ul>
<li><a href="#hours">Hours</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="#la-familia">La Familia</a></li>
<li><a href="#about-us">About Us</a></li>
<li><a href="#catering">Catering</a></li>
<li><a href="#location">Location</a></li>
</ul>
</div>
<!--main-nav--></div>
<!--col-md-12--></div>
</div>
<!--container-fluid--></header>
<div id="slides">
<div class="container-fluid">
<div class="row"><img class="slider" src="hero.jpg" /> <a class="call-out" href="#menu">View Our Menu</a></div>
</div>
</div>
<!--#slides-->
<div id="intro">
<div class="container-fluid">
<div class="row fluid-padding">
<div class="col-md-6">
<h2>Green Bay Mexican Food</h2>
<p>For over 35 years we at Los Banditos West in Green Bay, Wisconsin have committed ourselves to treat every customer as if they were a guest in our home.</p>
<p>So sit back, relax and enjoy the award winning food, friendly service, and spirited atmosphere at Green Bays’ oldest and most popular Mexican restaurant.</p>
<p></p>
<h3>We Deliver</h3>
<p>We've partnered with EatStreet to get the food you love delivered.</p>
<p><img alt="eat street logo" src="eatstreet.png" style="width: 100%; max-width: 250px;" /></p>
</div>
<div class="col-md-6">
<h3>Amazing, Award Winning Food</h3>
<p>We are the preferred catering partner of the Green Bay Packers and a members of The Wisconsin Tavern League and Wisconsin Restaurant Association.</p>
<p>Don't take our word for it though, come in and see why Los Banditos is so special.</p>
<h3>Best of the Bay 2019</h3>
<p>We took home the gold for <a href="http://pressgazette.secondstreetapp.com/Best-of-The-Bay-2019/gallery?group=309551">Mexican food in the 2019 Best of the Bay</a>. Thank you for your support!</p>
<h3>We're Hiring</h3>
<p>We are hiring bussers & cashiers/host.</p>
</div>
</div>
</div>
</div>
<div id="menu">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3><em>The</em> MENU</h3>
</div>
<div class="col-xs-12">
<div class="menu-card">
<div class="row">
<div class="col-sm-6"><a href="menu1.jpg"><img alt="Los Banditos Menu Page 1" src="menu1.jpg" style="width: 100%;" /> </a></div>
<div class="col-sm-6"><a href="menu2.jpg"><img alt="Los Banditos Menu Page 2" src="menu2.jpg" style="width: 100%;" /> </a></div>
</div>
<div class="row">
<div class="col-sm-6">
<p></p>
<h5>Full Menu</h5>
<p>Our friendly and professional staff is eager to assist you if you are unfamiliar with Cal-Mex cuisine. Dedicated regular or first time guest you’ll find yourself at “Los”.</p>
<p><a href="menu-new.jpg">Full Menu Page 1</a> | <a href="menu-new2.jpg">Full Menu Page 2</a></p>
</div>
<div class="col-sm-6">
<p></p>
<h5>Kids Menu</h5>
<p>Specials available everyday. Come in to see what's new!</p>
<p><a href="los-banditos-west-kids-menu.pdf">Full Kids Menu PDF format</a></p>
<h5>Don't miss our happy hour specials!</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="specials">
<div class="container-fluid">
<div class="row fluid-padding">
<div class="col-md-6">
<h3>Lunch Specials & Cheap Happy Hour</h3>
<p>Cup of soup, spanish or mexican rice, black or pinto beans, steamed vegetable medley (with or without cheese), sweet potato fries or French fries (additional side orders $1.29)</p>
<p>Lunch specials are from 11-3<br/>
Happy Hour is from 3-9 M-R</p>
<p><strong>Monday</strong> - Tamales (2) $9.99, One Quesadilla $8.99, Tostada $6.99. Hand shaken Hornitos margaritas $6.25</p>
<p><strong>Tuesday </strong>- *Fajita Burger or Hand Breaded Fried Cod Sandwich $10.99, Two Tacos $8.99, Enchilada $6.99. $3.50 Mexican beer tap or bottle</p>
<p><strong>Wednesday - </strong>*Torta Fajita $10.99, Nacho Grande Salad $7.99 (add meat $1.00), One Taco $6.99. Half price house margaritas</p>
<p><strong>Thursday - </strong>*Grilled Fajita Salad (luncheon size) grilled chicken or steak $9.99 - Shrimp $12.99, Burrito $8.99, Tostada $6.99. $3.50 pint house margaritas or tap beer</p>
<p><strong>Friday - </strong>Burrito Delmar $10.99, Nacho Grande Salad $7.99 (add meat $1.00), One Fried Cod Taco $6.99</p>
</div>
<div class="col-md-6">
<h3>Dinner Specials</h3>
<p>Sides: spanish or mexican rice, pinto or black beans, or steamed vegetable medley (with or without cheese)</p>
<!--<p><strong>Tuesday Mexican Beer Night</strong><br />
$3 Mexican Imports</p>-->
<p><strong>Monday</strong> - Enchilada with one side $7.99</p>
<p><strong>Tuesday </strong>- Two Tacos with one side $8.99</p>
<p><strong>Wednesday - </strong>Fajita or Sonora Salad, Chicken, Steak, or Mushroom $11.99 or Shrimp- $14.99</p>
<p><strong>Thursday - </strong>Burrito with one side - $9.99</p>
<p><strong>Friday - </strong>Burrito Delmar with one side $10.99, Perch Basket $14.99, Perch Plate $19.99, Walley Basket $13.99, Walleye Plate $18.99</p>
<p><strong>Saturday - </strong>Chimichanga with rice and beans $11.99</p>
<p><strong>Sunday - </strong>$2 off a single fajita and $4 off a double fajita (dine in only)</p>
<!--<p><strong>Saturday - </strong>Chimichanga with rice and beans for 10.95</p>
<p><strong>Sunday - </strong>$2 off a single fajita & $4 off a double fajita </p>-->
</div>
</div>
</div>
</div>
<p><a name="about-us"></a></p>
<div id="north">
<div class="container-fluid">
<div class="row fluid-padding">
<div class="col-md-12">
<h2 style="margin-top: 2rem;">Bienvenido</h2>
</div>
</div>
<div class="row fluid-padding">
<div class="col-md-4">
<p>For over 35 years we at Los Banditos have committed ourselves to treat every customer as if they were a guest in our home.</p>
<p>From 1981 when we had to have our tortillas shipped from Milwaukee via Greyhound bus to today where you can explore a delicious variety of choices in the comfort of our lively and relaxed atmosphere. Come visit and be a member of our Los Banditos family.</p>
</div>
<div class="col-md-4">
<p>Over the years “Los“ as locals call it, has received numerous awards including annual “Best Mexican”, “Best Ethnic Restaurant” and “Best Margarita” in the “Best of the Bay” awards for over 15 years. We have also received “The Golden Fork Award”, “Best Place to Take a First Date” and a host of others.</p>
</div>
<div class="col-md-4">
<p>Our friendly and professional staff is eager to assist you if you unfamiliar with Cal-Mex cuisine. Whether you’re a regular or a first time guest you’ll find yourself welcome at “Los”. We also invite you to become a member of “La Familia” and receive information about promotions and discounts. Don’t worry. Your information stays with us and will not be shared with anyone.</p>
</div>
</div>
</div>
</div>
<!--north-->
<div id="catering">
<div class="container-fluid">
<div class="row fluid-padding">
<div class="col-xs-12">
<h3>Catering & Party Packages</h3>
</div>
<div class="col-sm-3">
<h5>Catering</h5>
<p>We cater for all occasions corporate, business and personal. Groups from 25-150. More than 20 years experience.</p>
<p>Jason at Los Banditos at <a href="tel:9204944505">920.494.4505</a>.</p>
</div>
<div class="col-sm-6">
<h5>Chili Con Queso</h5>
<p>Over 2 quarts sold in a disposable container. Can be sold hot or cold. You can put it in your own crock pot or chafing dish. Includes a large bag of chips, a 12 oz. hot sauce and a dozen of tortillas. 37.25</p>
<h5>Guacamole</h5>
<p>Sold in a disposable pan. Includes a large bag of chips and a 12 oz. hot sauce. 39.25</p>
<h5>Bean Dip</h5>
<p>Sold in a disposable pan. We can bake it for you or you can take and bake it yourself. Take and bake instructions are: heat oven to 350 degrees and bake until bubbly, around 25 minutes. Includes a 12 oz. hot sauce and a large bag of chips. 29.50</p>
</div>
<div class="col-sm-3">
<h5>Party Specials</h5>
<p>If you're interested in having you party at Los Banditos check out <a href="#specials">the specials</a>.</p>
</div>
</div>
</div>
</div>
<div id="la-familia">
<div class="container-fluid">
<div class="row fluid-padding">
<div class="col-sm-12">
<h2>La Familia</h2>
<p>Join our “La Familia” program. It’s simple and easy to do. Simply enter your email and address information below. A confirmation email will be sent to you to confirm your email account; then you will receive a small package in the mail with a $5.00 coupon to use at Los Banditos West or Los Banditos East.</p>
<p>After completing this form and confirming your email address you will be sent a $5.00 gift certificate.</p>
<p style="margin-top:2rem;"><a class="button" href="http://eepurl.com/idjbgb">Join Now</a></p>
</div>
</div>
</div>
</div>
<p><a name="location"></a><a name="hours"></a></p>
<div id="where-you-at">
<div class="container-fluid">
<div class="row fluid-padding">
<div class="col-md-12">
<h2>Where Are We?</h2>
</div>
</div>
<div class="row fluid-padding">
<div class="col-sm-6"><iframe allowfullscreen="" frameborder="0" height="500" src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d11378.36516717968!2d-88.0879007!3d44.5235243!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xc2edbc34026e8178!2sLos+Banditos!5e0!3m2!1sen!2sus!4v1463766891610" style="border:0" width="100%"></iframe></div>
<div class="col-xs-12 col-sm-3">
<h3>Hours</h3>
<div class="row">
<div class="col-sm-6">
<h5>Monday</h5>
</div>
<div class="col-sm-6">
<p>11 AM - 9 PM</p>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<h5>Tuesday</h5>
</div>
<div class="col-sm-6">
<p>11 AM - 9 PM</p>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<h5>Wednesday</h5>
</div>
<div class="col-sm-6">
<p>11 AM - 9 PM</p>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<h5>Thursday</h5>
</div>
<div class="col-sm-6">
<p>11 AM - 9 PM</p>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<h5>Friday</h5>
</div>
<div class="col-sm-6">
<p>11 AM - 9 PM</p>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<h5>Saturday</h5>
</div>
<div class="col-sm-6">
<p>11 AM - 9 PM</p>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<h5>Sunday</h5>
</div>
<div class="col-sm-6">
<p>3 PM - 8 PM</p>
</div>
</div>
<p>Hours include dine in.</p>
<p>We are closed for the following holidays: New Year's Day, Superbowl Sunday, Easter, 4th of July, Thanksgiving, Christmas. Please call for any questions.</p>
</div>
<div class="col-sm-3">
<h3>Location</h3>
<p><strong>Los Banditos</strong><br />
2335 W. Mason St.<br />
Green Bay, WI 54302<br />
(920) 494-4505</p>
<p><a href="mailto:info@losbanditoswest.com">info@losbanditoswest.com</a></p>
<p>Parking and entrance are behind building.</p>
</div>
</div>
</div>
</div>
<div id="contact-us">
<div class="container-fluid">
<div class="row fluid-padding">
<div class="col-xs-12 col-sm-6">