Datasets:

Modalities:
Image
Tags:
code
Libraries:
Datasets
License:
File size: 52,300 Bytes
a01128b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en-US">
 <head>
  <meta charset="utf-8">
  <meta content="IE=edge" http-equiv="X-UA-Compatible">
  <meta content="width=device-width, initial-scale=1" name="viewport">
  <title>
   NOTE
  </title>
  <meta content="Wax It All" name="author">
  <meta content="Starfield Technologies; Go Daddy Website Builder 8.0.0000" name="generator">
  <meta content="" property="og:url">
  <meta content="Wax It All" property="og:site_name">
  <meta content="Wax It All" property="og:title">
  <meta content="website" property="og:type">
  <meta content="" property="og:image">
  <meta content="en_US" property="og:locale">
  <meta content="summary" name="twitter:card">
  <meta content="Wax It All" name="twitter:title">
  <meta content="Wax It All 
1042 Lincoln Avenue
San Jose Ca, 95125 [PHONE REDACTED]" name="twitter:description">
  <meta content="" name="twitter:image">
  <meta content="Wax It All" name="twitter:image:alt">
  <meta content="#C70000" name="theme-color">
  <style data-inline-fonts>
   /* cyrillic-ext */
@font-face {
  font-family: 'Old Standard TT';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/oldstandardtt/v20/MwQsbh3o1vLImiwAVvYawgcf2eVer2q3bHNiZg.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Old Standard TT';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/oldstandardtt/v20/MwQsbh3o1vLImiwAVvYawgcf2eVer2q-bHNiZg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Old Standard TT';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/oldstandardtt/v20/MwQsbh3o1vLImiwAVvYawgcf2eVer2q1bHNiZg.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Old Standard TT';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/oldstandardtt/v20/MwQsbh3o1vLImiwAVvYawgcf2eVer2q0bHNiZg.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Old Standard TT';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/oldstandardtt/v20/MwQsbh3o1vLImiwAVvYawgcf2eVer2q6bHM.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Old Standard TT';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/oldstandardtt/v20/MwQubh3o1vLImiwAVvYawgcf2eVep1q4dHc.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Old Standard TT';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/oldstandardtt/v20/MwQubh3o1vLImiwAVvYawgcf2eVerlq4dHc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Old Standard TT';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/oldstandardtt/v20/MwQubh3o1vLImiwAVvYawgcf2eVepVq4dHc.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Old Standard TT';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/oldstandardtt/v20/MwQubh3o1vLImiwAVvYawgcf2eVepFq4dHc.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Old Standard TT';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/oldstandardtt/v20/MwQubh3o1vLImiwAVvYawgcf2eVeqlq4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face {
  font-family: 'Gudea';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/gudea/v15/neILzCqgsI0mp9CNzoymM5Ez.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Gudea';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/gudea/v15/neILzCqgsI0mp9CNzoKmMw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Gudea';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/gudea/v15/neIFzCqgsI0mp9CG_oC-Nw.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Gudea';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/gudea/v15/neIFzCqgsI0mp9CI_oA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Gudea';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/gudea/v15/neIIzCqgsI0mp9gz25WPFqwKUQ.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Gudea';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/gudea/v15/neIIzCqgsI0mp9gz25WBFqw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
  </style>
  <style>
   .x{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;box-sizing:border-box}.x *,.x :after,.x :before{box-sizing:inherit}.x-el a[href^="mailto:"]:not(.x-el),.x-el a[href^="tel:"]:not(.x-el){color:inherit;font-size:inherit;text-decoration:inherit}.x-el-article,.x-el-aside,.x-el-details,.x-el-figcaption,.x-el-figure,.x-el-footer,.x-el-header,.x-el-hgroup,.x-el-main,.x-el-menu,.x-el-nav,.x-el-section,.x-el-summary{display:block}.x-el-audio,.x-el-canvas,.x-el-progress,.x-el-video{display:inline-block;vertical-align:baseline}.x-el-audio:not([controls]){display:none;height:0}.x-el-template{display:none}.x-el-a{background-color:transparent;color:inherit}.x-el-a:active,.x-el-a:hover{outline:0}.x-el-abbr[title]{border-bottom:1px dotted}.x-el-b,.x-el-strong{font-weight:700}.x-el-dfn{font-style:italic}.x-el-mark{background:#ff0;color:#000}.x-el-small{font-size:80%}.x-el-sub,.x-el-sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.x-el-sup{top:-.5em}.x-el-sub{bottom:-.25em}.x-el-img{vertical-align:middle;border:0}.x-el-svg:not(:root){overflow:hidden}.x-el-figure{margin:0}.x-el-hr{box-sizing:content-box;height:0}.x-el-pre{overflow:auto}.x-el-code,.x-el-kbd,.x-el-pre,.x-el-samp{font-family:monospace,monospace;font-size:1em}.x-el-button,.x-el-input,.x-el-optgroup,.x-el-select,.x-el-textarea{color:inherit;font:inherit;margin:0}.x-el-button{overflow:visible}.x-el-button,.x-el-select{text-transform:none}.x-el-button,.x-el-input[type=button],.x-el-input[type=reset],.x-el-input[type=submit]{-webkit-appearance:button;cursor:pointer}.x-el-button[disabled],.x-el-input[disabled]{cursor:default}.x-el-button::-moz-focus-inner,.x-el-input::-moz-focus-inner{border:0;padding:0}.x-el-input{line-height:normal}.x-el-input[type=checkbox],.x-el-input[type=radio]{box-sizing:border-box;padding:0}.x-el-input[type=number]::-webkit-inner-spin-button,.x-el-input[type=number]::-webkit-outer-spin-button{height:auto}.x-el-input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.x-el-input[type=search]::-webkit-search-cancel-button,.x-el-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.x-el-textarea{border:0}.x-el-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.x-el-legend{border:0;padding:0}.x-el-textarea{overflow:auto}.x-el-optgroup{font-weight:700}.x-el-table{border-collapse:collapse;border-spacing:0}.x-el-td,.x-el-th{padding:0}.x{-webkit-font-smoothing:antialiased}.x-el-hr{border:0}.x-el-fieldset,.x-el-input,.x-el-select,.x-el-textarea{margin-top:0;margin-bottom:0}.x-el-fieldset,.x-el-input[type=email],.x-el-input[type=text],.x-el-textarea{width:100%}.x-el-label{vertical-align:middle}.x-el-input{border-style:none;padding:.5em;vertical-align:middle}.x-el-select:not([multiple]){vertical-align:middle}.x-el-textarea{line-height:1.75;padding:.5em}.x-el.d-none{display:none!important}.sideline-footer{margin-top:auto}.disable-scroll{touch-action:none;overflow:hidden;position:fixed;max-width:100vw}@-webkit-keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}@keyframes loaderscale{0%{transform:scale(1);opacity:1}45%{transform:scale(.1);opacity:.7}80%{transform:scale(1);opacity:1}}.x-loader svg{display:inline-block}.x-loader svg:first-child{-webkit-animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite;animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.24s infinite}.x-loader svg:nth-child(2){-webkit-animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite;animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) -.12s infinite}.x-loader svg:nth-child(3){-webkit-animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite;animation:loaderscale .75s cubic-bezier(.2,.68,.18,1.08) 0s infinite}.x-icon>svg{transition:transform .33s ease-in-out}.x-icon>svg.rotate-90{transform:rotate(-90deg)}.x-icon>svg.rotate90{transform:rotate(90deg)}.x-icon>svg.rotate-180{transform:rotate(-180deg)}.x-icon>svg.rotate180{transform:rotate(180deg)}.x-rt ol,.x-rt ul{text-align:left}.x-rt p{margin:0}.mte-inline-block{display:inline-block}@media only screen and (min-device-width:1025px){:root select,_::-webkit-full-page-media,_:future{font-family:sans-serif!important}}
  </style>
  <style>
   /*
Copyright 2011 The Old Standard Project Authors ([EMAIL REDACTED])

This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL

—————————————————————————————-
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
—————————————————————————————-
*/

/*
Copyright (c) 2012, Agustina Mingote ([EMAIL REDACTED]), with Reserved Font Names "Gudea"

This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL

—————————————————————————————-
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
—————————————————————————————-
*/
  </style>
  <style data-glamor="cxs-default-sheet">
   .x .c1-1{letter-spacing:normal}.x .c1-2{text-transform:none}.x .c1-3{background-color:rgb(255, 255, 255)}.x .c1-4{width:100%}.x .c1-5 > div{position:relative}.x .c1-6 > div{overflow:hidden}.x .c1-7 > div{margin-top:auto}.x .c1-8 > div{margin-right:auto}.x .c1-9 > div{margin-bottom:auto}.x .c1-a > div{margin-left:auto}.x .c1-b{font-family:'Gudea', Georgia, serif}.x .c1-c{font-size:16px}.x .c1-h{background-color:rgb(22, 22, 22)}.x .c1-i{padding-top:56px}.x .c1-j{padding-bottom:56px}.x .c1-k{overflow:visible}.x .c1-l{padding:0px !important}.x .c1-o{display:none}.x .c1-q{background-color:rgb(199, 0, 0)}.x .c1-r{padding-top:4px}.x .c1-s{padding-bottom:4px}.x .c1-t{position:relative}.x .c1-u{z-index:1}.x .c1-v{transition:all .5s}.x .c1-w{margin-left:auto}.x .c1-x{margin-right:auto}.x .c1-y{padding-left:24px}.x .c1-z{padding-right:24px}.x .c1-10{max-width:100%}.x .c1-11{display:flex}.x .c1-12{align-items:center}.x .c1-13{justify-content:center}.x .c1-18{color:rgb(255, 255, 255)}.x .c1-19{width:40px}.x .c1-1a{max-height:33px}.x .c1-1c{padding-left:8px}.x .c1-1d{padding-right:8px}.x .c1-1e{word-wrap:break-word}.x .c1-1f{overflow-wrap:break-word}.x .c1-1g{line-height:1.5}.x .c1-1h{margin-top:0}.x .c1-1i{margin-bottom:0}.x .c1-1j{text-align:center}.x .c1-1k{font-weight:400}.x .c1-1m{z-index:3}.x .c1-1n .sticky-animate{background-color:rgba(22, 22, 22, 0.9)}.x .c1-1o .sticky-animate hr{opacity:0 !important}.x .c1-1p{transition:background .3s}.x .c1-1q{padding-top:24px}.x .c1-1r{padding-bottom:24px}.x .c1-1s{background-color:rgba(22, 22, 22, 0.25)}.x .c1-1t{z-index:auto}.x .c1-1y{flex-wrap:nowrap}.x .c1-1z{margin-right:0px}.x .c1-20{margin-left:0px}.x .c1-21{[object -object]:0px}.x .c1-23{width:30%}.x .c1-24{padding-right:0px}.x .c1-25{padding-left:0px}.x .c1-26{letter-spacing:inherit}.x .c1-27{text-transform:inherit}.x .c1-28{text-decoration:none}.x .c1-29{cursor:pointer}.x .c1-2a{justify-content:flex-start}.x .c1-2b{border-top:0px}.x .c1-2c{border-right:0px}.x .c1-2d{border-bottom:0px}.x .c1-2e{border-left:0px}.x .c1-2f{color:rgb(247, 247, 247)}.x .c1-2g{font-weight:inherit}.x .c1-2h:hover{color:rgb(255, 0, 0)}.x .c1-2i:active{color:rgb(255, 207, 207)}.x .c1-2j{color:inherit}.x .c1-2k{display:inline-block}.x .c1-2l{vertical-align:top}.x .c1-2m{padding-top:6px}.x .c1-2n{padding-right:6px}.x .c1-2o{padding-bottom:6px}.x .c1-2p{padding-left:6px}.x .c1-2q{width:70%}.x .c1-2r{text-align:left}.x .c1-2s{justify-content:flex-end}.x .c1-2t{padding-top:0px}.x .c1-2u{padding-bottom:0px}.x .c1-2w{min-width:100%}.x .c1-2x{flex-basis:auto}.x .c1-2y{padding-top:5px}.x .c1-2z{line-height:24px}.x .c1-30{-webkit-margin-before:0}.x .c1-31{-webkit-margin-after:0}.x .c1-32{-webkit-padding-start:0}.x .c1-33{color:rgb(164, 164, 164)}.x .c1-34{margin-bottom:none}.x .c1-35{list-style:none}.x .c1-36{padding-left:32px}.x .c1-37{white-space:nowrap}.x .c1-38{visibility:hidden}.x .c1-39:first-child{margin-left:0}.x .c1-3a:first-child{padding-left:0}.x .c1-3b{letter-spacing:0.071em}.x .c1-3c{text-transform:uppercase}.x .c1-3d{display:block}.x .c1-3e{margin-left:-6px}.x .c1-3f{margin-right:-6px}.x .c1-3g{margin-top:-6px}.x .c1-3h{margin-bottom:-6px}.x .c1-3i{font-size:14px}.x .c1-3j:hover{color:rgb(247, 247, 247)}.x .c1-3k:active{color:rgb(247, 247, 247)}.x .c1-3p{font-weight:700}.x .c1-3q{transition:transform .33s ease-in-out}.x .c1-3r{transform:rotate(0deg)}.x .c1-3s{vertical-align:middle}.x .c1-3t{border-radius:4px}.x .c1-3u{box-shadow:0 3px 6px 3px rgba(0,0,0,0.24)}.x .c1-3v{padding-top:16px}.x .c1-3w{padding-bottom:16px}.x .c1-3x{padding-left:16px}.x .c1-3y{padding-right:16px}.x .c1-3z{position:absolute}.x .c1-40{right:0px}.x .c1-41{top:32px}.x .c1-42{max-height:45vh}.x .c1-43{overflow-y:auto}.x .c1-44{z-index:1003}.x .c1-47:last-child{margin-bottom:0}.x .c1-48{margin-top:8px}.x .c1-49{margin-bottom:8px}.x .c1-4a{position:fixed}.x .c1-4b{top:0px}.x .c1-4c{height:100%}.x .c1-4d{z-index:10002}.x .c1-4e{-webkit-overflow-scrolling:touch}.x .c1-4f{transform:translateX(-249vw)}.x .c1-4g{overscroll-behavior:contain}.x .c1-4h{box-shadow:0 2px 6px 0px rgba(0,0,0,0.2)}.x .c1-4i{transition:transform .3s ease-in-out}.x .c1-4j{overflow:hidden}.x .c1-4k{flex-direction:column}.x .c1-4l{line-height:1.3em}.x .c1-4m{font-style:normal}.x .c1-4n{top:15px}.x .c1-4o{right:15px}.x .c1-4p{font-size:28px}.x .c1-4u{overflow-x:hidden}.x .c1-4v{overscroll-behavior:none}.x .c1-4w{border-color:rgba(76, 76, 76, 0.5)}.x .c1-4x{border-bottom-width:1px}.x .c1-4y{border-bottom-style:solid}.x .c1-4z:last-child{border-bottom:0}.x .c1-50{min-width:200px}.x .c1-51{justify-content:space-between}.x .c1-52{font-size:22px}.x .c1-53:hover{color:rgb(255, 168, 168)}.x .c1-54:active{color:rgb(255, 0, 0)}.x .c1-5a{font-style:italic}.x .c1-5b{line-height:1.4}.x .c1-5c{margin-bottom:40px}.x .c1-5d{font-size:32px}.x .c1-5e{font-family:'Old Standard TT', serif}.x .c1-5f{color:rgb(199, 0, 0)}.x .c1-5m{font-size:unset}.x .c1-5n{font-family:unset}.x .c1-5o{max-width:80%}.x .c1-5p{letter-spacing:unset}.x .c1-5q{text-transform:unset}.x .c1-5r:before{right:100%}.x .c1-5s:before{margin-right:24px}.x .c1-5t:before{content:""}.x .c1-5u:before{height:1px}.x .c1-5v:before{margin-top:-1px}.x .c1-5w:before{background:currentColor}.x .c1-5x:before{position:absolute}.x .c1-5y:before{top:.75em}.x .c1-5z:before{width:100vw}.x .c1-60:before{display:block}.x .c1-61:after{left:100%}.x .c1-62:after{margin-left:24px}.x .c1-63:after{content:""}.x .c1-64:after{height:1px}.x .c1-65:after{margin-top:-1px}.x .c1-66:after{background:currentColor}.x .c1-67:after{position:absolute}.x .c1-68:after{top:.75em}.x .c1-69:after{width:100vw}.x .c1-6a:after{display:block}.x .c1-6d{box-sizing:border-box}.x .c1-6e{flex-direction:row}.x .c1-6f{flex-wrap:wrap}.x .c1-6g{margin-right:-12px}.x .c1-6h{margin-bottom:-24px}.x .c1-6i{margin-left:-12px}.x .c1-6n{flex-grow:1}.x .c1-6o{flex-shrink:1}.x .c1-6p{flex-basis:100%}.x .c1-6q{padding-right:12px}.x .c1-6r{padding-left:12px}.x .c1-70 > *{max-width:100%}.x .c1-71 > :nth-child(n){margin-bottom:24px}.x .c1-72  > :last-child{margin-bottom:0 !important}.x .c1-73 > p > ol{text-align:left}.x .c1-74 > p > ol{display:block}.x .c1-75 > p > ol{padding-left:1.3em}.x .c1-76 > p > ol{margin-left:16px}.x .c1-77 > p > ol{margin-right:16px}.x .c1-78 > p > ol{margin-top:auto}.x .c1-79 > p > ol{margin-bottom:auto}.x .c1-7a > p > ul{text-align:left}.x .c1-7b > p > ul{display:block}.x .c1-7c > p > ul{padding-left:1.3em}.x .c1-7d > p > ul{margin-left:16px}.x .c1-7e > p > ul{margin-right:16px}.x .c1-7f > p > ul{margin-top:auto}.x .c1-7g > p > ul{margin-bottom:auto}.x .c1-7h > ul{text-align:left}.x .c1-7i > ul{display:block}.x .c1-7j > ul{padding-left:1.3em}.x .c1-7k > ul{margin-left:16px}.x .c1-7l > ul{margin-right:16px}.x .c1-7m > ul{margin-top:auto}.x .c1-7n > ul{margin-bottom:auto}.x .c1-7o > ol{text-align:left}.x .c1-7p > ol{display:block}.x .c1-7q > ol{padding-left:1.3em}.x .c1-7r > ol{margin-left:16px}.x .c1-7s > ol{margin-right:16px}.x .c1-7t > ol{margin-top:auto}.x .c1-7u > ol{margin-bottom:auto}.x .c1-7v{color:rgb(94, 94, 94)}.x .c1-7w{font-size:inherit !important}.x .c1-7x{line-height:inherit}.x .c1-7y{text-decoration:line-through}.x .c1-7z{text-decoration:underline}.x .c1-80{order:}.x .c1-81 > :nth-child(n){margin-bottom:0px}.x .c1-83{line-height:1.25}.x .c1-84{margin-bottom:24px}.x .c1-85{width:inherit}.x .c1-86{color:rgb(27, 27, 27)}.x .c1-8a{background-color:rgb(246, 246, 246)}.x .c1-8b{padding-left:none}.x .c1-8c{padding-right:none}.x .c1-8d{padding-top:none}.x .c1-8e{row-gap:0px}.x .c1-8f{column-gap:0px}.x .c1-8g{display:inline}.x .c1-8h [data-typography]{color:inherit}.x .c1-8i:hover{color:rgb(134, 0, 0)}.x .c1-8j:active{color:rgb(93, 0, 0)}.x .c1-8k{color:rgb(21, 21, 21)}.x .c1-8l{color:rgb(82, 82, 82)}.x .c1-8m{border-color:rgb(218, 218, 218)}.x .c1-8n{border-bottom-width:1px}.x .c1-8o{border-style:solid}.x .c1-8p{width:50px}.x .c1-8q{right:24px}.x .c1-8r{bottom:24px}.x .c1-8s{z-index:9999}.x .c1-8t{width:65px}.x .c1-8u{height:65px}.x .c1-8w{border-radius:50%}.x .c1-8x{box-shadow:0px 3px 18px rgba(0, 0, 0, 0.25)}.x .c1-8y{transform:translateZ(0)}
  </style>
  <style data-glamor="cxs-xs-sheet">
   @media (max-width: 767px){.x .c1-m{padding-top:40px}}@media (max-width: 767px){.x .c1-n{padding-bottom:40px}}@media (max-width: 767px){.x .c1-6b > :nth-child(n){margin-bottom:24px}}@media (max-width: 767px){.x .c1-6c  > :last-child{margin-bottom:0 !important}}
  </style>
  <style data-glamor="cxs-sm-sheet">
   @media (min-width: 768px){.x .c1-d{font-size:16px}}@media (min-width: 768px){.x .c1-14{width:100%}}@media (min-width: 768px){.x .c1-3l{font-size:14px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-46{right:0px}}@media (min-width: 768px){.x .c1-4q{font-size:30px}}@media (min-width: 768px){.x .c1-55{font-size:22px}}@media (min-width: 768px){.x .c1-5g{font-size:38px}}@media (min-width: 768px){.x .c1-6j{margin-top:0}}@media (min-width: 768px){.x .c1-6k{margin-right:-24px}}@media (min-width: 768px){.x .c1-6l{margin-bottom:-48px}}@media (min-width: 768px){.x .c1-6m{margin-left:-24px}}@media (min-width: 768px){.x .c1-6s{flex-basis:50%}}@media (min-width: 768px){.x .c1-6t{max-width:50%}}@media (min-width: 768px){.x .c1-6u{padding-top:0}}@media (min-width: 768px){.x .c1-6v{padding-right:24px}}@media (min-width: 768px){.x .c1-6w{padding-bottom:48px}}@media (min-width: 768px){.x .c1-6x{padding-left:24px}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-82{display:block}}@media (min-width: 768px) and (max-width: 1023px){.x .c1-87{position:relative}}@media (min-width: 768px){.x .c1-88{position:absolute}}
  </style>
  <style data-glamor="cxs-md-sheet">
   @media (min-width: 1024px){.x .c1-e{font-size:16px}}@media (min-width: 1024px){.x .c1-p{display:block}}@media (min-width: 1024px){.x .c1-15{width:984px}}@media (min-width: 1024px){.x .c1-1b{padding-right:4px}}@media (min-width: 1024px){.x .c1-1l{padding-left:4px}}@media (min-width: 1024px){.x .c1-1u{padding-top:16px}}@media (min-width: 1024px){.x .c1-1v{padding-bottom:16px}}@media (min-width: 1024px){.x .c1-1w{padding-left:24px}}@media (min-width: 1024px){.x .c1-1x{padding-right:24px}}@media (min-width: 1024px){.x .c1-22{display:none}}@media (min-width: 1024px){.x .c1-2v{display:flex}}@media (min-width: 1024px){.x .c1-3m{font-size:14px}}@media (min-width: 1024px) and (max-width: 1279px){.x .c1-45{right:0px}}@media (min-width: 1024px){.x .c1-4r{font-size:30px}}@media (min-width: 1024px){.x .c1-56{min-width:300px}}@media (min-width: 1024px){.x .c1-57{font-size:22px}}@media (min-width: 1024px){.x .c1-5h{text-align:center}}@media (min-width: 1024px){.x .c1-5i{margin-left:auto}}@media (min-width: 1024px){.x .c1-5j{font-size:38px}}@media (min-width: 1024px){.x .c1-6y{flex-basis:33.33333333333333%}}@media (min-width: 1024px){.x .c1-6z{max-width:33.33333333333333%}}@media (min-width: 1024px){.x .c1-89{position:relative}}@media (min-width: 1024px){.x .c1-8v{z-index:9999}}
  </style>
  <style data-glamor="cxs-lg-sheet">
   @media (min-width: 1280px){.x .c1-f{font-size:16px}}@media (min-width: 1280px){.x .c1-16{width:1160px}}@media (min-width: 1280px){.x .c1-3n{font-size:14px}}@media (min-width: 1280px){.x .c1-4s{font-size:32px}}@media (min-width: 1280px){.x .c1-58{font-size:22px}}@media (min-width: 1280px){.x .c1-5k{font-size:44px}}
  </style>
  <style data-glamor="cxs-xl-sheet">
   @media (min-width: 1536px){.x .c1-g{font-size:18px}}@media (min-width: 1536px){.x .c1-17{width:1280px}}@media (min-width: 1536px){.x .c1-3o{font-size:16px}}@media (min-width: 1536px){.x .c1-4t{font-size:36px}}@media (min-width: 1536px){.x .c1-59{font-size:24px}}@media (min-width: 1536px){.x .c1-5l{font-size:48px}}
  </style>
  <style>
   .page-inner { background-color: rgb(246, 246, 246); min-height: 100vh; }
  </style>
  <style>
   .grecaptcha-badge { visibility: hidden; }
  </style>
 </head>
 <body class="x x-fonts-old-standard-tt">
  <div class="layout layout-layout layout-layout-layout-13 locale-en-US lang-en" id="layout-0244-f-184-0770-4894-8834-e-8133-d-80-ce-09">
   <div class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-4 c1-5 c1-6 c1-7 c1-8 c1-9 c1-a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Page" id="page-52777">
    <div class="x-el x-el-div page-inner c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Block">
     <div class="widget widget-header widget-header-header-9" id="883801b6-021b-4104-a054-37b0f4291917">
      <div class="x-el x-el-div x-el x-el c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-h c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g" data-aid="HEADER_WIDGET" data-ux="Header" id="n-52778" role="main">
       <div>
        <section class="x-el x-el-section c1-1 c1-2 c1-h c1-i c1-j c1-k c1-l c1-b c1-c c1-m c1-n c1-d c1-e c1-f c1-g" data-aid="HEADER_SECTION" data-ux="Section">
         <div class="x-el x-el-div c1-1 c1-2 c1-o c1-b c1-c c1-d c1-p c1-e c1-f c1-g" data-ux="Block">
         </div>
         <div class="x-el x-el-div c1-1 c1-2 c1-q c1-r c1-s c1-t c1-u c1-v c1-b c1-c c1-d c1-e c1-f c1-g" data-aid="BANNER_RENDERED" data-ux="PromoBannerSeasonal" role="banner">
          <div class="x-el x-el-div c1-1 c1-2 c1-w c1-x c1-y c1-z c1-10 c1-11 c1-12 c1-13 c1-b c1-c c1-14 c1-d c1-15 c1-e c1-16 c1-f c1-17 c1-g" data-ux="PromoBannerContainer">
           <div class="x-el x-el-div c1-1 c1-2 c1-1c c1-1d c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Block">
            <p class="x-el x-el-p c1-1 c1-2 c1-1e c1-1f c1-1g c1-1h c1-1i c1-1j c1-b c1-18 c1-c c1-1k c1-d c1-e c1-f c1-g" data-aid="BANNER_TEXT_RENDERED" data-style-fixed="true" data-typography="BodyAlpha" data-ux="PromoBannerText">
             First time guest receive $5 off any service
            </p>
           </div>
          </div>
         </div>
         <div class="x-el x-el-div c1-1 c1-2 c1-1m c1-4 c1-h c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Block">
          <div id="header_stickynav-anchor52780">
          </div>
          <div class="x-el x-el-div c1-1 c1-2 c1-1n c1-1o c1-b c1-c c1-d c1-e c1-f c1-g" data-stickynav-wrapper="true" data-ux="Block">
           <div class="x-el x-el-div c1-1 c1-2 c1-1p c1-h c1-b c1-c c1-d c1-e c1-f c1-g" data-stickynav="true" data-ux="Block" id="header_stickynav52779" style>
            <nav class="x-el x-el-nav c1-1 c1-2 c1-t c1-1q c1-1r c1-y c1-z c1-1s c1-1t c1-b c1-c c1-d c1-1u c1-1v c1-1w c1-1x c1-e c1-f c1-g" data-ux="Block">
             <div class="x-el x-el-div c1-1 c1-2 c1-12 c1-1y c1-4 c1-11 c1-1h c1-1z c1-1i c1-20 c1-21 c1-b c1-c c1-d c1-22 c1-e c1-f c1-g" data-ux="Block">
              <div class="x-el x-el-div c1-1 c1-2 c1-23 c1-24 c1-25 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Block">
               <div class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Element" id="bs-1">
                <a aria-expanded="false" aria-haspopup="menu" aria-label="Hamburger Site Navigation Icon" class="x-el x-el-a c1-26 c1-27 c1-28 c1-1e c1-1f c1-11 c1-29 c1-12 c1-2a c1-2b c1-2c c1-2d c1-2e c1-2f c1-b c1-c c1-2g c1-2h c1-2i c1-d c1-22 c1-e c1-f c1-g" data-aid="HAMBURGER_MENU_LINK" data-edit-interactive="true" data-tccl="ux2.HEADER.header9.Section.Default.Link.Dropdown.52782.click,click" data-toggle-ignore="true" data-typography="LinkAlpha" data-ux="LinkDropdown" icon="hamburger" id="52781" rel="" role="button" toggleid="n-52778-navId-mobile">
                </a>
               </div>
              </div>
              <div class="x-el x-el-div c1-1 c1-2 c1-11 c1-2q c1-2r c1-2a c1-1f c1-1c c1-1d c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Block">
              </div>
              <div class="x-el x-el-div c1-1 c1-2 c1-23 c1-24 c1-25 c1-11 c1-2s c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Block">
              </div>
             </div>
             <div class="x-el x-el-div c1-1 c1-2 c1-w c1-x c1-y c1-z c1-10 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Container">
              <div class="x-el x-el-div c1-1 c1-2 c1-o c1-2a c1-12 c1-1y c1-2t c1-2u c1-b c1-c c1-d c1-2v c1-e c1-f c1-g" data-ux="Block" id="navBarId-52784">
               <div class="x-el x-el-div c1-1 c1-2 c1-11 c1-2w c1-12 c1-2x c1-13 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Block">
                <div class="x-el x-el-div c1-1 c1-2 c1-11 c1-t c1-2y c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Block">
                 <nav class="x-el x-el-nav c1-1 c1-2 c1-10 c1-2z c1-b c1-c c1-d c1-e c1-f c1-g" data-aid="HEADER_NAV_RENDERED" data-ux="Nav" role="navigation">
                  <ul class="x-el x-el-ul c1-1 c1-2 c1-1h c1-1i c1-20 c1-1z c1-30 c1-31 c1-32 c1-t c1-2t c1-24 c1-2u c1-25 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="List" id="nav-52785" style="white-space: nowrap;">
                   <li class="x-el x-el-li nav-item c1-1 c1-2 c1-33 c1-20 c1-34 c1-2k c1-35 c1-2l c1-36 c1-37 c1-t c1-38 c1-b c1-c c1-39 c1-3a c1-d c1-e c1-f c1-g visible" data-ux="ListItemInline" style="visibility: visible;">
                    <a aria-haspopup="menu" class="x-el x-el-a c1-3b c1-3c c1-28 c1-1e c1-1f c1-3d c1-29 c1-3e c1-3f c1-3g c1-3h c1-2p c1-2n c1-2m c1-2o c1-b c1-2f c1-3i c1-1k c1-3j c1-3k c1-3l c1-3m c1-3n c1-3o" data-edit-interactive="true" data-page="b9679503-fb65-47b7-a8cc-ac8329c7f6ab" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.52787.click,click" data-typography="NavAlpha" data-ux="NavLink" rel="" role="link" target>
                     Home
                    </a>
                   </li>
                   <li class="x-el x-el-li nav-item c1-1 c1-2 c1-33 c1-20 c1-34 c1-2k c1-35 c1-2l c1-36 c1-37 c1-t c1-38 c1-b c1-c c1-39 c1-3a c1-d c1-e c1-f c1-g visible" data-ux="ListItemInline" style="visibility: visible;">
                    <a aria-haspopup="false" class="x-el x-el-a c1-3b c1-3c c1-28 c1-1e c1-1f c1-3d c1-29 c1-3e c1-3f c1-3g c1-3h c1-2p c1-2n c1-2m c1-2o c1-b c1-2f c1-3i c1-1k c1-3j c1-3k c1-3l c1-3m c1-3n c1-3o" data-edit-interactive="true" data-page="2dbd1a09-9606-432d-837e-08bb1b034bcc" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.52788.click,click" data-typography="NavAlpha" data-ux="NavLink" rel="" role="link" target>
                     Menu
                    </a>
                   </li>
                   <li class="x-el x-el-li nav-item c1-1 c1-2 c1-33 c1-20 c1-34 c1-2k c1-35 c1-2l c1-36 c1-37 c1-t c1-38 c1-b c1-c c1-39 c1-3a c1-d c1-e c1-f c1-g visible" data-ux="ListItemInline" style="visibility: visible;">
                    <a aria-haspopup="false" class="x-el x-el-a c1-3b c1-3c c1-28 c1-1e c1-1f c1-3d c1-29 c1-3e c1-3f c1-3g c1-3h c1-2p c1-2n c1-2m c1-2o c1-b c1-2f c1-3i c1-1k c1-3j c1-3k c1-3l c1-3m c1-3n c1-3o" data-edit-interactive="true" data-page="03ee1d20-717a-4439-972c-cf3f97c7104c" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.52789.click,click" data-typography="NavAlpha" data-ux="NavLink" rel="" role="link" target>
                     Client Registration
                    </a>
                   </li>
                   <li class="x-el x-el-li nav-item c1-1 c1-2 c1-33 c1-20 c1-34 c1-2k c1-35 c1-2l c1-36 c1-37 c1-t c1-38 c1-b c1-c c1-39 c1-3a c1-d c1-e c1-f c1-g visible" data-ux="ListItemInline" style="visibility: visible;">
                    <a aria-haspopup="false" class="x-el x-el-a c1-3b c1-3c c1-28 c1-1e c1-1f c1-3d c1-29 c1-3e c1-3f c1-3g c1-3h c1-2p c1-2n c1-2m c1-2o c1-b c1-2f c1-3i c1-1k c1-3j c1-3k c1-3l c1-3m c1-3n c1-3o" data-edit-interactive="true" data-page="7a282eb9-1d57-42b1-8f0b-c625237adb4b" data-tccl="ux2.HEADER.header9.Nav.Default.Link.Default.52790.click,click" data-typography="NavAlpha" data-ux="NavLink" rel="" role="link" target>
                     Appointments
                    </a>
                   </li>
                  </ul>
                 </nav>
                </div>
               </div>
              </div>
             </div>
            </nav>
           </div>
          </div>
          <div class="x-el x-el-div c1-1 c1-2 c1-h c1-4a c1-4b c1-4 c1-4c c1-43 c1-4d c1-i c1-4e c1-4f c1-4g c1-4h c1-4i c1-4j c1-11 c1-4k c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="NavigationDrawer" id="n-52778-navId-mobile" role="navigation">
           <div class="x-el x-el-div c1-1 c1-2 c1-y c1-z c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Block">
           </div>
           <div class="x-el x-el-div c1-1 c1-2 c1-w c1-x c1-y c1-z c1-10 c1-43 c1-4u c1-4 c1-4v c1-b c1-c c1-14 c1-d c1-15 c1-e c1-16 c1-f c1-17 c1-g" data-ux="Container" id="n-52778-navContainerId-mobile">
            <div class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Block" id="n-52778-navLinksContentId-mobile">
             <ul class="x-el x-el-ul c1-1 c1-2 c1-1h c1-1i c1-20 c1-1z c1-30 c1-31 c1-32 c1-2r c1-2t c1-2u c1-25 c1-24 c1-1e c1-1f c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="NavigationDrawerList" id="n-52778-navListId-mobile" role="menu">
              <li class="x-el x-el-li c1-1 c1-2 c1-33 c1-1i c1-3d c1-4w c1-4x c1-4y c1-b c1-c c1-47 c1-4z c1-d c1-e c1-f c1-g" data-ux="NavigationDrawerListItem" role="menuitem">
               <a aria-haspopup="menu" class="x-el x-el-a c1-1 c1-2 c1-28 c1-1e c1-1f c1-11 c1-29 c1-3v c1-3w c1-y c1-z c1-12 c1-50 c1-51 c1-b c1-2f c1-52 c1-1k c1-53 c1-54 c1-55 c1-56 c1-57 c1-58 c1-59" data-close="true" data-edit-interactive="true" data-page="b9679503-fb65-47b7-a8cc-ac8329c7f6ab" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.52803.click,click" data-typography="NavBeta" data-ux="NavigationDrawerLink" rel="" role="link" target>
                <span>
                 Home
                </span>
               </a>
              </li>
              <li class="x-el x-el-li c1-1 c1-2 c1-33 c1-1i c1-3d c1-4w c1-4x c1-4y c1-b c1-c c1-47 c1-4z c1-d c1-e c1-f c1-g" data-ux="NavigationDrawerListItem" role="menuitem">
               <a aria-haspopup="false" class="x-el x-el-a c1-1 c1-2 c1-28 c1-1e c1-1f c1-11 c1-29 c1-3v c1-3w c1-y c1-z c1-12 c1-50 c1-51 c1-b c1-2f c1-52 c1-1k c1-53 c1-54 c1-55 c1-56 c1-57 c1-58 c1-59" data-close="true" data-edit-interactive="true" data-page="2dbd1a09-9606-432d-837e-08bb1b034bcc" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.52804.click,click" data-typography="NavBeta" data-ux="NavigationDrawerLink" rel="" role="link" target>
                <span>
                 Menu
                </span>
               </a>
              </li>
              <li class="x-el x-el-li c1-1 c1-2 c1-33 c1-1i c1-3d c1-4w c1-4x c1-4y c1-b c1-c c1-47 c1-4z c1-d c1-e c1-f c1-g" data-ux="NavigationDrawerListItem" role="menuitem">
               <a aria-haspopup="false" class="x-el x-el-a c1-1 c1-2 c1-28 c1-1e c1-1f c1-11 c1-29 c1-3v c1-3w c1-y c1-z c1-12 c1-50 c1-51 c1-b c1-2f c1-52 c1-1k c1-53 c1-54 c1-55 c1-56 c1-57 c1-58 c1-59" data-close="true" data-edit-interactive="true" data-page="03ee1d20-717a-4439-972c-cf3f97c7104c" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.52805.click,click" data-typography="NavBeta" data-ux="NavigationDrawerLink" rel="" role="link" target>
                <span>
                 Client Registration
                </span>
               </a>
              </li>
              <li class="x-el x-el-li c1-1 c1-2 c1-33 c1-1i c1-3d c1-4w c1-4x c1-4y c1-b c1-c c1-47 c1-4z c1-d c1-e c1-f c1-g" data-ux="NavigationDrawerListItem" role="menuitem">
               <a aria-haspopup="false" class="x-el x-el-a c1-1 c1-2 c1-28 c1-1e c1-1f c1-11 c1-29 c1-3v c1-3w c1-y c1-z c1-12 c1-50 c1-51 c1-b c1-2f c1-52 c1-1k c1-53 c1-54 c1-55 c1-56 c1-57 c1-58 c1-59" data-close="true" data-edit-interactive="true" data-page="7a282eb9-1d57-42b1-8f0b-c625237adb4b" data-tccl="ux2.HEADER.header9.NavigationDrawer.Default.Link.Default.52806.click,click" data-typography="NavBeta" data-ux="NavigationDrawerLink" rel="" role="link" target>
                <span>
                 Appointments
                </span>
               </a>
              </li>
             </ul>
             <div class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-3d c1-d c1-22 c1-e c1-f c1-g" data-ux="Block">
             </div>
            </div>
           </div>
          </div>
         </div>
        </section>
       </div>
      </div>
     </div>
     <div class="widget widget-content widget-content-content-3" id="ea2fd380-1e5e-4014-a408-1bd064825452">
      <div class="x-el x-el-div x-el c1-1 c1-2 c1-3 c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Widget" id="ea2fd380-1e5e-4014-a408-1bd064825452" role="region">
       <div>
        <section class="x-el x-el-section c1-1 c1-2 c1-3 c1-i c1-j c1-b c1-c c1-m c1-n c1-d c1-e c1-f c1-g" data-ux="Section">
         <div class="x-el x-el-div c1-1 c1-2 c1-w c1-x c1-y c1-z c1-10 c1-b c1-c c1-14 c1-d c1-15 c1-e c1-16 c1-f c1-17 c1-g" data-ux="Container">
          <h1 aria-level="1" class="x-el x-el-h1 c1-1 c1-2 c1-5a c1-1e c1-1f c1-5b c1-w c1-1z c1-1h c1-5c c1-1j c1-5d c1-5e c1-5f c1-1k c1-5g c1-5h c1-5i c1-5j c1-5k c1-5l" data-aid="CONTENT_SECTION_TITLE_RENDERED" data-order="0" data-promoted-from="2" data-typography="HeadingBeta" data-ux="SectionHeading" role="heading">
           <div class="x-el x-el-div c1-5a c1-w c1-x c1-y c1-z c1-10 c1-3d c1-4j c1-5e c1-5d c1-14 c1-5g c1-15 c1-5j c1-16 c1-5k c1-17 c1-5l" data-ux="Container">
            <span class="x-el x-el-span c1-5m c1-2j c1-5n c1-2k c1-t c1-5o c1-5p c1-5q c1-5r c1-5s c1-5t c1-5u c1-5v c1-5w c1-5x c1-5y c1-5z c1-60 c1-61 c1-62 c1-63 c1-64 c1-65 c1-66 c1-67 c1-68 c1-69 c1-6a" data-ux="Element">
             A quick note about waxing
            </span>
           </div>
          </h1>
          <div class="x-el x-el-div x-el c1-1 c1-2 c1-1j c1-13 c1-b c1-c c1-6b c1-6c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-11 c1-6d c1-6e c1-6f c1-1h c1-6g c1-6h c1-6i c1-b c1-c c1-6j c1-6k c1-6l c1-6m c1-d c1-e c1-f c1-g" data-ux="ContentCards">
           <div class="x-el x-el-div c1-1 c1-2 c1-6d c1-6n c1-6o c1-6p c1-10 c1-2t c1-6q c1-1r c1-6r c1-11 c1-b c1-c c1-6s c1-6t c1-6u c1-6v c1-6w c1-6x c1-d c1-6y c1-6z c1-e c1-f c1-g" data-ux="GridCell">
            <div class="x-el x-el-div x-el c1-1 c1-2 c1-t c1-11 c1-4k c1-12 c1-1j c1-2a c1-4 c1-70 c1-71 c1-72 c1-6n c1-b c1-c c1-6b c1-6c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="ContentCard">
             <div class="x-el c1-1 c1-2 c1-1e c1-1f c1-1g c1-1h c1-1i c1-73 c1-74 c1-75 c1-76 c1-77 c1-78 c1-79 c1-7a c1-7b c1-7c c1-7d c1-7e c1-7f c1-7g c1-7h c1-7i c1-7j c1-7k c1-7l c1-7m c1-7n c1-7o c1-7p c1-7q c1-7r c1-7s c1-7t c1-7u c1-4 c1-6n c1-b c1-7v c1-c c1-1k c1-d c1-e c1-f c1-g x-rt" data-aid="CONTENT_DESCRIPTION1_RENDERED" data-typography="BodyAlpha" data-ux="ContentCardText">
              <p style="margin:0">
               <span>
                &nbsp;It hurts to wax, especially the first time.
               </span>
              </p>
              <p style="margin:0">
               <span>
                If you wax regularly every 4 weeks you will have less hair to remove.&nbsp;
               </span>
              </p>
              <p style="margin:0">
               <span>
                You should allow 3 weeks of growth from your last shave and 4 weeks from your last wax.
               </span>
              </p>
             </div>
            </div>
           </div>
           <div class="x-el x-el-div c1-1 c1-2 c1-6d c1-6n c1-6o c1-6p c1-10 c1-2t c1-6q c1-1r c1-6r c1-11 c1-b c1-c c1-6s c1-6t c1-6u c1-6v c1-6w c1-6x c1-d c1-6y c1-6z c1-e c1-f c1-g" data-ux="GridCell">
            <div class="x-el x-el-div x-el c1-1 c1-2 c1-t c1-11 c1-4k c1-12 c1-1j c1-2a c1-4 c1-70 c1-71 c1-72 c1-6n c1-b c1-c c1-6b c1-6c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="ContentCard">
             <div class="x-el c1-1 c1-2 c1-1e c1-1f c1-1g c1-1h c1-1i c1-73 c1-74 c1-75 c1-76 c1-77 c1-78 c1-79 c1-7a c1-7b c1-7c c1-7d c1-7e c1-7f c1-7g c1-7h c1-7i c1-7j c1-7k c1-7l c1-7m c1-7n c1-7o c1-7p c1-7q c1-7r c1-7s c1-7t c1-7u c1-4 c1-6n c1-b c1-7v c1-c c1-1k c1-d c1-e c1-f c1-g x-rt" data-aid="CONTENT_DESCRIPTION2_RENDERED" data-typography="BodyAlpha" data-ux="ContentCardText">
              <p style="margin:0">
               <span>
                Hair will not grow back thicker, darker, stronger.
               </span>
              </p>
              <p style="margin:0">
               <span>
                There would be no bald men!
               </span>
              </p>
             </div>
            </div>
           </div>
           <div class="x-el x-el-div c1-1 c1-2 c1-6d c1-6n c1-6o c1-6p c1-10 c1-2t c1-6q c1-1r c1-6r c1-11 c1-b c1-c c1-6s c1-6t c1-6u c1-6v c1-6w c1-6x c1-d c1-6y c1-6z c1-e c1-f c1-g" data-ux="GridCell">
            <div class="x-el x-el-div x-el c1-1 c1-2 c1-t c1-11 c1-4k c1-12 c1-1j c1-2a c1-4 c1-70 c1-71 c1-72 c1-6n c1-b c1-c c1-6b c1-6c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="ContentCard">
             <div class="x-el x-el-div c1-1 c1-2 c1-80 c1-4 c1-t c1-81 c1-o c1-b c1-c c1-82 c1-d c1-e c1-f c1-g" data-ux="Block">
              <h4 aria-level="4" class="x-el x-el-h4 c1-1 c1-2 c1-1e c1-1f c1-83 c1-20 c1-1z c1-1h c1-84 c1-38 c1-3z c1-85 c1-4b c1-b c1-86 c1-52 c1-1k c1-87 c1-55 c1-57 c1-58 c1-59" data-typography="HeadingDelta" data-ux="ContentCardHeading" role="heading">
               Home Care Is Key
              </h4>
             </div>
             <div class="x-el c1-1 c1-2 c1-1e c1-1f c1-1g c1-1h c1-1i c1-73 c1-74 c1-75 c1-76 c1-77 c1-78 c1-79 c1-7a c1-7b c1-7c c1-7d c1-7e c1-7f c1-7g c1-7h c1-7i c1-7j c1-7k c1-7l c1-7m c1-7n c1-7o c1-7p c1-7q c1-7r c1-7s c1-7t c1-7u c1-4 c1-6n c1-b c1-7v c1-c c1-1k c1-d c1-e c1-f c1-g x-rt" data-aid="CONTENT_DESCRIPTION3_RENDERED" data-typography="BodyAlpha" data-ux="ContentCardText">
              <p style="margin:0">
               <span>
                Normal waxing responses are bumps, redness, pimples, itching, breakouts, outbreaks, and stubble.
               </span>
              </p>
              <p style="margin:0">
               <span>
                Break outs are common, especially on the face, back, chest and bikini.
               </span>
              </p>
              <p style="margin:0">
               <span>
                To prevent or minimize break outs, use
                <u class="x-el x-el-span c1-26 c1-27 c1-b c1-7w c1-2j c1-2g c1-7x c1-7z">
                 Clear It
                </u>
                daily on the waxed area for 3-5 days or as long as blemishes are present.
               </span>
              </p>
             </div>
            </div>
           </div>
           <div class="x-el x-el-div c1-1 c1-2 c1-6d c1-6n c1-6o c1-6p c1-10 c1-2t c1-6q c1-1r c1-6r c1-11 c1-b c1-c c1-6s c1-6t c1-6u c1-6v c1-6w c1-6x c1-d c1-6y c1-6z c1-e c1-f c1-g" data-ux="GridCell">
            <div class="x-el x-el-div x-el c1-1 c1-2 c1-t c1-11 c1-4k c1-12 c1-1j c1-2a c1-4 c1-70 c1-71 c1-72 c1-6n c1-b c1-c c1-6b c1-6c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="ContentCard">
             <div class="x-el x-el-div c1-1 c1-2 c1-4 c1-t c1-81 c1-b c1-c c1-82 c1-d c1-p c1-e c1-f c1-g" data-ux="Block">
              <h4 aria-level="4" class="x-el x-el-h4 c1-1 c1-2 c1-1e c1-1f c1-83 c1-20 c1-1z c1-1h c1-1i c1-85 c1-4b c1-b c1-86 c1-52 c1-1k c1-88 c1-55 c1-57 c1-58 c1-59" data-aid="CONTENT_HEADLINE5_RENDERED" data-typography="HeadingDelta" data-ux="ContentCardHeading" role="heading">
               Home Care Is Key
              </h4>
              <h4 aria-level="4" class="x-el x-el-h4 c1-1 c1-2 c1-1e c1-1f c1-83 c1-20 c1-1z c1-1h c1-84 c1-38 c1-3z c1-85 c1-4b c1-b c1-86 c1-52 c1-1k c1-55 c1-89 c1-57 c1-58 c1-59" data-typography="HeadingDelta" data-ux="ContentCardHeading" role="heading">
               Home Care Is Key
              </h4>
              <h4 aria-level="4" class="x-el x-el-h4 c1-1 c1-2 c1-1e c1-1f c1-83 c1-20 c1-1z c1-1h c1-84 c1-38 c1-3z c1-85 c1-4b c1-b c1-86 c1-52 c1-1k c1-87 c1-55 c1-57 c1-58 c1-59" data-typography="HeadingDelta" data-ux="ContentCardHeading" role="heading">
               Home Care Is Key
              </h4>
             </div>
             <div class="x-el c1-1 c1-2 c1-1e c1-1f c1-1g c1-1h c1-1i c1-73 c1-74 c1-75 c1-76 c1-77 c1-78 c1-79 c1-7a c1-7b c1-7c c1-7d c1-7e c1-7f c1-7g c1-7h c1-7i c1-7j c1-7k c1-7l c1-7m c1-7n c1-7o c1-7p c1-7q c1-7r c1-7s c1-7t c1-7u c1-4 c1-6n c1-b c1-7v c1-c c1-1k c1-d c1-e c1-f c1-g x-rt" data-aid="CONTENT_DESCRIPTION5_RENDERED" data-typography="BodyAlpha" data-ux="ContentCardText">
              <p style="margin:0">
               <span>
                Use
                <u class="x-el x-el-span c1-26 c1-27 c1-b c1-7w c1-2j c1-2g c1-7x c1-7z">
                 Green Clean Bath Gel
                </u>
                and
                <u class="x-el x-el-span c1-26 c1-27 c1-b c1-7w c1-2j c1-2g c1-7x c1-7z">
                 Pumice Gloves
                </u>
                daily to gently sluff away dead skin, alleviate itching and allow your hair to grow freely from the neck down.
               </span>
              </p>
             </div>
            </div>
           </div>
           <div class="x-el x-el-div c1-1 c1-2 c1-6d c1-6n c1-6o c1-6p c1-10 c1-2t c1-6q c1-1r c1-6r c1-11 c1-b c1-c c1-6s c1-6t c1-6u c1-6v c1-6w c1-6x c1-d c1-6y c1-6z c1-e c1-f c1-g" data-ux="GridCell">
            <div class="x-el x-el-div x-el c1-1 c1-2 c1-t c1-11 c1-4k c1-12 c1-1j c1-2a c1-4 c1-70 c1-71 c1-72 c1-6n c1-b c1-c c1-6b c1-6c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="ContentCard">
             <div class="x-el x-el-div c1-1 c1-2 c1-4 c1-t c1-81 c1-b c1-c c1-82 c1-d c1-p c1-e c1-f c1-g" data-ux="Block">
              <h4 aria-level="4" class="x-el x-el-h4 c1-1 c1-2 c1-1e c1-1f c1-83 c1-20 c1-1z c1-1h c1-1i c1-85 c1-4b c1-b c1-86 c1-52 c1-1k c1-88 c1-55 c1-57 c1-58 c1-59" data-aid="CONTENT_HEADLINE6_RENDERED" data-typography="HeadingDelta" data-ux="ContentCardHeading" role="heading">
               DO NOT!!
              </h4>
              <h4 aria-level="4" class="x-el x-el-h4 c1-1 c1-2 c1-1e c1-1f c1-83 c1-20 c1-1z c1-1h c1-84 c1-38 c1-3z c1-85 c1-4b c1-b c1-86 c1-52 c1-1k c1-55 c1-89 c1-57 c1-58 c1-59" data-typography="HeadingDelta" data-ux="ContentCardHeading" role="heading">
               Home Care Is Key
              </h4>
              <h4 aria-level="4" class="x-el x-el-h4 c1-1 c1-2 c1-1e c1-1f c1-83 c1-20 c1-1z c1-1h c1-84 c1-38 c1-3z c1-85 c1-4b c1-b c1-86 c1-52 c1-1k c1-87 c1-55 c1-57 c1-58 c1-59" data-typography="HeadingDelta" data-ux="ContentCardHeading" role="heading">
               DO NOT!!
              </h4>
             </div>
             <div class="x-el c1-1 c1-2 c1-1e c1-1f c1-1g c1-1h c1-1i c1-73 c1-74 c1-75 c1-76 c1-77 c1-78 c1-79 c1-7a c1-7b c1-7c c1-7d c1-7e c1-7f c1-7g c1-7h c1-7i c1-7j c1-7k c1-7l c1-7m c1-7n c1-7o c1-7p c1-7q c1-7r c1-7s c1-7t c1-7u c1-4 c1-6n c1-b c1-7v c1-c c1-1k c1-d c1-e c1-f c1-g x-rt" data-aid="CONTENT_DESCRIPTION6_RENDERED" data-typography="BodyAlpha" data-ux="ContentCardText">
              <p style="margin:0">
               <span>
                TWEEZE, SHAVE OR USE A DEPLATORY CREAM BETWEEN WAXING SERVICES.
               </span>
              </p>
              <p style="margin:0">
               <span>
                TAKE A HOT SHOWER BEFORE A WAXING SERVICE.
               </span>
              </p>
              <p style="margin:0">
               <span>
                DRINK ALCOHOL OR CAFFEINE THE DAY OF A WAXING SERVICE.
               </span>
              </p>
             </div>
            </div>
           </div>
          </div>
         </div>
        </section>
       </div>
      </div>
     </div>
     <div class="widget widget-footer widget-footer-footer-1" id="9d17df08-8364-4d03-b2b6-cd9dfe89c05c">
      <div class="x-el x-el-div x-el c1-1 c1-2 c1-8a c1-b c1-c c1-d c1-e c1-f c1-g c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Widget" id="9d17df08-8364-4d03-b2b6-cd9dfe89c05c" role="contentinfo">
       <div>
        <section class="x-el x-el-section c1-1 c1-2 c1-8a c1-i c1-j c1-b c1-c c1-m c1-n c1-d c1-e c1-f c1-g" data-ux="Section">
         <div class="x-el x-el-div c1-1 c1-2 c1-w c1-x c1-y c1-z c1-10 c1-b c1-c c1-14 c1-d c1-15 c1-e c1-16 c1-f c1-17 c1-g" data-ux="Container">
          <div class="x-el x-el-div c1-1 c1-2 c1-1j c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Layout">
           <div class="x-el x-el-div c1-1 c1-2 c1-11 c1-13 c1-8b c1-8c c1-8d c1-3w c1-6f c1-8e c1-8f c1-49 c1-b c1-c c1-d c1-e c1-f c1-g" data-aid="FOOTER_SOCIAL_LINKS" data-ux="Block">
            <a aria-haspopup="true" aria-label="Facebook Social Link" class="x-el x-el-a c1-26 c1-27 c1-28 c1-1e c1-1f c1-8g c1-29 c1-8h c1-b c1-5f c1-c c1-2g c1-8i c1-8j c1-d c1-e c1-f c1-g" data-aid="FOOTER_FACEBOOK_LINK" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.52810.click,click" data-typography="LinkAlpha" data-ux="Link" rel="noopener" role="link" target="_blank">
            </a>
            <a aria-haspopup="true" aria-label="Instagram Social Link" class="x-el x-el-a c1-26 c1-27 c1-28 c1-1e c1-1f c1-8g c1-29 c1-8h c1-b c1-5f c1-c c1-2g c1-8i c1-8j c1-d c1-e c1-f c1-g" data-aid="FOOTER_INSTAGRAM_LINK" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.52811.click,click" data-typography="LinkAlpha" data-ux="Link" rel="noopener" role="link" target="_blank">
            </a>
           </div>
           <div class="x-el c1-1 c1-2 c1-1e c1-1f c1-1g c1-1h c1-84 c1-b c1-8l c1-3i c1-1k c1-3l c1-3m c1-3n c1-3o x-rt" data-aid="FOOTER_COPYRIGHT_RENDERED" data-typography="DetailsAlpha" data-ux="FooterDetails">
            <p style="margin:0">
             <span>
              Established February,2014
             </span>
            </p>
           </div>
           <hr aria-hidden="true" class="x-el x-el-hr c1-1 c1-2 c1-8m c1-8n c1-8o c1-1h c1-84 c1-8p c1-w c1-x c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="HR" role="separator">
           <p class="x-el x-el-p c1-1 c1-2 c1-1e c1-1f c1-1g c1-1h c1-1i c1-b c1-8l c1-3i c1-1k c1-3l c1-3m c1-3n c1-3o" data-aid="FOOTER_POWERED_BY_RENDERED" data-typography="DetailsAlpha" data-ux="FooterDetails">
            <span>
             Powered by
             <a aria-haspopup="true" class="x-el x-el-a c1-26 c1-27 c1-28 c1-1e c1-1f c1-8g c1-29 c1-b c1-5f c1-3i c1-2g c1-8i c1-8j c1-3l c1-3m c1-3n c1-3o" data-aid="FOOTER_POWERED_BY_RENDERED_LINK" data-tccl="ux2.FOOTER.footer1.Layout.Default.Link.Default.52812.click,click" data-typography="LinkAlpha" data-ux="Link" rel="nofollow noopener" role="link" target="_blank">
              GoDaddy
             </a>
            </span>
           </p>
          </div>
         </div>
        </section>
       </div>
      </div>
     </div>
     <div class="widget widget-messaging widget-messaging-messaging-1" id="71a892ef-ba69-4e7b-bd3f-49003a512489">
      <div class="x-el x-el-div c1-1 c1-2 c1-b c1-c c1-d c1-e c1-f c1-g" data-ux="Element" id="bs-3">
       <span class="x-el x-el-span c2-1 c2-2 c2-3 c2-4 c2-5 c2-6 c2-7 c2-8" data-ux="Element">
        <div class="x-el x-el-div c2-1 c2-2 c2-9 c2-a c2-b c2-c c2-d c2-e c2-3 c2-4 c2-5 c2-f c2-6 c2-7 c2-8" data-ux="Block">
         <style>
          .grecaptcha-badge { visibility: hidden; }
         </style>
         <div class="x-el x-el-div c2-1 c2-2 c2-g c2-h c2-i c2-j c2-k c2-l c2-m c2-n c2-o c2-p c2-3 c2-4 c2-5 c2-6 c2-7 c2-8" data-aid="MESSAGING_FAB" data-edit-interactive="true" data-tccl="ux2.messaging.fab.open,click" data-traffic2="pandc.vnext.editor_preview.messaging_fab_open.click" data-ux="Block">
         </div>
        </div>
       </span>
      </div>
     </div>
    </div>
   </div>
  </div>
  <style data-glamor="cxs-media-sheet" type="text/css">
  </style>
 </body>
</html>