-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1222 lines (1183 loc) · 44.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/images/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/images/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/images/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="/images/favicon/site.webmanifest" />
<meta name="theme-color" content="#343a40" />
<meta
name="Description"
content="Marguerite Swan is an up and coming young entrepreneur and community activist who built her own custom salon through hard work and word of mouth recommendations. In addition to hair, she has renovated two salon spaces. Swan is a former foster child who passionately advocates for better resources and care for foster and adoptive youth. She also pushes for recognition and support for the first responders in her community. also born 11/11 Marguerite brings a joyful spark to everything she does rarely without a smile and laugh that naturally draws people in."
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<!-- <link rel="stylesheet" href="style.css" /> -->
<!-- <link
rel="preload"
href="dist/bootstrap.min.css"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<noscript><link rel="stylesheet" href="dist/bootstrap.min.css"/></noscript> -->
<link
rel="preload"
href="css/style.css"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/fancyapps/[email protected]/dist/jquery.fancybox.min.css"
/>
<noscript><link rel="stylesheet" href="css/style.css"/></noscript>
<script src="https://unpkg.com/feather-icons"></script>
<title>Salon Margo - Unique hair salon located in Southington, CT</title>
</head>
<body id="top" data-spy="scroll" data-target=".navbar" data-offset="95">
<nav
class="navbar navbar-expand-md navbar-dark bg-dark fixed-top"
data-spy="affix"
data-offset-top="95"
>
<div class="container">
<a class="navbar-brand" href="#top"
><i
data-feather="scissors"
class="d-inline-block align-top"
width="30"
height="30"
></i>
Salon Margo</a
>
<div>
<a href="tel:8605739228" aria-label="Call to Set Appointment">
<i
data-feather="phone"
class="d-sm-inline-block d-md-none text-white mx-2"
></i
></a>
<a
aria-label="Open Location"
target="_blank"
rel="noopener"
href="https://www.google.com/maps/place/Salon+Margo/@41.6461054,-72.8749937,17z/data=!3m1!4b1!4m5!3m4!1s0x89e7ba83e34186cf:0x6b206121c02dda8d!8m2!3d41.6461054!4d-72.872805"
>
<i
data-feather="map-pin"
class=" d-sm-inline-block d-md-none text-white mx-3"
></i
></a>
<button
type="button"
aria-label="toggle menu"
class="navbar-toggler"
data-toggle="collapse"
data-target="#navbarCollapse"
>
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ml-auto py-3 ">
<a href="#top" class="px-3 nav-item nav-link active">Top</a>
<a href="#services" class="px-3 nav-item nav-link">Services</a>
<a href="#social" class="px-3 nav-item nav-link ">Gallery</a>
<a href="#about" class="px-3 nav-item nav-link">About</a>
<a href="#reviews" class="px-3 nav-item nav-link">Reviews</a>
<a href="#work" class="px-3 nav-item nav-link ">Employment</a>
<a href="#contact" class="px-3 nav-item nav-link ">Contact</a>
</div>
</div>
</div>
</nav>
<section id="welcome">
<div class="jumbotron">
<div class="container justify-content-center">
<!-- <h1 id="platform"></h1> -->
<h1 class="text-center display-5 welcome-h1">
Welcome to <i data-feather="scissors"></i> Salon Margo
</h1>
<div class="row">
<div class="col-lg-6 justify-content-center">
<picture>
<source
srcset="
/images/build/img-05.webp"
type="image/webp"
/>
<source
srcset="
/images/img-05.jpg"
type="image/jpeg"
/>
<img
class="img-fluid img-thumbnail"
src="/images/build/img-05.webp"
style="width: 100%;"
alt=""
/>
</picture>
</div>
<div class="col-lg-6">
<p class="lead d-none d-sm-block">
Unique place located in Southington, CT to have your hair
styled! Call/text me at (860) 573-9228 to make an appointment.
Or drop in any time we're open, walk-ins welcome!
</p>
<p class="lead d-none d-md-block">
Marguerite Swan is an up and coming young entrepreneur and
community activist who built her own custom salon through hard
work and word of mouth recommendations. In addition to hair, she
has renovated two salon spaces. Swan is a former foster child
who passionately advocates for better resources and care for
foster and adoptive youth. She also pushes for recognition and
support for the first responders in her community. also born
11/11 Marguerite brings a joyful spark to everything she does
rarely without a smile and laugh that naturally draws people in.
</p>
</div>
</div>
<!-- <hr class="my-4">
<p>It uses utility classes for typography and spacing to space content out within the larger container.</p> -->
<div class=" row justify-content-center">
<a
href="tel:8605739228"
class="btn btn-dark btn-lg text-center"
role="button"
aria-label="Call to Set Appointment"
>
<i data-feather="phone"></i> Set Appointment</a
>
<a
aria-label="Open Location"
target="_blank"
class="btn btn-dark btn-lg text-center"
role="button"
rel="noopener"
href="https://www.google.com/maps/place/Salon+Margo/@41.6461054,-72.8749937,17z/data=!3m1!4b1!4m5!3m4!1s0x89e7ba83e34186cf:0x6b206121c02dda8d!8m2!3d41.6461054!4d-72.872805"
><i data-feather="map-pin"></i> Directions</a
>
</div>
</div>
</div>
</section>
<section id="services" class="bg-dark ">
<div class="container">
<h2 class="text-white text-center mb-5">
<i data-feather="tag"></i> Services
</h2>
<div class="row justify-content-center ">
<div class="card p-0 m-1 col-lg-5 ">
<div id="services-hair" class="card-body services ">
<h5 class="card-title text-center mb-4">- Just Them Hairs -</h5>
<ul class="leaders text-uppercase">
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
Beard Shape Up
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">10</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
CLARIFY & REPAIR
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">25</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
KIDS CUT
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">20</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
MEN'S HAIRCUT
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">25</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
WOMEN'S HAIRCUT
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">25</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
WASH & STYLE
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">25</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
HAIRCUT & STYLE
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">35</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
FLAT IRON OR CURLS
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">15</div>
</div>
</div>
</li>
</ul>
<div class="more float-right mt-4">See more...</div>
<div class="less float-right mt-4">See less</div>
</div>
</div>
<div class="card p-0 m-1 col-lg-5">
<div id="services-color" class="card-body services">
<h5 class="card-title text-center mb-4">- Color -</h5>
<ul class="leaders text-uppercase">
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
Glaze
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">20</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
Root
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">40</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
All Over Color
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">60</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
Partial Highlight
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">75</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
Full Highlight
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">120</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
Color Camo for Men
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">25</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
Color Correction
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="">Consult</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
Keratin Smoothing Treatment
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar plus">75</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
Extensions
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="">Consult</div>
</div>
</div>
</li>
<li class="p-1">
<div class="list-child">
<div class="list-item-title">
Additional Color Charge for Length
</div>
<div class="dots"></div>
<div class="list-item-price">
<div class="dollar">20</div>
</div>
</div>
</li>
</ul>
<div class="more float-right mt-4">See more...</div>
<div class="less float-right mt-4">See less</div>
</div>
</div>
</div>
</div>
</section>
<section id="social">
<div class="container">
<h3 class="mt-5 text-center">
<i data-feather="instagram"></i> Gallery
</h3>
<p class="my-2 text-muted text-center">
Visit my
<a
href="https://www.instagram.com/explore/locations/153012735297940/united-states/southington-connecticut/salon-margo/?hl=en"
target="_blank"
class="text-dark"
rel="noopener noreferrer"
>Instagram</a
>
to see my scissors in action!
</p>
<hr />
<div class="row justify-content-center">
<div class="col-6 col-md-4">
<a data-fancybox="gallery" href="/images/instagram01.jpg">
<picture>
<source
srcset="
/images/build/instagram01.webp"
type="image/webp"
/>
<source
srcset="
/images/instagram01.jpg"
type="image/jpeg"
/>
<img
class="img-fluid grow img-thumbnail"
src="/images/build/instagram01.webp"
style="width: 100%;"
alt=""
/>
</picture>
</a>
</div>
<div class="col-6 col-md-4">
<a data-fancybox="gallery" href="/images/instagram02.jpg"
><picture>
<source
srcset="
/images/build/instagram02.webp"
type="image/webp"
/>
<source
srcset="
/images/instagram02.jpg"
type="image/jpeg"
/>
<img
class="img-fluid grow img-thumbnail"
src="/images/build/instagram02.webp"
style="width: 100%;"
alt=""
/>
</picture>
</a>
</div>
<div class="col-6 col-md-4">
<a data-fancybox="gallery" href="/images/instagram03.jpg"
><picture>
<source
srcset="
/images/build/instagram03.webp"
type="image/webp"
/>
<source
srcset="
/images/instagram03.jpg"
type="image/jpeg"
/>
<img
class="img-fluid grow img-thumbnail"
src="/images/build/instagram03.webp"
style="width: 100%;"
alt=""
/>
</picture>
</a>
</div>
<div class="col-6 col-md-4">
<a data-fancybox="gallery" href="/images/img-01.jpg"
><picture>
<source
srcset="
/images/build/img-01.webp"
type="image/webp"
/>
<source
srcset="
/images/img-01.jpg"
type="image/jpeg"
/>
<img
class="img-fluid grow img-thumbnail"
src="/images/build/img-01.webp"
style="width: 100%;"
alt=""
/>
</picture>
</a>
</div>
<div class="col-6 col-md-4">
<a data-fancybox="gallery" href="/images/instagram05.jpg"
><picture>
<source
srcset="
/images/build/instagram05.webp"
type="image/webp"
/>
<source
srcset="
/images/instagram05.jpg"
type="image/jpeg"
/>
<img
class="img-fluid grow img-thumbnail"
src="/images/build/instagram05.webp"
style="width: 100%;"
alt=""
/>
</picture>
</a>
</div>
<div class="col-6 col-md-4">
<a data-fancybox="gallery" href="/images/instagram06.jpg"
><picture>
<source
srcset="
/images/build/instagram06.webp"
type="image/webp"
/>
<source
srcset="
/images/instagram06.jpg"
type="image/jpeg"
/>
<img
class="img-fluid grow img-thumbnail"
src="/images/build/instagram06.webp"
style="width: 100%;"
alt=""
/>
</picture>
</a>
</div>
</div>
<hr class="mb-5" />
</div>
</section>
<section id="about" class="bg-dark text-white">
<div class="container py-5">
<div class="row justify-content-center">
<div id="photoDisplay" class="col-lg-6 my-4 p-0">
<div>
<picture>
<source
srcset="
/images/build/instagram02.webp"
type="image/webp"
/>
<source
srcset="
/images/instagram02.jpg"
type="image/jpeg"
/>
<img
src="/images/build/instagram02.webp"
alt="..."
class="photos"
id="stacked-photo-1"
/>
</picture>
<picture>
<source
srcset="
/images/build/instagram01.webp"
type="image/webp"
/>
<source
srcset="
/images/instagram01.jpg"
type="image/jpeg"
/>
<img
src="/images/build/instagram01.webp"
alt="..."
class="photos"
id="stacked-photo-2"
/>
</picture>
<picture>
<source
srcset="
/images/build/img-04.webp"
type="image/webp"
/>
<source
srcset="
/images/img-04.jpg"
type="image/jpeg"
/>
<img
src="/images/build/img-04.webp"
alt="..."
class="photos"
id="stacked-photo-3"
/>
</picture>
</div>
</div>
<div class="about-desc col-lg-6 my-4">
<h3 class=" text-center">
<i data-feather="smile"></i> About Salon Margo
</h3>
<p class="my-3 ">
As the owner of Salon Margo, Marguerite Swan has carried out a
vision far surpassing the expectations of a hair salon. Swan has
worked diligently to recreate the hair salon as a place for
community, familiarity, and a place to celebrate the local
citizens that give back the most: first responders.
</p>
<p>
Through Salon Margo, Swan has created a place that encourages
first responders of the local community to have a place they can
count on, develop relationships, and be in a space that affirms
their bravery, courage, and civic duty. Additionally, Swan has
uplifted child welfare non-profits, raised money for charity on a
multitude of issues through the apparatus of her business, and has
advocated at the state capital for child welfare reform. Swan has
taken her passions of life and brought them into a space of
positivity, encouragement, and community.
</p>
</div>
</div>
</div>
</section>
<section id="reviews">
<div class="container text-center my-5 p-1">
<h3 class="h1-responsive font-weight-bold mt-5">
<i data-feather="star"></i> Testimonials
</h3>
<p class="mb-3 text-center">
Like my work? Don't be a stranger,
<a
href="https://www.google.com/search?rlz=1C1CHBD_enUS824US824&sxsrf=ACYBGNQJBL0Y4-tk5SRTzIm7wXYFHhlfgw%3A1579729889133&ei=4cMoXqveB5HU-gT17KWYAg&q=salon+margo&oq=salon+margo&gs_l=psy-ab.3..35i39l2j0l8.174243.174387..174540...0.0..0.63.286.5......0....1..gws-wiz.......0i22i30.KsXMB-8cWYI&ved=0ahUKEwjr0oe3mJjnAhURqp4KHXV2CSMQ4dUDCAs&uact=5#lrd=0x89e7ba83e34186cf:0x6b206121c02dda8d,1,,,"
target="_blank"
class="text-dark"
rel="noopener noreferrer"
>leave a review!</a
>
</p>
<!--Grid row-->
<div class="row text-center mt-5">
<!--Grid column-->
<div class="col-md-4 mb-md-0 mb-5">
<div class="testimonial">
<!--Avatar-->
<div class="avatar mx-auto">
<picture>
<source
srcset="
/images/build/review-01.webp"
type="image/webp"
/>
<source
srcset="
/images/review-01.jpg"
type="image/jpeg"
/>
<img
src="/images/build/review-01.webp"
class="rounded-circle z-depth-1 img-fluid"
alt="Customer Picture"
/>
</picture>
</div>
<!--Content-->
<h4 class="font-weight-bold dark-grey-text mt-4">
Annie Franklin
</h4>
<!-- <h6 class="my-3 text-muted">May 20, 2018</h6> -->
<p class="font-weight-normal dark-grey-text">
Margo is the best! I work with individuals with special needs
and my client struggles when getting his hair cut. He used to
require two adults to sit still in the chair long enough to get
his hair cut. After Margo cut his hair three times, he is able
to sit by himself without an issue. This is amazing! Margo’s
compassion and understanding were key to making this happen!.
</p>
<!--Review-->
<div class="orange-text">
<i data-feather="star" class="text-warning filled"></i>
<i data-feather="star" class="text-warning filled"></i>
<i data-feather="star" class="text-warning filled"></i>
<i data-feather="star" class="text-warning filled"></i>
<i data-feather="star" class="text-warning filled"></i>
</div>
</div>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-md-4 mb-md-0 mb-5">
<div class="testimonial">
<!--Avatar-->
<div class="avatar mx-auto">
<picture>
<source
srcset="
/images/build/review-02.webp"
type="image/webp"
/>
<source
srcset="
/images/review-02.png"
type="image/png"
/>
<img
src="/images/build/review-02.webp"
class="rounded-circle z-depth-1 img-fluid"
alt="Customer Picture"
/>
</picture>
</div>
<!--Content-->
<h4 class="font-weight-bold dark-grey-text mt-4">Kate Arana</h4>
<!-- <h6 class="my-3 text-muted">September 18, 2019</h6> -->
<p class="font-weight-normal dark-grey-text">
I've found my place. I've been to so many other salons in the
area and this one by far was the best experience. Owner knows
what she's doing and cares about her clients. Both my daughter
and I got blowouts and they were perfect. I also got my hair
colored and didnt walk out with a colored framed face ( like all
the other places Ive been too). My blunt cut is perfect. Salon
Margo has made a long time client and I'm grateful..
</p>
<!--Review-->
<div class="orange-text">
<i data-feather="star" class="text-warning filled"></i>
<i data-feather="star" class="text-warning filled"></i>
<i data-feather="star" class="text-warning filled"></i>
<i data-feather="star" class="text-warning filled"></i>
<i data-feather="star" class="text-warning filled"></i>
</div>
</div>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-md-4">
<div class="testimonial">
<!--Avatar-->
<div class="avatar mx-auto">
<picture>
<source
srcset="
/images/build/review-03.webp"
type="image/webp"
/>
<source
srcset="
/images/review-03.png"
type="image/png"
/>
<img
src="/images/build/review-03.webp"
class="rounded-circle z-depth-1 img-fluid"
alt="Customer Picture"
/>
</picture>
</div>
<!--Content-->
<h4 class="font-weight-bold dark-grey-text mt-4">
Chelsea J. Hernandez
</h4>
<!-- <h6 class="my-3 text-muted">December 17, 2019</h6> -->
<p class="font-weight-normal dark-grey-text ">
Margo hands down my favorite hair stylist 🙌🏻 She creates an
amazing welcoming atmosphere here that will always keep you
coming back!!! Margo will always go above and beyond to ensure
you love your new look!! I will not let anyone cut my hair or
touch my hair besides her! 🙌🏻♥️
</p>
<!--Review-->
<div class="orange-text">
<i data-feather="star" class="text-warning filled"></i>
<i data-feather="star" class="text-warning filled"></i>
<i data-feather="star" class="text-warning filled"></i>
<i data-feather="star" class="text-warning filled"></i>
<i data-feather="star" class="text-warning filled"></i>
</div>
</div>
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</div>
</section>
<section id="work">
<div class="jumbotron-work">
<div class="container ">
<div class="row">
<div class="col-md-6">
<h3 class="text-center mb-4">
<i data-feather="users"></i> Work Opportunities
</h3>
<p class="text-justify text-lg-left">
Want to cut hair in my salon? We have chairs available.
</p>
<hr />
<p>To schedule an interview please</p>
<br />
<p>
Email me at
<a
href="mailto:[email protected]?subject=Rent-A-Chair!&body=Hi, I would like to rent a chair from you."
target="_blank"
>
or
</p>
<br />
<p>
Call/<a
class="platform-dependend-link"
data-phone="8605739228"
target="_blank"
data-sms="Hi, I would like to rent a chair from you."
href="tel:8605739228"
>Text</a
>
me at <a href="tel:8605739228">(860) 573-9228</a>
</p>
</div>
<div class="col-md-6">
<picture>
<source
srcset="
/images/build/employment.webp"
type="image/webp"
/>
<source
srcset="
/images/employment.jpg"
type="image/jpeg"
/>
<img
src="/images/build/employment.webp"
alt=""
class="img-fluid grow img-thumbnail"
/>
</picture>
</div>
</div>
</div>
</div>
</section>
<footer class="page-footer font-small pt-4 bg-dark text-white">
<div class="container text-md-left">
<div class="row">
<div class="col-md-4 mt-md-0 mt-3">
<h5
class="text-uppercase pb-2"
style="border-bottom: 1px dashed white;"
>
<i data-feather="map"></i> Location
</h5>
<div class="row py-1">
<div class="col-lg-6">
<a
class="text-white"
aria-label="Open Location"
target="_blank"
rel="noopener"
href="https://www.google.com/maps/place/Salon+Margo/@41.6461054,-72.8749937,17z/data=!3m1!4b1!4m5!3m4!1s0x89e7ba83e34186cf:0x6b206121c02dda8d!8m2!3d41.6461054!4d-72.872805"
>
<address>
1079 Queen St<br />
STE #11,<br />
Southington,<br />
CT 06489
</address></a
>
</div>
<div class="col-lg-6">
<a
href="https://www.google.com/maps/place/Salon+Margo/@41.6461054,-72.8749937,17z/data=!3m1!4b1!4m5!3m4!1s0x89e7ba83e34186cf:0x6b206121c02dda8d!8m2!3d41.6461054!4d-72.872805"
target="_blank"
rel="noopener noreferrer "
>
<picture>
<source
srcset="
/images/build/map.webp"
type="image/webp"
/>
<source
srcset="
/images/map.png"
type="image/png"
/>
<img
width="150"
class="img rounded"
src="/images/build/map.webp"
alt="location map"
/>
</picture>
</a>
</div>
</div>
</div>
<hr class="clearfix w-100 d-md-none pb-3" />
<div class="col-md-4 mb-md-0 mb-3">
<h5
class="text-uppercase mb-0 pb-2"
style="border-bottom: 1px dashed white;"
>
<i data-feather="users"></i> Social
</h5>
<div class="row ">
<div class="col-lg-6 pt-3">
<a
href="https://www.facebook.com/salonmargo2k17"
target="_blank"
rel="noopener noreferrer"
class="text-white py-3"
><i data-feather="facebook"></i> Facebook</a
>
</div>
<div class="col-lg-6 py-3">
<a
href="https://www.instagram.com/explore/locations/153012735297940/united-states/southington-connecticut/salon-margo/?hl=en"
target="_blank"
rel="noopener noreferrer"
class="text-white py-3"
><i data-feather="instagram"></i> Instagram</a
>
</div>
</div>
<h5 id="contact"
class="text-uppercase mb-0 pt-4 pb-1"
style="border-bottom: 1px dashed white;"
>
<i data-feather="book-open"></i> Contact
</h5>
<ul class="list-unstyled footer-social-links">
<li>
<i data-feather="phone" alt="Phone"></i>
<a href="tel:860-573-9228" class="text-white">(860) 573-9228</a>
</li>
<li>
<i data-feather="at-sign" alt="Email"></i>
<a href="mailto:[email protected]" class="text-white">
>
</li>
</ul>
</div>
<!-- Grid column -->
<hr class="clearfix w-100 d-md-none pb-3" />
<!-- Grid column -->
<div class="col-md-4 mb-md-0 mb-3">
<!-- Links -->
<h5
class="text-uppercase pb-2"
style="border-bottom: 1px dashed white;"
>
<i data-feather="clock"></i> Open hours
</h5>
<ul class="list-unstyled">
<li>
<strong>Mon - Closed / Appt Only</strong>