-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-agency-particles.html
1063 lines (937 loc) · 50 KB
/
index-agency-particles.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" dir="ltr">
<head>
<meta charset="utf-8">
<!-- Page Title -->
<title>Marvio - Coming Soon & Portfolio Template</title>
<!-- Meta Tags -->
<meta name="description" content="Marvio - awesome coming soon and portfolio template to kick-start your project">
<meta name="keywords" content="mix_design, coming soon, under construction, template, landing page, portfolio, one page, responsive, html5, css3, creative, clean, agency, personal page">
<meta name="author" content="mix_design">
<!-- Viewport Meta-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Template Favicon & Icons Start -->
<link rel="icon" href="img/favicon/favicon.ico" sizes="any">
<link rel="icon" href="img/favicon/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="img/favicon/apple-touch-icon.png">
<link rel="manifest" href="img/favicon/manifest.webmanifest">
<!-- Template Favicon & Icons End -->
<!-- Facebook Metadata Start -->
<meta property="og:image:height" content="1200">
<meta property="og:image:width" content="1200">
<meta property="og:title" content="Marvio - Coming Soon & Portfolio Template">
<meta property="og:description" content="Marvio - awesome coming soon and portfolio template to kick-start your project">
<meta property="og:url" content="http://mixdesign.club/themeforest/marvio/">
<meta property="og:image" content="http://mixdesign.club/themeforest/marvio/img/favicon/og-image.jpg">
<!-- Facebook Metadata End -->
<!-- Template Styles Start -->
<link rel="stylesheet" type="text/css" href="css/loaders/loader.css">
<link rel="stylesheet" type="text/css" href="css/plugins.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- Template Styles End -->
<!-- Custom Browser Color Start -->
<meta name="theme-color" content="#0e0d26">
<meta name="msapplication-navbutton-color" content="#0e0d26">
<meta name="apple-mobile-web-app-status-bar-style" content="#0e0d26">
<!-- Custom Browser Color End -->
</head>
<body>
<!-- Loader Start -->
<div class="loader">
<div class="loader__container">
<div class="loader__circle">
<img src="img/logo-loader.svg" alt="Marvio Template Loader Logo">
</div>
</div>
</div>
<!-- Loader End -->
<!-- Menu Start -->
<nav id="menu" class="menu">
<div class="menu__content">
<div class="container-fluid p-0 fullheight">
<div class="row g-0 flex-xl-row-reverse fullheight">
<!--Menu Data Block Start -->
<div class="col-12 col-xl-8 menu__data">
<!-- Menu Controls Line Start -->
<div class="menudata__controls">
<div class="controls__content">
<div class="container-fluid p-0">
<div class="row g-0">
<div class="col-8">
<div class="controls__leftline d-flex justify-content-start align-items-center">
<!-- Menu Notify Trigger Start -->
<a id="notify-trigger-menu" class="btn-round-mobile btn-notify btn-light-mobile hover-white hover-white-s" href="#0">
<em></em>
<i class="fa-solid fa-bell"></i>
<span class="btn-caption">Notify Me</span>
</a>
<!-- Menu Notify Trigger End -->
<!-- Menu Socials Start -->
<div class="socials-menu">
<ul>
<li>
<a href="https://www.facebook.com/" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
</li>
<li>
<a href="https://www.pinterest.com/" target="_blank">
<i class="fa-brands fa-pinterest"></i>
</a>
</li>
<li>
<a href="https://www.behance.net/" target="_blank">
<i class="fa-brands fa-behance"></i>
</a>
</li>
<li>
<a href="https://twitter.com/" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
</li>
<li>
<a href="https://dribbble.com/" target="_blank">
<i class="fa-brands fa-dribbble"></i>
</a>
</li>
</ul>
</div>
<!-- Menu Socials End -->
</div>
</div>
<div class="col-4">
<div class="controls__rightline d-flex justify-content-end align-items-center">
<!-- Menu Close Button Start -->
<a id="menu-close" class="section-close hover-white hover-white-s" href="#0">
<em></em>
<span></span>
</a>
<!-- Menu Close Button End -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Menu Controls Line End -->
<!-- Menu Links Start -->
<div class="menudata__links">
<div class="container-fluid p-0">
<div class="row g-0 align-items-end">
<div class="col-12 col-md-6">
<!-- Navigation Start -->
<ul class="navigation">
<li>
<a href="#0" id="home-trigger">Home</a>
</li>
<li>
<a href="#0" id="about-trigger">About Us</a>
</li>
<li>
<a href="#0" id="portfolio-trigger">Portfolio</a>
</li>
<li>
<a href="#0" id="contact-trigger">Contact</a>
</li>
</ul>
<!-- Navigation End -->
</div>
<div class="col-12 col-md-6">
<!-- Menu Contact Links Start -->
<ul class="menulinks__contact">
<li>
<p>
<a class="contact-link" href="https://goo.gl/maps/nWXKpGaDPuyH6gxRA" target="_blank">11 West 53 Street,<br>New York, NY 10019</a>
</p>
</li>
<li>
<p>
<a class="contact-link" href="https://goo.gl/maps/xap5o3MZBuC6DFHz8" target="_blank">3400 Broadway,<br>Oakland, CA 94611</a>
</p>
</li>
<li>
<p><a class="contact-link" href="tel:+12127089400">+1 212-708-9400</a></p>
<p><a class="contact-link" href="tel:+15104570211">+1 510-457-0211</a></p>
</li>
<li>
<p><a class="contact-link" href="mailto:example@example.com?subject=Message%20from%20your%20site">hello@marvio.com</a></p>
<p><a class="contact-link" href="mailto:example@example.com?subject=Message%20from%20your%20site">support@marvio.com</a></p>
</li>
</ul>
<!-- Menu Contact Links End -->
</div>
</div>
</div>
</div>
<!-- Menu Links End -->
<!-- Menu Copyright Start -->
<div class="menudata__copyright">
<div class="container-fluid p-0">
<div class="row g-0">
<div class="col-12">
<p class="copyright">By <a href="https://themeforest.net/user/mix_design/portfolio" target="_blank">Mix Design</a>, 2022</p>
</div>
</div>
</div>
</div>
<!-- Menu Copyright End -->
</div>
<!--Menu Data Block End -->
<!--Menu Media Block Start -->
<div class="col-12 col-xl-4 menu__media">
<div class="media__content">
<!-- Menu Image Background Start -->
<div class="menu__image menu-image-1"></div>
<!-- Menu Image Background End -->
</div>
</div>
<!--Menu Media Block End -->
</div>
</div>
</div>
</nav>
<!-- Menu End -->
<!-- Header Start -->
<header id="header" class="header">
<!-- Logo Start -->
<div class="header__logo">
<img src="img/logo.svg" alt="Marvio - Coming Soon & Portfolio Template">
</div>
<!-- Logo End -->
<!-- Header Content Start -->
<div class="header__content fullheight-mobile d-flex align-items-center">
<div class="container-fluid px-0">
<div class="row gx-0 justify-content-end justify-content-xl-start">
<div class="col-auto col-xl-8">
<!-- Header Controls Block Start -->
<div class="header__buttons d-flex justify-content-end align-items-center">
<!-- Socials Desktop Start -->
<div class="socials-desktop">
<ul>
<li>
<a href="https://www.facebook.com/" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
</li>
<li>
<a href="https://www.pinterest.com/" target="_blank">
<i class="fa-brands fa-pinterest"></i>
</a>
</li>
<li>
<a href="https://www.behance.net/" target="_blank">
<i class="fa-brands fa-behance"></i>
</a>
</li>
<li>
<a href="https://twitter.com/" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
</li>
<li>
<a href="https://dribbble.com/" target="_blank">
<i class="fa-brands fa-dribbble"></i>
</a>
</li>
</ul>
</div>
<!-- Socials Desktop End -->
<!-- Notify Trigger Start -->
<a id="notify-trigger" class="btn-round-mobile btn-notify btn-light-outline notify-trigger hover-white hover-white-s" href="#0">
<em></em>
<i class="fa-solid fa-bell"></i>
<span class="btn-caption">Notify Me</span>
</a>
<!-- Notify Trigger End -->
</div>
<!-- Header Controls Block End -->
</div>
<div class="col-auto col-xl-4">
<!-- Menu Trigger Start -->
<div class="header__menu d-flex justify-content-end">
<a id="menu-trigger" class="menu-trigger" href="#0">
<span class="menu-objects"></span>
</a>
</div>
<!-- Menu Trigger End -->
</div>
</div>
</div>
</div>
<!-- Header Content End -->
</header>
<!-- Header End -->
<!-- Main Section Start -->
<section id="main" class="main active">
<div class="main__content">
<div class="container-fluid p-0 fullheight">
<div class="row g-0 fullheight">
<!-- Main Section Intro Start -->
<div class="col-12 col-xl-8 main__intro">
<!-- Intro Content Start -->
<div class="intro__content">
<!-- Headline Start -->
<div id="headline" class="headline">
<span class="headline__subtitle">Let’s meet</span>
<h1>Stay tuned for something awesome.</h1>
</div>
<!-- Headline End -->
</div>
<!-- Intro Content End -->
<!-- Bottom Button Start -->
<div class="intro__button">
<a href="#0" id="menu-trigger-intro" class="btn-bottom">
<span class="circle">
<em></em>
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24px" viewBox="0 0 24 24" width="24px">
<rect fill="none" height="24" width="24"/>
<path d="M14.29,5.71L14.29,5.71c-0.39,0.39-0.39,1.02,0,1.41L18.17,11H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h15.18l-3.88,3.88 c-0.39,0.39-0.39,1.02,0,1.41l0,0c0.39,
0.39,1.02,0.39,1.41,0l5.59-5.59c0.39-0.39,0.39-1.02,0-1.41L15.7,5.71 C15.32,5.32,14.68,5.32,14.29,5.71z"/>
</svg>
</span>
<span class="caption">See more</span>
</a>
</div>
<!-- Bottom Button End -->
</div>
<!-- Main Section Intro End -->
<!-- Main Section Media Start -->
<div class="col-12 col-xl-4 main__media">
<!-- Main Section Image Background Start -->
<div class="media__image media-image-2"></div>
<!-- Main Section Image Background End -->
<!-- Background Effect Start -->
<!-- particles background -->
<div id="particles-js"></div>
<!-- Background Effect End -->
</div>
<!-- Main Section Media End -->
<!-- Sosials Mobile Start -->
<div class="col-12 socials-mobile">
<ul>
<li>
<a href="https://www.facebook.com/" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
</li>
<li>
<a href="https://www.pinterest.com/" target="_blank">
<i class="fa-brands fa-pinterest"></i>
</a>
</li>
<li>
<a href="https://www.behance.net/" target="_blank">
<i class="fa-brands fa-behance"></i>
</a>
</li>
<li>
<a href="https://twitter.com/" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
</li>
<li>
<a href="https://dribbble.com/" target="_blank">
<i class="fa-brands fa-dribbble"></i>
</a>
</li>
</ul>
</div>
<!-- Sosials Mobile End -->
</div>
</div>
</div>
</section>
<!-- Main Section End -->
<!-- About Section Start -->
<section id="about" class="inner about">
<div class="container-fluid p-0 fullheight">
<div class="row g-0 fullheight">
<!-- About Section Content Start -->
<div class="col-12 col-xl-8 inner__content">
<!-- desktop shadow -->
<div class="desktop-shadow"></div>
<!-- inner section blocks -->
<div class="inner__blocks">
<!-- Section Container - Section Title Start -->
<div class="inner__container">
<div class="content-block">
<span class="section__subtitle">About us</span>
<h2>Creativity is above all. Just awesome template.</h2>
<p class="section__text">I wonder if I've been changed in the night? Let me think.
Was I the same when I got up this morning? I almost think I can remember feeling a little different.
But if I'm not the same, the <a class="text-link" href="#" target="_blank">next question</a> is 'Who in the world am I?' Ah, that's the great puzzle!
</p>
</div>
</div>
<!-- Section Container - Section Title End -->
<!-- Section Container - Features Start -->
<div class="inner__container">
<div class="content-block grid-block">
<div class="container-fluid px-4">
<div class="row gx-5 align-items-stretch">
<!-- feature single item -->
<div class="col-12 col-md-4 feature">
<div class="feature__item block-rounded-l">
<div class="feature__image block-rounded-m">
<img src="https://dummyimage.com/500x500/dedede/636363" alt="Marvio Feature Background">
<div class="feature__icon">
<img src="https://dummyimage.com/200x140/636363/ffffff" alt="Marvio Feature Icon">
</div>
</div>
<div class="feature__descr">
<span class="feature__subtitle">Lovely</span>
<h4 class="feature__title">Eye catching design</h4>
<p class="feature__text">Have i gone mad? Im afraid so, but let me tell you something, the best people usualy are.</p>
</div>
</div>
</div>
<!-- feature single item -->
<div class="col-12 col-md-4 feature">
<div class="feature__item block-rounded-l">
<div class="feature__image block-rounded-m">
<img src="https://dummyimage.com/500x500/dedede/636363" alt="Marvio Feature Background">
<div class="feature__icon">
<img src="https://dummyimage.com/200x140/636363/ffffff" alt="Marvio Feature Icon">
</div>
</div>
<div class="feature__descr">
<span class="feature__subtitle">Bright</span>
<h4 class="feature__title">Trendy colors and fonts</h4>
<p class="feature__text">Why, sometimes I've believed as many as six impossible things before breakfast.</p>
</div>
</div>
</div>
<!-- feature single item -->
<div class="col-12 col-md-4 feature">
<div class="feature__item block-rounded-l">
<div class="feature__image block-rounded-m">
<img src="https://dummyimage.com/500x500/dedede/636363" alt="Marvio Feature Background">
<div class="feature__icon">
<img src="https://dummyimage.com/200x140/636363/ffffff" alt="Marvio Feature Icon">
</div>
</div>
<div class="feature__descr">
<span class="feature__subtitle">Unique</span>
<h4 class="feature__title">Sections transitons</h4>
<p class="feature__text">I'm afraid I can't explain myself, sir. Because I am not myself, you see?</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Section Container - Features End -->
<!-- Section Container - Skillbars Start -->
<div class="inner__container">
<div class="content-block">
<!-- skillbar single item -->
<div class="show-skillbar">
<div class="skillbar" data-percent="96">
<span class="skillbar-title">UI/UX Design</span>
<p class="skillbar-bar"></p>
<span class="skill-bar-percent"></span>
</div>
</div>
<!-- skillbar single item -->
<div class="show-skillbar">
<div class="skillbar" data-percent="90">
<span class="skillbar-title">Branding & Logo Design</span>
<p class="skillbar-bar"></p>
<span class="skill-bar-percent"></span>
</div>
</div>
<!-- skillbar single item -->
<div class="show-skillbar">
<div class="skillbar" data-percent="87">
<span class="skillbar-title">3D Modeling</span>
<p class="skillbar-bar"></p>
<span class="skill-bar-percent"></span>
</div>
</div>
<!-- skillbar single item -->
<div class="show-skillbar">
<div class="skillbar" data-percent="98">
<span class="skillbar-title">Illustrations</span>
<p class="skillbar-bar"></p>
<span class="skill-bar-percent"></span>
</div>
</div>
</div>
</div>
<!-- Section Container - Skillbars End -->
<!-- Section Container - Showreel Start -->
<div class="inner__container">
<div class="content-block">
<div class="fullwidth-container">
<div class="showreel showreel-image-1 block-rounded-l">
<div class="showreel__button">
<!-- video trigger -->
<a href="https://vimeo.com/65036292" id="inner-video-trigger" class="inner-video-trigger">
<em></em>
<i class="fa-solid fa-play"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Section Container - Showreel End -->
</div>
</div>
<!-- About Section Content End -->
<!-- About Section Media Start -->
<div class="col-12 col-xl-4 inner__media">
<!-- About Section Image Background Start -->
<div class="image media-image-about"></div>
<!-- About Section Image Background End -->
</div>
<!-- About Section Media End -->
</div>
</div>
</section>
<!-- About Section End -->
<!-- Portfolio Section Start -->
<section id="portfolio" class="inner portfolio">
<div class="container-fluid p-0 fullheight">
<div class="row g-0 fullheight">
<!-- Portfolio Section Content Start -->
<div class="col-12 col-xl-8 inner__content">
<!-- desktop shadow -->
<div class="desktop-shadow"></div>
<!-- inner section blocks -->
<div class="inner__blocks">
<!-- Section Container - Section Title Start -->
<div class="inner__container">
<div class="content-block">
<span class="section__subtitle">Portfolio</span>
<h2>We are creating unique staff. Meet our featured projects.</h2>
<p class="section__text">Be what you would seem to be – or, if you’d like it put more simply – never imagine yourself not to be
otherwise than what it might appear to others that what you were or
<a class="text-link" href="#" target="_blank">might have been</a>
was not otherwise than what you had been
would have appeared to them to be otherwise.</p>
</div>
</div>
<!-- Section Container - Section Title End -->
<!-- Section Container - Gallery Start -->
<div class="inner__container">
<div class="content-block grid-block">
<div class="container-fluid px-4 works__gallery">
<div class="row gx-5 my-gallery" itemscope itemtype="http://schema.org/ImageGallery">
<!-- Works Gallery Single Item Start -->
<figure class="col-12 col-md-6 my-gallery__item" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="https://dummyimage.com/1000x1000/dedede/636363" data-image="https://dummyimage.com/1000x1000/dedede/636363" class="my-gallery__link block-rounded-l" itemprop="contentUrl" data-size="1000x1000">
<img src="https://dummyimage.com/1000x1000/dedede/636363" class="my-gallery__image" itemprop="thumbnail" alt="Image description" />
</a>
<figcaption class="my-gallery__description block-rounded-l" itemprop="caption description">
<h4 class="dark">Cute character
<small>3d render</small>
</h4>
<p>Mauris porttitor lobortis ligula, quis molestie lorem scelerisque eu. Morbi aliquam enim odio,
a mollis ipsum tristique eu.
</p>
</figcaption>
</figure>
<!-- Works Gallery Single Item End -->
<!-- Works Gallery Single Item Start -->
<figure class="col-12 col-md-6 my-gallery__item" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="https://dummyimage.com/1000x1000/636363/ffffff" data-image="https://dummyimage.com/1000x1000/636363/ffffff" class="my-gallery__link block-rounded-l" itemprop="contentUrl" data-size="1000x1000">
<img src="https://dummyimage.com/1000x1000/636363/ffffff" class="my-gallery__image" itemprop="thumbnail" alt="Image description" />
</a>
<figcaption class="my-gallery__description block-rounded-l" itemprop="caption description">
<h4>Alien sphere
<small>Matte painting</small>
</h4>
<p>Mauris porttitor lobortis ligula, quis molestie lorem scelerisque eu. Morbi aliquam enim odio,
a mollis ipsum tristique eu.
</p>
</figcaption>
</figure>
<!-- Works Gallery Single Item End -->
<!-- Works Gallery Single Item Start -->
<figure class="col-12 col-md-6 my-gallery__item" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="https://dummyimage.com/1000x1000/636363/ffffff" data-image="https://dummyimage.com/1000x1000/636363/ffffff" class="my-gallery__link block-rounded-l" itemprop="contentUrl" data-size="1000x1000">
<img src="https://dummyimage.com/1000x1000/636363/ffffff" class="my-gallery__image" itemprop="thumbnail" alt="Image description" />
</a>
<figcaption class="my-gallery__description block-rounded-l" itemprop="caption description">
<h4>Random blocks
<small>3d render</small>
</h4>
<p>Mauris porttitor lobortis ligula, quis molestie lorem scelerisque eu. Morbi aliquam enim odio,
a mollis ipsum tristique eu.
</p>
</figcaption>
</figure>
<!-- Works Gallery Single Item End -->
<!-- Works Gallery Single Item Start -->
<figure class="col-12 col-md-6 my-gallery__item" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="https://dummyimage.com/1000x1000/dedede/636363" data-image="https://dummyimage.com/1000x1000/dedede/636363" class="my-gallery__link block-rounded-l" itemprop="contentUrl" data-size="1000x1000">
<img src="https://dummyimage.com/1000x1000/dedede/636363" class="my-gallery__image" itemprop="thumbnail" alt="Image description" />
</a>
<figcaption class="my-gallery__description block-rounded-l" itemprop="caption description">
<h4 class="dark">Glow cube
<small>3d render</small>
</h4>
<p>Mauris porttitor lobortis ligula, quis molestie lorem scelerisque eu. Morbi aliquam enim odio,
a mollis ipsum tristique eu.
</p>
</figcaption>
</figure>
<!-- Works Gallery Single Item End -->
<!-- Works Gallery Single Item Start -->
<figure class="col-12 col-md-6 my-gallery__item" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="https://dummyimage.com/1000x1000/dedede/636363" data-image="https://dummyimage.com/1000x1000/dedede/636363" class="my-gallery__link block-rounded-l" itemprop="contentUrl" data-size="1000x1000">
<img src="https://dummyimage.com/1000x1000/dedede/636363" class="my-gallery__image" itemprop="thumbnail" alt="Image description" />
</a>
<figcaption class="my-gallery__description block-rounded-l" itemprop="caption description">
<h4 class="dark">Cute character
<small>3d render</small>
</h4>
<p>Mauris porttitor lobortis ligula, quis molestie lorem scelerisque eu. Morbi aliquam enim odio,
a mollis ipsum tristique eu.
</p>
</figcaption>
</figure>
<!-- Works Gallery Single Item End -->
<!-- Works Gallery Single Item Start -->
<figure class="col-12 col-md-6 my-gallery__item" itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="https://dummyimage.com/1000x1000/636363/ffffff" data-image="https://dummyimage.com/1000x1000/636363/ffffff" class="my-gallery__link block-rounded-l" itemprop="contentUrl" data-size="1000x1000">
<img src="https://dummyimage.com/1000x1000/636363/ffffff" class="my-gallery__image" itemprop="thumbnail" alt="Image description" />
</a>
<figcaption class="my-gallery__description block-rounded-l" itemprop="caption description">
<h4>Arrival
<small>Illustration</small>
</h4>
<p>Mauris porttitor lobortis ligula, quis molestie lorem scelerisque eu. Morbi aliquam enim odio,
a mollis ipsum tristique eu.
</p>
</figcaption>
</figure>
<!-- Works Gallery Single Item End -->
</div>
</div>
</div>
</div>
<!-- Section Container - Gallery End -->
</div>
</div>
<!-- Portfolio Section Content End -->
<!-- Portfolio Section Media Start -->
<div class="col-12 col-xl-4 inner__media">
<!-- Portfolio Section Image Background Start -->
<div class="image media-image-portfolio"></div>
<!-- Portfolio Section Image Background End -->
</div>
<!-- Portfolio Section Media End -->
</div>
</div>
</section>
<!-- Portfolio Section End -->
<!-- Contact Section Start -->
<section id="contact" class="inner contact">
<div class="container-fluid p-0 fullheight">
<div class="row g-0 fullheight">
<!-- Contact Section Content Start -->
<div class="col-12 col-xl-8 inner__content">
<!-- desktop shadow -->
<div class="desktop-shadow"></div>
<!-- inner section blocks -->
<div class="inner__blocks">
<!-- Section Container - Section Title Start -->
<div class="inner__container">
<div class="content-block">
<span class="section__subtitle">Contact</span>
<h2>Let’s get in touch. Welcome to the new office.</h2>
<p class="section__text">Our website is under construction but we are ready to go!
You can call us or leave a request here.
We are always glad to see you in <a class="text-link" href="https://goo.gl/maps/nWXKpGaDPuyH6gxRA" target="_blank">our office</a> from
<span>9:00</span> to
<span>18:00</span>.
</p>
</div>
</div>
<!-- Section Container - Section Title End -->
<!-- Section Container - Contact Data Start -->
<div class="inner__container">
<div class="content-block grid-block">
<div class="container-fluid px-4">
<div class="row gx-5 align-items-stretch">
<!-- contact data single item -->
<div class="col-12 col-md-6 col-lg-4 contactdata">
<div class="contactdata__item contactdata-item-1 block-rounded-l">
<div class="contactdata__icon">
<img src="https://dummyimage.com/100x100/dedede/636363" alt="Marvio Contact Icon">
</div>
<h5 class="contactdata__title">Location</h5>
<div class="contactdata__descr d-flex align-items-start">
<div class="contactdata__icon">
<i class="fa-solid fa-location-crosshairs"></i>
</div>
<div class="contactdata__text">
<p><a class="contact-link" href="https://goo.gl/maps/nWXKpGaDPuyH6gxRA" target="_blank">11 West 53 Street,<br>New York, NY 10019</a></p>
</div>
</div>
<div class="contactdata__descr d-flex align-items-start">
<div class="contactdata__icon">
<i class="fa-solid fa-location-crosshairs"></i>
</div>
<div class="contactdata__text">
<p><a class="contact-link" href="https://goo.gl/maps/xap5o3MZBuC6DFHz8" target="_blank">3400 Broadway,<br>Oakland, CA 94611</a></p>
</div>
</div>
</div>
</div>
<!-- contact data single item -->
<div class="col-12 col-md-6 col-lg-4 contactdata">
<div class="contactdata__item contactdata-item-2 block-rounded-l">
<div class="contactdata__icon">
<img src="https://dummyimage.com/100x100/dedede/636363" alt="Marvio Contact Icon">
</div>
<h5 class="contactdata__title">Follow us</h5>
<div class="contactdata__descr d-flex align-items-start">
<ul class="contactdata__socials">
<li>
<i class="fa-brands fa-facebook"></i>
<a class="contact-link" href="https://www.facebook.com/" target="_blank">Facebook</a>
</li>
<li>
<i class="fa-brands fa-instagram"></i>
<a class="contact-link" href="https://www.instagram.com/" target="_blank">Instagram</a>
</li>
<li>
<i class="fa-brands fa-twitter"></i>
<a class="contact-link" href="https://twitter.com/" target="_blank">Twitter</a>
</li>
<li>
<i class="fa-brands fa-pinterest"></i>
<a class="contact-link" href="https://pinterest.com/" target="_blank">Pinterest</a>
</li>
</ul>
</div>
</div>
</div>
<!-- contact data single item -->
<div class="col-12 col-md-6 col-lg-4 contactdata">
<div class="contactdata__item contactdata-item-3 block-rounded-l">
<div class="contactdata__icon">
<img src="https://dummyimage.com/100x100/dedede/636363" alt="Marvio Contact Icon">
</div>
<h5 class="contactdata__title">Contact</h5>
<div class="contactdata__descr d-flex align-items-start">
<div class="contactdata__icon">
<i class="fa-solid fa-phone"></i>
</div>
<div class="contactdata__text">
<p>
<a class="contact-link" href="tel:+12127089400">+1 212-708-9400</a>
<br>
<a class="contact-link" href="tel:+15104570211">+1 510-457-0211</a>
</p>
</div>
</div>
<div class="contactdata__descr d-flex align-items-start">
<div class="contactdata__icon">
<i class="fa-solid fa-envelope"></i>
</div>
<div class="contactdata__text">
<a class="contact-link" href="mailto:example@example.com?subject=Message%20from%20your%20site">hello@marvio.com</a>
<br>
<a class="contact-link" href="mailto:example@example.com?subject=Message%20from%20your%20site">support@marvio.com</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Section Container - Contact Data End -->
<!-- Section Container - Contact Form Start -->
<div class="inner__container">
<div class="content-block">
<h3>Just say hello!</h3>
<p class="block__text">Want to know more about us, tell us about your project or just to say hello?
Drop me a line and I'll get back as soon as possible.
</p>
</div>
<div class="content-block grid-block">
<div class="form-container">
<!-- Contact Form Reply Group Start -->
<div class="reply-group">
<i class="fa-solid fa-circle-check reply-group__icon"></i>
<p class="reply-group__title light">Done!</p>
<span class="reply-group__text light">Thanks for your message. We will get back as soon as possible</span>
</div>
<!-- Contact Form Reply Group End -->
<!-- Contact Form Start -->
<form class="form form-light contact-form" id="contact-form">
<!-- Hidden Required Fields -->
<input type="hidden" name="project_name" value="Marvio - Coming Soon & Portfolio Template">
<input type="hidden" name="admin_email" value="support@mixdesign.club">
<input type="hidden" name="form_subject" value="Contact Form Message">
<!-- END Hidden Required Fields-->
<div class="container-fluid px-4">
<div class="row gx-5">
<div class="col-12 col-md-6">
<input class="block-rounded-s" type="text" name="Name" placeholder="Your Name*" required>
</div>
<div class="col-12 col-md-6">
<input class="block-rounded-s" type="text" name="Company" placeholder="Company Name">
</div>
<div class="col-12 col-md-6">
<input class="block-rounded-s" type="email" name="E-mail" placeholder="Email Adress*" required>
</div>
<div class="col-12 col-md-6">
<input class="block-rounded-s" type="tel" name="Phone" placeholder="Phone Number*" required>
</div>
<div class="col-12">
<textarea class="block-rounded-s margin-s" name="Message" placeholder="A Few Words*" required></textarea>
</div>
<div class="col-12">
<span class="inputs-description">*Required fields</span>
<button class="btn btn-l btn-light hover-gradient hover-gradient-l" type="submit">
<em></em>
<span class="btn-caption">Submit</span>
</button>
</div>
</div>
</div>
</form>
<!-- Contact Form End -->
</div>
</div>
</div>
<!-- Section Container - Contact Form End -->
</div>
</div>
<!-- Contact Section Content End -->
<!-- Contact Section Media Start -->
<div class="col-12 col-xl-4 inner__media">
<!-- Contact Section Image Background Start -->
<div class="image media-image-contact"></div>
<!-- Contact Section Image Background End -->
</div>
<!-- Contact Section Media End -->
</div>
</div>
</section>
<!-- Contact Section End -->
<!-- Notify Popup Start -->
<div id="notify" class="popup notify">
<div class="popup__container">
<!-- Popup Controls Start -->
<div class="popup__controls d-flex justify-content-end">
<a href="#0" id="notify-close" class="popup-close hover-gradient hover-gradient-s">
<em></em>
<span></span>
</a>
</div>
<!-- Popup Controls End -->
<!-- Popup Content Start -->
<div class="popup__content block-rounded-l">
<!-- Notify Popup Title Start -->
<div class="popup-title">
<p class="popup-title__title">Get to know about our launch</p>
<p class="popup-title__text">Subscribe to our newsletter and we will send you a notification about the launch of our brand new site</p>
</div>
<!-- Notify Popup Title End -->
<!-- Notify Form Container Start -->
<div class="form-container">
<!-- Reply Messages Start-->
<div class="reply-group subscription-ok">
<i class="fa-solid fa-circle-check reply-group__icon"></i>
<p class="reply-group__title txt-light">Done!</p>
<span class="reply-group__text">Thanks for subscribing. We will send you a notification about our launch.</span>
</div>
<div class="reply-group subscription-error">
<i class="fa-solid fa-face-frown-open reply-group__icon"></i>
<p class="reply-group__title">Ooops!</p>
<span class="reply-group__text">Something went wrong. Please try again later.</span>
</div>
<!-- Reply Messages End-->
<!-- Notify Contact Form Start-->
<form class="form notify-form form-light">
<input class="block-rounded-s" type="email" placeholder="Your Email" required>
<button class="btn btn-l btn-light hover-gradient hover-gradient-l" type="submit">
<em></em>
<span class="btn-caption">Submit</span>
</button>
</form>
<!-- Notify Contact Form End-->
</div>
<!-- Notify Form Container End -->
</div>
<!-- Popup Content End -->
</div>
</div>
<!-- Notify Popup End -->
<!-- Root element of PhotoSwipe. Must have class pswp. -->
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
<!-- Background of PhotoSwipe.
It's a separate element, as animating opacity is faster than rgba(). -->
<div class="pswp__bg"></div>
<!-- Slides wrapper with overflow:hidden. -->
<div class="pswp__scroll-wrap">
<!-- Container that holds slides. PhotoSwipe keeps only 3 slides in DOM to save memory. -->
<!-- don't modify these 3 pswp__item elements, data is added later on. -->