-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
601 lines (539 loc) · 31.3 KB
/
index.html
File metadata and controls
601 lines (539 loc) · 31.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Law — Free Multi-Purpose One Page Bootstrap 4 Theme by uicookies.com</title>
<meta name="description" content="Free Bootstrap 4 Theme by uicookies.com">
<meta name="keywords" content="free website templates, free bootstrap themes, free template, free bootstrap, free website template">
<link href="https://fonts.googleapis.com/css?family=Crimson+Text:400,400i,600|Montserrat:200,300,400" rel="stylesheet">
<link rel="stylesheet" href="assets/css/bootstrap/bootstrap.css">
<link rel="stylesheet" href="assets/fonts/ionicons/css/ionicons.min.css">
<link rel="stylesheet" href="assets/fonts/law-icons/font/flaticon.css">
<link rel="stylesheet" href="assets/fonts/fontawesome/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/slick.css">
<link rel="stylesheet" href="assets/css/slick-theme.css">
<link rel="stylesheet" href="assets/css/helpers.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body data-spy="scroll" data-target="#pb-navbar" data-offset="200">
<nav class="navbar navbar-expand-lg navbar-dark pb_navbar pb_scrolled-light" id="pb-navbar">
<div class="container">
<a class="navbar-brand" href="index.html">Law</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#probootstrap-navbar" aria-controls="probootstrap-navbar" aria-expanded="false" aria-label="Toggle navigation">
<span><i class="ion-navicon"></i></span>
</button>
<div class="collapse navbar-collapse" id="probootstrap-navbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link" href="#section-home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#section-about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#section-why-us">Why</a></li>
<li class="nav-item"><a class="nav-link" href="#section-practicing-areas">Practicing Areas</a></li>
<li class="nav-item"><a class="nav-link" href="#section-attorneys">Attorneys</a></li>
<li class="nav-item"><a class="nav-link" href="#section-testimonials">Testimonials</a></li>
<li class="nav-item"><a class="nav-link" href="#section-contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- END nav -->
<section class="pb_cover_v1 text-left cover-bg-black cover-bg-opacity-4" style="background-image: url(assets/images/1900x1200_img_7.jpg)" id="section-home">
<div class="container">
<div class="row align-items-center justify-content-end">
<div class="col-md-6 order-md-1">
<h2 class="heading mb-3">The Law Firm</h2>
<div class="sub-heading"><p class="mb-5">A free template by <a href="https://uicookies.com/">uicookies.com</a> for Law Firm</p>
<p><a href="#section-contact" role="button" class="btn smoothscroll pb_outline-light btn-xl pb_font-13 p-4 rounded-0 pb_letter-spacing-2">Free Consultation</a></p>
</div>
</div>
</div>
</div>
</section>
<!-- END section -->
<section class="pb_section pb_section_v1" data-section="about" id="section-about">
<div class="container">
<div class="row">
<div class="col-lg-5 pr-md-5 pr-sm-0">
<h2 class="mt-0 heading-border-top mb-3 font-weight-normal">Who We Are</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
</div>
<div class="col-lg-7">
<div class="images">
<img class="img1 img-fluid" src="assets/images/600x450_img_2.jpg" alt="free Template by uicookies.com">
<img class="img2" src="assets/images/800x500_img_1.jpg" alt="free Template by uicookies.com">
</div>
</div>
</div>
</div>
</section>
<!-- END section -->
<section class="pb_section bg-light">
<div class="container">
<div class="row">
<div class="col-md">
<div class="media pb_media_v2 d-block text-center mb-3">
<div class="icon border border-gray rounded-circle d-block mr-3 display-4 mx-auto mb-4"><i class="flaticon text-secondary flaticon-jury"></i></div>
<div class="media-body">
<h3 class="mt-0 pb_font-20">Group of Lawyers</h3>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
</div>
</div>
</div>
<div class="col-md">
<div class="media pb_media_v2 d-block text-center mb-3">
<div class="icon border border-gray rounded-circle d-flex mr-3 display-4 mx-auto mb-4"><i class="flaticon text-secondary flaticon-law"></i></div>
<div class="media-body">
<h3 class="mt-0 pb_font-20">No One is Above The Law</h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
</div>
<div class="col-md">
<div class="media pb_media_v2 d-block text-center mb-3">
<div class="icon border border-gray rounded-circle d-flex mr-3 display-4 mx-auto mb-4"><i class="flaticon text-secondary flaticon-courthouse"></i></div>
<div class="media-body">
<h3 class="mt-0 pb_font-20">Hall of Justice</h3>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END section -->
<section class="pb_sm_py_cover text-center cover-bg-black cover-bg-opacity-4" style="background-image: url(assets/images/1900x1200_img_3.jpg)">
<div class="container">
<div class="row align-items-center">
<div class="col-md-12">
<h2 class="heading mb-3">Free Consultation</h2>
<p class="sub-heading mb-5 pb_color-light-opacity-8">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<p><a href="#section-contact" role="button" class="btn smoothscroll pb_outline-light p-3 rounded-0 pb_font-13 pb_letter-spacing-2">Get Started</a></p>
</div>
</div>
</div>
</section>
<!-- END section -->
<section class="pb_section" data-section="why-us" id="section-why-us">
<div class="container">
<div class="row justify-content-md-center text-center mb-5">
<div class="col-lg-7">
<h2 class="mt-0 heading-border-top font-weight-normal">Why Us</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
<div class="row">
<div class="col-lg-7">
<div class="images right">
<img class="img1 img-fluid" src="assets/images/600x450_img_2.jpg" alt="free Template by uicookies.com">
<img class="img2" src="assets/images/800x500_img_1.jpg" alt="free Template by uicookies.com">
</div>
</div>
<div class="col-lg-5 pl-md-5 pl-sm-0">
<div id="exampleAccordion" class="pb_accordion" data-children=".item">
<div class="item">
<a data-toggle="collapse" data-parent="#exampleAccordion" href="#exampleAccordion1" aria-expanded="true" aria-controls="exampleAccordion1" class="pb_font-18">Property & Business Law</a>
<div id="exampleAccordion1" class="collapse show" role="tabpanel">
<p>Pityful a rethoric question ran over her cheek, then she continued her way.</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
<div class="item">
<a data-toggle="collapse" data-parent="#exampleAccordion" href="#exampleAccordion2" aria-expanded="false" aria-controls="exampleAccordion2" class="pb_font-18">Famimly Law</a>
<div id="exampleAccordion2" class="collapse" role="tabpanel">
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
</div>
</div>
<div class="item">
<a data-toggle="collapse" data-parent="#exampleAccordion" href="#exampleAccordion3" aria-expanded="false" aria-controls="exampleAccordion3" class="pb_font-18">Commercial Litigation</a>
<div id="exampleAccordion3" class="collapse" role="tabpanel">
<p>Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.</p>
</div>
</div>
<div class="item">
<a data-toggle="collapse" data-parent="#exampleAccordion" href="#exampleAccordion4" aria-expanded="false" aria-controls="exampleAccordion4" class="pb_font-18">Injury Compensation</a>
<div id="exampleAccordion4" class="collapse" role="tabpanel">
<p>The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END section -->
<section class="pb_section">
<div class="multiple-items pb_slide_v1">
<div>
<a href="#" class="link-block">
<img src="assets/images/1900x1200_img_4.jpg" alt="" class="img-fluid">
<div class="slide-text">
<h2>Criminal Law</h2>
<p>Read More</p>
</div>
</a>
</div>
<div>
<a href="#" class="link-block">
<img src="assets/images/1900x1200_img_2.jpg" alt="" class="img-fluid">
<div class="slide-text">
<h2>Migration Law</h2>
<span>Read More</span>
</div>
</a>
</div>
<div>
<a href="#" class="link-block">
<img src="assets/images/1900x1200_img_3.jpg" alt="" class="img-fluid">
<div class="slide-text">
<h2>Civil Rights</h2>
<span>Read More</span>
</div>
</a>
</div>
<div>
<a href="#" class="link-block">
<img src="assets/images/1900x1200_img_4.jpg" alt="" class="img-fluid">
<div class="slide-text">
<h2>Property Law</h2>
<span>Read More</span>
</div>
</a>
</div>
<div>
<a href="#" class="link-block">
<img src="assets/images/1900x1200_img_1.jpg" alt="" class="img-fluid">
<div class="slide-text">
<h2>Civil Rights</h2>
<span>Read More</span>
</div>
</a>
</div>
<div>
<a href="#" class="link-block">
<img src="assets/images/1900x1200_img_2.jpg" alt="" class="img-fluid">
<div class="slide-text">
<h2>State Laws</h2>
<span>Read More</span>
</div>
</a>
</div>
<div>
<a href="#" class="link-block">
<img src="assets/images/1900x1200_img_3.jpg" alt="" class="img-fluid">
<div class="slide-text">
<h2>Immigration Laws</h2>
<span>Read More</span>
</div>
</a>
</div>
</div>
</section>
<!-- END section -->
<section class="pb_section pb_bg-half" data-section="practicing-areas" id="section-practicing-areas">
<div class="container">
<div class="row justify-content-md-center text-center mb-5">
<div class="col-lg-7">
<h2 class="mt-0 heading-border-top font-weight-normal">Practicing Areas</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="single-item pb_slide_v2">
<div>
<div class="d-lg-flex d-md-block slide_content">
<div class="pb_content-media" style="background-image: url(assets/images/1900x1200_img_4.jpg);"></div>
<div class="slide_content-text text-center">
<div class="pb_icon_v1"><i class="flaticon text-primary flaticon-handcuffs"></i></div>
<h3 class="font-weight-normal mt-0 mb-4">Criminal Law</h3>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<p>Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.</p>
</div>
</div>
</div>
<div>
<div class="d-lg-flex d-md-block slide_content">
<div class="pb_content-media" style="background-image: url(assets/images/1900x1200_img_2.jpg);"></div>
<div class="slide_content-text text-center">
<div class="pb_icon_v1"><i class="flaticon text-primary flaticon-wallet"></i></div>
<h3 class="font-weight-normal mt-0 mb-4">Financial Law</h3>
<p>The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way.</p>
<p>When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way.</p>
</div>
</div>
</div>
<div>
<div class="d-lg-flex d-md-block slide_content">
<div class="pb_content-media" style="background-image: url(assets/images/1900x1200_img_3.jpg);"></div>
<div class="slide_content-text text-center">
<div class="pb_icon_v1"><i class="flaticon text-primary flaticon-computer-security"></i></div>
<h3 class="font-weight-normal mt-0 mb-4">Cyber Crime Law</h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. And if she hasn’t been rewritten, then they are still using her.</p>
<p>On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their.</p>
</div>
</div>
</div>
<div>
<div class="d-lg-flex d-md-block slide_content">
<div class="pb_content-media" style="background-image: url(assets/images/1900x1200_img_4.jpg);"></div>
<div class="slide_content-text text-center">
<div class="pb_icon_v1"><i class="flaticon text-primary flaticon-courthouse"></i></div>
<h3 class="font-weight-normal mt-0 mb-4">Real Estate Law</h3>
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. And if she hasn’t been rewritten, then they are still using her. Original article: Web Designer Notebook | Text from Dummy Text Generator</p>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. And if she hasn’t been rewritten, then they are still using her.</p>
</div>
</div>
</div>
<div>
<div class="d-lg-flex d-md-block slide_content">
<div class="pb_content-media" style="background-image: url(assets/images/1900x1200_img_4.jpg);"></div>
<div class="slide_content-text text-center">
<div class="pb_icon_v1"><i class="flaticon text-primary flaticon-jury"></i></div>
<h3 class="font-weight-normal mt-0 mb-4">Family Law</h3>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<p>Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.</p>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. And if she hasn’t been rewritten, then they are still using her.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END section -->
<section class="pb_section bg-light bg-image with-overlay" data-section="attorneys" id="section-attorneys" style="background-image: url(assets/images/1900x1200_img_2.jpg)">
<div class="container">
<div class="row justify-content-md-center text-center mb-5">
<div class="col-lg-7">
<h2 class="mt-0 heading-border-top light font-weight-normal text-white">Attorneys</h2>
<p class="text-white">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
<div class="row">
<div class="col-md">
<div class="card text-center pb_card_v1 mb-4">
<img class="card-img-top rounded-circle w-50 mx-auto" src="assets/images/square_img_5.jpg" alt="Card image cap">
<div class="card-body">
<h4 class="card-title mt-0 mb-2">Richard Wilson</h4>
<h6 class="card-subtitle mb-2">Family Lawyer</h6>
<p><a href="#">Read Full Bio</a></p>
</div>
</div>
</div>
<div class="col-md">
<div class="card text-center pb_card_v1 mb-4">
<img class="card-img-top rounded-circle w-50 mx-auto" src="assets/images/square_img_5.jpg" alt="Card image cap">
<div class="card-body">
<h4 class="card-title mt-0 mb-2">Steve White</h4>
<h6 class="card-subtitle mb-2">Financial Lawyer</h6>
<p><a href="#">Read Full Bio</a></p>
</div>
</div>
</div>
<div class="col-md">
<div class="card text-center pb_card_v1 mb-4">
<img class="card-img-top rounded-circle w-50 mx-auto" src="assets/images/square_img_5.jpg" alt="Card image cap">
<div class="card-body">
<h4 class="card-title mt-0 mb-2">Ryan David</h4>
<h6 class="card-subtitle mb-2">Business Lawyer</h6>
<p><a href="#">Read Full Bio</a></p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="pb_section pb_testimonial_v1" data-section="testimonials" id="section-testimonials">
<div class="container">
<div class="row justify-content-md-center text-center mb-5">
<div class="col-lg-7">
<h2 class="mt-0 heading-border-top font-weight-normal">Happy Customers</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
<div class="row justify-content-md-center">
<div class="col-md-10 col-sm-12 mb-5">
<div class="single-item-no-arrow pb_slide_v1">
<div>
<div class="media">
<img class="d-flex img-fluid rounded-circle mb-sm-5" src="assets/images/square_img_5.jpg" alt="Generic placeholder image">
<div class="media-body pl-md-5 pl-sm-0">
<blockquote>
<p>“Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.”</p>
<p class="pb_author"><citeclass="text-uppercase">John Smith</cite> Designer at uicookies.com</p>
</blockquote>
</div>
</div>
</div>
<div>
<div class="media">
<img class="d-flex img-fluid rounded-circle mb-sm-5" src="assets/images/square_img_5.jpg" alt="Generic placeholder image">
<div class="media-body pl-md-5 pl-sm-0">
<blockquote>
<p>“A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.”</p>
<p class="pb_author"><cite class="text-uppercase">John Smith</cite> Designer at uicookies.com</p>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END section -->
<section class="pb_section bg-light">
<div class="container">
<div class="row">
<div class="col-lg">
<div class="media pb_media_v1 mb-5">
<div class="icon border border-gray rounded-circle d-flex mr-3 display-4 text-primary"><i class="flaticon flaticon-jury"></i></div>
<div class="media-body">
<h3 class="mt-0 pb_font-17">Group of Lawyers</h3>
<p class="pb_font-14">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
</div>
</div>
</div>
<div class="col-lg">
<div class="media pb_media_v1 mb-5">
<div class="icon border border-gray rounded-circle d-flex mr-3 display-4 text-primary"><i class="flaticon flaticon-law"></i></div>
<div class="media-body">
<h3 class="mt-0 pb_font-17">No One is Above The Law</h3>
<p class="pb_font-14">Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
</div>
<div class="col-lg">
<div class="media pb_media_v1 mb-5">
<div class="icon border border-gray rounded-circle d-flex mr-3 display-4 text-primary"><i class="flaticon flaticon-courthouse"></i></div>
<div class="media-body">
<h3 class="mt-0 pb_font-17">Hall of Justice</h3>
<p class="pb_font-14">It is a paradisematic country, in which roasted parts of sentences fly into your mouth decided to leave for the far World of Grammar.</p>
</div>
</div>
</div>
<div class="w-100"></div>
<div class="col-lg">
<div class="media pb_media_v1 mb-5">
<div class="icon border border-gray rounded-circle d-flex mr-3 display-4 text-primary"><i class="flaticon flaticon-jury"></i></div>
<div class="media-body">
<h3 class="mt-0 pb_font-17">Family Law</h3>
<p class="pb_font-14">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
</div>
</div>
</div>
<div class="col-lg">
<div class="media pb_media_v1 mb-5">
<div class="icon border border-gray rounded-circle d-flex mr-3 display-4 text-primary"><i class="flaticon flaticon-courthouse"></i></div>
<div class="media-body">
<h3 class="mt-0 pb_font-17">No One is Above The Law</h3>
<p class="pb_font-14">Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
</div>
<div class="col-lg">
<div class="media pb_media_v1 mb-5">
<div class="icon border border-gray rounded-circle d-flex mr-3 display-4 text-primary"><i class="flaticon flaticon-law"></i></div>
<div class="media-body">
<h3 class="mt-0 pb_font-17">Hall of Justice</h3>
<p class="pb_font-14">It is a paradisematic country, in which roasted parts of sentences fly into your mouth decided to leave for the far World of Grammar.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="pb_section" data-section="contact" id="section-contact">
<div class="container">
<div class="row justify-content-md-center text-center mb-5">
<div class="col-lg-7">
<h2 class="mt-0 heading-border-top font-weight-normal">Get In Touch</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
<div class="row">
<div class="col-md-8 pr-md-5 pr-sm-0 mb-4">
<form action="#">
<div class="row">
<div class="col-md">
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control p-3 rounded-0" id="name">
</div>
</div>
<div class="col-md">
<div class="form-group">
<label for="email">Email</label>
<input type="text" class="form-control p-3 rounded-0" id="email">
</div>
</div>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea cols="30" rows="10" class="form-control p-3 rounded-0" id="message"></textarea>
</div>
<div class="form-group">
<input type="submit" class="btn pb_outline-dark pb_font-13 pb_letter-spacing-2 p-3 rounded-0" value="Send Message">
</div>
</form>
</div>
<div class="col-md-4">
<ul class="pb_contact_details_v1">
<li>
<span class="text-uppercase">Email</span>
probootstrap@gmail.com
</li>
<li>
<span class="text-uppercase">Phone</span>
+30 976 1382 9921
</li>
<li>
<span class="text-uppercase">Fax</span>
+30 976 1382 9922
</li>
<li>
<span class="text-uppercase">Address</span>
San Francisco, CA <br>
4th Floor8 Lower <br>
San Francisco street, M1 50F
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- END section -->
<footer class="pb_footer bg-light" role="contentinfo">
<div class="container">
<div class="row text-center">
<div class="col">
<ul class="list-inline">
<li class="list-inline-item"><a href="#" class="p-2"><i class="fa fa-facebook"></i></a></li>
<li class="list-inline-item"><a href="#" class="p-2"><i class="fa fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="#" class="p-2"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col text-center">
<p class="pb_font-14">© 2017 <a href="https://uicookies.com/">Law</a>. All Rights Reserved. Designed by <a href="https://uicookies.com/">uiCookies</a> Demo Images: Unsplash</p>
</div>
</div>
</div>
</footer>
<!-- loader -->
<div id="pb_loader" class="show fullscreen"><svg class="circular" width="48px" height="48px"><circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee"/><circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#FDA04F"/></svg></div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/slick.min.js"></script>
<script src="assets/js/jquery.waypoints.min.js"></script>
<script src="assets/js/jquery.easing.1.3.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>