-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
820 lines (757 loc) · 18.3 KB
/
styles.css
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
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
/* Light Theme */
:root {
--background-color: #ffffff;
--text-color: #ffffff;
--primary-color: #3273dc;
/* Add more variables as needed */
}
/* Dark Theme */
[data-theme="dark"] {
--background-color: #1a1a1a;
--text-color: #ffffff;
--primary-color: #00d1b2;
}
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body,
html {
height: 100%;
font-family: "Montserrat", sans-serif;
color: #c4c5ca;
background: rgb(22 33 76);
/* background: radial-gradient(circle, rgba(30,45,102,1) 0%, rgba(12,18,41,1) 100%); */
}
body {
padding-top: 65px;
overflow-x: hidden;
}
nav {
width: 100%;
background: rgb(6, 15, 47);
background: radial-gradient(
circle,
rgba(6, 15, 47, 1) 0%,
rgba(12, 18, 41, 1) 100%
);
color: white;
text-align: center;
padding: 1.5em 0;
}
.navbar {
position: fixed; /* Keep the navbar fixed at the top */
top: 0;
left: 0;
width: 100%;
z-index: 1000; /* Ensure it's above other content */
display: flex; /* Use flexbox for layout */
justify-content: space-between; /* Space between the title and menu */
align-items: center; /* Align items vertically */
padding: 0.9em 2em; /* Adjust to your preference */
background-color: #333; /* Or any color you prefer */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: adds shadow for depth */
}
.nav-menu {
justify-content: flex-end;
}
.nav-title,
.nav-menu {
display: flex;
width: inherit;
}
.nav-menu a {
color: #fff;
text-decoration: none;
margin-left: 20px; /* Space between menu items */
}
.nav-logo img,
.nav-logo {
height: 50px; /* Adjust based on your logo's size */
max-width: fit-content;
}
.nav-title {
font-size: 24px;
margin-left: 20px; /* Space between logo and title */
}
.nav-menu a {
color: #fff;
text-decoration: none;
margin-left: 20px; /* Space between menu items */
}
.geometry-group {
position: absolute;
width: 100%; /* Ensure it spans the full width of its parent */
height: 100%; /* Ensure it spans the full height of its parent */
top: 0;
left: 0;
justify-content: center; /* Not necessary unless using flex, but kept for reference */
}
/* Example positioning for a group, adjust as necessary */
.geometry-group .circle {
margin: 0 10px;
}
.hero {
position: relative;
display: flex;
justify-content: center;
align-items: center;
height: 90vh;
/* overflow: hidden; */
background: rgb(30, 45, 102);
background: radial-gradient(
circle,
rgba(30, 45, 102, 1) 0%,
rgba(12, 18, 41, 1) 100%
);
z-index: 0;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes breath {
0%,
100% {
transform: scale(0.9);
}
50% {
transform: scale(1.1);
}
}
.flower-of-life {
width: 100%;
height: 100%;
/* overflow: show; */
animation: spin 20s linear infinite;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
margin: auto; /* Center the SVG in its container */
/* Ensure the rotation is around the center */
transform-origin: center;
z-index: -1;
}
.circle {
width: 77px; /* Adjust size as desired */
height: 77px; /* Adjust size as desired */
border-radius: 50%;
position: absolute;
display: flex; /* Enables flexbox properties */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
font-size: 48px;
z-index: 2;
/* filter: saturate(65%) brightness(85%) !important; */
}
/* Central circle fixed positioning */
.central {
width: 222px !important;
height: 222px !important;
border-radius: 50%;
background-color: #0d102d;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border: 5px solid rgb(0, 0, 93);
z-index: 2;
.central-logo {
width: 77%;
display: flex;
justify-content: center;
align-items: center;
border-radius: 11px;
}
}
/* Adjust positions of orbiting circles using top and left */
.circle00 {
/* Directly above the central circle */
top: calc(51% - 115px);
left: calc(50% - 3px);
background-color: aqua;
border: 3px solid rgb(0, 205, 205);
}
.circle01 {
/* Top right */
top: calc(50% - 60px);
left: calc(50% + 55px);
background-color: blueviolet;
border: 3px solid rgb(110, 19, 195);
}
.circle02 {
/* Bottom right */
top: calc(45% + 40px);
left: calc(50% + 35px);
background-color: burlywood;
border: 3px solid rgb(192, 151, 98);
}
.circle03 {
/* Bottom left */
top: calc(45% + 45px);
left: calc(50% - 40px);
background-color: chocolate;
border: 3px solid rgb(176, 80, 12);
}
.circle04 {
/* Top left */
top: calc(50% - 60px);
left: calc(50% - 60px);
background-color: olivedrab;
border: 3px solid rgb(79, 109, 17);
}
/* Second Orbit (Inner Orbit) */
.circle10 {
/* Directly above */
top: calc(50% - 100px);
left: 44%;
background-color: coral;
border: 3px solid rgb(226, 100, 55);
transform: translateX(-35%);
}
.circle11 {
/* Top right */
top: calc(45% - 30px);
left: calc(44% + 65px);
background-color: cyan;
border: 3px solid rgb(0, 205, 205);
transform: translateX(-35%);
}
.circle12 {
/* Bottom right */
top: calc(40% + 75px);
left: calc(45% + 60px);
background-color: darkorange;
border: 3px solid rgb(207, 114, 2);
transform: translateX(-35%);
}
.circle13 {
/* Bottom left */
top: calc(45% + 75px);
left: 45%;
background-color: deeppink;
border: 3px solid rgb(199, 1, 107);
transform: translateX(-35%);
}
.circle14 {
/* Top left */
top: calc(42% + 70px);
left: calc(44% - 45px);
background-color: gold;
border: 3px solid rgb(216, 183, 0);
transform: translateX(-35%);
}
.circle15 {
/* Top left */
top: calc(42%);
left: calc(44% - 60px);
background-color: blanchedalmond;
border: 3px solid rgb(214, 185, 141);
transform: translateX(-35%);
}
/* Outer Orbit Set 1 (Largest Orbit) */
.circle20 {
/* Directly above */
top: calc(50% - 180px);
left: 50%;
background-color: lightseagreen;
border: 3px solid rgb(0, 157, 157);
transform: translateX(-50%);
}
.circle21 {
/* Top right */
top: calc(34% - 15px);
left: calc(52% + 25px);
background-color: mediumslateblue;
border: 3px solid rgb(82, 61, 197);
transform: translateX(-50%);
}
.circle22 {
/* Bottom right */
top: calc(36% + 35px);
left: calc(52% + 25px);
background-color: navy;
border: 3px solid rgb(17, 17, 177);
transform: translateX(-50%);
}
.circle23 {
/* Bottom left */
top: calc(35% + 65px);
left: calc(50%);
background-color: orchid;
border: 3px solid rgb(175, 69, 172);
transform: translateX(-50%);
}
.circle24 {
/* Top left */
top: calc(31% + 2px);
left: calc(48% - 25px);
background-color: palevioletred;
border: 3px solid rgb(171, 71, 105);
transform: translateX(-50%);
}
.circle25 {
/* Top left */
top: calc(34% + 45px);
left: calc(48% - 30px);
background-color: lightsteelblue;
border: 3px solid rgb(112, 143, 183);
transform: translateX(-50%);
}
/* Outer Orbit Set 2 (Largest Orbit) */
.circle26 {
/* Directly above */
top: calc(50% - 180px);
left: 50%;
background-color: rgb(32, 69, 178);
border: 3px solid rgb(16, 48, 144);
transform: translateX(-50%);
}
.circle27 {
/* Top right */
top: calc(35% - 20px);
left: calc(52% + 22px);
background-color: rgb(78, 66, 145);
border: 3px solid rgb(53, 43, 109);
transform: translateX(-50%);
}
.circle28 {
/* Bottom right */
top: calc(36% + 35px);
left: calc(52% + 5px);
background-color: rgb(30, 30, 255);
border: 3px solid rgb(13, 13, 210);
transform: translateX(-50%);
}
.circle29 {
/* Bottom left */
top: calc(36% + 70px);
left: calc(50% - 15px);
background-color: rgb(129, 63, 165);
border: 3px solid rgb(92, 34, 124);
transform: translateX(-50%);
}
.circle30 {
/* Top left */
top: calc(30% + 5px);
left: calc(47% - 5px);
background-color: rgb(108, 48, 68);
border: 3px solid rgb(92, 29, 50);
transform: translateX(-50%);
}
.circle31 {
/* Top left */
top: calc(35% + 35px);
left: calc(45% + 15px);
background-color: lightsteelblue;
border: 3px solid rgb(112, 143, 182);
transform: translateX(-50%);
}
/* Orbit Animation */
@keyframes orbit {
0% {
transform: translate(-50%, -50%) rotate(0deg) translateX(200px)
rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg) translateX(200px)
rotate(-360deg);
}
}
/* Orbit Animation */
@keyframes orbit2 {
0% {
transform: translate(-50%, -50%) rotate(0deg) translateX(-275px)
rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg) translateX(-275px)
rotate(-360deg);
}
}
/* Orbit Animation */
@keyframes orbit3 {
0% {
transform: translate(-50%, -50%) rotate(0deg) translateX(275px)
rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg) translateX(275px)
rotate(-360deg);
}
}
/* Orbit Animation */
@keyframes orbit4 {
0% {
transform: translate(-45%, -45%) rotate(0deg) translateX(-375px)
rotate(0deg);
}
100% {
transform: translate(-45%, -45%) rotate(360deg) translateX(-375px)
rotate(-360deg);
}
}
/* Apply the Orbit Animation to All Circles */
.geometry-group .circle,
.circle01,
.circle02,
.circle03,
.circle04 {
animation: orbit 10s linear infinite;
}
.circle10,
.circle11,
.circle12,
.circle13,
.circle14,
.circle15 {
animation: orbit2 10s linear infinite;
}
.circle20,
.circle21,
.circle22,
.circle23,
.circle24,
.circle25 {
animation: orbit3 10s linear infinite;
}
.circle26,
.circle27,
.circle28,
.circle29,
.circle30,
.circle31 {
animation: orbit4 10s linear infinite;
}
@keyframes popIn {
0% {
transform: scale(0);
opacity: 0;
}
50% {
transform: scale(1.2);
opacity: 1;
}
100% {
transform: scale(1);
}
}
.chat-bubble {
position: absolute;
font-size: 42px;
animation: popIn 0.5s ease forwards;
display: none; /* Initially hidden */
top: -8px;
left: 53px;
animation:
popIn 0.5s ease forwards,
breath 2s ease-in-out infinite;
}
.features-section {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 33px;
gap: 20px;
padding: 50px 20px;
position: relative;
/* background: linear-gradient(rgba(30,45,102,0), rgba(6, 15, 47, 0.414)); */
background: transparent;
/* background: rgba(30,45,102, 0);
background: radial-gradient(circle, rgba(30,45,102,1) 0%, rgba(12,18,41,1) 100%); */
border-radius: 111px;
z-index: 0;
width: 100%;
}
.feature {
width: 300px;
height: 300px;
border-radius: 50%;
/* background: radial-gradient(circle at center, rgb(55, 86, 197), rgba(6, 15, 47, 0.414)); */
background: radial-gradient(
circle at center,
rgb(32, 55, 139),
rgba(6, 15, 47, 0.414)
);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 35px;
position: absolute;
margin: 3px;
span {
font-size: 42px;
}
h3 {
font-weight: bold;
/* text-decoration: underline; */
margin-bottom: 11px;
}
}
#features {
margin-top: 333px;
}
#team {
margin-top: 1033px;
}
#expert-ai a {
color: white;
}
/* Position each feature in a circle */
/* Calculate the angle and distance for each feature */
:not(.team-feature).feature:nth-child(1) {
transform: rotate(0deg) translate(300px) rotate(0deg);
}
:not(.team-feature).feature:nth-child(2) {
transform: rotate(51deg) translate(300px) rotate(-51deg);
}
:not(.team-feature).feature:nth-child(3) {
transform: rotate(103deg) translate(300px) rotate(-103deg);
}
:not(.team-feature).feature:nth-child(4) {
transform: rotate(154deg) translate(300px) rotate(-154deg);
}
:not(.team-feature).feature:nth-child(5) {
transform: rotate(206deg) translate(300px) rotate(-206deg);
}
:not(.team-feature).feature:nth-child(6) {
transform: rotate(257deg) translate(300px) rotate(-257deg);
}
:not(.team-feature).feature:nth-child(8) {
transform: rotate(315deg) translate(300px) rotate(-315deg);
}
:not(.team-feature).feature:nth-child(7) {
transform: rotate(360deg) translate(300px) rotate(-360deg);
}
/* Adjust the starting position and angle increment for team features */
.team-feature:nth-child(1) {
transform: rotate(0deg) translate(500px) rotate(0deg);
}
.team-feature:nth-child(2) {
transform: rotate(40deg) translate(500px) rotate(-40deg);
}
.team-feature:nth-child(3) {
transform: rotate(80deg) translate(500px) rotate(-80deg);
}
.team-feature:nth-child(4) {
transform: rotate(120deg) translate(500px) rotate(-120deg);
}
.team-feature:nth-child(5) {
transform: rotate(160deg) translate(500px) rotate(-160deg);
}
.team-feature:nth-child(6) {
transform: rotate(200deg) translate(500px) rotate(-200deg);
}
.team-feature:nth-child(7) {
transform: rotate(240deg) translate(500px) rotate(-240deg);
}
.team-feature:nth-child(8) {
transform: rotate(280deg) translate(500px) rotate(-280deg);
}
.team-feature:nth-child(9) {
transform: rotate(320deg) translate(500px) rotate(-320deg);
}
/* Styling specific to team features */
.team-feature {
overflow: hidden;
}
.team-feature img {
width: 100%; /* Ensure the image covers the full width */
height: 50%; /* Image covers the top half of the circle */
object-fit: cover; /* Cover the designated area without distortion */
border-radius: 50% 50% 0 0;
position: absolute;
top: 33px;
}
.team-feature h3,
.team-feature h4,
.team-feature p {
display: flex;
position: absolute;
width: 100%;
left: 0;
text-align: center;
padding: 0 20px; /* Padding to ensure text doesn't touch the edge */
z-index: 1;
}
.team-feature h3 {
margin-top: 0;
display: flex;
/* bottom: 80px; Adjust based on your layout */
}
.team-feature h4 {
margin-top: 31px;
}
.team-feature p {
background-color: rgb(18, 37, 107);
justify-content: center;
margin-top: 145px;
padding: 20px;
}
.linkedin-logo {
width: 32px !important;
height: 32px !important;
display: flex;
position: relative;
background-color: white;
border-radius: 2px !important;
z-index: 1;
right: -118px;
top: -15px;
}
.bryan-bg {
background: rgb(210, 214, 212);
background: linear-gradient(
90deg,
rgba(210, 214, 212, 1) 0%,
rgba(141, 139, 138, 1) 100%
);
}
.duane-bg {
background: rgb(113 149 180);
/* background: linear-gradient(90deg, rgb(113 149 180) 0%, rgba(141,139,138,1) 100%); */
}
/* Optional: Style for the SVG background circles to be placed behind the content */
.features-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
/* Apply the SVG circles background styling here */
}
img.zoom-out {
width: 100%; /* or a specific width */
height: auto; /* or a specific height */
object-fit: cover; /* Cover the area of the container without stretching */
transform: scale(0.8); /* Zoom out to 80% of the original size */
}
.newsletter-signup {
display: flex;
justify-content: center;
align-items: center;
width: 500px;
height: 500px;
margin: -133px auto auto auto;
border-radius: 50%;
background: rgb(6, 15, 47);
background: radial-gradient(
circle,
rgb(39, 71, 187) 0%,
rgba(12, 18, 41, 1) 100%
);
overflow: hidden; /* Ensures nothing spills outside the circular shape */
}
.title,
.subtitle,
strong,
h1,
h2,
h3,
h4,
h5,
h6,
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
color: var(--text-color);
}
#mc_embed_signup {
text-align: center; /* Center the form content */
}
#mc_embed_signup form {
display: inline-block;
}
#mc_embed_signup .mc-field-group input {
width: 80%; /* Make the email input wider */
padding: 10px; /* Add some padding */
border-radius: 25px; /* Optional: Rounded corners for the input */
border: 1px solid #ccc; /* Optional: Add a border to the input */
}
#mc_embed_signup .button {
background-color: #007bff; /* Primary button color */
border: none;
padding: 10px 20px;
text-transform: uppercase;
border-radius: 25px; /* Rounded corners for the button */
color: #fff;
cursor: pointer; /* Change cursor on hover */
}
.site-footer {
background-color: #0a192f; /* Dark blue, adjust to match your design */
color: #ffffff; /* White text */
text-align: center;
padding: 20px 0;
}
.home.site-footer {
margin-top: 450px;
}
.site-footer .container {
max-width: 1170px;
margin: auto;
padding: 0 20px;
}
.site-footer p {
margin: 0;
font-size: 16px;
line-height: 1.5;
}
@media (max-width: 768px) {
main {
margin-top: 55px;
}
.mobile-hide {
display: none;
}
.features-section {
height: auto !important; /* Ensure override */
}
#features,
#team {
margin-top: 0;
}
.feature,
.team-feature {
width: 350px !important;
height: 350px !important;
position: relative !important; /* Ensure override */
transform: none !important; /* Remove transformations */
margin: 10px auto !important; /* Add margin and centering */
}
/* Additional resets for team features if necessary */
.team-feature img {
border-radius: 0 !important; /* Reset border-radius if needed */
}
.newsletter-signup {
margin: 50px auto auto auto;
width: 375px;
height: 375px;
h1 {
font-size: 26px;
}
}
#mc_embed_signup .mc-field-group input {
padding: 8px;
}
.site-footer {
margin-top: 75px;
}
.mobile-hidden {
display: none;
}
}