-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
813 lines (610 loc) · 24.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Baja-Clone</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
}
.navbar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
background-color: #f6f7f8;
/* Dark background color */
color: #080808e1;
/* Light text color */
}
.navbar img {
height: 50px;
width: auto;
}
.nav-links {
display: flex;
gap: 20px;
/* Space between nav items */
list-style: none;
margin: 0;
padding: 0;
}
.nav-links li {
padding: 5px 10px;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
}
.nav-links li:hover {
background-color: #334155;
/* Slightly lighter shade on hover */
border-radius: 5px;
color: #e2e8f0;
/* Light gray color on hover */
}
.nav-links li a {
text-decoration: none;
color: inherit;
font-weight: bold;
}
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Hide the images by default */
.mySlides {
display: none;
}
/* Next & previous buttons */
.prev,
.next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
text-justify: center;
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active,
.dot:hover {
background-color: #717171;
}
/* Fading animation */
.fade {
animation-name: fade;
animation-duration: 1.5s;
}
.container {
position: relative;
text-align: center;
color: white;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@keyframes fade {
from {
opacity: .4
}
to {
opacity: 1
}
}
</style>
</head>
<body>
<div class="navbar">
<img src="pictures/baja_logo.png" alt="Logo">
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Employement</a></li>
<li><a href="#">contact</a></li>
</ul>
</div>
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext"></div>
<img src="pictures/pic1.png" style="width:100%">
<div class="text">
<h1>Creative Outsourcing Solution</h1>
<h3>Your search for the perfect outsourcing partner is finally over</h3>
</div>
</div>
<div class="mySlides fade">
<div class="numbertext"></div>
<img src="pictures/pic2.png" style="width:100%">
<div class="text">
<h1>Creative Outsourcing Solution</h1>
<h3>Your search for the perfect outsourcing partner is finally over</h3>
</div>
</div>
<div class="mySlides fade">
<div class="numbertext"></div>
<img src="pictures/pic3.png" style="width:100%">
<div class="text">
<h1>Creative Outsourcing Solution</h1>
<h3>Your search for the perfect outsourcing partner is finally over</h3>
</div>
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
</div>
<h1 style="text-align: center;">Profissional Services</h1>
<h4 style="text-wrap: 50px; text-align: center;">With our extensive knowledge in customer care services and
outsourcing <br />
we are uniquely positioned to provide support for your business</h4>
<div style="width: 100%; height: 250px; background-color: white; display: flex; ">
<div style="height: 200px; width: 300px; background-color: white; position: relative; top: 40px; left: 100px;">
<img src="pictures/service-p2.png" alt="" style="position: absolute; top: 0; left: 50%; transform: translateX(-50%);">
<h1 style="text-align: center; position:absolute; top: 90px; left: 12px;">VOIP termination</h1>
<h4 style=" text-align: center; position: absolute; top: 130px;">Lorem ipsum dolor sit amet. and xtys bftt fweer
</h4>
</div>
<div style="height: 200px; width: 300px; background-color:white; position: relative; top: 40px;
left: 200px;"><img src="pictures/service-p1.png" alt=""
style="position: absolute; top: 0; left: 50%; transform: translateX(-50%);">
<h1 style="text-align: center; position:absolute; top: 90px; left: 12px;">VOIP termination</h1>
<h4 style=" text-align: center; position: absolute; top: 130px;">Lorem ipsum dolor sit amet. and xtys bftt fweer
</h4>
</div>
<div style="height: 200px; width: 300px; background-color:white; position: relative; top: 40px;
left: 270px;">
<img src="pictures/service-p3.png" alt="" style="position: absolute; top: 0; left: 50%; transform: translateX(-50%);">
<h1 style="text-align: center; position:absolute; top: 90px; left: 12px;">VOIP termination</h1>
<h4 style=" text-align: center; position: absolute; top: 130px;">Lorem ipsum dolor sit amet. and xtys bftt fweer
</h4>
</div>
</div>
<div style="width: 100%; height: 250px; background-color: white; display: flex; ">
<div style="height: 200px; width: 300px; background-color: white; position: relative; top: 40px; left: 100px;">
<img src="pictures/service-p4.png" alt="" style="position: absolute; top: 0; left: 50%; transform: translateX(-50%);">
<h1 style="text-align: center; margin-top: 120px;">BACK OFFICE SUPPORT</h1>
<h4 style="text-align: center;">Lorem ipsum dolor sit amet. and xtys bftt fweer </h4>
</div>
<div style="height: 200px; width: 300px; background-color:white; position: relative; top: 40px; left: 200px;">
<img src="pictures/service-p5.png" alt="" style="position: absolute; top: 0; left: 50%; transform: translateX(-50%);">
<h1 style="text-align: center; margin-top: 120px;">SALES</h1>
<h4 style="text-align: center;">Lorem ipsum dolor sit amet. and xtys bftt fweer </h4>
</div>
<div style="height: 200px; width: 300px; background-color:white; position: relative; top: 40px;
left: 270px;">
<img src="pictures/service-p6.png" alt="" style="position: absolute; top: 0; left: 50%; transform: translateX(-50%);">
<h1 style="text-align: center; margin-top: 120px;">CALL CENTER SEAT LEASING</h1>
<h4 style="text-align: center;">Lorem ipsum dolor sit amet. and xtys bftt fweer </h4>
</div>
</div>
<div style="
width: 100%;
height: 50px;
background-color: #ffffff;
margin-top: 70px;
display: flex;
align-items: center;
justify-content: center;">
<button type="button" style="
padding: 10px 20px;
font-size: 1rem;
color: #007bff;
background: linear-gradient(90deg, #ffffff, #f0f8ff);
border: 2px solid #007bff;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);"
onmouseover="this.style.background='linear-gradient(90deg, #007bff, #0056b3)'; this.style.color='white'; this.style.transform='scale(1.1)'; this.style.boxShadow='0 6px 15px rgba(0, 0, 0, 0.3)';"
onmouseout="this.style.background='linear-gradient(90deg, #ffffff, #f0f8ff)'; this.style.color='#007bff'; this.style.transform='scale(1)'; this.style.boxShadow='0 4px 10px rgba(0, 0, 0, 0.2)';">
View More
</button>
</div>
<br>
<br>
<div style="position: relative; width: 100%; margin: auto;">
<!-- Image -->
<img src="pictures/just-p2.png" style="width: 100%; display: block;">
<div style="
position: absolute;
width: 80%;
left: 10%;
top: 10%;
text-align: center;
color: white;
font-family: Arial, sans-serif;">
<h1 style="font-size: 3.5vw; margin-bottom: 1vw; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); margin-top: 100px;">
Just relax & let us do the heavy lifting
</h1>
<p style="font-size: 1.9vw; line-height: 1.8; margin-bottom: 2vw; text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);">
Our service is extremely flexible and can be scaled to meet your needs from day one.<br>
We understand that the choice to outsource is a big decision, and we won’t let you down.<br>
Our team will work to fully understand your needs and implement solutions to meet your goals.<br>
Dedicated support team to manage your campaign.
</p>
<a href="#learn-more" style="
display: inline-block;
padding: 10px 20px;
font-size: 1.5vw;
color: white;
text-decoration: none;
background: #007BFF;
border-radius: 5px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
transition: background 0.3s ease;">
Learn More
</a>
</div>
</div>
<div style="
height: 250px;
width: 100%;
background-color: #fff;
display: flex;
align-items: center;
justify-content: center;">
<div style="
height: 90%;
width: 40%;
background-color: #fff;
border-radius: 15px;
">
<h1 style="text-align: center;">OUR COMPANY</h1>
<h3 style="text-align: center; color: #334155;">Baja Call Center Services was born from the desire to create a
full service
outsourcing company that not only has years of knowledge in all facets of
the industry, but a strong focus on exceptional service and value</h3>
</div>
</div>
<div style="position: absolute; left: 50%;"><img src="pictures/our-company-pic.png" alt=""></div>
<div style="height: 510px; width: 600px; background-color: #ffffff;">
<div style="position: relative; height: 150px; width: 100%; background-color: #fff;">
<h2 style="text-align: center;">BUSINESS VALUES THAT DRIVE OUR COMPANY</h2>
<h4 style="text-align: center; color: #434d5a; position: absolute;bottom: 1px; top: 3px; ">Baja Call Center
Services has aspired to be one of the world’s leading customer service solutions company, while keeping cost to
clients an important consideration. This goal has prompted Baja Call Center Services to craft a unique blend of
US management techniques and procedures with its nearshore call center to provide top-notch customer support
services for businesses and industries</h4>
</div>
<div
style="flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%;">
<div
style="width: 80%; background-color: #ffffff; height: 100px; margin: 10px; display: flex; justify-content: start; align-items: center; border-radius: 8px;">
<img src="pictures/affordable.png" alt="">
<h1>AFFORDABLE
</h1>
</div>
<div
style="width: 80%; background-color: #ffffff; height: 100px; margin: 10px; display: flex; justify-content: start; align-items: center; border-radius: 8px;">
<img src="pictures/dependable.png" alt="">
<h1>DEPENDABLE</h1>
</div>
<div
style="width: 80%; background-color: #ffffff; height: 100px; margin: 10px; display: flex; justify-content: start; align-items: center; border-radius: 8px;">
<img src="pictures/account.png" alt="">
<h1>ACCOUNTABLE</h1>
</div>
</div>
</div>
<!-- <div style="height: 500px; width: 100%; background: #a37676; position: relative;">
<img src="culture.png" alt=""
style="
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;">
-->
<div style="height: 500px; width: 100%; background: #ffffff; position: relative;">
<img src="pictures/culture.png" alt="" style="
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;">
<div style="
position: absolute;
top: 35%; /* Moved closer to the horizontal boxes */
left: 50%;
transform: translate(-50%, -50%);
width: 390px; /* 30% increase */
/* background: rgba(255, 255, 255, 0.9); */
padding: 30px;
text-align: center;
border-radius: 10px;
z-index: 1;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);">
<!-- <img src="box-image.png" alt="Top Image"
style="width: 130px; height: 130px; border-radius: 50%; margin-bottom: 15px;"> -->
<h1 style="margin: 0; font-size: 40px; color: #fffefe;">CULTURE & VALUES</h1>
<p style="font-size: 20px; color: #fffefe; margin: 10px 0 0;">We aim to provide unparalleled service with passion
and dedication.</p>
</div>
<div style="
position: absolute;
bottom: 10%; /* Adjusted for balanced space */
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: space-between;
width: 85%;
gap: 20px; /* Added space between boxes */
z-index: 1;">
<div style="
width: 30%; /* Adjusted for spacing */
/* background: rgba(255, 255, 255, 0.9); */
padding: 30px;
text-align: center;
border-radius: 10px;
/* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/">
<h4 style="margin: 0; font-size: 40px; color: #ffffff;">Quality</h4>
<p style="font-size: 18px; color: #ffffff; margin: 10px 0 0;">Always here to help and guide you. Lorem ipsum
dolor sit amet consectetur adipisicing elit. Dolorem, mollitia.lorem7 gdgf dgefd dgete</p>
</div>
<div style="
width: 30%; /* Adjusted for spacing */
/* background: rgba(255, 255, 255, 0.9); */
padding: 30px;
text-align: center;
border-radius: 10px;
/* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/">
<h4 style="margin: 0; font-size: 40px; color: #ffffff;">Innovation</h4>
<p style="font-size: 18px; color: #ffffff; margin: 10px 0 0;">Always here to help and guide you. Lorem ipsum
dolor sit amet consectetur adipisicing elit. Dolorem, mollitia.lorem7 gdgf dgefd dgete</p>
</div>
<div style="
width: 30%; /* Adjusted for spacing */
/* background: rgba(255, 255, 255, 0.9); */
padding: 30px;
text-align: center;
border-radius: 10px;
/* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/">
<h4 style="margin: 0; font-size: 40px; color: #ffffff;">Support</h4>
<p style="font-size: 18px; color: #ffffff; margin: 10px 0 0;">Always here to help and guide you. Lorem ipsum
dolor sit amet consectetur adipisicing elit. Dolorem, mollitia.lorem7 gdgf dgefd dgete </p>
</div>
</div>
</div>
<div style="height: 900px; width: 100%; background-color: #ffffff; ">
<h1 style="text-align: center; font-size: 40px; color: black;">OUR AWOSOME CLIENTS</h1>
<div style="
height: 200px;
width: 80%;
background-color: #ffffff;
position: relative;
left: 10%;
display: flex;
align-items: center;
padding: 10px;
box-sizing: border-box;">
<!-- Left Side: Image -->
<div style="flex: 0 0 20%; margin-right: 20px;">
<img src="pictures/our-client-1.png" alt="User Picture" style="
width: 100%;
height: auto;
border-radius: 10px;
display: block;">
</div>
<!-- Right Side: Text -->
<div style="flex: 1; color: white; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.6; ">
<h3 style="margin-top: 0; font-size: 18px; color: black;">Good Afternoon Justin!</h3>
<p style="margin: 0;color: black;">It's Rachel over at MDP. I just wanted to reach out to you and say what a
delight it has
been working with your agents. It is a rough business, and they have picked up rather nicely.</p>
<p style="margin: 0;color: black;">I especially would like to recognize Marlene. She provides expedient and
exemplary help to
us and the clients. She takes pride in her work and always retains the information we give to her (often times
it can be a ton).</p>
<p style="margin: 0; color: black;">She also has implemented spreadsheets and systems that make the tasks much
more efficient.
We are blessed to have her as part of our team. Thank you very much for your continued willingness assisting
in the growth of the business.</p>
</div>
</div>
<div style="
height: 200px;
width: 80%;
background-color: #ffffff;
position: relative;
left: 10%;
display: flex;
align-items: center;
padding: 10px;
box-sizing: border-box;
padding-bottom: 10px;">
<!-- Left Side: Text -->
<div style="flex: 1; color: white; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.6;">
<h3 style="margin-top: 0; font-size: 18px;color: black;">Good Afternoon Justin!</h3>
<p style="margin: 0;color: black;">It's Rachel over at MDP. I just wanted to reach out to you and say what a
delight it has
been working with your agents. It is a rough business, and they have picked up rather nicely.</p>
<p style="margin: 0;color: black;">I especially would like to recognize Marlene. She provides expedient and
exemplary help to
us and the clients. She takes pride in her work and always retains the information we give to her (often times
it can be a ton).</p>
<p style="margin: 0;color: black;">She also has implemented spreadsheets and systems that make the tasks much
more efficient.
We are blessed to have her as part of our team. Thank you very much for your continued willingness assisting
in the growth of the business.</p>
</div>
<!-- Right Side: Image -->
<div style="flex: 0 0 20%; margin-left: 20px;">
<img src="pictures/our-client-2.png" alt="User Picture" style="
width: 100%;
height: auto;
border-radius: 10px;
display: block;">
</div>
</div>
<div style="
height: 200px;
width: 80%;
background-color: #ffffff;
position: relative;
left: 10%;
display: flex;
align-items: center;
padding: 10px;
box-sizing: border-box;">
<!-- Left Side: Image -->
<div style="flex: 0 0 20%; margin-right: 20px;">
<img src="pictures/our-client-3.png" alt="User Picture" style="
width: 100%;
height: auto;
border-radius: 10px;
display: block;">
</div>
<!-- Right Side: Text -->
<div style="flex: 1; color: white; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.6;">
<h3 style="margin-top: 0; font-size: 18px;color: black;">Good Afternoon Justin!</h3>
<p style="margin: 0;color: black;">It's Rachel over at MDP. I just wanted to reach out to you and say what a
delight it has
been working with your agents. It is a rough business, and they have picked up rather nicely.</p>
<p style="margin: 0;color: black;">I especially would like to recognize Marlene. She provides expedient and
exemplary help to
us and the clients. She takes pride in her work and always retains the information we give to her (often times
it can be a ton).</p>
<p style="margin: 0;color: black;">She also has implemented spreadsheets and systems that make the tasks much
more efficient.
We are blessed to have her as part of our team. Thank you very much for your continued willingness assisting
in the growth of the business.</p>
</div>
</div>
<div style="height: 250px; width: 100%; background-color: #6acb7d; display: flex; justify-content: center; align-items: center; flex-direction: column; text-align: center;">
<!-- Heading -->
<h1 style="color: rgb(255, 255, 255); font-style: unset; margin: 0;">LET'S TALK ABOUT NEW PROJECT</h1>
<!-- Animated Button -->
<button style="
margin-top: 20px;
background-color: #549848;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease, transform 0.3s ease;">
Contact Us
</button>
</div>
<!-- Button Animation -->
<style>
button:hover {
background-color: #0056b3;
transform: translateY(-5px);
}
</style>
</div>
<footer class="footer" style="height: 300px; width: 100%; background-color: #262626; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; ">
<div style="height: 200px; width: 20%; background-color:none; margin-right:50px ; ">
<h4 style="text-align: start; justify-content: center; color: #fff;">USA <br>780 Roosevelt <br>
Irvine, CA 92620 <br>
866.868.8790 FREE <br>
[email protected]</h4>
</div>
<div style="height: 200px; width: 20%; background-color: none; margin-right: 50px;">
<h4 style="color: white;"> MEXICO <br>
Calle David Alfaro Siqueiros 2637 <br> Interior 301 Zona Urbano Rio 22010 <br> Tijuana Baja California <br>
+52.664.634.2237</h4>
</div>
<div style="height: 200px; width: 20%; background-color: none; ">
<h4 style="color: white;">
Perfection is not attainable, but if we <br>chase perfection we can catch <br>excellence. #Vince Lombardi <br>
8 mins ago</h4>
</div>
</footer>
<div style="height: 50px; width: 100%; background-color: #fff;display: flex; justify-content: end;" ><h5 style="position: absolute; left: 10px;">© All Copyright terms and conditions are received 2016 | Designed by <a href="">musawirali</a></h5>
<img src="pictures/social-t.png" >
<img src="pictures/social-p.png" alt="">
<img src="pictures/social-f.png" alt="">
<img src="pictures/social-g.png" alt="">
</div>
<script>
let slideIndex = 1;
showSlides(slideIndex);
// Next/previous controls
function plusSlides(n) {
showSlides(slideIndex += n);
}
// Thumbnail image controls
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
let i;
let slides = document.getElementsByClassName("mySlides");
let dots = document.getElementsByClassName("dot");
if (n > slides.length) { slideIndex = 1 }
if (n < 1) { slideIndex = slides.length }
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex - 1].style.display = "block";
dots[slideIndex - 1].className += " active";
}
</script>
</body>
</html>