-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1029 lines (926 loc) · 48.9 KB
/
index.html
File metadata and controls
1029 lines (926 loc) · 48.9 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
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="wide wow-animation" lang="en">
<head>
<title>Roof Coatings, Roof Maintenance, Silicone Coating, Acrylic Coating</title>
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1,maximum-scale=1,user-scalable=0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Roboto:100,300,300i,400,500,600,700,900%7CRaleway:500">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/novi.css">
<style>
.footer-classic-header{
padding-bottom:0px !important;
}
.tooltip-container {
position: relative;
cursor: pointer;
justify-content:center;
}
.tooltip-text {
visibility: hidden;
width: 400px; /* Adjust as needed */
background-color: #1c75bc;
color: white;
text-align: center;
border-radius: 5px;
padding: 5px 0;
position: absolute;
z-index: 1;
top: 125%; /* Position the tooltip above the text */
margin-left: -25px; /* Adjust to center the tooltip */
opacity: 0;
transition: opacity 0.3s;
}
.tooltip-container:hover .tooltip-text {
visibility: visible;
opacity: 1;
}
p.rights a:hover{
color:white;
}
.footeraddy{
font-size:13px;
text-align:center;
color:#3d3d3d;
font-weight:400;
letter-spacing:.1px;
}
.apnbadge {
position:relative;
top:-30px;
}
.apnbadge img{
display:block;
margin:auto;
}
@media (min-width: 768px) {
.apnbadge {
margin-top:0px;
}
}
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
.apnbadge{
margin-top:-50px !important;
padding-left:10px;
}
}
h6.footer-classic-title{
color:#000;
}
.footer-classic-list a{
color:#000;
}
.family-owned {
width:100%;
height:550px !important;
background-image: url('images/familybg.png');
background-size:cover;
background-repeat:no-repeat;
color:#000;
font-weight:600;
}
span.a {
display: inline; /* the default for span */
width:60%;
margin: 0 auto;
padding: 5px;
}
.famicons{
width: 60% !important;
margin:0 auto;
}
</style>
<!--[if lt IE 10]><div style='background: #212121; padding: 10px 0; box-shadow: 3px 3px 5px 0 rgba(0,0,0,.3); clear: both; text-align:center; position: relative; z-index:1;'><a href='http://windows.microsoft.com/en-US/internet-explorer/'><img src='images/ie8-panel/warning_bar_0000_us.jpg' border='0' height='42' width='820' alt='You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today.'></a></div><script src='js/html5shiv.min.js'></script><![endif]-->
<meta name="sitelock-site-verification" content="8803" />
<meta name="keywords" content="silicone roof coatings, urethane roof coating, polyurethane roof coatings, Acrylics Roof Coatings, cool roof coatings, silicone roof repair, roof coating systems, roof protective coatings, roof repair, Coatings, roof maintenance coatings, silicone coatings, silicone roofing repair">
<meta name="description" content="EVERROOF manufactures a complete line of restoration systems and recommends the optimal chemistry for your roof restoration project. ">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script src="//assets.adobedtm.com/175f7caa2b90/1c69f80b7445/launch-1a5e802fc965.min.js" async></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
var consent = localStorage.getItem("userConsent");
if (!consent) {
document.getElementById("cookieConsentBanner").style.display = "block";
}
document.getElementById("acceptCookies").addEventListener("click", function () {
localStorage.setItem("userConsent", "accepted");
document.getElementById("cookieConsentBanner").style.display = "none";
});
document
.getElementById("declineCookies")
.addEventListener("click", function () {
localStorage.setItem("userConsent", "declined");
document.getElementById("cookieConsentBanner").style.display = "none";
});
});
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QPYTJMNVBL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QPYTJMNVBL');
</script>
<style type="text/css">
/* a {
color: black;
} */
.tagline{
width:90%;
}
.icon::before{
color:#0A9143 !important;
}
/* Style the video: 100% width and height to cover the entire window */
#myVideo {
position: relative;
left: 0;
bottom: 0;
width: 100%;
}
/* Add some content at the bottom of the video/page */
.content {
position: relative ;
top:0 ;
left:0;
background:#fff;
color: #f1f1f1;
width:100%;
text-align:center;
padding-top: 20px;
padding-bottom:30px;
text-align:left;
overflow:hidden;
}
.content h4{
color:#023f6c;
font-weight:700;
font-size:2.9em;
padding-top:20px;
}
.content h5{
padding-top:20px;
color:#000;
font-size:1.2em;
line-height:1.5em;
text-transform:capitalize;
}
.rd-form-inline-lg .button{
margin-left:30%;
}
.footer-classic-3 {
background-image: url(../images/bg-footer-1.png) !important;
}
.orangered-bdr {
border: 1px solid #0aff00;
color: #fff;
background: #000;
border-right: 1px solid #0aff00 !important;
}
.cookie-consent-container {
position: fixed;
bottom: 0;
width: 100%;
z-index: 1000; /* Ensure it appears above other content */
}
.btn {
display: inline-block;
font-weight: 900;
text-align: center;
white-space: nowrap;
vertical-align: middle;
user-select: none;
border: 1px solid transparent;
padding: 10px 45px;
font-size: 15px;
line-height: 1.85;
border-radius: 0;
transition: all 0.15s ease-in-out;
background: #fff;
}
.covid19 {
width: 100%;
display: table;
background: #e80000;
text-align: center;
padding: 8px 0;
font-size: 18px;
}
.covid19 a {
color: #fff;
}
.box-icon-classic-title a:hover {
color: #0A9143;
}
.box-icon-classic-icon {
background: #ffffff;
color: #0A9143;
animation: none;
}
.counter-classic-decor {
display: none;
}
.services-creative-counter {
background: linear-gradient(to top, #0A9143 0%, #0A9143 100%);
}
#ui-to-top {
background: #0A9143;
color: #ffffff;
border-color: #0A9143;
}
.list-share-2 .icon:hover {
color: #0A9143;
}
.rd-navbar-static .rd-megamenu-list li > a:hover {
color: #0A9143;
}
.rd-navbar-static .rd-megamenu-list li > a::before {
color: #0A9143;
}
.rd-navbar-contacts-2 .icon {
color: #0A9143;
}
.rd-navbar-contacts-2 a:hover {
color: #0A9143;
}
.rd-navbar-static .rd-navbar-dropdown {
border-bottom: 7px solid #0A9143;
}
.rd-navbar-static .rd-nav-link::before {
background: #0A9143;
}
.footer-social-list .icon::after {
background: #0A9143;
}
.footer-classic-list a:hover {
color: #0A9143;
}
.footer-classic-contacts a:hover {
color: #0A9143;
}
p.rights{
color:#000 !important;
text-align:center !important;
}
p.rights a:hover {
color: #0A9143;
}
@media (min-width: 768px) {
.footer-classic-panel {
padding-top: 20px;
padding-bottom: 20px;
}
}
/*.main-container{
width: 100%;
max-width: 1366px;
margin: 0px auto;
}
.video_frame{
width: 50%;
box-shadow: 0px 0px 40px rgba(0,0,0,0.5);
position: absolute;
top: 100px;
z-index: 1;
right: 100px;
}
@media screen and ( max-width: 991px){
.main-container{
padding: 0 15px;
}
.video_frame{
width: 45%;
top: 50px;
right: 50px;
}
}
@media screen and ( max-width: 800px){
.video_frame{
width: 100%;
position: relative;
display: table;
top: 0;
right: 0;
}
}*/
</style>
</head>
<body>
<div class="preloader">
<div class="wrapper-triangle">
<div class="pen">
<div class="line-triangle">
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
</div>
<div class="line-triangle">
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
</div>
<div class="line-triangle">
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
<div class="triangle"></div>
</div>
</div>
</div>
</div>
<!--<div class="covid19"><a href="EVERROOF_COVID-19_Update.pdf" target="_blank">View our Statement on COVID-19</a></div>-->
<div class="page">
<header class="section page-header">
<div class="rd-navbar-wrap">
<nav class="rd-navbar rd-navbar-modern" data-layout="rd-navbar-fixed" data-sm-layout="rd-navbar-fixed" data-md-layout="rd-navbar-fixed" data-md-device-layout="rd-navbar-fixed" data-lg-layout="rd-navbar-fixed" data-lg-device-layout="rd-navbar-fixed" data-xl-layout="rd-navbar-static" data-xl-device-layout="rd-navbar-static" data-xxl-layout="rd-navbar-static" data-xxl-device-layout="rd-navbar-static" data-lg-stick-up-offset="150px" data-xl-stick-up-offset="150px" data-xxl-stick-up-offset="150px" data-lg-stick-up="true" data-xl-stick-up="true" data-xxl-stick-up="true">
<div class="rd-navbar-inner-outer novi-background">
<div class="rd-navbar-aside novi-background">
<div class="rd-navbar-aside-inner">
<ul class="rd-navbar-contacts-2">
<li>
<div class="unit unit-spacing-xs">
<div class="unit-left"><span class="novi-icon icon mdi mdi-phone"></span></div>
<div class="unit-body"><a class="phone" href="tel:#">+1 833-383-7766</a></div>
</div>
</li>
<li>
<div class="unit unit-spacing-xs">
<div class="unit-left"><a href="https://goo.gl/maps/2QqbybApeP5JDnSR7" target="_blank" class="novi-icon icon mdi mdi-map-marker"></a></div>
<div class="unit-body"><span class="address" >13827 Carmenita Rd Suite 200, Santa Fe Springs, CA 90670</span></div>
</div>
</li>
</ul>
<ul class="list-share-2">
<li><a class="novi-icon icon mdi mdi-facebook" href="https://www.facebook.com/EverRoof-Products-161169374289318/"></a></li>
<li><a class="icon novi-icon mdi mdi-linkedin" href="https://www.linkedin.com/company/everroof/" target="_blank"></a></li>
</ul>
</div>
</div>
<div class="rd-navbar-inner">
<div class="rd-navbar-panel">
<button class="rd-navbar-toggle" data-rd-navbar-toggle=".rd-navbar-nav-wrap"><span></span></button>
<div class="rd-navbar-brand"><a class="brand" href="index.html"><img class="brand-logo-dark" src="images/everroof®-2019-w-tagline-3d-13.png" alt="" width="219" height="39"></a></div>
</div>
<div class="rd-navbar-right rd-navbar-nav-wrap">
<div class="rd-navbar-aside d-xl-none">
<div class="rd-navbar-aside-inner">
<ul class="rd-navbar-contacts-2">
<li></li>
<li></li>
</ul>
</div>
</div>
<div class="rd-navbar-main">
<ul class="rd-navbar-nav">
<li class="rd-nav-item"><a class="rd-nav-link" href="about-us.html">About Us</a></li>
<li class="rd-nav-item rd-navbar--has-megamenu rd-navbar-submenu"><a class="rd-nav-link" href="#">Products</a>
<ul class="rd-menu rd-navbar-megamenu">
<li class="rd-megamenu-item">
<h6 class="rd-megamenu-title">Everroof Products</h6>
<ul class="rd-megamenu-list">
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="everroof-acrylics-products.html">Acrylic</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="everroof-primer-products.html">Primers</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="everroof-silicone-products.html">Silicones</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="everroof-urethanes-products.html">Urethanes</a></li>
<!--<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="everroof-fiberaccessories-products.html">Fabrics & Accessories</a></li>-->
</ul>
</li>
</ul>
</li>
<li class="rd-nav-item rd-navbar--has-dropdown rd-navbar-submenu"><a href="#" class="rd-nav-link">Resources</a>
<ul class="rd-menu rd-navbar-dropdown">
<!--<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="everroof-general.html">General</a></li>-->
<!-- <li class="rd-dropdown-item"><a class="rd-dropdown-link" href="blog-post.html">Blog Post</a></li> -->
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="everroof-color-chart.html">Color Chart</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="er-drawings.html">Drawings</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="incentives.html">Incentives</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="everroof-project-gallery.html">Photos</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="tech-links.html">Tech Links</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="er-video-youtube.html">Videos</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="warranty-form.html">Warranty</a></li>
</ul>
</li>
<li class="rd-nav-item rd-navbar--has-dropdown rd-navbar-submenu"><a href="#" class="rd-nav-link">System Substrate</a>
<ul class="rd-menu rd-navbar-dropdown">
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="concrete_roof_systems.html">Concrete roofing</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="metal_roof_systems.html">Metal Roofing</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="bitumen_roof_systems.html">modified bitumen roofing</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="epdm_roof_systems.html">single ply epdm Roofing</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="pvc_roof_systems.html">Single ply pvc roofing</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="tpo_roof_systems.html">single ply tpo roofing</a></li>
</ul>
</li>
<li class="rd-nav-item"><a class="rd-nav-link" href="contacts.html">Contact Us</a></li>
<li class="rd-nav-item rd-navbar--has-dropdown rd-navbar-submenu"><a href="#" class="rd-nav-link">Events</a>
<ul class="rd-menu rd-navbar-dropdown">
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="everroof-tradeshows.html">Trade Shows</a></li>
<li class="rd-dropdown-item"><a class="rd-dropdown-link" href="everroof-demos.html">Training/Demos</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="rd-navbar-project">
<div class="rd-navbar-project-header">
<div class="rd-navbar-project-hamburger rd-navbar-project-hamburger-close" data-multitoggle=".rd-navbar-inner" data-multitoggle-blur=".rd-navbar-wrap" data-multitoggle-isolate="data-multitoggle-isolate">
<div class="project-close"><span></span><span></span></div>
</div>
</div>
<div class="rd-navbar-project-content rd-navbar-content">
<div>
<div class="row gutters-20" data-lightgallery="group">
<div class="col-6">
<article class="thumbnail thumbnail-creative"><a href="images/project-1-1200x800-original.jpg" data-lightgallery="item">
<div class="thumbnail-creative-figure"><img src="images/project-1-195x164.jpg" alt="" width="195" height="164"></div>
<div class="thumbnail-creative-caption"><span class="icon thumbnail-creative-icon linearicons-magnifier"></span></div>
</a></article>
</div>
<div class="col-6">
<article class="thumbnail thumbnail-creative"><a href="images/project-2-1200x800-original.jpg" data-lightgallery="item">
<div class="thumbnail-creative-figure"><img src="images/project-2-195x164.jpg" alt="" width="195" height="164"></div>
<div class="thumbnail-creative-caption"><span class="icon thumbnail-creative-icon linearicons-magnifier"></span></div>
</a></article>
</div>
<div class="col-6">
<article class="thumbnail thumbnail-creative"><a href="images/project-3-1200x800-original.jpg" data-lightgallery="item">
<div class="thumbnail-creative-figure"><img src="images/project-3-195x164.jpg" alt="" width="195" height="164"></div>
<div class="thumbnail-creative-caption"><span class="icon thumbnail-creative-icon linearicons-magnifier"></span></div>
</a></article>
</div>
<div class="col-6">
<article class="thumbnail thumbnail-creative"><a href="images/project-4-1200x800-original.jpg" data-lightgallery="item">
<div class="thumbnail-creative-figure"><img src="images/project-4-195x164.jpg" alt="" width="195" height="164"></div>
<div class="thumbnail-creative-caption"><span class="icon thumbnail-creative-icon linearicons-magnifier"></span></div>
</a></article>
</div>
<div class="col-6">
<article class="thumbnail thumbnail-creative"><a href="images/project-5-1200x800-original.jpg" data-lightgallery="item">
<div class="thumbnail-creative-figure"><img src="images/project-5-195x164.jpg" alt="" width="195" height="164"></div>
<div class="thumbnail-creative-caption"><span class="icon thumbnail-creative-icon linearicons-magnifier"></span></div>
</a></article>
</div>
<div class="col-6">
<article class="thumbnail thumbnail-creative"><a href="images/project-6-1200x800-original.jpg" data-lightgallery="item">
<div class="thumbnail-creative-figure"><img src="images/project-6-195x164.jpg" alt="" width="195" height="164"></div>
<div class="thumbnail-creative-caption"><span class="icon thumbnail-creative-icon linearicons-magnifier"></span></div>
</a></article>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
</header>
<!-- The video -->
<video autoplay muted loop id="myVideo">
<source src="video/Everroof_header_1920x550.mp4" type="video/mp4">
</video>
<!-- Optional: some overlay text to describe the video -->
<div class="content">
<p align="center">Welcome to the new Website</p>
<h4 align="center">Seamless Strength, Endless Protection!</h4>
<div class="row tagline" style="width:75%; margin: 0 auto;">
<h5 align="center">Everroof Fluid Applied Roofing Systems deliver seamless protection, built to last, ensuring your roof stands strong against the elements for years to come.</h5><a class="button button-sm button-primary button-winona button-shadow-2" style = "background: #0A9143; color: #fff;" href="substrates-systems.html" data-caption-animate="slideInUp" data-caption-delay="0">Our Services</a>
</div>
</div>
<!--<section class="section swiper-container swiper-slider swiper-slider-2" data-loop="true" data-autoplay="5000" data-simulate-touch="false" data-slide-effect="fade">
<div class="swiper-wrapper text-sm-left">
<!--<div class="swiper-slide context-dark" data-slide-bg="video/la_garange_er_slider.jpg">
<div class="swiper-slide-caption section-md">
<div class="container">
<div class="row">
<div class="col-sm-8 col-md-7 col-lg-4 offset-lg-1 offset-xxl-0">
<h3 class="oh swiper-title"> <span class="d-inline-block" data-caption-animate="slideInLeft" data-caption-delay="100"> View Our New <br/>
VIDEO RESOURCES </span></h3>
<h5 class="swiper-subtitle" data-caption-animate="fadeInUp" data-caption-delay="0">See How Everroof Restored an 80,000 Sqft Roof in Los Angeles</h5>
<div class="button-wrap oh"><a class="button button-lg button-primary button-winona button-shadow-2" style = "background: #0A9143; border-color: #0A9143; color: #ffffff;" href="er-video-youtube.html" data-caption-animate="slideInLeft" data-caption-delay="100">Watch Now</a></div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide context-dark" data-slide-bg="images/everroof_ski_1.png">
<div class="swiper-slide-caption section-md">
<div class="container">
<div class="row">
<div class="col-sm-8 col-md-7 col-lg-4 offset-lg-1 offset-xxl-0">
<h3 class="oh swiper-title"><span class="d-inline-block" data-caption-animate="slideInUp" data-caption-delay="0" data-novi-id="2">FLUID APPLIED ROOFING SYSTEMS</span></h3>
<h5 class="swiper-subtitle" data-caption-animate="fadeInLeft" data-caption-delay="300"><span data-novi-id="3">WE ARE <span data-novi-id="4">EVER</span>ROOF</span></h5>
<a class="button button-lg button-primary button-winona button-shadow-2" style = "background: #0A9143; border-color: #0A9143; color: #ffffff;" href="about-us.html" data-caption-animate="fadeInUp" data-caption-delay="300">Read More</a></div>
</div>
</div>
</div>
</div>
<div class="swiper-slide context-dark" data-slide-bg="video/everroof_header_video_v5.mp4">
<div class="swiper-slide-caption section-md">
<div class="container">
<div class="row">
<div style="background:rgba(0, 0 ,0, .5); padding:20px;"class="col-md-6 col-md-6">
<h4 class="oh swiper-title" ">Seamless Strength, Endless Protection!</h4>
<h5 class="swiper-subtitle" data-caption-animate="fadeInRight" data-caption-delay="300" ">Everroof Fluid Applied Roofing Systems deliver seamless protection, built to last, ensuring your roof stands strong against the elements for years to come.</h5>
<div class="button-wrap oh"><a class="button button-lg button-primary button-winona button-shadow-2" style = "background: #0A9143; border-color: #0A9143; color: #ffffff;" href="everroof-urethanes-products.html" data-caption-animate="slideInUp" data-caption-delay="0">Lets get started</a></div>
</div>
</div>
</div>
</div>
</div>
<!--<div class="swiper-slide context-dark" data-slide-bg="video/everroof_header_video_v5.mp4">
<div class="swiper-slide-caption section-md">
<div class="container">
<div class="row">
<div class="col-sm-8 col-md-7 col-lg-4 offset-lg-1 offset-xxl-0">
<h3 class="oh swiper-title"><span class="d-inline-block" data-caption-animate="slideInLeft" data-caption-delay="100">We Have A HUGE<br>
Library of information<br>
To help you.</span></h3>
<h5 class="swiper-subtitle" data-caption-animate="fadeInUp" data-caption-delay="0">Visit our Resource Center Today</h5>
<div class="button-wrap oh"><a class="button button-lg button-primary button-winona button-shadow-2" href="everroof-resources.html" data-caption-animate="slideInLeft" data-caption-delay="100">Visit Our Resource pages</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<div class="swiper-pagination" data-bullet-custom="true"></div>
<div class="swiper-button-prev">
<div class="preview">
<div class="preview__img"></div>
</div>
<div class="swiper-button-arrow"></div>
</div>
<div class="swiper-button-next">
<div class="swiper-button-arrow"></div>
<div class="preview">
<div class="preview__img"></div>
</div>
</section>
<!--<video class="video_frame" controls poster="video/poster.jpg" style="width:100%;">
<source src="video/everroof_header_video_v5.mp4" type="video/mp4">
</video>
<!-- </div>
<section class="section section-lg bg-default novi-background">
<div class="container">
<div class="tabs-custom row row-50 justify-content-center flex-lg-row-reverse text-center text-md-left" id="tabs-4">
<div class="col-lg-4 col-xl-3">
<h5 class="text-spacing-200">25+ years of experience</h5>
<ul class="nav list-category list-category-down-md-inline-block">
<li class="list-category-item wow fadeInRight" role="presentation" data-wow-delay="0s"><a class="active" href="#tabs-4-1" data-toggle="tab">About us</a></li>
<li class="list-category-item wow fadeInRight" role="presentation" data-wow-delay=".1s"><a href="#tabs-4-2" data-toggle="tab">Our Mission</a></li>
<li class="list-category-item wow fadeInRight" role="presentation" data-wow-delay=".2s"><a href="#tabs-4-3" data-toggle="tab">Our Goals</a></li>
<li class="list-category-item wow fadeInRight" role="presentation" data-wow-delay=".3s"><a href="#tabs-4-4" data-toggle="tab">Company values</a></li>
</ul>
<a class="button button-lg button-primary button-winona" href="contacts.html">Contact us</a></div>
<div class="col-lg-8 col-xl-9">
<div class="tab-content tab-content-1">
<div class="tab-pane fade show active" id="tabs-4-1">
<h4>A Few words about us</h4>
<p>Relying on over three decades of coatings manufacturing experience, EVERROOF brings a wealth of technology, innovation, and reliability to the roofing industry. Our products are proudly made in the U.S.A. at one of our five manufacturing facilities located throughout California and Texas. <br>
<br>
Who are we? We have historically manufactured products under private label, with some of the largest roofing companies in the world as our customers. EVERROOF now sells under our own brand label, continuing to use only the highest quality raw materials and incorporating the same stringent quality control processes to guarantee the best possible product to the end user. <br>
<br>
EVERROOF is part of a matrix of vertically integrated companies, allowing us to purchase raw materials in very large quantities and to efficiently distribute products through domestic and international networks. Our economies of scale translates into lower prices for all of our customers. Within our network, we operate as a system house, giving us the ability to provide products and systems to meet virtually all of your project needs. We manufacture all of our own products, providing our customers the confidence of knowing that they are purchasing directly from an experienced and knowledgeable source. <br>
<br>
Our customers have consistently relied on our scientific knowledge and expertise to guarantee quality products at competitive rates. Some might consider EVERROOF to be, in a way, the largest roof coating company you’ve never heard of. </p>
<p></p>
<img src="images/er_20190417_0001_01-1-2.jpg" alt="" width="835" height="418"></div>
<div class="tab-pane fade" id="tabs-4-2">
<h4>Providing quality services</h4>
<p>EVERROOF is in business to facilitate a solid reputation for producing quality products, achieving timely delivery, and providing competitive pricing. We constantly strive to better satisfy the needs of our customers, and to continually improve the overall management and success of the company.</p>
<p class=""></p>
<img src="images/photo-jan-27,-4-30-06-pm-1.jpg" alt="" width="835" height="418"></div>
<div class="tab-pane fade" id="tabs-4-3">
<h4>Everroof Goals</h4>
<p>Here at Everroof we feels it's important to keep the goals we set from the beginning upheld to this today.</p>
<p>EVERROOF is in business to facilitate a solid reputation for producing quality products, achieving timely delivery, and providing competitive pricing. We constantly strive to better satisfy the needs of our customers, and to continually improve the overall management and success of the company.</p>
<img src="images/er_20190910_0071_01.jpg" alt="" width="835" height="418"></div>
<div class="tab-pane fade" id="tabs-4-4">
<h4>Integrity, quality, and reliability</h4>
<p>At EVERROOF, we highly value the relationships we build with our customers. We are passionate about what we do and strive to provide customers with the most up-to-date and transparent information regarding the products they purchase. Education, safety and integrity are at the heart of everything we do.</p>
<p></p>
<img src="images/er_20190911_0046-pano_19_08.jpg" alt="" width="835" height="418"></div>
</div>
</div>
</div>
</div>
</section>-->
<section class="section section-md bg-gray-100 text-md-left section-relative novi-background">
<div class="container">
<div class="row row-40 row-lg-50 row-xl-60">
<div class="col-sm-6 col-lg-4">
<article class="box-icon-classic">
<div class="unit unit-spacing-lg flex-column text-center flex-md-row text-md-left">
<div class="unit-left">
<div class="box-icon-classic-icon novi-icon mdi-brightness-5 mdi"></div>
</div>
<div class="unit-body">
<h5 class="box-icon-classic-title"><a href="#">Energy Saving</a></h5>
<p class="box-icon-classic-text">Energy efficient roofs reflects the sun's energy off of your roof, resulting in cooler building that uses less energy.</p>
</div>
</div>
</article>
</div>
<div class="col-sm-6 col-lg-4">
<article class="box-icon-classic">
<div class="unit unit-spacing-lg flex-column text-center flex-md-row text-md-left">
<div class="unit-left">
<div class="box-icon-classic-icon novi-icon mdi-wrench mdi"></div>
</div>
<div class="unit-body">
<h5 class="box-icon-classic-title"><a href="#" target="">Quick / Easy Install</a></h5>
<p class="box-icon-classic-text">Everroof products can be rolled or sprayed on, creating a protective membrane that extends the life of your roof.</p>
</div>
</div>
</article>
</div>
<div class="col-sm-6 col-lg-4">
<article class="box-icon-classic">
<div class="unit unit-spacing-lg flex-column text-center flex-md-row text-md-left">
<div class="unit-left">
<div class="box-icon-classic-icon novi-icon mdi-brightness-7 mdi"></div>
</div>
<div class="unit-body">
<h5 class="box-icon-classic-title"><a href="concrete_roof_systems.html"></a><a href="#">No Demolition</a></h5>
<p class="box-icon-classic-text">Because Everroof's products are applied over your existing roof, there is no need for expensive demolition and disposal.</p>
</div>
</div>
</article>
</div>
<div class="col-sm-6 col-lg-4">
<article class="box-icon-classic">
<div class="unit unit-spacing-lg flex-column text-center flex-md-row text-md-left">
<div class="unit-left">
<div class="box-icon-classic-icon novi-icon linearicons-coin-dollar"></div>
</div>
<div class="unit-body">
<h5 class="box-icon-classic-title"><a href="#">Low Cost Maintenance</a></h5>
<p class="box-icon-classic-text">Once Everroof is applied to your roof, there is less maintenance to maintain your new roof.</p>
</div>
</div>
</article>
</div>
<div class="col-sm-6 col-lg-4">
<article class="box-icon-classic">
<div class="unit unit-spacing-lg flex-column text-center flex-md-row text-md-left">
<div class="unit-left">
<div class="box-icon-classic-icon novi-icon mdi-water-off mdi"></div>
</div>
<div class="unit-body">
<h5 class="box-icon-classic-title"><a href="#">Improved Resistance to Ponding Water</a></h5>
<p class="box-icon-classic-text">Everroof products have been engineered to eliminate any ponding water, saving you from having to replace your roof.</p>
</div>
</div>
</article>
</div>
<div class="col-sm-6 col-lg-4">
<article class="box-icon-classic">
<div class="unit unit-spacing-lg flex-column text-center flex-md-row text-md-left">
<div class="unit-left">
<div class="box-icon-classic-icon novi-icon mdi-earth mdi"></div>
</div>
<div class="unit-body">
<h5 class="box-icon-classic-title"><a href="#">Environmentally Friendly</a></h5>
<p class="box-icon-classic-text">Everroof products reduce unnecessary waste / and are engineered to meet air quality management district standards.</p>
</div>
</div>
</article>
</div>
</div>
</div>
</section>
<section class="section section-lg bg-default novi-background">
<div class="container">
<h3 class="oh-desktop"><span class="d-inline-block wow slideInDown" data-novi-id="0">Products</span></h3>
<div class="owl-carousel owl-style-3 dots-style-2" data-items="1" data-sm-items="2" data-lg-items="3" data-margin="30" data-autoplay="false" data-dots="true" data-animation-in="fadeIn" data-animation-out="fadeOut">
<article class="services-creative"><a class="services-creative-figure" href="everroof-acrylics-products.html"><img src="images/2018_ever-crylic_system_logo-450x362.png" alt="" width="370" height="230"></a>
<div class="services-creative-caption">
<h5 class="services-creative-title"><a href="everroof-acrylics-products.html" target=""><span data-novi-id="5">Ever-Crylic</span></a></h5>
<p class="services-creative-text">Elastomeric acrylic coating system. Long-term reflectivity for cool roofs.<br>
<br>
<br>
<br>
<br>
<a href="everroof-acrylics-products.html"><span data-novi-id="54">More Info ></span></a></p>
<span class="services-creative-counter box-ordered-item" >EC</span></div>
</article>
<article class="services-creative"><a class="services-creative-figure" href="everroof-silicone-products.html"><img src="images/2019_ever-silic_system_logo-450x363.png" alt="" width="370" height="230"></a>
<div class="services-creative-caption">
<h5 class="services-creative-title"><span data-novi-id="6"><a href="everroof-silicone-products.html" target=""><span data-novi-id="8">EVER-SILIC</span></a></span></h5>
<p class="services-creative-text" data-novi-id="9"><span data-novi-id="10">Silicone system available in high solids and spray grade. Superior resistance to long-term weathering and ponding as well as algae and biologic growth.<br data-novi-id="50">
<br data-novi-id="49">
<a href="everroof-silicone-products.html"><span data-novi-id="51">More Info ></span></a></span></p>
<span class="services-creative-counter box-ordered-item">ES</span></div>
</article>
<article class="services-creative"><a class="services-creative-figure" href="everroof-urethanes-products.html"><img src="images/2018_ever-thane_system_logo-450x358.png" alt="" width="370" height="230"></a>
<div class="services-creative-caption">
<h5 class="services-creative-title"><span data-novi-id="7"><a href="substrates-systems.html" target="">EVER-THANE</a></span></h5>
<p class="services-creative-text">Polyurethane base and top coat system. Superior resistance to impact and abrasion, chemical exposure, and dirt pickup.<br>
<br>
<a href="everroof-urethanes-products.html"><span data-novi-id="53">More Info ></span></a></p>
<span class="services-creative-counter box-ordered-item">ET</span></div>
</article>
</div>
</div>
</section>
<!--
<section class="section parallax-container" data-parallax-img="images/shutterstock_453433207-2200x424.png">
<div class="parallax-content section-lg context-dark text-md-left">
<div class="container">
<div class="row justify-content-end">
<div class="col-sm-12 col-md-6 col-lg-7">
<div class="cta-classic">
<h4 class="cta-classic-title wow fadeInLeft"><span data-novi-id="13">Creating efficient ROOF SYSTEMS that meet your requirements</span></h4>
<p class="cta-classic-text wow fadeInRight" data-wow-delay=".1s"><span data-novi-id="12" style = "font-weight: 600;">Learn More about us</span></p>
<a class="button button-lg button-primary button-winona wow fadeInUp" style = "background: #0A9143; border-color: #0A9143; color: #ffffff;" href="substrates-systems.html" data-wow-delay=".2s" style="margin-bottom: 40px;">Our services</a></div>
</div>
</div>
</div>
</div>
</section>
<!--
<section class="section parallax-container" data-parallax-img="images/everroof_banner_bottom.png">
<div class="parallax-content section-lg context-dark text-md-left">
<div class="container">
<div class="row justify-content-end">
<div class="col-sm-12 col-md-6 col-lg-7">
</div>
</div>
</div>
</div>
</section>
-->
<!--
<section class="section parallax-container" data-parallax-img="images/bg-forms-1.jpg">
<div class="parallax-content section-md context-dark text-md-left">
<div class="container">
<div class="row row-30 justify-content-center align-items-center">
<div class="col-lg-4 col-xl-3">
<h5 class="oh-desktop"><span class="d-inline-block wow slideInUp">JOIN OUR MAILING LIST</span></h5>
<p class="oh-desktop"><span class="d-inline-block wow slideInDown">Joining our mailing list will give you access to cost saving promotions, events and new content from Everroof.</span></p>
</div>
<div class="col-lg-8 col-xl-9">
<div class="block-center">
<form class="rd-form rd-mailform rd-form-inline oh-desktop rd-form-inline-lg" data-form-output="form-output-global" data-form-type="subscribe" method="post" action="bat/rd-mailform.php">
<div class="form-wrap wow slideInUp">
<input class="form-input" id="subscribe-form-0-email" type="email" name="email" data-constraints="@Email @Required">
<label class="form-label" for="subscribe-form-0-email">Your E-mail*</label>
</div>
<div class="form-button wow slideInRight">
<button class="button button-winona button-lg button-primary" style = "background: #0A9143; border-color: #0A9143; color: #ffffff;" type="submit">Subscribe</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
<section class="section parallax-container" data-parallax-img="images/bg-counter-3.jpg">
<div class="parallax-content section-inset-9 context-dark">
<div class="container">
<div class="row row-30 justify-content-center justify-content-xl-between align-items-lg-end">
<div class="col-sm-6 col-md-3">
<div class="counter-classic">
<h3 class="counter-classic-number"></h3>
<h6 class="counter-classic-title"></h6>
<div class="counter-classic-decor"></div>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<section class="family-owned img-responsive">
<p align="center" style="position:relative; top:70px; margin:0px auto; ; width:85%; padding:25px; font-size:1.2em; line-height:1.21em; ">As a family-owned and operated business, Everroof takes great pride in offering a range of premium coating products that are manufactured in America. Our commitment to using only the highest quality materials not only ensures the superior performance of our products but also supports the American economy. By producing products in the USA, we are able to create jobs and contribute to the thriving economy. When you choose to purchase our products, you are not only investing in a product of exceptional quality but also supporting a family legacy.</p>
<div class="row famicons" align="center" style="padding-top:80px;">
<span class="a"><img class="img-responsive" src="images/famicons.png" style="width:100%;"/></span>
</div>
</section>
<!---Family of Brands-->
<section style="width:85%; margin:auto; padding-top:40px; padding-bottom:40px; border-bottom:1px solid #0A9143;">
<h3 align="center" style="font-weight:800;">A Family of Brands, United by Innovation</h3>
<p align="center" style="width:75%; margin: auto; color:#000;">Everroof is part of the American Polymers Network of Companies, working together to provide cutting-edge solutions for industries worldwide. Backed by expert Chemists and Engineers, we develop high-quality, industry-leading products trusted in homes, businesses, landmarks and major industrial projects. Explore our family of brands, each dedicated to delivering performance, durability, and innovation.
</p>
<br/><br/>
<row style="padding-top:30px; width:60%;">
<div class="col-sm-2" style="display:inline-block;"><a href="https://polycoatusa.com" target="_blank"><img src="images/polycoat.png" width="200"/></a></div>
<div class="col-sm-2" style="display:inline-block;"><a href="https://crownpolymers.com" target="_blank"><img src="images/crownpolymers.png" width="200"/></a></div>
<div class="col-sm-1.5" style="display:inline-block;"><a href="https://upcfoam.com" target="_blank"><img src="images/upc.png" width="150"/></a></div>
<div class="col-sm-2" style="display:inline-block;"><a href="https://polycoatusa.com/polyfil.php" target="_blank"><img src="images/Polyfil.png" width="200"/></a></div>
<div class="col-sm-2" style="display:inline-block;"><a href="https://generalcoatings.net" target="_blank"><img src="images/gcmc.png" width="200"/></a></div>
<div class="col-sm-2 last" style="display:inline-block;"><a href="https://www.diamondliners.com" target="_blank"><img src="images/diamondliner.png" width="200"/></a></div>
</row>
<br/><br/>
<a href="https://apnhome.com/" style="text-align: center; color: #1c75bc;" target="_blank" rel="noopener noreferrer"> Explore All Affiliated Brands ></a>
</section>
<!---Family of Brands-->
<footer class="section footer-classic footer-classic-2 bg-image novi-background" style="background:url('images/bg-footer-1.png') no-repeat;">
<div class="footer-classic-content">
<div class="container">
<div class="row row-50 row-lg-0 no-gutters">
<!--APNBADGE -->
<div class="col-xl-4 col-md-9 wow fadeInRight" style="padding-right:25px;">
<div class="unit unit-spacing-sm align-items-center">
<div class="footer-classic-body">
<div class="box-width-260">
<div class="apnbadge">
<br/><br/>
<img src="images/EverroofxAPN.png">
<p class="fp">Backed by over 30 years of coatings manufacturing expertise, EVERROOF develops and produces innovative, reliable roofing solutions for the industry.</p>
<br/>
</div>
</div>
</div>
</div>
</div>
<!--APNBADGE END-->
<!--Our Products -->
<div class="col-xl-2 col-md-6 wow fadeInRight" data-wow-delay="0s">
<div class="footer-classic-header">
<h6 class="footer-classic-title">USEFUL LINKS</h6>
</div>
<div class="unit unit-spacing-sm align-items-right">
<div class="footer-classic-body">
<ul class="footer-classic-list">
<li><a href="everroof-urethanes-products.html">Urethanes</a></li>
<li><a href="everroof-silicone-products.html">Silicones</a></li>
<li><a href="everroof-acrylics-products.html">Acrylic</a></li>
<li><a href="everroof-primer-products.html">Primers</a></li>
<li><a href="concrete_roof_systems.html">Concrete</a></li>
</ul>
</div>
</div>
</div>
<!--Our Products End-->
<!--Our Products -->
<div class="col-xl-3 col-md-6 wow fadeInRight" data-wow-delay="0s" style="padding-left:20px;">
<div class="footer-classic-header">
<h6 class="footer-classic-title">Request a Quote</h6>
</div>
<a class="button button-sm button-primary button-winona" style = "float:left; color: #ffffff; background: #0A9143; border-color: #0A9143;" href="contacts.html">Contact Us</a>
</div>
<!--Our Products End-->
<!--GETINTOUCH-->
<div class="col-xl-3 col-md-6 wow fadeInRight" data-wow-delay=".1s">
<div class="footer-classic-header">
<div class="box-width-230">
<h6 class="footer-classic-title">Get in touch</h6>
</div>
</div>
<div class="footer-classic-body">
<div class="box-width-230">
<div class="footer-classic-contacts">
<div class="footer-classic-contacts-item">
<div class="unit unit-spacing-sm align-items-center">
<div class="unit-left"><span class="novi-icon icon icon-24 mdi mdi-phone"></span></div>
<div class="unit-body"><a class="phone" href="tel:#">+1 833-383-7766</a></div>
</div>
</div>
<div class="footer-classic-contacts-item">
<ul class="list-inline footer-social-list">
<li><a class="icon novi-icon mdi mdi-facebook" href="https://www.facebook.com/Everroof-Products-161169374289318/" target="_blank"></a></li>
<li><a class="icon novi-icon mdi mdi-linkedin" href="https://www.linkedin.com/company/everroof/" target="_blank"></a></li>
</ul>