-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1039 lines (930 loc) · 59.8 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 http-equiv="x-ua-compatible" content="ie=edge">
<title>Startofy</title>
<meta name="robots" content="noindex, follow" />
<meta name="description" content="Building value driven businesses.">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="placeholderround.png">
<!-- CSS
============================================ -->
<link rel="stylesheet" href="assets/css/vendor/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/vendor/slick.css">
<link rel="stylesheet" href="assets/css/vendor/slick-theme.css">
<link rel="stylesheet" href="assets/css/vendor/aos.css">
<link rel="stylesheet" href="assets/css/plugins/feature.css">
<!-- Style css -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="template-color-1 home-vedio spybody white-version" data-spy="scroll" data-target=".navbar-example2" data-offset="150">
<!-- Start Header -->
<header class="rn-header haeder-default black-logo-version header--fixed header--sticky">
<div class="header-wrapper rn-popup-mobile-menu m--0 row align-items-center">
<!-- Start Header Left -->
<div class="col-lg-2 col-6">
<div class="header-left">
<div class="logo">
<a href="index.html">
<img style="padding-left: 10px; height: 90px;" src="images/startofy.png" alt="logo">
</a>
</div>
</div>
</div>
<!-- End Header Left -->
<!-- Start Header Center -->
<div class="col-lg-10 col-6">
<div class="header-center">
<nav id="sideNav" class="mainmenu-nav navbar-example2 d-none d-xl-block onepagenav">
<!-- Start Mainmanu Nav -->
<ul class="primary-menu nav nav-pills">
<li class="nav-item current"><a class="nav-link" style="font-size: 17px;" href="#home">Home</a></li>
<li class="nav-item"><a class="nav-link" style="font-size: 17px;" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" style="font-size: 17px;" href="#portfolio">Portfolio</a></li>
<li class="nav-item"><a class="nav-link" style="font-size: 17px;" href="#contacts">Contact</a></li>
</ul>
<!-- End Mainmanu Nav -->
</nav>
<!-- Start Header Right -->
<!-- End Header Right -->
</div>
</div>
<!-- End Header Center -->
</div>
</header>
<!-- End Header Area -->
<!-- Start Popup Mobile Menu -->
<div class="popup-mobile-menu">
<div class="inner">
<div class="menu-top">
<div class="menu-header">
<a class="logo" href="index.html">
<img style="height: 70px; width:100px;" src="images/startofy.png" alt="Personal Portfolio">
</a>
<div class="close-button">
<button class="close-menu-activation close"><i data-feather="x"></i></button>
</div>
</div>
</div>
<div class="content">
<ul class="primary-menu nav nav-pills onepagenav">
<li class="nav-item current"><a class="nav-link smoth-animation active" href="#home">Home</a></li>
<li class="nav-item"><a class="nav-link smoth-animation" href="#features">Features</a></li>
<li class="nav-item"><a class="nav-link smoth-animation" href="#portfolio">Portfolio</a></li>
<li class="nav-item"><a class="nav-link smoth-animation" href="#resume">Resume</a></li>
<li class="nav-item"><a class="nav-link smoth-animation" href="#clients">Clients</a></li>
<li class="nav-item"><a class="nav-link smoth-animation" href="#pricing">Pricing</a></li>
<li class="nav-item"><a class="nav-link smoth-animation" href="#blog">blog</a></li>
<li class="nav-item"><a class="nav-link smoth-animation" href="#contacts">Contact</a></li>
</ul>
<!-- social sharea area -->
<div class="social-share-style-1 mt--40">
<span class="title">find with me</span>
<ul class="social-share d-flex liststyle">
<li class="facebook"><a href="#"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-facebook">
<path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path>
</svg></a>
</li>
<li class="instagram"><a href="#"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-instagram">
<rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect>
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path>
<line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line>
</svg></a>
</li>
<li class="linkedin"><a href="#"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-linkedin">
<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path>
<rect x="2" y="9" width="4" height="12"></rect>
<circle cx="4" cy="4" r="2"></circle>
</svg></a>
</li>
</ul>
</div>
<!-- end -->
</div>
</div>
</div>
<!-- End Popup Mobile Menu -->
<!-- Start Main Page Wrapper -->
<main class="main-page-wrapper">
<!-- Start Slider Area -->
<div class="rn-slider-area" id="home">
<div class="slide slider-style-1 with-square-box">
<div class="container">
<div class="row row--30 align-items-center">
<div class="order-2 order-lg-1 col-lg-7 mt_md--50 mt_sm--50 mt_lg--30">
<div class="content">
<div class="inner">
<h1 class="title"> <span style="font-size: 80px;">Startofy</span><br><span class="span" style="line-height: 1;"> Building value driven businesses.</span></h1>
<div>
<p style="font-size: 22px; line-height: 1.5;" class="description">Startofy is a unique incubation programme that gives students' entrepreneurial dreams wings. We build value based sustainable businesses keeping the customer at the forefront of everything!</p>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-xl-6 col-md-6 col-sm-6 col-12">
<div class="social-share-inner-left">
<span class="title">Find Us on Social Media</span>
<ul class="social-share d-flex liststyle">
<li class="instagram"><a href="https://instagram.com/start.ofy?igshid=Zjc2ZTc4Nzk=" target="_blank" rel="noopener noreferrer"><i data-feather="instagram"></i></a>
</li>
<li class="linkedin"><a href="https://www.linkedin.com/company/startofy/about/" target="_blank" rel="noopener noreferrer"><i data-feather="linkedin"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="order-1 position-relative order-lg-2 col-lg-5">
<lottie-player
src="https://assets10.lottiefiles.com/packages/lf20_bph802nj.json"
background="transparent"
speed="1"
loop
autoplay
></lottie-player>
</div>
</div>
</div>
</div>
</div>
<!-- End Slider Area -->
<!-- Start Service Area -->
<!-- <div class="rn-service-area rn-section-gap section-separator" id="features">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title text-left" data-aos="fade-up" data-aos-duration="500" data-aos-delay="100" data-aos-once="true">
<span class="subtitle" style="font-size: 18px;">Our Value Propositions</span>
<h2 class="title">About Us</h2>
</div>
</div>
</div>
<div class="row row--25 mt_md--10 mt_sm--10">
<div data-aos="fade-up" data-aos-duration="500" data-aos-delay="100" data-aos-once="true" class="col-lg-6 col-xl-4 col-md-6 col-sm-12 col-12 mt--50 mt_md--30 mt_sm--30">
<div class="rn-service">
<div class="inner">
<div class="icon">
<i data-feather="menu"></i>
</div>
<div class="content">
<h4 class="title">Business Stratagy</h4>
<p class="description">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div>
</div>
</div>
</div>
<div data-aos="fade-up" data-aos-duration="500" data-aos-delay="300" data-aos-once="true" class="col-lg-6 col-xl-4 col-md-6 col-sm-12 col-12 mt--50 mt_md--30 mt_sm--30">
<div class="rn-service">
<div class="inner">
<div class="icon">
<i data-feather="book-open"></i>
</div>
<div class="content">
<h4 class="title">Business Stratagy</h4>
<p class="description"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div>
</div>
</div>
</div>
<div data-aos="fade-up" data-aos-duration="500" data-aos-delay="500" data-aos-once="true" class="col-lg-6 col-xl-4 col-md-6 col-sm-12 col-12 mt--50 mt_md--30 mt_sm--30">
<div class="rn-service">
<div class="inner">
<div class="icon">
<i data-feather="tv"></i>
</div>
<div class="content">
<h4 class="title">Business Stratagy</h4>
<p class="description">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div>
</div>
</div>
</div>
<div data-aos="fade-up" data-aos-duration="500" data-aos-delay="100" data-aos-once="true" class="col-lg-6 col-xl-4 col-md-6 col-sm-12 col-12 mt--50 mt_md--30 mt_sm--30">
<div class="rn-service">
<div class="inner">
<div class="icon">
<i data-feather="twitch"></i>
</div>
<div class="content">
<h4 class="title">Business Stratagy</h4>
<p class="description">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s
</p>
</div>
</div>
</div>
</div>
<div data-aos="fade-up" data-aos-duration="500" data-aos-delay="300" data-aos-once="true" class="col-lg-6 col-xl-4 col-md-6 col-sm-12 col-12 mt--50 mt_md--30 mt_sm--30">
<div class="rn-service">
<div class="inner">
<div class="icon">
<i data-feather="wifi"></i>
</div>
<div class="content">
<h4 class="title">Business Stratagy</h4>
<p class="description">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div>
</div>
</div>
</div>
<div data-aos="fade-up" data-aos-duration="500" data-aos-delay="500" data-aos-once="true" class="col-lg-6 col-xl-4 col-md-6 col-sm-12 col-12 mt--50 mt_md--30 mt_sm--30">
<div class="rn-service">
<div class="inner">
<div class="icon">
<i data-feather="slack"></i>
</div>
<div class="content">
<h4 class="title">Business Stratagy</h4>
<p class="description"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- End Service Area -->
<!-- Start about Area -->
<div id="about" class="rn-about-area rn-section-gap section-separator">
<div class="container">
<div class="row">
<div class="col-lg-5" style="display:flex; align-items:center;">
<div data-aos="fade-up" data-aos-duration="1000" data-aos-delay="100" data-aos-once="true" class="image-area">
<div class="thumbnail">
<img src="images/startofy.png" alt="Portfolio Image">
</div>
</div>
</div>
<div data-aos="fade-up" data-aos-duration="1000" data-aos-delay="100" data-aos-once="true" class="col-lg-7 mt_sm--30">
<div class="contant">
<div class="section-title text-left">
<span class="subtitle">Our Business Strategy</span>
<h2 class="title">About Us</h2>
</div>
<p class="discription">
At Startofy, we build value driven businesses that solve problems and unleash new opportunities in the market. We bootstrap early stage startups following the methodical approach of design thinking ideation, idea validation, market validation, building MVP product, finding product market fit, pricing, packaging, finding the first customer to building and growing the business.
</p>
<p class="discription">
Startofy team has built the diverse set of businesses in areas like technology, e-commerce, food, interior design, event management
</p>
<a class="rn-btn" href="#portfolio"><span>VIEW OUR PORTFOLIO</span></a>
</div>
</div>
</div>
</div>
</div>
<!-- End about Area -->
<!-- Start Portfolio Area -->
<div class="rn-portfolio-area rn-section-gap section-separator" id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title text-center">
<span class="subtitle" style="font-size: 20px;">Our Businesses</span>
<h2 class="title">Portfolio</h2>
</div>
</div>
</div>
<div class="row row--25 mt--10 mt_md--10 mt_sm--10">
<!-- Start Single Portfolio -->
<div data-aos="fade-up" data-aos-delay="100" data-aos-once="true" class="col-lg-6 col-xl-4 col-md-6 col-12 mt--50 mt_md--30 mt_sm--30">
<div class="rn-portfolio" data-bs-toggle="modal" data-bs-target="#assett">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img src="images/assett.jpg" alt="Personal Portfolio Images">
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)" style="font-size: 35px;">Assett</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)" style="font-size: 20px; text-decoration:none;">At Assett our mission is to help every individual manage and grow the asset smartly. Assett helps you track your wealth, establish goals in life and helps you achieve the goals with right investment plans. <i class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div data-aos="fade-up" data-aos-delay="300" data-aos-once="true" class="col-lg-6 col-xl-4 col-md-6 col-12 mt--50 mt_md--30 mt_sm--30">
<div class="rn-portfolio" data-bs-toggle="modal" data-bs-target="#habba">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img src="images/habba.png" alt="Personal Portfolio Images">
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)" style="font-size: 35px;">Habba</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)" style="font-size: 20px;">Festivals missing that homely charm? We're recreating the way India celebrates festivals.<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div data-aos="fade-up" data-aos-delay="500" data-aos-once="true" class="col-lg-6 col-xl-4 col-md-6 col-12 mt--50 mt_md--30 mt_sm--30">
<div class="rn-portfolio" data-bs-toggle="modal" data-bs-target="#loop">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img src="images/loop.jpg" alt="Personal Portfolio Images">
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)" style="font-size: 35px;">Loop</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)" style="font-size: 20px;">Your everyday tasks need not be an endless loop. We're simplifying your work - small tasks, big projects, mundane work, everything!<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div data-aos="fade-up" data-aos-delay="500" data-aos-once="true" class="col-lg-6 col-xl-4 col-md-6 col-12 mt--50 mt_md--30 mt_sm--30">
<div class="rn-portfolio" data-bs-toggle="modal" data-bs-target="#cheers">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img src="images/cheers.jpg" alt="Personal Portfolio Images"></a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)" style="font-size: 35px;">Cheers Cafe</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)" style="font-size: 20px;">Cheers Cafe is a fun hangout place with great ambiance, delicious food and beverages. Cheers Cafe at Cunningham road, Bangalore hosted many guests having great time for their family and team. <i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div data-aos="fade-up" data-aos-delay="500" data-aos-once="true" class="col-lg-6 col-xl-4 col-md-6 col-12 mt--50 mt_md--30 mt_sm--30">
<div class="rn-portfolio" data-bs-toggle="modal" data-bs-target="#homedez">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img src="images/home.jpg" alt="Personal Portfolio Images"></a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)" style="font-size: 35px;">HomeDez</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)" style="font-size: 20px;">Make home your own with us at HomeDez. Make a best in class home with us that is fully customisable to your choice and made to fit in your cost expectations. <i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div data-aos="fade-up" data-aos-delay="500" data-aos-once="true" class="col-lg-6 col-xl-4 col-md-6 col-12 mt--50 mt_md--30 mt_sm--30">
<div class="rn-portfolio" data-bs-toggle="modal" data-bs-target="#prod">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img src="images/prod.jpg" alt="Personal Portfolio Images"></a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)" style="font-size: 35px;">Productive Weekends</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)" style="font-size: 20px;">There are roughly 53 Sundays and 52 Saturdays in a year. This accounts to 105 days of your 365. Absolutely, sleep through some, daydream through many, binge watch, pub hop and travel.
<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
</div>
</div>
</div>
<!-- End portfolio Area -->
<!-- Start Contact section -->
<div class="rn-contact-area rn-section-gap section-separator" id="contacts">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title text-center">
<span class="subtitle" style="font-size: 20px;">Let's Connect</span>
<h2 class="title">Contact Us</h2>
</div>
</div>
</div>
<div class="row mt--50 mt_md--40 mt_sm--40 mt-contact-sm">
<div data-aos-delay="600" class="col-lg-7 contact-input">
<div class="contact-form-wrapper">
<div class="introduce">
<form class="rnt-contact-form rwt-dynamic-form row" id="contact-form" method="POST" action="mail.php">
<div class="col-lg-6">
<div class="form-group">
<label for="contact-name">Your Name</label>
<input class="form-control form-control-lg" name="contact-name" id="contact-name" type="text">
</div>
</div>
<div class="col-lg-6">
<div class="form-group">
<label for="contact-phone">Phone Number</label>
<input class="form-control" name="contact-phone" id="contact-phone" type="text">
</div>
</div>
<div class="col-lg-12">
<div class="form-group">
<label for="contact-email">Email</label>
<input class="form-control form-control-sm" id="contact-email" name="contact-email" type="email">
</div>
</div>
<!-- <div class="col-lg-12">
<div class="form-group">
<label for="subject">subject</label>
<input class="form-control form-control-sm" id="subject" name="subject" type="text">
</div>
</div> -->
<div class="col-lg-12">
<div class="form-group">
<label for="contact-message">Your Message</label>
<textarea name="contact-message" id="contact-message" cols="30" rows="10"></textarea>
</div>
</div>
<div class="col-lg-12">
<button name="submit" type="submit" id="submit" class="rn-btn">
<span>SEND MESSAGE</span>
<i data-feather="arrow-right"></i>
</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="contact-about-area">
<div class="title-area">
<h4 class="title" style="font-size: 50px; color:#0a66fa">Startofy</h4>
<span style="font-size: 25px;">Building value driven businesses</span>
</div>
<div class="description">
<p style="font-size: 20px;">Would you like to join us?<br/> Have a new idea? Or <br/> want to have a simple coffee chat? <br/>Hit us up!
</p>
<span class="phone">Phone: <a href="tel:99999999999">+91 9999999999</a></span>
<span class="mail">Email: <a href="mailto:[email protected]">[email protected]</a></span>
</div>
<div class="social-area">
<!-- <div class="name">FIND WITH ME</div> -->
<div class="social-icone">
<a href="https://instagram.com/start.ofy?igshid=Zjc2ZTc4Nzk=" target="_blank" rel="noopener noreferrer"><i data-feather="instagram"></i></a>
<a href="https://www.linkedin.com/company/startofy/about/" target="_blank" rel="noopener noreferrer"><i data-feather="linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Contuct section -->
<!-- Modal Portfolio Body area Start -->
<div class="modal fade" id="assett" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i data-feather="x"></i></span>
</button>
</div>
<div class="modal-body">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="portfolio-popup-thumbnail">
<div class="image">
<img class="w-100" src="images/assett.jpg" alt="slide">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="text-content">
<h3>
<span>Finance</span> Assett Wealth
</h3>
<p class="mb--30">At Assett our mission is to help every individual manage and grow the asset smartly. Assett helps you track your wealth, establish goals in life and helps you achieve the goals with right investment plans. </p>
<p>We also guide you establish financial ease and safety for your loved ones after you. Assett helps you connect with the expert chartered accountants, lawyers and investment advisors to guide you in this journey. </p>
<div class="button-group mt--20">
<a style="font-size: 15px;" href="https://instagram.com/assett.wealth" target="_blank"
rel="noopener noreferrer" class="rn-btn thumbs-icon">
<span>@assett.wealth</span>
<i style="font-size: 25px;" data-feather="instagram"></i>
</a>
<a style="font-size: 18px;" href="https://assett.netlify.app" target="_blank"
rel="noopener noreferrer" class="rn-btn">
<span>Visit Website</span>
<i data-feather="chevron-right"></i>
</a>
</div>
</div>
<!-- End of .text-content -->
</div>
</div>
<!-- End of .row Body-->
</div>
</div>
</div>
</div>
<!-- End Modal Portfolio area -->
<!-- Modal Portfolio Body area Start -->
<div class="modal fade" id="habba" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i data-feather="x"></i></span>
</button>
</div>
<div class="modal-body">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="portfolio-popup-thumbnail">
<div class="image">
<img class="w-100" src="images/habba.png" alt="slide">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="text-content">
<h3>
<span>Cultural</span> Habba
</h3>
<p class="mb--30">Festivals are an important part of our lives. We are a group of enthusiastic individuals looking to improve the festival experience in India.</p>
<p>Right from delivering the festival kit right in time for the festival, to running festival events, to delivering the festival special cuisine from our Habba cloud kitchen. Most importantly build the value through festivals in a fun way and with awareness on how and why we celebrate them.</p>
<div class="button-group mt--20">
<a style="font-size: 15px;" href="https://instagram.com/habbaofficial" target="_blank"
rel="noopener noreferrer" class="rn-btn thumbs-icon">
<span>@habbaofficial</span>
<i style="font-size: 25px;" data-feather="instagram"></i>
</a>
<!-- <a style="font-size: 18px;" href="https://assett.netlify.app" target="_blank"
rel="noopener noreferrer" class="rn-btn">
<span>Visit Website</span>
<i data-feather="chevron-right"></i>
</a> -->
</div>
</div>
<!-- End of .text-content -->
</div>
</div>
<!-- End of .row Body-->
</div>
</div>
</div>
</div>
<!-- End Modal Portfolio area -->
<!-- Modal Portfolio Body area Start -->
<div class="modal fade" id="loop" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i data-feather="x"></i></span>
</button>
</div>
<div class="modal-body">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="portfolio-popup-thumbnail">
<div class="image">
<img class="w-100" src="images/loop.jpg" alt="slide">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="text-content">
<h3>
<span>Collaboration</span> Loop
</h3>
<p class="mb--30">Remote and Hybrid work is part of our lives now, and we need to have the right focus, work-life balance in this new era of work to be productive. Loop helps you avoid the distractions you have at work to help you stay focused at work.</p>
<p>'Sahayak' app helps assign and track work for your home maid, drivers, gardener in an easy way to avoid distraction for you at work. 'Do it now' app, helps you very easily track the top 3 things to do in a day with reminders to make you productive.</p>
<div class="button-group mt--20">
<a style="font-size: 15px;" href="https://instagram.com/collaboration.loop" target="_blank"
rel="noopener noreferrer" class="rn-btn thumbs-icon">
<span>@collaboration.loop</span>
<i style="font-size: 25px;" data-feather="instagram"></i>
</a>
<!-- <a style="font-size: 18px;" href="https://assett.netlify.app" target="_blank"
rel="noopener noreferrer" class="rn-btn">
<span>Visit Website</span>
<i data-feather="chevron-right"></i>
</a> -->
</div>
</div>
<!-- End of .text-content -->
</div>
</div>
<!-- End of .row Body-->
</div>
</div>
</div>
</div>
<!-- End Modal Portfolio area -->
<!-- Modal Portfolio Body area Start -->
<div class="modal fade" id="cheers" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i data-feather="x"></i></span>
</button>
</div>
<div class="modal-body">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="portfolio-popup-thumbnail">
<div class="image">
<img class="w-100" src="images/cheers.jpg" alt="slide">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="text-content">
<h3>
<span>Cafe</span> Cheers Cafe
</h3>
<p class="mb--30">Cheers Cafe is a fun hangout place with great ambiance, delicious food and beverages. Cheers Cafe at Cunningham road, Bangalore hosted many guests having great time for their family and team. </p>
<div class="button-group mt--20">
<!-- <a style="font-size: 15px;" href="https://instagram.com/collaboration.loop" target="_blank"
rel="noopener noreferrer" class="rn-btn thumbs-icon">
<span>@collaboration.loop</span>
<i style="font-size: 25px;" data-feather="instagram"></i>
</a> -->
<a style="font-size: 18px;" href="https://assett.netlify.app" target="_blank"
rel="noopener noreferrer" class="rn-btn">
<span>View on maps</span>
<i data-feather="navigation"></i>
</a>
</div>
</div>
<!-- End of .text-content -->
</div>
</div>
<!-- End of .row Body-->
</div>
</div>
</div>
</div>
<!-- End Modal Portfolio area -->
<!-- Modal Blog Body area Start -->
<div class="modal fade" id="exampleModalCenters" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-news" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i data-feather="x"></i></span>
</button>
</div>
<!-- End of .modal-header -->
<div class="modal-body">
<img src="assets/images/blog/blog-big-01.jpg" alt="news modal" class="img-fluid modal-feat-img">
<div class="news-details">
<span class="date">2 May, 2021</span>
<h2 class="title">Digital Marketo to Their New Office.</h2>
<p>Nobis eleifend option congue nihil imperdiet doming id quod mazim placerat
facer
possim assum.
Typi non
habent claritatem insitam; est usus legentis in iis qui facit eorum
claritatem.
Investigationes
demonstraverunt
lectores legere me lius quod ii legunt saepius. Claritas est etiam processus
dynamicus, qui
sequitur
mutationem consuetudium lectorum.</p>
<h4>Nobis eleifend option conguenes.</h4>
<p>Mauris tempor, orci id pellentesque convallis, massa mi congue eros, sed
posuere
massa nunc quis
dui.
Integer ornare varius mi, in vehicula orci scelerisque sed. Fusce a massa
nisi.
Curabitur sit
amet
suscipit nisl. Sed eget nisl laoreet, suscipit enim nec, viverra eros. Nunc
imperdiet risus
leo,
in rutrum erat dignissim id.</p>
<p>Ut rhoncus vestibulum facilisis. Duis et lorem vitae ligula cursus venenatis.
Class aptent
taciti sociosqu
ad litora torquent per conubia nostra, per inceptos himenaeos. Nunc vitae
nisi
tortor. Morbi
leo
nulla, posuere vel lectus a, egestas posuere lacus. Fusce eleifend hendrerit
bibendum. Morbi
nec
efficitur ex.</p>
<h4>Mauris tempor, orci id pellentesque.</h4>
<p>Nulla non ligula vel nisi blandit egestas vel eget leo. Praesent fringilla
dapibus dignissim.
Pellentesque
quis quam enim. Vestibulum ultrices, leo id suscipit efficitur, odio lorem
rhoncus dolor, a
facilisis
neque mi ut ex. Quisque tempor urna a nisi pretium, a pretium massa
tristique.
Nullam in
aliquam
diam. Maecenas at nibh gravida, ornare eros non, commodo ligula. Sed
efficitur
sollicitudin
auctor.
Quisque nec imperdiet purus, in ornare odio. Quisque odio felis, vestibulum
et.</p>
</div>
<!-- Comment Section Area Start -->
<div class="comment-inner">
<h3 class="title mb--40 mt--50">Leave a Reply</h3>
<form action="#">
<div class="row">
<div class="col-lg-6 col-md-12 col-12">
<div class="rnform-group"><input type="text" placeholder="Name">
</div>
<div class="rnform-group"><input type="email" placeholder="Email">
</div>
<div class="rnform-group"><input type="text" placeholder="Website">
</div>
</div>
<div class="col-lg-6 col-md-12 col-12">
<div class="rnform-group">
<textarea placeholder="Comment"></textarea>
</div>
</div>
<div class="col-lg-12">
<a class="rn-btn" href="#"><span>SUBMIT NOW</span></a>
</div>
</div>
</form>
</div>
<!-- Comment Section End -->
</div>
<!-- End of .modal-body -->
</div>
</div>
</div>
<!-- End Modal Blog area -->
<!-- Modal Portfolio Body area Start -->
<div class="modal fade" id="homedez" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i data-feather="x"></i></span>
</button>
</div>
<div class="modal-body">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="portfolio-popup-thumbnail">
<div class="image">
<img class="w-100" src="images/home.jpg" alt="slide">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="text-content">
<h3>
<span>Design</span> HomeDez
</h3>
<p class="mb--30">Make home your own with us at HomeDez. Make a best in class home with us that is fully customisable to your choice and made to fit in your cost expectations. </p>
<p>We created dream home interior for over 1000 families, lets do it for you! HomeDez provides complete solution for your home and office from interior design & execution, civil work, tiling, gas piping, electrical, false ceiling and gardening.</p>
<div class="button-group mt--20">
<a style="font-size: 15px;" href="https://instagram.com/homedez_interiors" target="_blank"
rel="noopener noreferrer" class="rn-btn thumbs-icon">
<span>@homedez_interiors</span>
<i style="font-size: 25px;" data-feather="instagram"></i>
</a>
<a style="font-size: 18px;" href="https://homedez.in/" target="_blank"
rel="noopener noreferrer" class="rn-btn">
<span>Visit Website</span>
<i data-feather="chevron-right"></i>
</a>
</div>
</div>
<!-- End of .text-content -->
</div>
</div>
<!-- End of .row Body-->
</div>
</div>
</div>
</div>
<!-- End Modal Portfolio area -->
<!-- Modal Portfolio Body area Start -->
<div class="modal fade" id="prod" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i data-feather="x"></i></span>
</button>
</div>
<div class="modal-body">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="portfolio-popup-thumbnail">
<div class="image">
<img class="w-100" src="images/prod.jpg" alt="slide">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="text-content">
<h3>
<span>Recreational</span> Productive Weekends
</h3>
<p class="mb--30">
There are roughly 53 Sundays and 52 Saturdays in a year. This accounts to 105 days of your 365. Absolutely, sleep through some, daydream through many, binge watch, pub hop and travel.
But hey, weekends are always too short and before they zip by, we attempt to make them a teeny tiny bit inspiring. </p>
<p>We, at Productive Weekends, came together because this question on a Monday morning always intrigued us- 'So, how was your weekend?'
Bored of similar answers, we are in an attempt to create some rhythm, explore concepts, innovate, meet people...and just about absolutely anything, because why have a structure when the thrill to go beyond is more exciting? </p>
<p>
So, whether it is Design Thinking, exploring village life, drama, walks, doing courses together or just talking to students about their career and life, we love to learn, unlearn and make ourselves a little more productive- living life, each weekend at a time!
</p>
<div class="button-group mt--20">
<a style="font-size: 15px;" href="https://instagram.com/productive._.weekends" target="_blank"
rel="noopener noreferrer" class="rn-btn thumbs-icon">
<span>@productive._.weekends</span>
<i style="font-size: 25px;" data-feather="instagram"></i>
</a>
<a style="font-size: 18px;" href=" https://www.facebook.com/productiveweekends/" target="_blank"
rel="noopener noreferrer" class="rn-btn">
<span>Visit Website</span>
<i data-feather="chevron-right"></i>
</a>
</div>
</div>
<!-- End of .text-content -->
</div>
</div>
<!-- End of .row Body-->
</div>
</div>
</div>
</div>
<!-- End Modal Portfolio area -->
<!-- Back to top Start -->
<div class="backto-top">
<div>
<i data-feather="arrow-up"></i>
</div>
</div>