-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1092 lines (1060 loc) · 56.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="no-js" lang="zxx">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Prisma Coatings </title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico in the root directory -->
<link rel="shortcut icon" type="image/x-icon" href="assets/img/logo/LOGO-POSITIVO.webp">
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-WTRBZ53P');</script>
<!-- End Google Tag Manager -->
<!-- CSS here -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link rel="stylesheet" rel="preload"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/animate.min.css">
<link rel="stylesheet" href="assets/css/preloader.css">
<link rel="stylesheet" href="assets/css/meanmenu.css">
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/swiper-bundleMin.css">
<link rel="stylesheet" href="assets/css/backToTop.css">
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<link rel="stylesheet" href="assets/css/nice-select.css">
<link rel="stylesheet" href="assets/css/circularProgressBar.css">
<link rel="stylesheet" href="assets/css/fontAwesome5Pro.css">
<link rel="stylesheet" href="assets/css/flaticon.css">
<link rel="stylesheet" href="assets/css/default.css">
<link rel="stylesheet" href="assets/css/stylemin.css">
<link rel="stylesheet" href="assets/plugin/components/Font Awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/mailChimpStyles.css">
<link href="//cdn-images.mailchimp.com/embedcode/classic-061523.css" rel="stylesheet" type="text/css">
<!-- Meta Pixel Code -->
<script>
!function (f, b, e, v, n, t, s) {
if (f.fbq) return; n = f.fbq = function () {
n.callMethod ?
n.callMethod.apply(n, arguments) : n.queue.push(arguments)
};
if (!f._fbq) f._fbq = n; n.push = n; n.loaded = !0; n.version = '2.0';
n.queue = []; t = b.createElement(e); t.async = !0;
t.src = v; s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window, document, 'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1528750387890708');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1528750387890708&ev=PageView&noscript=1" /></noscript>
<!-- End Meta Pixel Code -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WTRBZ53P" height="0" width="0"
style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- Add your site or application content here -->
<!-- pre loader area start -->
<div id="loading">
<div id="loading-center">
<div id="loading-center-absolute">
<div class="loading-icon text-center d-sm-flex align-items-center justify-content-center">
<img class="loading-logo mr-10 animate__animated animate__bounceIn"
src="assets/img/logo/LOGO-POSITIVO.webp" alt="logo">
</div>
</div>
</div>
</div>
<!-- pre loader area end -->
<!-- back to top start -->
<div class="progress-wrap">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
</svg>
</div>
<!-- back to top end -->
<!-- header area start -->
<header>
<div class="header__area">
<div class="header__top footer-bg pl-55 pr-55 header__padding d-none d-lg-block">
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-xxl-6 col-xl-8 col-lg-8">
<div class="header__top-left">
<div class="header__info">
<ul>
<li>
<a target="_blank" href="https://goo.gl/maps/oaCAxBRMGJXyb1Zx7"><i
class="far fa-map-marker-alt"></i>Campsie NSW 2194</a>
</li>
<li>
<a href="mailto:[email protected]"><i class="far fa-envelope-open"></i>
</li>
<li>
<a href="tel:+61 401508036" target="_blank"><i class="fal fa-phone"></i>+61
401508036</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="header-sticky" class="header__bottom pl-55 pr-55 header__padding" ">
<div class=" container-fluid">
<div class="row align-items-center">
<div class="col-xxl-3 col-xl-2 col-lg-3 col-md-6 col-sm-6 col-6">
<div class="logo">
<a href="index.html">
<img src="assets/img/logo/LOGOPRISMA.png" class="animate__animated animate__bounce" width="120"
height="120" alt="logo">
</a>
</div>
</div>
<div class="col-xxl-6 col-xl-6 col-lg-7 d-none d-lg-block">
<div class="header__bottom-mid d-flex align-items-center">
<div class="main-menu">
<nav id="mobile-menu">
<ul>
<li class="active">
<a href="index.html">Home</a>
</li>
<li>
<a href="Pricing.html">Pricing</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div class="col-xxl-3 col-xl-4 col-lg-2 col-md-6 col-sm-6 col-6">
<div class="header__bottom-right d-flex align-items-center justify-content-end">
<div class="header__social mr-35 d-none d-xl-block">
<ul>
<li><a href="https://www.facebook.com/prismacoatingsau" target="_blank"><i
class="fab fa-facebook-f"></i></a></li>
<li><a href="https://www.instagram.com/prismacoatings/?igshid=MzRlODBiNWFlZA%3D%3D"
target="_blank"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
<div class="header__action">
<button type="button" class="dot-hamburger-btn sidebar-toggle-btn">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- header area end -->
<!-- sidebar area start -->
<div class="sidebar__area">
<div class="sidebar__wrapper">
<div class="sidebar__close">
<button class="sidebar__close-btn" id="sidebar__close-btn">
<i class="fal fa-times"></i>
</button>
</div>
<div class="sidebar__content">
<div class="sidebar__logo mb-40">
<a href="index.html">
<img src="assets/img/logo/LOGOPRISMA.png" width="120" height="120" alt="logo">
</a>
</div>
<div class="mobile-menu fix"></div>
<div class="sidebar__text d-none d-lg-block">
<p>Our company specializes in painting houses. With skilled professionals and top-notch materials, we
bring vibrant transformations to homes, adding beauty and value to your property. Trust us for
impeccable results.</p>
</div>
<div class="sidebar__img d-none d-lg-block mb-20">
<div class="row gx-2">
<div class="col-4">
<div class="sidebar__single-img w-img mb-10">
<img src="assets/img/sidebar/sidebar-1.jpg" alt="">
</div>
</div>
<div class="col-4">
<div class="sidebar__single-img w-img mb-10">
<img src="assets/img/sidebar/sidebar-2.jpg" alt="">
</div>
</div>
<div class="col-4">
<div class="sidebar__single-img w-img mb-10">
<img src="assets/img/sidebar/sidebar-3.jpg" alt="">
</div>
</div>
<div class="col-4">
<div class="sidebar__single-img w-img mb-10">
<img src="assets/img/sidebar/sidebar-4.jpg" alt="">
</div>
</div>
<div class="col-4">
<div class="sidebar__single-img w-img mb-10">
<img src="assets/img/sidebar/sidebar-5.jpg" alt="">
</div>
</div>
<div class="col-4">
<div class="sidebar__single-img w-img mb-10">
<img src="assets/img/sidebar/sidebar-6.jpg" alt="">
</div>
</div>
</div>
</div>
<!-- <div class="sidebar__map d-none d-lg-block mb-15">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3310.965924332539!2d151.10002567541943!3d-33.916276573208414!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6b12ba4f03bd1513%3A0xfdb39bf93f252e06!2s23%20Marlowe%20St%2C%20Campsie%20NSW%202194!5e0!3m2!1sen!2sau!4v1691292791376!5m2!1sen!2sau" width="400" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div> -->
<div class="sidebar__contact mt-30 mb-20">
<h4>Contact Info</h4>
<ul>
<li class="d-flex align-items-center">
<div class="sidebar__contact-icon mr-15">
<i class="fal fa-map-marker-alt"></i>
</div>
<div class="sidebar__contact-text">
<a target="_blank" href="https://goo.gl/maps/oaCAxBRMGJXyb1Zx7">Campsie NSW 2194</a>
</div>
</li>
<li class="d-flex align-items-center">
<div class="sidebar__contact-icon mr-15">
<i class="far fa-phone"></i>
</div>
<div class="sidebar__contact-text">
<a href="tel:+61 401508036" target="_blank">+61 401508036</a>
</div>
</li>
<li class="d-flex align-items-center">
<div class="sidebar__contact-icon mr-15">
<i class="fal fa-envelope"></i>
</div>
<div class="sidebar__contact-text">
<a href="mailto:[email protected]">[email protected]</a>
</div>
</li>
</ul>
</div>
<div class="sidebar__social">
<ul>
<li><a href="https://www.facebook.com/prismacoatingsau" target="_blank"><i
class="fab fa-facebook-f"></i></a></li>
<li><a href="https://www.instagram.com/prismacoatings/?igshid=MzRlODBiNWFlZA%3D%3D" target="_blank"><i
class="fab fa-instagram"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- sidebar area end -->
<div class="body-overlay"></div>
<!-- sidebar area end -->
<main>
<!-- slider area start -->
<section class="slider__area">
<div class="slider__active swiper-container">
<div class="swiper-wrapper">
<div class="single-slider swiper-slide slider__height slider__overlay d-flex align-items-center"
data-background="assets/img/slider/painting1.webp">
<div class="container">
<div class="row">
<div class="col-xxl-12">
<div class="slider__content text-center">
<span data-animation="fadeInUp" data-delay=".2s">5 Years Of Experience</span>
<h2 class="slider__title" data-animation="fadeInUp" data-delay=".4s">Your Expert Painting
Partners!</h2>
<div class="slider__btn" data-animation="fadeInUp" data-delay=".6s">
<a href="contact.html" class="r-btn r-btn-blue mr-10">get started <i
class="far fa-arrow-right"></i></a>
<a href="#services" class="r-btn">our services<i class="far fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="single-slider swiper-slide slider__height slider__overlay d-flex align-items-center"
data-background="assets/img/slider/paint2.webp">
<div class="container">
<div class="row">
<div class="col-xxl-12">
<div class="slider__content text-center">
<span data-animation="fadeInUp" data-delay=".2s">Painting Home Elegance</span>
<h2 class="slider__title" data-animation="fadeInUp" data-delay=".4s">Paint with Precision
</h2>
<div class="slider__btn" data-animation="fadeInUp" data-delay=".6s">
<a href="contact.html" class="r-btn r-btn-blue mr-10">get started <i
class="far fa-arrow-right"></i></a>
<a href="#services" class="r-btn">our services<i class="far fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="single-slider swiper-slide slider__height slider__overlay d-flex align-items-center"
data-background="assets/img/slider/paint3.webp">
<div class="container">
<div class="row">
<div class="col-xxl-12">
<div class="slider__content text-center">
<span data-animation="fadeInUp" data-delay=".2s">Colorful Home Living</span>
<h2 class="slider__title" data-animation="fadeInUp" data-delay=".4s">Painting Service
Company</h2>
<div class="slider__btn" data-animation="fadeInUp" data-delay=".6s">
<a href="contact.html" class="r-btn r-btn-blue mr-10">get started <i
class="far fa-arrow-right"></i></a>
<a href="#services" class="r-btn">our services<i class="far fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- slider area end -->
<!-- about area start -->
<section class="about__area pt-130 pb-130">
<div class="container">
<div class="row">
<div class="col-xxl-7 col-xl-6 col-lg-5">
<div class="about__thumb about__triangle p-relative">
<div class="about__thumb-1 w-img">
<img src="assets/img/about/aboutImage2.webp" alt="">
</div>
<div class="about__thumb-2 text-end">
<img src="assets/img/about/aboutImage1.webp" alt="">
</div>
</div>
</div>
<div class="col-xxl-5 col-xl-6 col-lg-7">
<div class="about__content pl-60 pt-25">
<div class="section__title-wrapper mb-25">
<span class="section__title-pre">About Us</span>
<h2 class="section__title">Explore About Painting Services Success History</h2>
</div>
<p class="bold-text">"Where Every Stroke is an Art, Unleashing the Beauty of Your Home!"</p>
<p>
We aspire to be a company that offers opportunities to individuals from all around the world,
allowing them to paint their futures in vibrant hues. We firmly believe that by supporting one
another, we can construct a stronger society. Through diligent and honest work, we can grow as a
community and provide a high-quality service.
</p>
<div class="about__author d-sm-flex align-items-center">
<div class="about__author-content d-flex align-items-center mr-35">
<div class="about__author-avater mr-20">
<img src="assets/img/about/aboutCEO.png" alt="">
</div>
<div class="about__author-info">
<h3>Hally</h3>
<span>CEO & Founder</span>
</div>
</div>
<div class="about__author-signature">
<img src="assets/img/about/about-author-signature.png" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- about area end -->
<!-- features area start -->
<section id="services" class="features__area pt-130 pb-130 " data-background="assets/img/features/feautures.webp">
<div class="container">
<div class="row">
<div class="col-xxl-5 col-xl-6 col-lg-7 col-md-10">
<div class="features__wrapper">
<div class="section__title-wrapper">
<div class="section__title-wrapper mb-40">
<span class="section__title-pre">What We Do</span>
<h2 class="section__title">Beign Us To Made Your Dream Painting</h2>
</div>
<div class="features__inner">
<div class="features__item d-sm-flex align-items-center pr-40">
<div class="features__icon mr-30">
<span>
<img src="assets/img/features/icon/fea-1.png" alt="">
</span>
</div>
<div class="features__content">
<h3 class="features__title">Residential Painting</h3>
<p class="feautures_text">We provide professional painting services for both interiors
and exteriors.</p>
</div>
</div>
<div class="features__item d-sm-flex align-items-center pr-40">
<div class="features__icon mr-30">
<span>
<img src="assets/img/features/icon/fea-2.png" alt="">
</span>
</div>
<div class="features__content">
<h3 class="features__title">Detailed Work</h3>
<p class="feautures_text"> Our focus is on precision and attention to detail. Each
project receives personalized treatment, ensuring every corner is perfectly painted.
</p>
</div>
</div>
<div class="features__item d-sm-flex align-items-center pr-40">
<div class="features__icon mr-30">
<span>
<img src="assets/img/features/icon/fea-3.png" alt="">
</span>
</div>
<div class="features__content">
<h3 class="features__title">Exterior Painting</h3>
<p class="feautures_text">This type of painting not only improves the aesthetic
appearance but also provides a protective layer against natural elements like rain,
sun, wind, and pollution.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- features area end -->
<!-- services area start -->
<section class="services__area p-relative z-index-11 pt-130 pb-55">
<div class="services__bg" data-background="assets/img/services/services-bg.webp"></div>
<div class="container">
<div class="row">
<div class="col-xxl-8 offset-xxl-2 col-xl-8 offset-xl-2 col-lg-10 offset-lg-1">
<div class="section__title-wrapper mb-80 text-center">
<span class="section__title-pre section__title-pre-white center">What We Offer</span>
<h2 class="section__title section__title-white">We Help You For Made Your Dream Painting</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-xxl-4 col-xl-4 col-lg-6 col-md-6">
<div class="services__item p-relative mb-30">
<div class="services__thumb w-img">
<img src="assets/img/services/services-2.webp" alt="">
</div>
<div class="services__content text-center">
<div class="services__icon">
<i class="flaticon-paint-1"></i>
</div>
<h3 class="services__title">
<a href="#">Facade Painting</a>
</h3>
<p>Painting your home can instantly refresh its appearance and boost its curb appeal.</p>
<!-- <a href="#" class="link-btn-2">
read more
<i class="far fa-arrow-right"></i>
<i class="far fa-arrow-right"></i>
</a> -->
</div>
</div>
</div>
<div class="col-xxl-4 col-xl-4 col-lg-6 col-md-6">
<div class="services__item p-relative mb-30">
<div class="services__thumb w-img">
<img src="assets/img/services/services-3.webp" alt="">
</div>
<div class="services__content text-center">
<div class="services__icon">
<i class="flaticon-varnish"></i>
</div>
<h3 class="services__title">
<a href="#">Interior Painting</a>
</h3>
<p>A fresh coat of paint can completely transform the mood and style of any room.</p>
</div>
</div>
</div>
<div class="col-xxl-4 col-xl-4 col-lg-6 col-md-6">
<div class="services__item p-relative mb-30">
<div class="services__thumb w-img">
<img src="assets/img/services/services-1.webp" alt="">
</div>
<div class="services__content text-center">
<div class="services__icon">
<i class="flaticon-paint-2"></i>
</div>
<h3 class="services__title">
<a href="#">Exterior Painting</a>
</h3>
<p>Professional home painting services ensure a flawless finish that lasts for years.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- services area end -->
<!-- skill area start -->
<section class="skill__area pb-135 pt-50 p-relative z-index-1">
<div class="skill__shape">
<img class="skill__shape-1" src="assets/img/skill/skill-shape-1.png" alt="">
</div>
<div class="container">
<div class="row">
<div class="col-xxl-5 col-xl-6 col-lg-7">
<div class="skill__wrapper pr-35">
<div class="section__title-wrapper mb-30">
<span class="section__title-pre">Best Skills</span>
<h2 class="section__title">Discover Our <br> Best Working Skills & Experience</h2>
</div>
<p style="text-align: justify;">We are experts in the house painting business, with extensive
experience in transforming spaces with our talent and skills. Our team of professional painters
is highly trained in high-quality painting techniques, color selection, and surface preparation.
We offer interior and exterior painting services, ensuring long-lasting and visually stunning
results. If you are looking for a reliable and quality house painting service, contact us today
for a quote! We are committed to meeting all your home painting needs.
</p>
<!-- <a href ="#" class="r-btn">learn more<i class="far fa-arrow-right"></i></a> -->
</div>
</div>
<div class="col-xxl-5 offset-xxl-1 col-xl-6 col-lg-7">
<div class="skill__progress pr-30">
<div class="skill__progress-item d-sm-flex align-items-center mb-30">
<div class="skill__progress-circle mr-30">
<div class="progress-circular">
<input type="text" class="knob" value="0" data-rel="95" data-linecap="round"
data-width="140" data-height="140" data-bgcolor="#fff" data-fgcolor="#1E3868"
data-thickness=".15" data-readonly="true" disabled />
</div>
</div>
<div class="skill__progress-content">
<h3>Customer Service</h3>
<p>Customer satisfaction is our priority. We're available for inquiries, quotes, and color
and finish consultations, providing personalized service.</p>
</div>
</div>
<div class="skill__progress-item d-sm-flex align-items-center mb-30">
<div class="skill__progress-circle mr-30">
<div class="progress-circular">
<input type="text" class="knob" value="0" data-rel="80" data-linecap="round"
data-width="140" data-height="140" data-bgcolor="#fff" data-fgcolor="#CC151C"
data-thickness=".15" data-readonly="true" disabled />
</div>
</div>
<div class="skill__progress-content">
<h3>Experience and Reliability</h3>
<p>With years of industry experience and a reputation for reliability, our portfolio of
successful projects backs our quality and commitment.</p>
</div>
</div>
<div class="skill__progress-item d-sm-flex align-items-center mb-30">
<div class="skill__progress-circle mr-30">
<div class="progress-circular">
<input type="text" class="knob" value="0" data-rel="83" data-linecap="round"
data-width="140" data-height="140" data-bgcolor="#fff" data-fgcolor="#8f3cff"
data-thickness=".15" data-readonly="true" disabled />
</div>
</div>
<div class="skill__progress-content">
<h3>Painting experts</h3>
<p> In addition to general painting projects, we also offer specialized services such as
decorative, textured, or custom finish painting.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- skill area end -->
<!-- portfolio area start -->
<section class="portfolio__area portfolio__bg portfolio__padding pb-100 pl-55 pr-55">
<div class="container-fluid">
<div class="row">
<div class="col-xxl-4 col-xl-4 col-lg-6">
<div class="portfolio__item p-relative mb-30">
<div class="portfolio__thumb w-img">
<img src="assets/img/portfolio/portfolio-1.webp" alt="">
<div class="portfolio__plus transition-3">
<a class="popup-image" href="assets/img/portfolio/portfolio-1.webp">
<i class="far fa-plus"></i>
</a>
</div>
</div>
<div class="portfolio__content transition-3">
<h3 class="portfolio__title">
<a href="portfolio-details.html">Painting Outside In House</a>
</h3>
<p>Color Painting Services</p>
</div>
</div>
</div>
<div class="col-xxl-4 col-xl-4 col-lg-6">
<div class="portfolio__item p-relative mb-30">
<div class="portfolio__thumb w-img">
<img src="assets/img/portfolio/portfolio-2.webp" alt="">
<div class="portfolio__plus transition-3">
<a class="popup-image" href="assets/img/portfolio/portfolio-2.webp">
<i class="far fa-plus"></i>
</a>
</div>
</div>
<div class="portfolio__content transition-3">
<h3 class="portfolio__title">
<a href="portfolio-details.html">Painting Outside In House</a>
</h3>
<p>Color Painting Services</p>
</div>
</div>
</div>
<div class="col-xxl-4 col-xl-4 col-lg-6">
<div class="portfolio__item p-relative mb-30">
<div class="portfolio__thumb w-img">
<img src="assets/img/portfolio/portfolio-3.webp" alt="">
<div class="portfolio__plus transition-3">
<a class="popup-image" href="assets/img/portfolio/portfolio-3.webp">
<i class="far fa-plus"></i>
</a>
</div>
</div>
<div class="portfolio__content transition-3">
<h3 class="portfolio__title">
<a href="portfolio-details.html">Painting Outside In House</a>
</h3>
<p>Color Painting Services</p>
</div>
</div>
</div>
<div class="col-xxl-6 col-xl-6 col-lg-6">
<div class="portfolio__item p-relative mb-30">
<div class="portfolio__thumb w-img">
<img src="assets/img/portfolio/portfolio-4.webp" alt="">
<div class="portfolio__plus transition-3">
<a class="popup-image" href="assets/img/portfolio/portfolio-4.webp">
<i class="far fa-plus"></i>
</a>
</div>
</div>
<div class="portfolio__content transition-3">
<h3 class="portfolio__title">
<a href="portfolio-details.html">Painting Outside In House</a>
</h3>
<p>Color Painting Services</p>
</div>
</div>
</div>
<div class="col-xxl-6 col-xl-6 col-lg-6">
<div class="portfolio__item p-relative mb-30">
<div class="portfolio__thumb w-img">
<img src="assets/img/portfolio/portfolio-5.webp" alt="">
<div class="portfolio__plus transition-3">
<a class="popup-image" href="assets/img/portfolio/portfolio-5.webp">
<i class="far fa-plus"></i>
</a>
</div>
</div>
<div class="portfolio__content transition-3">
<h3 class="portfolio__title">
<a href="portfolio-details.html">Painting Outside In House</a>
</h3>
<p>Color Painting Services</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- portfolio area end -->
<!-- why area start -->
<section class="why__area why__bg p-relative z-index-1">
<div class="container-fluid">
<div class="row">
<div class="col-xxl-4 offset-xxl-2 col-xl-5">
<div class="why__thumb m-img ml-35">
<img src="assets/img/why/why-1.webp" alt="">
</div>
</div>
<div class="col-xxl-5 col-xl-7 col-lg-8">
<div class="why__wrapper pt-125 pb-125 pl-125">
<div class="section__title-wrapper mb-30">
<span class="section__title-pre">Know About Us</span>
<h2 class="section__title section__title-white">Why Choose Our Printing Service Company</h2>
</div>
<p>Choose our painting home service for expert painters, quality materials, personalized approach,
attention to detail, timely completion, transparent pricing, and customer satisfaction. Trust us
to make your home a beautiful and inviting space. Experienced professionals ensure a flawless
finish, tailored to your preferences and vision.</p>
<div class="why__inner d-sm-flex align-items-center">
<div class="why__item text-center">
<div class="why__icon mb-15">
<img src="assets/img/why/icon/why-icon-1.png" alt="">
</div>
<div class="why__content">
<h4 class="why__title">Interior Transformation.</h4>
</div>
</div>
<div class="why__item text-center">
<div class="why__icon mb-15">
<img src="assets/img/why/icon/why-icon-2.png" alt="">
</div>
<div class="why__content">
<h4 class="why__title">Flexible Schedule Options.</h4>
</div>
</div>
<div class="why__item text-center">
<div class="why__icon mb-15">
<img src="assets/img/why/icon/why-icon-3.png" alt="">
</div>
<div class="why__content">
<h4 class="why__title">Eco Friendly & Clean Work Area</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- why area end -->
<!-- testimonial area start -->
<section class="testimonial__area pt-125 pb-130 " hidden>
<div class="container">
<div class="row">
<div class="col-xxl-6 offset-xxl-3 col-xl-6 offset-xl-3 col-lg-10 offset-lg-1 col-md-10 offset-md-1">
<div class="section__title-wrapper mb-70 text-center">
<span class="section__title-pre center">Testimonials</span>
<h2 class="section__title">What Our Clients Say About Prisma Coatings Pty Ltd</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-xxl-12">
<div class="testimonial__slider swiper-container">
<div class="swiper-wrapper">
<script src="https://static.elfsight.com/platform/platform.js" data-use-service-core
defer></script>
<div class="elfsight-app-d74f493b-75be-4fae-953d-351812a87a10"></div>
<!-- <div class="testimonial__item text-center grey-bg-2 swiper-slide">
<div class="testimonial__thumb mb-25">
<img src="assets/img/testimonial/testi-1.jpg" alt="">
</div>
<div class="testimonial__content">
<p>On the other hand denoune with righteou indignat and dislike menar so beguiled
demoralized echarms of pleasure of the moment so blinded by desire that systems</p>
<div class="testimonial__avater-info">
<h4>David Warner</h4>
<span>CEO & Founder</span>
</div>
</div>
</div>
<div class="testimonial__item text-center grey-bg-2 swiper-slide">
<div class="testimonial__thumb mb-25">
<img src="assets/img/testimonial/testi-2.jpg" alt="">
</div>
<div class="testimonial__content">
<p>On the other hand denoune with righteou indignat and dislike menar so beguiled
demoralized echarms of pleasure of the moment so blinded by desire that systems</p>
<div class="testimonial__avater-info">
<h4>Shahnewaz Sakli</h4>
<span>Envato Author</span>
</div>
</div>
</div>
<div class="testimonial__item text-center grey-bg-2 swiper-slide">
<div class="testimonial__thumb mb-25">
<img src="assets/img/testimonial/testi-3.jpg" alt="">
</div>
<div class="testimonial__content">
<p>On the other hand denoune with righteou indignat and dislike menar so beguiled
demoralized echarms of pleasure of the moment so blinded by desire that systems</p>
<div class="testimonial__avater-info">
<h4>Joss Butler</h4>
<span>Web Developer</span>
</div>
</div>
</div>
<div class="testimonial__item text-center grey-bg-2 swiper-slide">
<div class="testimonial__thumb mb-25">
<img src="assets/img/testimonial/testi-4.jpg" alt="">
</div>
<div class="testimonial__content">
<p>On the other hand denoune with righteou indignat and dislike menar so beguiled
demoralized echarms of pleasure of the moment so blinded by desire that systems</p>
<div class="testimonial__avater-info">
<h4>Khan Mohammad</h4>
<span>Senior Developer</span>
</div>
</div>
</div>
<div class="testimonial__item text-center grey-bg-2 swiper-slide">
<div class="testimonial__thumb mb-25">
<img src="assets/img/testimonial/testi-5.jpg" alt="">
</div>
<div class="testimonial__content">
<p>On the other hand denoune with righteou indignat and dislike menar so beguiled
demoralized echarms of pleasure of the moment so blinded by desire that systems</p>
<div class="testimonial__avater-info">
<h4>Steve Smith</h4>
<span>Motion Expart</span>
</div>
</div>
</div> -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- testimonial area end -->
<!-- contact area start -->
<section class="contact__area pt-235 pb-130 pink-bg p-relative z-index-1 fix">
<div class="contact__bg" data-background="assets/img/contact/map.png"></div>
<div class="container">
<div class="row">
<div class="col-xxl-6 col-xl-6">
<div class="contact__wrapper pr-70 p-relative">
<div class="section__title-wrapper mb-35">
<span class="section__title-pre section__title-pre-white">Subscribe</span>
<h2 class="section__title section__title-white">Subscribe to our nwesletter and stay updated
</h2>
</div>
<div class="contact__form">
<div id="mc_embed_shell">
<form
action="https://prismacoatingsau.us9.list-manage.com/subscribe/post?u=2d6c9e5c58b047cf36060e247&id=e3afb55b04&f_id=00bc1be1f0"
method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form"
class="validate" target="_blank">
<div id="mc_embed_signup_scroll">
<div class="indicates-required"><span class="asterisk">*</span> indicates required
</div>
<div class="mc-field-group contact__input colorLabel">
<label for="mce-EMAIL ">
Email Address
<span class="asterisk">*</span>
</label>
<input type="email" name="EMAIL" class="required email" id="mce-EMAIL" value=""
required="" pattern="[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}">
</div>
<div class="mc-field-group contact__input colorLabel">
<label for="mce-FNAME">First Name </label>
<input type="text" name="FNAME" class=" text" id="mce-FNAME" value="">
</div>
<div id="mce-responses" class="clear foot">
<div class="response colorLabel" id="mce-error-response" style="display: none;">
</div>
<div class="response colorLabel" id="mce-success-response" style="display: none;">
</div>
</div>
<div aria-hidden="true" style="position: absolute; left: -5000px;">
<input type="text" name="b_2d6c9e5c58b047cf36060e247_e3afb55b04" tabindex="-1"
value="">
</div>
<button type="submit" class="r-btn r-btn-white r-btn-plr-90" name="subscribe"
id="mc-embedded-subscribe">Subscribe<i class="far fa-arrow-right"></i>
</button>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="col-xxl-6 col-xl-6">
<div class="contact__thumb">
<div class="contact__thumb-1 m-img text-xl-end mb-80 mt-30">
<span>
<img src="assets/img/contact/contact-1.webp" alt="">
</span>
</div>
<div class="contact__thumb-2 m-img text-end">
<img src="assets/img/contact/contact-2.webp" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- contact area end -->
</main>
<!-- footer area start -->
<footer>
<div class="footer__area black-bg">
<div class="footer__top pb-35">
<div class="container">
<div class="row">
<div class="col-xxl-4 col-xl-4 col-lg-4 col-md-6 col-sm-6">
<div class="footer__widget mb-50">
<div class="footer__widget-top">
<h3 class="footer__widget-title">About Comapny</h3>
</div>
<div class="footer__widget-content">
<div class="footer__widget-about">
<p>Our company specializes in painting houses. With skilled
professionals and top-notch materials, we bring vibrant
transformations to homes, adding beauty and value to your
property. Trust us for impeccable results.</p>
<div class="footer__logo">
<a href="index.html">
<!-- <img src="assets/img/logo/logo-white.png" alt="logo"> -->
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-4 col-xl-4 col-lg-4 col-md-6 col-sm-6">
<div class="footer__widget pl-60 footer__pr-40 mb-50">
<div class="footer__widget-top">
<h3 class="footer__widget-title">Quick Links</h3>
</div>
<div class="footer__widget-content">
<div class="footer__link">
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="about.html">About Us</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-xxl-4 col-xl-4 col-lg-4 col-md-6 col-sm-6">
<div class="footer__widget pl-20 footer__pr-50 mb-50">
<div class="footer__widget-top">
<h3 class="footer__widget-title">Contact Us</h3>
</div>
<div class="footer__widget-content ">
<div class="footer__info">
<ul>
<li class="d-flex align-items-start">
<div class="footer__info-icon mr-20">
<i class="fal fa-map-marker-alt"></i>
</div>
<div class="footer__info-text">
<h4>Locations</h4>
<a target="_blank" href="https://goo.gl/maps/oaCAxBRMGJXyb1Zx7">Campsie NSW
2194</a>
</div>
</li>