-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
580 lines (516 loc) · 33.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>Rum River Financial Services</title>
<!-- Fav Icon -->
<link rel="icon" href="assets/images/favicon.ico" type="image/x-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<!-- fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Stylesheets -->
<link href="assets/css/font-awesome-all.css" rel="stylesheet">
<link href="assets/css/flaticon.css" rel="stylesheet">
<link href="assets/css/owl.css" rel="stylesheet">
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/jquery.fancybox.min.css" rel="stylesheet">
<link href="assets/css/animate.css" rel="stylesheet">
<link href="assets/css/nice-select.css" rel="stylesheet">
<link href="assets/css/color.css" rel="stylesheet">
<link href="assets/css/elpath.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/elements-css/banner.css" rel="stylesheet">
<link href="assets/css/elements-css/feature.css" rel="stylesheet">
<link href="assets/css/elements-css/about.css" rel="stylesheet">
<link href="assets/css/elements-css/service.css" rel="stylesheet">
<link href="assets/css/elements-css/chooseus.css" rel="stylesheet">
<link href="assets/css/elements-css/projects.css" rel="stylesheet">
<link href="assets/css/elements-css/testimonial.css" rel="stylesheet">
<link href="assets/css/elements-css/working-process.css" rel="stylesheet">
<link href="assets/css/elements-css/funfact.css" rel="stylesheet">
<link href="assets/css/elements-css/expertise.css" rel="stylesheet">
<link href="assets/css/elements-css/news.css" rel="stylesheet">
<link href="assets/css/responsive.css" rel="stylesheet">
</head>
<!-- page wrapper -->
<body>
<div class="boxed_wrapper">
<!--Search Popup-->
<div id="search-popup" class="search-popup">
<div class="popup-inner">
<div class="upper-box clearfix">
<figure class="logo-box pull-left"><a href="index.html"><img src="assets/images/logo.png" alt=""></a></figure>
<div class="close-search pull-right"><span class="far fa-times"></span></div>
</div>
<div class="overlay-layer"></div>
<div class="auto-container">
<div class="search-form">
<form method="post" action="index.html">
<div class="form-group">
<fieldset>
<input type="search" class="form-control" name="search-input" value="" placeholder="Type your keyword and hit" required >
<button type="submit"><i class="far fa-search"></i></button>
</fieldset>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- main header -->
<header class="main-header">
<!-- header-top -->
<div class="header-top">
<div class="">
<div class="top-inner">
<div class="top-left">
<ul class="info clearfix">
<li><i class="icon-2"></i><a href="tel:+16122342178"> (612) 234-2178</a></li>
</ul>
</div>
<div class="top-right">
<ul class="social-links clearfix">
<li><i class="icon-3"></i><a href="mailto:info@rumriverfinancial.com">info@rumriverfinancial.com</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- header-lower -->
<div class="header-lower">
<div class="auto-container">
<div class="outer-box">
<div class="logo-box">
<figure class="logo"><a href="index.html"><img src="assets/images/logo.png" alt=""></a></figure>
</div>
<div class="menu-area clearfix">
<!--Mobile Navigation Toggler-->
<div class="mobile-nav-toggler">
<i class="icon-bar"></i>
<i class="icon-bar"></i>
<i class="icon-bar"></i>
</div>
<nav class="main-menu navbar-expand-md navbar-light">
<div class="collapse navbar-collapse show clearfix" id="navbarSupportedContent">
<ul class="navigation clearfix">
<li><a href="index.html">Home</a></li>
<li><a href="#service">Services</a></li>
<li><a href="#testimonial">Testimonials</a></li>
<li><a href="#footer">Contact Us</a></li>
</ul>
</div>
</nav>
</div>
<ul class="menu-right-content">
<li>
<a href="mailto:info@rumriverfinancial.com">Free Consultations</a>
</li>
</ul>
</div>
</div>
</div>
<!--sticky Header-->
<div class="sticky-header">
<div class="auto-container">
<div class="outer-box">
<div class="logo-box">
<figure class="logo"><a href="index.html"><img src="assets/images/logo.png" alt=""></a></figure>
</div>
<div class="menu-area clearfix">
<nav class="main-menu clearfix">
<!--Keep This Empty / Menu will come through Javascript-->
</nav>
</div>
<ul class="menu-right-content">
<li class="btn-box">
<a href="index.html">Free Consultations</a>
</li>
</ul>
</div>
</div>
</div>
</header>
<!-- main-header end -->
<!-- Mobile Menu -->
<div class="mobile-menu">
<div class="menu-backdrop"></div>
<div class="close-btn"><i class="fas fa-times"></i></div>
<nav class="menu-box">
<div class="nav-logo"><a href="index.html"><img src="assets/images/logo.png" alt="" title=""></a></div>
<div class="menu-outer"><!--Here Menu Will Come Automatically Via Javascript / Same Menu as in Header--></div>
<div class="contact-info">
<h4>Contact Info</h4>
<ul>
<li><a href="tel:+16122342178"> (612) 234-2178 </a></li>
</ul>
</div>
<div class="social-links">
<ul class="clearfix">
<li><a href="mailto:info@rumriverfinancial.com">info@rumriverfinancial.com</a></li>
</ul>
</div>
</nav>
</div><!-- End Mobile Menu -->
<!-- banner-section -->
<section class="banner-section p_relative">
<div class="banner-carousel owl-theme owl-carousel owl-dots-none">
<div class="slide-item p_relative">
<div class="image-layer p_absolute" style="background-image:url(assets/img/banner-4.jpg)"></div>
<div class="starshine">
<div class="shine shine-1"></div>
<div class="shine shine-2"></div>
</div>
<div class="auto-container">
<div class="content-box">
<div class="content-inner">
<h2>Rum River Financial Services</h2>
<p>Get pristine financials, save money on taxes, and get back to running your business.</p>
<br />
<a href="tel:+16122342178" class="theme-btn-one"><i class="fa-solid fa-phone"></i> Phone</a>
<a href="mailto:info@rumriverfinancial.com" id="emailLink" class="theme-btn-one mar-top"> <i class="fa-solid fa-envelope"></i> Email</a>
</div>
</div>
</div>
</div>
<div class="slide-item p_relative">
<div class="image-layer p_absolute" style="background-image:url(assets/img/banner-3.jpg)"></div>
<div class="starshine">
<div class="shine shine-1"></div>
<div class="shine shine-2"></div>
</div>
<div class="auto-container">
<div class="content-box">
<div class="content-inner">
<h2>Full-service, outsourced accounting and bookkeeping</h2>
<p>Gain confidence and peace of mind having your books done right. We got you.</p>
<br />
<a href="tel:+16122342178" class="theme-btn-one"><i class="fa-solid fa-phone"></i> Phone</a>
<a href="mailto:info@rumriverfinancial.com" class="theme-btn-one mar-top"><i class="fa-solid fa-envelope"></i> Email</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- banner-section end -->
<!-- feature-section -->
<section class="feature-section bg-color-1 sec-pad centred" id="service">
<div class="pattern-layer">
<div class="pattern-1" style="background-image: url(assets/images/shape/shape-2.png);"></div>
<div class="pattern-2" style="background-image: url(assets/images/shape/shape-3.png);"></div>
</div>
<div class="auto-container">
<div class="sec-title mb_50">
<span class="sub-title">Accounting Services</span>
<h2>Serving Small Businesses and Non-Profits</h2>
</div>
<div class="row clearfix">
<div class="col-lg-4 col-md-6 col-sm-12 feature-block">
<div class="feature-block-one wow fadeInUp animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><img src="assets/img/service-1.png" alt=""></figure>
<div class="lower-content">
<div class="icon-box"><img src="assets/img/kitchen.png" alt=""></div>
<h3><a href="index.html">Fallen behind in your books?</a></h3>
<p>We'll clean up your books and get you current.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 feature-block">
<div class="feature-block-one wow fadeInUp animated" data-wow-delay="300ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><img src="assets/img/service-2.png" alt=""></figure>
<div class="lower-content">
<div class="icon-box"><img src="assets/img/financial-report.png" alt=""></div>
<h3><a href="index.html">Starting a new venture?</a></h3>
<p>Complete setup of your accounting systems.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 feature-block">
<div class="feature-block-one wow fadeInUp animated" data-wow-delay="600ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><img src="assets/img/service-3.png" alt=""></figure>
<div class="lower-content">
<div class="icon-box"><i class="icon-9"></i></div>
<h3><a href="index.html">Cash Flow Problems?</a></h3>
<p>Simple, actionable financial statements included.</p>
</div>
</div>
</div>
</div>
</div>
<div class="row clearfix margin-top">
<div class="col-lg-4 col-md-6 col-sm-12 feature-block">
<div class="feature-block-one wow fadeInUp animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><img src="assets/img/service-4.png" alt=""></figure>
<div class="lower-content">
<div class="icon-box"><img src="assets/img/payable.png" alt=""></div>
<h3><a href="index.html">Accounts Payable & Accounts Receivable</a></h3>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 feature-block">
<div class="feature-block-one wow fadeInUp animated" data-wow-delay="300ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><img src="assets/img/service-5.png" alt=""></figure>
<div class="lower-content">
<div class="icon-box"><i class="icon-8"></i></div>
<h3><a href="index.html">Sales tax filing</a></h3>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 feature-block">
<div class="feature-block-one wow fadeInUp animated" data-wow-delay="300ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><img src="assets/img/service-7.png" alt=""></figure>
<div class="lower-content">
<div class="icon-box"><img src="assets/img/payroll.png" alt=""> </i></div>
<h3><a href="index.html">Payroll</a></h3>
</div>
</div>
</div>
</div>
</div>
<div class="row clearfix margin-top">
<div class="col-lg-4 col-md-6 col-sm-12 feature-block">
<div class="feature-block-one wow fadeInUp animated" data-wow-delay="600ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><img src="assets/img/service-pricing.webp" alt=""></figure>
<div class="lower-content">
<div class="icon-box"><i class="icon-9"></i></div>
<h3><a href="index.html">Customized Pricing</a></h3>
<p>Pay based on your unique accounting needs.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 feature-block">
<div class="feature-block-one wow fadeInUp animated" data-wow-delay="600ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><img src="assets/img/service-6.png" alt=""></figure>
<div class="lower-content">
<div class="icon-box"> <img src="assets/img/grow.png" alt=""></i></div>
<h3><a href="index.html">Fractional CFO Services</a></h3>
<p>Grow a profitable and Scalable Business</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 feature-block">
<div class="feature-block-one wow fadeInUp animated" data-wow-delay="600ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><img src="assets/img/service-8.png" alt=""></figure>
<div class="lower-content">
<div class="icon-box"> <img src="assets/img/bank.png" alt=""></i></div>
<h3><a href="index.html">Bitcoin on the balance sheet?</a></h3>
<p>No worries, we are crypto friendly.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- feature-section -->
<!-- chooseus-section -->
<section class="chooseus-section p_relative bg-color-2">
<div class="pattern-layer" style="background-image: url(assets/images/shape/shape-13.png);"></div>
<div class="bg-layer" style="background-image: url(assets/img/banner-1.jpg);"></div>
<div class="auto-container">
<div class="row clearfix">
<div class="col-lg-5 col-md-12 col-sm-12 content-column">
<div class="content_block_two">
<div class="content-box p_relative">
<div class="sec-title light mb_45">
<h2>Accountant and Bookkeeper in Minnesota</h2>
<p>Rum River Financial Services is a virtual bookkeeping, accounting, and fractional CFO firm that serves small businesses and non-profits nationwide, but we especially love to work with businesses and non-profits in Minnesota.</p>
<p>If you are in Minneapolis, St. Paul, Anoka, Elk River, Maple Grove, Edina, Eden Prairie, Bloomington, Minnetonka, Rogers, Brooklyn Park, Blaine, Roseville, Fridley, Burnsville, or another Metro-area or out-state Minnesota location, we’d love to connect and see if we are a good fit.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="outer-box">
<h2>Minnesota Accountant <br />& Bookkeeper</h2>
<a href="mailto:info@rumriverfinancial.com" class="theme-btn-one">Let’s Connect</a>
</div>
</section>
<!-- chooseus-section end -->
<!-- testimonial-section -->
<section class="testimonial-section p_relative bg-color-1" id="testimonial">
<div class="pattern-layer" style="background-image: url(assets/images/shape/shape-16.png);"></div>
<div class="auto-container">
<div class="row clearfix">
<div class="col-lg-4 col-md-12 col-sm-12 title-column">
<div class="sec-title">
<span class="sub-title">Testimonials</span>
<h2>What <br />to expect when working with Rum River Financial Services</h2>
</div>
</div>
<div class="col-lg-8 col-md-12 col-sm-12 content-column">
<div class="content-box">
<div class="two-item-carousel owl-carousel owl-theme owl-dots-none nav-style-one">
<div class="testimonial-block-one">
<div class="inner-box test-box">
<div class="shape" style="background-image: url(assets/images/shape/shape-14.png);"></div>
<div class="icon-box"><i class="icon-19"></i></div>
<figure class="thumb-box"><img src="assets/img/profile-rob.jpg" alt=""></figure>
<p>“The Rum River Financial team has gone out of their way to help our coffee business get organized with our finances, and we are so thankful! They are <strong><em>extremely knowledgeable, relational, and very responsive</em></strong>. We highly recommend Rum River Financial Services!”</p>
<ul class="rating clearfix">
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
</ul>
<h3>Rob</h3>
<span class="designation">Manager, Compassion Coffee<br />Anoka, MN</span>
</div>
</div>
<div class="testimonial-block-one">
<div class="inner-box test-box">
<div class="shape" style="background-image: url(assets/images/shape/shape-15.png);"></div>
<div class="icon-box"><i class="icon-19"></i></div>
<figure class="thumb-box"><img src="assets/img/profile-3.jpg" alt=""></figure>
<p>“What sets Rum River Financial apart is their <strong><em>dedication to personalized service</em></strong>. Randy and his team ensured that I felt supported every step of the way, addressing any concerns promptly and thoroughly... Moreover, Randy's <strong><em>transparency and integrity instilled confidence in me throughout the process</em></strong>. He was upfront about all aspects of the service, including pricing and timelines, which I greatly appreciated.”</p>
<ul class="rating clearfix">
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
</ul>
<h3>Dustin</h3>
<span class="designation">Small Business Owner<br /> Rogers, MN</span>
</div>
</div>
<div class="testimonial-block-one">
<div class="inner-box test-box">
<div class="shape" style="background-image: url(assets/images/shape/shape-14.png);"></div>
<div class="icon-box"><i class="icon-19"></i></div>
<figure class="thumb-box"><img src="assets/img/profile-2.jpg" alt=""></figure>
<p>“The team at Rum River is top notch, not only are they <strong><em>extremely easy to work with, they are very upfront and honest</em></strong>. We never felt pressured when we were searching and looking for answers. They took the time to explain and answer these questions without hesitation. <strong><em>Our choice to use Rum River Financial was a no brainer</em></strong>, they are great at what he does! We wont have to worry about tax prep and making sure our books are square, they've got it covered!"</p>
<ul class="rating clearfix">
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
</ul>
<h3>Blake</h3>
<span class="designation">Owner, Top Tier Tree<br />Cedar, MN</span>
</div>
</div>
<div class="testimonial-block-one">
<div class="inner-box test-box">
<div class="shape" style="background-image: url(assets/images/shape/shape-15.png);"></div>
<div class="icon-box"><i class="icon-19"></i></div>
<figure class="thumb-box"><img src="assets/img/profile-christine.jpeg" alt=""></figure>
<p>"The Rum River Financial team came highly recommended by our CPA, and from the start, it was clear <strong><em>they are true professionals</em></strong>.
The team's skills and reliability <strong><em>provide complete peace of mind</em></strong> when it comes to accurate financials and sound financial guidance.
I wholeheartedly recommend Rum River Financial to any business seeking a bookkeeping partner who are truly experts in their field."</p>
<ul class="rating clearfix">
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
</ul>
<h3>Christine</h3>
<span class="designation">Small Business Owner<br /> Plymouth, MN</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- testimonial-section end -->
<!-- main-footer -->
<footer class="main-footer" id="footer">
<div class="widget-section">
<div class="pattern-layer">
<div class="pattern-1" style="background-image: url(assets/images/shape/shape-20.png);"></div>
<div class="pattern-2" style="background-image: url(assets/images/shape/shape-21.png);"></div>
</div>
<div class="auto-container">
<div class="row clearfix footer-main">
<div class="col-lg-6 col-md-12 col-sm-12 footer-column">
<div class="logo-widget footer-widget">
<figure class="footer-logo"><a href="index.html"><img src="assets/images/logo.png" alt=""></a></figure>
<div class="text">
<p>Rum River Financial Services</p><p>Oak Grove, MN</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 footer-column">
<div class="contact-widget footer-widget footer-main">
<div class="widget-title">
<h3>Contact</h3>
</div>
<div class="widget-content">
<ul class="info-list clearfix">
<li><i class="icon-3"></i>
<a href="mailto:info@rumriverfinancial.com" id="emailLink">info@rumriverfinancial.com</a>
</li>
<li><i class="icon-2"></i>
<a href="tel:+16122342178" id="phoneLink">(612) 234-2178</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer-bottom centred">
<div class="auto-container">
<div class="copyright">
<p>Copyright 2025 by <a href="index.html">Rum River Financial Services</a>. All Right Reserved.</p>
</div>
</div>
</div>
</footer>
<!-- main-footer end -->
<!--Scroll to top-->
<div class="scroll-to-top">
<div>
<div class="scroll-top-inner">
<div class="scroll-bar">
<div class="bar-inner"></div>
</div>
<div class="scroll-bar-text">Go To Top</div>
</div>
</div>
</div>
<!-- Scroll to top end -->
</div>
<!-- jequery plugins -->
<script src="assets/js/jquery.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/owl.js"></script>
<script src="assets/js/wow.js"></script>
<script src="assets/js/validation.js"></script>
<script src="assets/js/jquery.fancybox.js"></script>
<script src="assets/js/appear.js"></script>
<script src="assets/js/scrollbar.js"></script>
<script src="assets/js/isotope.js"></script>
<script src="assets/js/jquery.nice-select.min.js"></script>
<script src="assets/js/parallax-scroll.js"></script>
<!-- main-js -->
<script src="assets/js/script.js"></script>
</body><!-- End of .page_wrapper -->
</html>