-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
317 lines (255 loc) · 7.97 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>KPEG</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous" />
<script defer src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<link href="ktitle.png?w=192" rel="shortcut icon" type="image/x-icon" sizes="192x192" />
<link href="ktitle.png?w=192" rel="apple-touch-icon" sizes="192x192" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Home - KPEG" />
<meta property="og:description"
content="KPEG - Private equity group business that owns several different lines of business that falls under one umbrella." />
<meta property="og:url" content="https://kingspeg.com/" />
<meta property="og:site_name" content="KPEG" />
<meta property="article:publisher" content="https://www.facebook.com/" />
<meta property="article:modified_time" content="2023-10-03T21:29:46+00:00" />
<meta property="og:image"
content="wp-content/uploads/kk.png" />
<meta property="og:image:width" content="520" />
<meta property="og:image:height" content="399" />
<meta property="og:image:type" content="image/png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:label1" content="Est. reading time" />
<meta name="twitter:data1" content="1 minute" />
<style>
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
transition: background-color 5000s;
-webkit-text-fill-color: #0d0d0d !important;
}
</style>
<style>
body {
-webkit-font-smoothing: antialiased;
overflow-y: scroll;
overflow-x: hidden;
text-rendering: optimizeLegibility;
}
</style>
<style>
.no-scroll {
overflow: hidden;
}
</style>
<style>
/*width*/
#scrollbar::-webkit-scrollbar {
width: 5px;
height: 0px;
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 600px) {
#scrollbar::-webkit-scrollbar {
width: 0px;
height: 0px;
}
}
/*track*/
#scrollbar::-webkit-scrollbar-track {
background: rgba(243, 246, 252, 0);
border-radius: 25px;
}
/*thumb*/
#scrollbar::-webkit-scrollbar-thumb {
background: #e2e7f1;
border-radius: 25px;
}
#scrollbar::-webkit-scrollbar-thumb:hover {
background: #090b19;
}
</style>
<style>
/* Snippet makes all link elements listed below to inherit color from their parent */
a,
.w-nav-link,
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
color: inherit;
}
/*Reset selects, buttons, and links styles*/
.w-input,
.w-select,
a {
color: inherit;
text-decoration: inherit;
font-size: inherit;
}
/* Snippet makes the cursor parent not clickable */
.cursor-wrapper {
user-select: none;
pointer-events: none;
}
/* Snippet prevents all click and hover interaction with an element */
.clickable-off {
pointer-events: none;
}
/* Snippet enables all click and hover interaction with an element */
.clickable-on {
pointer-events: auto;
}
/* Make the default text underlines nicer */
.text-decoration---underline {
text-decoration-thickness: .05rem;
text-underline-offset: .075rem;
}
/* Ads a margin to ul element */
.w-richtext ol,
.w-richtext ul {
margin: 20px 0;
}
</style>
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css">
<style>
.flickity-viewport {
width: 100%;
overflow: visible !important;
}
.flickity-button {
display: none;
}
</style>
<!-- Block out any accidental highlighting of the tab buttons for added polish -->
<style>
.standard-tab {
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
-khtml-user-select: none;
/* Konqueror HTML */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" defer src="/src/main.jsx"></script>
<div class="c-loader">
<div class="c-container_loader w-container">
<div class="c-logo-wrapper_loader"><img defer src="/logo-white.png" loading="lazy" alt="KINGSPEG LOGO" class="c-logo_loader" /></div>
<div class="c-progress-bar_loader-wrapper">
<div class="c-progress-bar_loader"></div>
</div>
</div>
</div>
<style>
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
transition: background-color 5000s;
-webkit-text-fill-color: #0d0d0d !important;
}
</style>
<style>
body {
-webkit-font-smoothing: antialiased;
overflow-y: scroll;
overflow-x: hidden;
text-rendering: optimizeLegibility;
}
</style>
<style>
.no-scroll {
overflow: hidden;
}
</style>
<style>
/*width*/
#scrollbar::-webkit-scrollbar {
width: 5px;
height: 0px;
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 600px) {
#scrollbar::-webkit-scrollbar {
width: 0px;
height: 0px;
}
}
/*track*/
#scrollbar::-webkit-scrollbar-track {
background: rgba(243, 246, 252, 0);
border-radius: 25px;
}
/*thumb*/
#scrollbar::-webkit-scrollbar-thumb {
background: #e2e7f1;
border-radius: 25px;
}
#scrollbar::-webkit-scrollbar-thumb:hover {
background: #090b19;
}
</style>
<style>
/* Snippet makes all link elements listed below to inherit color from their parent */
a,
.w-nav-link,
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
color: inherit;
}
/*Reset selects, buttons, and links styles*/
.w-input,
.w-select,
a {
color: inherit;
text-decoration: inherit;
font-size: inherit;
}
/* Snippet makes the cursor parent not clickable */
.cursor-wrapper {
user-select: none;
pointer-events: none;
}
/* Snippet prevents all click and hover interaction with an element */
.clickable-off {
pointer-events: none;
}
/* Snippet enables all click and hover interaction with an element */
.clickable-on {
pointer-events: auto;
}
/* Make the default text underlines nicer */
.text-decoration---underline {
text-decoration-thickness: .05rem;
text-underline-offset: .075rem;
}
/* Ads a margin to ul element */
.w-richtext ol,
.w-richtext ul {
margin: 20px 0;
}
</style>
<style>
.letter {
display: inline-block;
}
.tricksword {
white-space: nowrap;
}
</style>
</body>
</html>