-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·776 lines (420 loc) · 17.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NIZA Marine</title>
<meta name="description" content="Test Page">
<!-- Mobile Specific Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/font-awesome.css" />
<link rel="stylesheet" href="css/background.css" />
<link rel="stylesheet" href="css/ytplayer.css" />
<link rel="stylesheet" href="css/style.css" />
<!-- Fonts -->
<link href='http://fonts.googleapis.com/css?family=Merriweather:400,700,400italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<!--[if lt IE 9]>
<script src="js/html5.js"></script>
<![endif]-->
<!-- Favicon Icon -->
<link rel="shortcut icon" href="img/favicon.ico">
</head>
<body>
<!-- Page Loader -->
<div class="page-loader">
<img src="img/loader.gif" alt="">
</div>
<!-- HEADER -->
<header class="front-header" role="banner">
<div class="menu-open">
<div class="fa fa-bars"></div>
</div> <!-- end menu-open -->
<div class="mobile-menu-wrap">
<div class="fa fa-times menu-close"></div>
<div class="col-xs-12">
<nav class="mobile-menu">
<ul class="mobile-ul">
</ul>
</nav>
</div>
</div> <!-- end mobile-menu-wrap -->
<div class="container">
<div class="col-xs-8 col-sm-3">
<figure class="logo">
<a href="index.html" title="logo" rel="home">
<img src="img/logo.png" alt="">
</a>
</figure>
</div> <!-- end col-sm-3 -->
<div class="col-sm-9">
<nav class="nav-menu">
<ul class="nav navbar-nav">
</ul>
</nav>
</div>
<div class="col-sm-12 col-md-12 col-lg-10 col-lg-offset-1 clearfix">
<div class="top-headline">
<h1 class="headline-title">NIZA Marine, Ensenada<br> <br> Nearly a decade of marine services to the US and Mexican fleet. </h1>
<div class="separator"><i class="fa fa-anchor"></i></div>
<h4 class="description">
Having managed projects in Ensenada for nearly a decade, you'll be hard pressed to find a puzzle we can't solve. We cover all the bases, from small cruising sailboats up to large commercial vessels. We pride ourselves in a beautiful finish which will put a smile on your face.
</h4>
</div> <!-- end headline -->
</div> <!-- end col-sm-10 -->
</div> <!-- end container -->
</header>
<!-- END HEADER -->
<!-- FIXED HEADER -->
<header class="fixed-header">
<div class="fixed-menu-cover">
<div class="fixed-bg"></div>
<div class="container">
<div class="col-sm-3 col-md-2 col-lg-3">
<figure class="logo">
<a href="index.html" title="logo" rel="home">
<img src="img/logo.png" alt="">
</a>
</figure>
</div> <!-- col-sm-3 -->
<div class="col-sm-7 col-md-8 col-lg-7">
<nav class="nav-menu">
<ul class="nav navbar-nav">
</ul>
</nav>
</div>
<div class="col-sm-2">
<div class="slip-search-wrap">
<form action="#">
<input type="search" class="slip-search" placeholder="Search...">
<i class="fa fa-search"></i>
</form>
</div> <!-- end slip-search-wrap -->
</div> <!-- end col-sm-2 -->
</div> <!-- end container -->
</div> <!-- end fixed-header-cover -->
</header>
<!--END FIXED HEADER -->
<!-- QUOTE -->
<section class="section-quote">
<div class="container">
<div class="quote-body col-sm-6">
<h2 class="quote-name">Mario Herrera</h2>
<h5 class="sub-info">Managing Director and Project Manager</h5>
<div class="separator"><i class="fa fa-quote-left"></i></div>
<p class="quote-role">
Many in the local boating community will know of Mario and his reputation for being easy to deal with and getting a great job done here in Mexico. Mario will be your project manager.
</p>
<img src="img/signature.png" alt="" class="u-photo">
</div> <!-- end col-sm-6 -->
<div class="col-sm-6">
<img src="img/mariooutline.png" alt="" class="u-photo quote-image">
</div> <!-- end col-sm-6 -->
</div> <!-- end container -->
</section>
<!-- END SECTION QUOTE -->
<!-- FEATURES -->
<section class="section-features">
<div class="container">
<div class="col-sm-12 col-md-6 col-lg-4">
<article class="h-article feature-rotate-first">
<figure class="entry-featured-image">
<img src="img/steering.png" alt="">
</figure>
<header class="entry-header">
<h4 class="entry-title">Construction</h4>
<h6 class="sub-info">Carpentry, Welding, Construction</h6>
</header>
</article> <!-- end box -->
<article class="h-article feature-rotate-second">
<div class="box-inner">
<header class="entry-header">
<h4 class="entry-title">Construction</h4>
<h6 class="sub-info">Carpentry, Welding, Construction</h6>
</header>
<div class="separator-box"></div>
<div class="entry-summary">
Fine woodwork, stainless steel fabrication and fiberglass. Our engineers will work with you to design the perfect enhancement for your boat and bring it to life.
</div> <!-- end entry-summary -->
</div> <!-- end box-inner -->
</article> <!-- end box -->
</div> <!-- end col-sm-12 col-md-6 col-lg-4 -->
<div class="col-sm-12 col-md-6 col-lg-4">
<article class="h-article feature-rotate-first">
<figure class="entry-featured-image">
<img src="img/rope.png" alt="">
</figure>
<header class="entry-header">
<h4 class="entry-title">Rigging</h4>
<h6 class="sub-info">Standing, running, steering</h6>
</header>
</article> <!-- end box -->
<article class="h-article feature-rotate-second">
<div class="box-inner">
<header class="entry-header">
<h4 class="entry-title">Rigging</h4>
<h6 class="sub-info">Standing, running, steering</h6>
</header>
<div class="separator-box"></div>
<div class="entry-summary">
Specialty sailboat rigging either from your existing rig or a modification.
</div> <!-- end entry-summary -->
</div> <!-- end box-inner -->
</article> <!-- end box -->
</div> <!-- end col-sm-12 col-md-6 col-lg-4 -->
<div class="col-sm-12 col-md-6 col-lg-4">
<article class="h-article feature-rotate-first">
<figure class="entry-featured-image">
<img src="img/mask.png" alt="">
</figure>
<header class="entry-header">
<h4 class="entry-title">Caretaking</h4>
<h6 class="sub-info">Looking after your boat while you're gone</h6>
</header>
</article> <!-- end box -->
<article class="h-article feature-rotate-second">
<div class="box-inner">
<header class="entry-header">
<h4 class="entry-title">Caretaking</h4>
<h6 class="sub-info">Looking after your boat while you're gone</h6>
</header>
<div class="separator-box"></div>
<div class="entry-summary">
Everything from bottom cleaning to checking bilges, electrics and running the engine regularily.
</div> <!-- end entry-summary -->
</div> <!-- end box-inner -->
</article> <!-- end box -->
</div> <!-- end col-sm-12 col-md-6 col-lg-4 -->
</div> <!-- end container -->
</section>
<!-- END FEATURES -->
<!-- VERTICAL SLIDER -->
<section class="slider-vertical">
<div class="container">
<div class="arrow-wrap col-xs-12 col-sm-6">
<span class="arrow-left"><i class="fa fa-chevron-up"></i></span>
<span class="arrow-right"><i class="fa fa-chevron-down"></i></span>
</div>
<div class="vertical-slider">
<div class="slide">
<div class="vertical-text col-xs-12 col-sm-6">
<h4 class="vertical-title">Carpentry</h4>
<h6 class="sub-info">In teak, mahogony, or your choice of woods.</h6>
<div class="separator-box"><i class="fa fa-anchor"></i></div>
<p class="vertical-content"></p>
</div>
<div class="vertical-image shadow col-xs-12 col-sm-6 col-lg-5"><img src="img/carp.jpg" alt=""></div>
</div> <!-- end slide -->
<div class="slide">
<div class="vertical-text col-xs-12 col-sm-6">
<h4 class="vertical-title">Stainless</h4>
<h6 class="sub-info">If you can imagine it, we can build it</h6>
<div class="separator-box"><i class="fa fa-anchor"></i></div>
<p class="vertical-content">We have fabricated everything from anchors to huge fishing arches.</p>
</div>
<div class="vertical-image shadow col-xs-12 col-sm-6 col-lg-5"><img src="img/stainless.jpg" alt=""></div>
</div> <!-- end slide -->
<div class="slide">
<div class="vertical-text col-xs-12 col-sm-6">
<h4 class="vertical-title">Complex Structures</h4>
<h6 class="sub-info">Fishing towers to new pilothouses</h6>
<div class="separator-box"><i class="fa fa-anchor"></i></div>
<p class="vertical-content"></p>
</div>
<div class="vertical-image shadow col-xs-12 col-sm-6 col-lg-5"><img src="img/complex.jpg" alt=""></div>
</div> <!-- end slide -->
<div class="slide">
<div class="vertical-text col-xs-12 col-sm-6">
<h4 class="vertical-title">Refrigeration</h4>
<h6 class="sub-info">We know how important good refrigeration is</h6>
<div class="separator-box"><i class="fa fa-anchor"></i></div>
<p class="vertical-content"></p>
</div>
<div class="vertical-image shadow col-xs-12 col-sm-6 col-lg-5"><img src="img/fridge.jpg" alt=""></div>
</div> <!-- end slide -->
<div class="slide">
<div class="vertical-text col-xs-12 col-sm-6">
<h4 class="vertical-title">Solar</h4>
<h6 class="sub-info">Solar arches, panels and power management</h6>
<div class="separator-box"><i class="fa fa-anchor"></i></div>
<p class="vertical-content"></p>
</div>
<div class="vertical-image shadow col-xs-12 col-sm-6 col-lg-5"><img src="img/solar.jpg" alt=""></div>
</div> <!-- end slide -->
</div> <!-- end vertical-slider -->
</div>
</section>
<!-- END VERTICAL SLIDER -->
<!-- COUNTER -->
<section class="section-counter">
<div class="container">
<div class="counter-wrap col-sm-10 col-sm-offset-1">
<div class="col-sm-6 col-md-4">
<p class="counter-number">749</p>
<h6 class="sub-info">Sailboats</h6>
</div> <!-- end col-sm-3 -->
<div class="col-sm-6 col-md-4">
<p class="counter-number">96</p>
<h6 class="sub-info">Catamarans</h6>
</div> <!-- end col-sm-3 -->
<div class="col-sm-6 col-md-4">
<p class="counter-number">772</p>
<h6 class="sub-info">Motor Yachts</h6>
</div> <!-- end col-sm-3 -->
</div> <!-- end counter-wrap -->
<div class="col-sm-8 col-sm-offset-2">
<div class="top-headline">
<div class="separator"><i class="fa fa-anchor"></i></div>
<h4 class="description">
Our staff have seen just about every type of job imaginable on the high seas
</h4>
</div> <!-- end headline -->
</div> <!-- end col-sm-8 -->
</div> <!-- end container -->
</section>
<!-- END COUNTER -->
<!-- CARD -->
<section class="section-card">
<div class="container">
<div class="col-sm-11 col-md-8 col-lg-7 col-sm-offset-1">
<div class="h-card">
<figure class="card-image col-sm-6">
<img src="img/card.png" class="u-photo" alt="">
</figure> <!-- end col-sm-6 -->
<div class="card-text-wrap col-sm-6">
<header class="card-header">
<h4 class="p-name">Luis Mares</h4>
<h6 class="sub-info">Supervisor</h6>
</header>
<div class="separator-box"></div>
<div class="p-role">
Luis is a master carpenter, and also supervises others doing carpentry, varnishing and fiber glass.
</div> <!-- end entry-summary -->
</div>
</div> <!-- end h-card -->
</div> <!-- end col-sm-7 -->
</div> <!-- end container -->
</section>
<!-- END CARD -->
<!-- VIDEO BG -->
<section class="section-video">
<div class="video-text-wrap col-sm-6 col-sm-offset-3">
<h3 class="video-title">Meet Mario and Luis</h3>
<div class="player-icon">
<i class="fa fa-play"></i>
</div> <!-- end player-icon -->
</div>
<div class="player" data-property="{videoURL:'http://www.youtube.com/watch?v=eUHVA2fMFSg'}"></div>
</section>
<!-- END VIDEO BG -->
<!-- CONTACT -->
<section class="section-contact">
<div class="container">
<div class="col-sm-12 col-md-7">
<div class="col-xs-12 col-sm-6">
<figure class="contact-image">
<img src="img/contact.png" class="u-photo" alt="">
</figure>
</div> <!-- end col-sm-6 -->
<div class="col-xs-12 col-sm-6 contact-line">
<h4 class="contact-top-title">Contact Info</h4>
<div class="h-adr">
<h5 class="contact-title">address</h5>
<p>
<span class="p-street-address">Cruise Port Marina</span>
<span class="p-locality">Ensenada</span>
<span class="p-country-name">Baja California</span>
</p>
<h5 class="contact-title">phone</h5>
<p class="tel">
<span class="value">+521 (646) 119 1591</span>
</p>
<h5 class="contact-title">email</h5>
<p class="u-email">
mario@nizamarine.com
</p>
</div> <!-- end h-adr -->
</div> <!-- end col-sm-6 -->
</div> <!-- end col-sm-6 -->
<div class="col-sm-12 col-md-5">
<div class="stamp">
<figure class="stamp-image clearfix">
<img src="img/stamp.png" class="u-photo" alt="">
</figure>
</div> <!-- end stamp -->
<h4 class="contact-form-title">
Write a message
</h4>
<form action="" class="form-inline">
<input type="text" class="first-name" placeholder="First Name">
<input type="text" class="second-name" placeholder="Second Name">
<input type="email" class="email-address" placeholder="Your Email">
<select class="contact-select">
<option value="" selected>Subject</option>
<option value="">Trip</option>
<option value="">World Tour</option>
<option value="">My Yacht</option>
</select>
<textarea name="" id="" placeholder="Message"></textarea>
<input type="submit" value="send message">
</form>
</div> <!-- end col-sm-6 -->
</div> <!-- end container -->
</section>
<!-- END CONTACT -->
<!-- MAP -->
<section class="section-map">
<div id="map_canvas"></div>
</section>
<!-- END MAP -->
<!-- FOOTER -->
<footer class="bottom-footer" role="contentinfo">
<div class="container">
<div class="col-sm-3">
<figure class="logo">
<a href="index.html" rel="home">
<img src="img/logo-footer.png" alt="logo">
</a>
</figure> <!-- end logo -->
</div> <!-- end col-sm-3 -->
<div class="col-xs-12 col-sm-9">
<nav>
<ul class="nav navbar-nav">
</ul>
</nav>
</div> <!-- end col-sm-9 -->
<div class="seperator col-sm-12 hidden-xs"></div>
<div class="copyright col-xs-12 col-sm-7">
Copyright © 2014 NIZA Marine - Website by bluewaterla.bz
</div> <!-- end copyright -->
<div class="social-icon col-xs-12 col-sm-5">
<ul>
<li><a href="" target="_blank"><i class="fa fa-facebook"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-twitter"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div> <!-- end social-icon -->
</div> <!-- end container -->
</footer>
<!-- END FOOTER -->
<!-- JQUERY -->
<script src="js/jquery.js"></script>
<script src="js/freetile.js"></script>
<script src="js/html5.js"></script>
<script src="js/smoothscroll.js"></script>
<script src="js/teamslider.js"></script>
<script src="js/swiper.js"></script>
<script src="js/isotope.js"></script>
<script src="js/slick.js"></script>
<script src="js/ytplayer.js"></script>
<script src="js/timelinr.js"></script>
<script src="js/magnific-popup.js"></script>
<script src="js/counterup.js"></script>
<script src="js/cloudflare.js"></script>
<script src="js/parallax.js"></script>
<script src="js/fittext.js"></script>
<script src="js/map.js"></script>
<script src="js/function.js"></script>
</body>
</html>