-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1342 lines (1157 loc) · 59.7 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">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<link href="./fontawesome-free-5.15.3-web/css/all.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/ihover.css" rel="stylesheet">
<title>O`Were</title>
</head>
<body data-bs-spy="scroll" data-bs-target="#navbar-example">
<div class="myWrapper">
<!-- nav-bar -->
<div id="navbar-example" class="mainGradient" style="z-index:99999999;">
<nav class="navbar navbar-expand-lg navbar-light justify-content-end pb-0 float">
<button style="border:none;" class="navbar-toggler mb-2" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end px-1 px-lg-5 " id="navbarSupportedContent">
<ul class="nav nav-pills ms-auto justify-content-end d-flex flex-nowrap" role="tablist">
<li class="nav-item ">
<a class="nav-link text-light py-3 active" href="#scrollspyHeading1">BlooBurn</a>
</li>
<li class="nav-item ">
<a class="nav-link text-light py-3 " href="#scrollspyHeading2">Profile</a>
</li>
<li class="nav-item">
<a class="nav-link text-light py-3 " href="#scrollspyHeading3">Service</a>
</li>
<li class="nav-item">
<a class="nav-link text-light py-3 " href="#scrollspyHeading4">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
<!-- O`were -->
<!-- todo : set logo -->
<div id="scrollspyHeading1">
<div class="mainGradient position-relative fullHeight">
<div class="position-absolute top-50 start-50 translate-middle text-center">
<img src="src/logoex.png" style="width: 126px; height:126px;">
<div class="text-light fw-bolder font64">
BlooBurn
</div>
<p class="text-light keepText">BlooBurn(블루번)는 아주 흥미로운 것들에 집중합니다.</p>
</div>
</div>
<!-- BlooBurn ourgoal -->
<div class="container text-center paddingY px-5" style="padding-bottom:100px;">
<div class="pb-5">
<h2 class="fw-bolder py-2">BlooBurn's MOTTO</h2>
<h6 class="font18">
BlooBurn(블루번)의 가치와 목표
</h6>
</div>
<div class="row featurette">
<div class="col-md-5 order-md-2">
<h2 class="featurette-heading fs-2 keepText mb-3 "><span class="border-bottom"><span class="highlight me-2">FASHIONABLE</span><span class="text-muted fs-5"> Mobile PlatForm</span></span></h2>
<p class="lead fs-6 lh-lg keepText">
우리는 모바일 플랫폼에 감각적인 패턴을 입힙니다. 우리와 함께 작업을 진행함으로써 당신은 패셔너블함을 브랜딩할 수 있습니다. 지금 바로 BlooBurn과 함께 기술에 미적 감각을 더해보세요!
</p>
<p class="lead fs-6 lh-lg keepText forWeb">
We dress mobile platforms up in sensitive patterns. By working with us, you can brand your own fashionable application. Add artistry to IT technology with 'BlooBurn'!
</p>
</div>
<div class="col-md-7 order-md-1">
<img class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid" src="src/motto01.png">
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-5">
<h2 class="featurette-heading fs-2 keepText mb-3 "><span class="border-bottom"><span class="highlight me-2">TRENDY</span><span class="text-muted fs-5"> Software Process</span></span></h2>
<p class="lead fs-6 lh-lg keepText">
우리는 매월 업데이트되는 IT 도큐먼트를 확인합니다. 최신의 기술 스택이 적용된 소프트웨어 제작을 진행합니다. 지금 바로 BlooBurn과 함께 강력해진 성능의 프로젝트를 경험해보세요!
</p>
<p class="lead fs-6 lh-lg keepText forWeb">
We check the updated IT Document every month. Software productions are proceeded with the latest technology stack. Experience powerful performance projects with BlooBurn!
</p>
</div>
<div class="col-md-7">
<img class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid" src="src/motto02.png">
</div>
</div>
<hr class="featurette-divider">
</div>
<div class="container">
<div class="pb-5 text-center">
<h2 class="fw-bolder py-2">BlooBurn's HISTORY</h2>
<h6 class="font18">
BlooBurn(블루번)의 연혁
</h6>
</div>
<!-- 2 types to show timeline item // #1. R->L : .js--fadeInRight #2. L->R : .js--fadeInLeft -->
<section class="timeline heightresizer">
<div class="timeline-item">
<div class="timeline-img"></div>
<div class="timeline-content timeline-card js--fadeInRight">
<div class="timeline-img-header" style="background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url('https://picsum.photos/1000/800/?random=1') center center no-repeat;">
<h5 class="fw-bold">대학 연합 프로그래밍 동아리 창단</h5>
</div>
<div class="date">MAY 2021</div>
<p class="keepText">
2021.05 대학 연합 프로그래밍 동아리 창단.
Java, ECMAScript, Android 등 다양한 프로그래밍 경험을 공유하기 위한 사람들이 모임.
이후 실제 개발에 대한 수요가 동아리 내에서 강해져,
소프트웨어 제작을 위한 팀을 조직적으로 결성하기 시작.
현재 BlooBurn의 모태가 됨.
</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-img"></div>
<div class="timeline-content timeline-card js--fadeInLeft">
<div class="timeline-img-header" style="background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url('https://picsum.photos/1000/800/?random=2') center center no-repeat;">
<h5>S/W 퍼블리싱 팀 구성</h5>
</div>
<div class="date">JUNE 2021</div>
<p class="keepText">
2021.06 사용자 화면의 효율성 추구를 목표로 하는 개발자들이 우선적으로 웹/앱 퍼블리싱 팀을 결성.
웹 퍼블리싱을 기반으로 프로젝트를 진행하며, 분업과 협업의 툴(Tool)을 갖춰나감.
현재 BlooBurn 내의 퍼블리싱 팀으로 발전.
</p>
</div>
</div>
<div class="timeline-item ">
<div class="timeline-img"></div>
<div class="timeline-content timeline-card js--fadeInRight">
<div class="timeline-img-header"style="background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url('https://picsum.photos/1000/800/?random=3') center center no-repeat;">
<h5>디자인 팀 구성</h5>
</div>
<div class="date">JUNE 2021</div>
<p class="keepText">
2021.06 개성 있는 디자인을 IT 서비스에 접목시킨다는 목표로
디자이너들이 웹/앱 디자인 팀을 결성.
UI/UX 토이 프로젝트, 외부 로고 제작 등의 활동을 진행하며,
사용자에게 커스터마이징된 디자인 제공을 시도함.
현재 BlooBurn 내의 디자인 팀으로 발전.
</p>
</div>
</div>
<div class="timeline-item ">
<div class="timeline-img"></div>
<div class="timeline-content timeline-card js--fadeInLeft">
<div class="gradient-border">
<div class="timeline-img-header"style="background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url('https://picsum.photos/1000/800/?random=4') center center no-repeat;">
<h5 >BlooBurn의 시작</h5>
</div>
<div class="date">1 JULY 2021</div>
<p class="keepText">
2021.07.08. BlooBurn 설립.
IT 솔루션 기업을 미션으로 대학생 스타트업으로 발전.
서로 다른 출신학교, 학과 사람들이 모여 다양성을 확보하였고,
자신만의 특화된 역량을 BlooBurn의 미션 아래에서 실현하고자 함.
현재 BlooBurn은 기획팀, S/W 퍼블리싱팀, S/W 디자인팀, 서버개발팀, 마케팅팀 등으로 이루어져 있음.
</p>
</div>
</div>
</div>
<div class="timeline-item ">
<div class="timeline-img"></div>
<div class="timeline-content timeline-card js--fadeInRight">
<div class="timeline-img-header"style="background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url('https://picsum.photos/1000/800/?random=5') center center no-repeat;">
<h5>BlooBurn의 첫 정부 지원사업 선정</h5>
</div>
<div class="date">25 AUGUST 2021</div>
<p class="keepText"> 2021.08.25
BlooBurn팀 결성 이후, 아이디어를 만들고 이를 구체화하는 사업기획안을 작성.
<생애최초 청년창업> 지원 프로그램에 선정.
이 때, 도출된 아이템이 현재의 O'were(오월) 브랜드로 발전.
이후 여러 지원 사업 등을 통해 자금 조달 진행 중.
</p>
</div>
</div>
<div class="timeline-item" >
<div class="timeline-img"></div>
<div class="timeline-content timeline-card js--fadeInRight">
<div class="timeline-img-header"style="background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url('https://picsum.photos/1000/800/?random=6') center center no-repeat;">
<h5>캠퍼스타운</h5>
</div>
<div class="date">UPDATING</div>
<p class="keepText"> 2021.10.13
업데이트 예정입니다. 앞으로의 BlooBurn(블루번)의 행보에 많은 관심과 기대 부탁드립니다.
</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-img"></div>
<div class="timeline-content timeline-card js--fadeInRight">
<div class="timeline-img-header"style="background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url('https://picsum.photos/1000/800/?random=7') center center no-repeat;">
<h5>업데이트 예정</h5>
</div>
<div class="date">UPDATING</div>
<p class="keepText"> 20XX.X.X
업데이트 예정입니다. 앞으로의 BlooBurn(블루번)의 행보에 많은 관심과 기대 부탁드립니다.
</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-img"></div>
<div class="timeline-content timeline-card js--fadeInRight">
<div class="timeline-img-header"style="background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url('https://picsum.photos/1000/800/?random=8') center center no-repeat;">
<h5>업데이트 예정</h5>
</div>
<div class="date">UPDATING</div>
<p class="keepText"> 20XX.X.X
업데이트 예정입니다. 앞으로의 BlooBurn(블루번)의 행보에 많은 관심과 기대 부탁드립니다.
</p>
</div>
</div>
</section>
</div>
</div>
<!-- About -->
<div id="scrollspyHeading2" class="fitcontent bg-light paddingY">
<div class="container pt-3 pb-2" >
<h2 class="text-center fw-bolder pt-3">BlooBurn is <span style="color:#09ECD6">SYSTEMATIC</span></h2>
<p class="text-center fw-bold keepText">대학생 스타트업으로 시작한 혁신적 기업, BlooBurn(블루번)</p>
<p class="text-center fw-bold keepText mb-1 mt-4">
<button type="button" class="btn btn-outline-dark fw-bolder font18 rounded-pill py-2 px-5 text-nowrap"><i class="fab fa-instagram pe-1"></i> BlooBurn Instagram <i class="fas fa-angle-double-right"></i></button>
</p>
<div>
<div class="container py-4">
<!-- Swiper -->
<div class="forMobile">
<div class="swiper mySwiper profileForMobile">
<div class="swiper-wrapper">
<!-- 성준mobile -->
<div class="swiper-slide">
<div class="position-relative ">
<div class="position-relative p-0 h-100 shadow">
<div style="height: 160px;">
<img style="object-fit: cover;width:100%; height:100%; " src="src/성준.png" >
</div>
<div class="profileBox absoluteCenter" >
<img src="src/parkProfile.jpg" >
</div>
<div class="row text-center pb-2 text-light" style="padding-top:128px;">
<p class="font26 text-end col-6 px-1">박성준</p>
<p class="col-6 text-start text-muted font18 d-inline px-1 pt-2">Representative</p>
</div>
</div>
<div class=" text-muted pb-4 m-3">
<ul class="pt-2 font16">
<li>브랜드 운영 총괄</li>
<li>BlooBurn MIS Service 도입</li>
<li>O'were AI Technic, Method 개발</li>
<li>웹/앱 간 프로세스 관리</li>
</ul>
</div>
</div>
</div>
<!-- 정민mobile -->
<div class="swiper-slide">
<div class="position-relative ">
<div class="position-relative p-0 h-100 shadow">
<div style="height: 160px;">
<img style="object-fit: cover;width:100%; height:100%; " src="src/정민.png" >
</div>
<div class="profileBox absoluteCenter" >
<img src="src/koProfile.jpg" >
</div>
<div class="row text-center pb-2 text-light" style="padding-top:128px;">
<p class="col-6 text-end font26 d-inline px-1">고정민</p>
<p class="col-6 text-start text-muted font18 d-inline px-1 pt-2">Programmer</p>
</div>
</div>
<div class=" text-muted m-3">
<ul class="pt-2 font16">
<li>서버 개발 담당</li>
<li>미용실 고객관리 서버 개발</li>
<li>O`were 통합 서버 개발</li>
</ul>
</div>
</div>
</div>
<!-- 희원mobile -->
<div class="swiper-slide">
<div class="position-relative ">
<div class="position-relative p-0 h-100 shadow">
<div style="height: 160px;">
<img style="object-fit: cover;width:100%; height:100%; " src="src/희원.png" >
</div>
<div class="profileBox absoluteCenter" >
<img src="src/heeProfile.jpg" >
</div>
<div class="row text-center pb-2 text-light" style="padding-top:128px;">
<p class="col-6 text-end font26 d-inline px-1">이희원</p>
<p class="col-6 text-start text-muted font18 d-inline px-1 pt-2">Publisher</p>
</div>
</div>
<div class=" text-muted m-3">
<ul class="pt-2 font16">
<li>웹/앱 퍼플리싱 업무 총괄</li>
<li>미용실 고객관리 시스템 퍼블리싱</li>
<li>O'were 앱 퍼플리싱</li>
</ul>
</div>
</div>
</div>
<!-- 하연mobile -->
<div class="swiper-slide">
<div class="position-relative ">
<div class="position-relative p-0 h-100 shadow">
<div style="height: 160px;">
<img style="object-fit: cover;width:100%; height:100%; " src="src/하연.png" >
</div>
<div class="profileBox absoluteCenter" >
<img src="src/haProfile.jpg" >
</div>
<div class="row text-center pb-2 text-light" style="padding-top:128px;">
<p class="col-6 text-end font26 d-inline px-1">조하연</p>
<p class="col-6 text-start text-muted font18 d-inline px-1 pt-2">Designer</p>
</div>
</div>
<div class=" text-muted m-3">
<ul class="pt-2 font16">
<li>웹/앱 디자인 업무 담당</li>
<li>BlooBurn 기업 PT 디자인</li>
<li>O'were 앱 디자인</li>
</ul>
</div>
</div>
</div>
<!-- 유정mobile -->
<div class="swiper-slide">
<div class="position-relative ">
<div class="position-relative p-0 h-100 shadow">
<div style="height: 160px;">
<img style="object-fit: cover;width:100%; height:100%; " src="src/유정.png" >
</div>
<div class="profileBox absoluteCenter" >
<img src="src/youProfile.jpg" >
</div>
<div class="row text-center pb-2 text-light" style="padding-top:128px;">
<p class="col-6 text-end font26 d-inline px-1">이유정</p>
<p class="col-6 text-start text-muted font18 d-inline px-1 pt-2">Designer</p>
</div>
</div>
<div class=" text-muted m-3">
<ul class="pt-2 font16">
<li>웹/앱 디자인 업무 담당</li>
<li>BlooBurn 기업 페이지 디자인</li>
<li>O'were 앱 디자인</li>
</ul>
</div>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
<div class="row g-5 justify-content-center forWeb">
<!-- 성준 -->
<div class="col-4 profileCard position-relative ">
<div class="overlay mx-auto">
<div class="text">
<div class="text-center fs-4">Profile</div>
<hr>
<ul class="pt-2 font15">
<li>브랜드 운영 총괄</li>
<li>BlooBurn MIS Service 도입</li>
<li>O'were AI Technic, Method 도입</li>
<li>웹/앱 간 프로세스 관리</li>
</ul>
</div>
</div>
<div class="position-relative p-0 h-100 border bg-light shadow">
<div style="height: 146px;">
<img style="object-fit: cover;width:100%; height:100%; " src="src/성준.png" >
</div>
<div class="profileBox" >
<img src="src/parkProfile.jpg" >
</div>
<div class="text-center" style="padding-top:128px;">
<p style="font-size: 28px;">박성준</p>
<p class="text-muted" style="font-size: 16px;">대표</p>
</div>
</div>
</div>
<!-- 정민 -->
<div class="col-4 profileCard position-relative">
<div class="overlay mx-auto">
<div class="text">
<div class="text-center fs-4">Profile</div>
<hr>
<ul class="pt-2 font15">
<li>서버 개발 담당</li>
<li>미용실 고객관리 서버 개발</li>
<li>O`were 통합 서버 개발</li>
</ul>
</div>
</div>
<div class="position-relative p-0 h-100 border bg-light shadow">
<div style="height: 146px; background-color: #7d34d1;">
<img style="object-fit: cover; width:100%; height:100%; " src="src/정민.png" >
</div>
<div class="profileBox" >
<img src="src/koProfile.jpg" >
</div>
<div class="text-center" style="padding-top:128px;">
<p style="font-size: 28px;">고정민</p>
<p class="text-muted" style="font-size: 16px;">서버 개발</p>
</div>
</div>
</div>
<!-- 희원 -->
<div class="col-4 profileCard position-relative">
<div class="overlay mx-auto">
<div class="text">
<div class="text-center fs-4">Profile</div>
<hr>
<ul class="pt-2 font15">
<li>웹/앱 퍼플리싱 업무 총괄</li>
<li>미용실 고객관리 시스템 퍼블리싱</li>
<li>O'were 앱 퍼플리싱</li>
</ul>
</div>
</div>
<div class="position-relative p-0 h-100 border bg-light shadow">
<div style="height: 146px; background-color: #faa200;">
<img style="object-fit: cover;width:100%; height:100%; " src="src/희원.png" >
</div>
<div class="profileBox" >
<img src="src/heeProfile.jpg" >
</div>
<div class="text-center" style="padding-top:128px;">
<p style="font-size: 28px;">이희원</p>
<p class="text-muted" style="font-size: 16px;">웹/앱 퍼블리싱</p>
</div>
</div>
</div>
<!-- 하연 -->
<div class="col-4 profileCard position-relative">
<div class="overlay mx-auto">
<div class="text">
<div class="text-center fs-4">Profile</div>
<hr>
<ul class="pt-2 font15">
<li>웹/앱 디자인 업무 담당</li>
<li>BlooBurn 기업 PT 디자인</li>
<li>O'were 앱 디자인</li>
</ul>
</div>
</div>
<div class="position-relative p-0 h-100 border bg-light shadow">
<div style="height: 146px; background-color: #3FFFDA;">
<img style="object-fit: cover;width:100%; height:100%; " src="src/하연.png" >
</div>
<div class="profileBox" >
<img src="src/haProfile.jpg" >
</div>
<div class="text-center" style="padding-top:128px;">
<p style="font-size: 28px;">조하연</p>
<p class="text-muted" style="font-size: 16px;">웹/앱 디자이너</p>
</div>
</div>
</div>
<!-- 유정 -->
<div class="col-4 profileCard position-relative">
<div class="overlay mx-auto">
<div class="text">
<div class="text-center fs-4">Profile</div>
<hr>
<ul class="pt-2 font15">
<li>웹/앱 디자인 업무 담당</li>
<li>BlooBurn 기업 페이지 디자인</li>
<li>O'were 앱 디자인</li>
</ul>
</div>
</div>
<div class="position-relative p-0 h-100 border bg-light shadow">
<div style="height: 146px; background-color: #F5619D;">
<img style="object-fit: cover;width:100%; height:100%; " src="src/유정.png" >
</div>
<div class="profileBox" >
<img src="src/youProfile.jpg" >
</div>
<div class="text-center" style="padding-top:128px;">
<p style="font-size: 28px;">이유정</p>
<p class="text-muted" style="font-size: 16px;">웹/앱 디자이너</p>
</div>
</div>
</div>
<!-- 미정 -->
<div class="col-4 profileCard position-relative">
<div class="overlay mx-auto">
<div class="text">
<div class="text-center fs-4">Join us!</div>
<hr>
<div class="text-center mt-4">
<a href="#scrollspyHeading4">
<button type="button" class="btn btn-warning btn-lg rounded-pill">Apply</button>
</a>
</div>
</div>
</div>
<div class="position-relative p-0 h-100 border bg-light shadow">
<div style="height: 146px; background-color: #686868;">
</div>
<div class="profileBox" >
<img src="src/uiBackground.png" >
</div>
<div class="text-center" style="padding-top:128px;">
<p style="font-size: 28px;">상시 채용</p>
<p class="text-muted" style="font-size: 16px;">마케팅/앱개발 부분</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- BLOOBURN -->
<div id="scrollspyHeading3" class="pb-5 about">
<div class="owereIntroImg text-center" style=" background-image: url('src/uiBackground.png');">
<h2 class="fw-bolder text-light py-3">BlooBurn's First Service</h2>
<h1 data-aos="fade-down" data-aos-duration="2000" class="font64 fw-bolder text-light keepText">
[ O`were ]
</h1>
<h3 class="text-center pt-5 text-light keepText">
미용 공간과 O`were 디자이너가 만들어가는
</h3>
<h1 class="text-center fw-bolder text-light">
Collaboration Service
</h1>
<a href="#">
<button type="button" class="btn btn-dark fw-bolder font18 rounded-pill mt-5 py-2 px-5 text-nowrap mx-auto">DOWNLOAD <i class="fas fa-angle-double-right"></i></button>
</a>
</div>
<div class=" eyesonBackground" >
<div class="container py-5">
<h2 class="text-center fw-bolder pt-5"><span class="title pb-3">What is [ O`WERE ] ?</span></h2>
<!-- About-o`were -->
<div class="row justify-content-center py-lg-5 defaultPadding " >
<div class="col-md-5 fw-bolder pt-3 d-flex align-center text-center text-md-start">
<div class="p-3 mx-auto me-lg-0 pt-lg-5">
<h2 class="font26">미용실의 유휴좌석에서</h2>
<h2 class="font26">새로운 가치를 팝(Pop)하다</h2>
<span class="subtitle font14"> </span>
<div class="forWeb">
<h6 class="font18">당신에게 O`were(오월)이 있다는 것,</h6>
<h6 class="font18">미용 서비스의 시공간을 </h6>
<h6 class="font18">뛰어넘을 준비가 되었다는 것</h6>
</div>
<div class="forMobile">
<div class="eyesOnChair ">
<div class="mainGradient">
<img src="src/chair.png">
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2 d-flex pt-lg-5 ">
<div class="sect01 ">
<div class="line-box pt-lg-5">
<span class="line-01"></span>
<span class="line-02"></span>
</div>
</div>
</div>
<div class="col-md-5 d-inline-block mx-auto mt-3 mt-lg-0 ms-lg-0" style="width:336px;">
<div class="text-center">
<div class="forMobile">
<h6 class="font16">당신에게 O`were(오월)이 있다는 것,</h6>
<h6 class="font16">미용 서비스의 시공간을 </h6>
<h6 class="font16">뛰어넘을 준비가 되었다는 것</h6>
</div>
<div class="eyesOnChair forWeb">
<div class="mainGradient">
<img src="src/chair.png">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About-structure -->
<div class="container py-5" style="height:fit-content; padding-bottom: 200px;" >
<h2 class="text-center fw-bolder py-3">전통적인 <span class="title pb-3">수익구조에</span> 도전하다
</h2>
<div data-aos="fade-down" data-aos-duration="1500" class=" d-flex justify-content-center flex-nowrap mx-auto mt-3 show">
<div class="d-inline-block">
<div class="eyesOnicon me-auto">
<div class="mainGradient">
<img src="src/customers.png">
</div>
</div>
<h4 class="text-center py-4 font11">고객</h4>
</div>
<div>
<div class="d-inline-block">
<div class="d-flex ">
<div class="dottedline"></div>
<div class="eyesOnicon mx-0">
<div class="mainGradient">
<img src="src/smartphone.png">
</div>
</div>
<div class="dottedline"></div>
</div>
<h4 class="text-center py-4 font11">플랫폼</h4>
</div>
</div>
<div class="d-inline-block">
<div class="eyesOnicon">
<div class="mainGradient">
<img src="src/haircumb.png">
</div>
</div>
<h4 class="text-center py-4 font11">미용실</h4>
</div>
</div>
<div class="text-center" style="margin: 4rem;">
<h6 class="pt-1 font12">*1~4인 미용실 기준, 월 평균 매출액은 500만원 내외
</h6>
<h6 class=" font12 ">*미용사 임금의 평균은 150만원(기타 여가 서비스 분야 전체 취업자 평균 200만원)</h6>
</div>
<!-- About-arrowIcon -->
<div data-aos="fade-down" data-aos-duration="1500" class="text-center mx-auto pb-5">
<img src="src/arrow.png" style="width:90px; height:90px; margin:50px auto;" class="fadeInDown animated">
</div>
<h2 class="text-center fw-bolder py-3">전혀 새<span class="title pb-3">로워진 수</span>익구조
</h2>
<!-- About-process -->
<div class="pt-5">
<div class="mx-auto text-center">
<div id="user" class="d-inline-block" data-aos="fade-up" data-aos-duration="1500" data-aos-anchor-placement="center-center">
<h5 class="text-center ">고객</h5>
<div class="eyesOnicon mt-3 mb-1 smallVer">
<div class="mainGradient">
<img src="src/customers.png">
</div>
</div>
</div>
</div>
<div class="d-flex" style="margin-top: 120px;">
<div style="z-index: 9;" class="col-5" data-aos="fade-down-left" data-aos-duration="1500" data-aos-anchor-placement="center-bottom">
<div id="designer" class="d-inline-block float-end me-5">
<div class="eyesOnicon smallVer">
<div class="mainGradient">
<img src="src/haircumb.png">
</div>
</div> <h5 class="text-center py-3">디자이너</h5>
</div>
</div>
<div class="col-2 position-relative p-3">
<div class="forMobile">
<div data-aos="fade-down-left" data-aos-duration="1500" data-aos-anchor-placement="center-bottom" class="position-absolute"style="top:-160px; left:50%; transform: translate(-50%);">
<svg>
<defs>
<marker id="pointer" markerWidth="8" markerHeight="8"
refX="8" refY="4" orient="auto-start-reverse">
<polyline points="0,8 8,4 0,0 " stroke="#4c64f2" stroke-width="1" stroke-dasharray="8 0" fill="none" />
</marker>
</defs>
<line
x1="150"
y1="38"
x2="150"
y2="90"
stroke="#b4b4b4"
stroke-width="5"
stroke-dasharray="4,5"
/>
</svg>
</div>
<div class="position-absolute"style="top:20px; left:50%; transform: translate(-50%);">
<svg>
<defs>
<marker id="pointer" markerWidth="8" markerHeight="8"
refX="8" refY="4" orient="auto-start-reverse">
<polyline points="0,8 8,4 0,0 " stroke="#4c64f2" stroke-width="1" stroke-dasharray="8 0" fill="none" />
</marker>
</defs>
<line
x1="30"
y1="60"
x2="100"
y2="16"
stroke="#b4b4b4"
stroke-width="5"
stroke-dasharray="4,5"
/>
</svg>
</div>
<div class="position-absolute"style="top:20px; left:260%; transform: translate(-50%);">
<svg class="">
<defs>
<marker id="pointer" markerWidth="8" markerHeight="8"
refX="8" refY="4" orient="auto-start-reverse">
<polyline points="0,8 8,4 0,0 " stroke="#4c64f2" stroke-width="1" stroke-dasharray="8 0" fill="none" />
</marker>
</defs>
<line
x1="65"
y1="15"
x2="130"
y2="60"
stroke="#b4b4b4"
stroke-width="5"
stroke-dasharray="4,5"
/>
</svg>
</div>
</div>
<div class="forWeb">
<div data-aos="fade-down-left" data-aos-duration="1500" data-aos-anchor-placement="center-bottom" class="position-absolute"style="top:-160px; left:50%; transform: translate(-50%);">
<svg>
<defs>
<marker id="pointer" markerWidth="8" markerHeight="8"
refX="8" refY="4" orient="auto-start-reverse">
<polyline points="0,8 8,4 0,0 " stroke="#4c64f2" stroke-width="1" stroke-dasharray="8 0" fill="none" />
</marker>
</defs>
<line
x1="150"
y1="38"
x2="150"
y2="90"
stroke="#b4b4b4"
stroke-width="5"
stroke-dasharray="4,5"
/>
</svg>
</div>
<div class="position-absolute"style="top:60px; left:30%; transform: translate(-50%);">
<svg>
<defs>
<marker id="pointer" markerWidth="8" markerHeight="8"
refX="8" refY="4" orient="auto-start-reverse">
<polyline points="0,8 8,4 0,0 " stroke="#4c64f2" stroke-width="1" stroke-dasharray="8 0" fill="none" />
</marker>
</defs>
<line
x1="30"
y1="60"
x2="100"
y2="16"
stroke="#b4b4b4"
stroke-width="5"
stroke-dasharray="4,5"
/>
</svg>
</div>
<div class="position-absolute"style="top:60px; left:140%; transform: translate(-50%);">
<svg class="">
<defs>
<marker id="pointer" markerWidth="8" markerHeight="8"
refX="8" refY="4" orient="auto-start-reverse">
<polyline points="0,8 8,4 0,0 " stroke="#4c64f2" stroke-width="1" stroke-dasharray="8 0" fill="none" />
</marker>
</defs>
<line
x1="55"
y1="15"
x2="130"
y2="60"
stroke="#b4b4b4"
stroke-width="5"
stroke-dasharray="4,5"
/>
</svg>
</div>
</div>
<div id="owere" class="d-inline-block position-absolute " style="top:-120px; left:50%; transform: translate(-50%);"data-aos="zoom-out" data-aos-duration="1500" data-aos-anchor-placement="top-bottom">
<div data-aos="zoom-in" data-aos-duration="1500" data-aos-anchor-placement="top-bottom">
<div class="rotate-center">
</div>
</div>
<div class="eyesOnicon mb-3 mt-5 hugeVer" data-aos="" data-aos-duration="1500" data-aos-anchor-placement="top-bottom" >
<div class="mainGradient hugeVer">
<img src="src/smartphone.png">
</div>
</div>
<h4 class="text-center py-3 fw-bold">O`were앱</h4>
</div>
</div>
<div class="col-5" data-aos="fade-down-right" data-aos-duration="1500" data-aos-anchor-placement="center-bottom">
<div id="owner" class="d-inline-block float-start ms-5">
<div class="eyesOnicon smallVer">
<div class="mainGradient ">
<img src="src/salon.png">
</div>
</div> <h5 class="text-center py-3">미용실</h5>
</div>
</div>
</div>
</div>
</div>
<div class="paddingY" style="background-color: #323232; padding-top:100px; padding-bottom: 10rem;">
<div class="container paddingY" >
<h2 class="text-center fw-bolder py-3 text-light"><span class="title pb-3">가치를 제안하다</span></h2>
<!-- Slider main container ```forMobile -->
<div class="forMobile">
<div class="swiper-container">
<!-- Additional required wrapper -->
<!-- Swiper -->
<div class="swiper mySwiper" id="mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide text-light rounded-3 ">
<div class="ih-item py-5 circle colored effect6 scale_up mx-auto">
<div class="info showCorrectly ">
<div>
<h3 class="font48">업주</h3>
<p class="font26">OWNER</p>
</div>
</div>
</div>
<div class="row g-5 mb-5 mt-5 mx-2 text-center text-light">
<div class="col">
<h3 class="fw-bolder pb-4 font18">BENEFITS</h3>
<p class="font16">
홍보 대리 효과<br>매몰 비용에 수익화 시스템 적용<br>미용사 및 미용모델 채용 지원
</p>
</div>
<div class="col">
<h3 class="fw-bolder pb-4 font18">IMPROVEMENT</h3>
<p class="font16">
유휴좌석에서 생기는<br>고정 지출의 솔루션<br>고객 유치 채널 마련
</p>
</div>
<div class="col">
<h3 class="fw-bolder pb-4 font18">VISION</h3>
<p class="font16 keepText">
지속 가능한 고객 유치<br>미용 디자이너 구인
</p>
</div>
<div class="col">
<h3 class="fw-bolder pb-4 font18">RELATIONSHIP</h3>
<p class="font16 keepText">
O'were Zone에 대한 계약 체결
</p>
</div>
</div>
</div>
<div class="swiper-slide text-light rounded-3 ">
<div class="ih-item circle colored effect6 scale_up mx-auto">