soames-astro-theme 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/LICENSE +29 -0
  2. package/README.md +67 -0
  3. package/package.json +68 -0
  4. package/src/components/Bio.tsx +36 -0
  5. package/src/components/BlogSidebar.tsx +48 -0
  6. package/src/components/DocsSidebar.tsx +45 -0
  7. package/src/components/Footer.tsx +59 -0
  8. package/src/components/FooterMenu.tsx +36 -0
  9. package/src/components/Header.tsx +57 -0
  10. package/src/components/HeaderMenu.tsx +77 -0
  11. package/src/components/HeroHeader.tsx +66 -0
  12. package/src/components/Logo.tsx +37 -0
  13. package/src/components/shortcodes/RemoveContentAreaPadding.tsx +13 -0
  14. package/src/components/shortcodes/Shortcodes.tsx +319 -0
  15. package/src/components/shortcodes/SoamesFeature.tsx +54 -0
  16. package/src/components/shortcodes/SoamesGalleryMenu.tsx +90 -0
  17. package/src/components/shortcodes/SoamesIconList.tsx +90 -0
  18. package/src/components/shortcodes/SoamesSoundCloud.tsx +71 -0
  19. package/src/components/shortcodes/SoamesTextBlock.tsx +27 -0
  20. package/src/components/shortcodes/SoamesTextList.tsx +27 -0
  21. package/src/components/shortcodes/SoamesTitle.tsx +24 -0
  22. package/src/components/shortcodes/SoamesTitleBar.tsx +22 -0
  23. package/src/components/shortcodes/SoamesTitleBarLg.tsx +56 -0
  24. package/src/components/shortcodes/SoamesVideo.tsx +35 -0
  25. package/src/components/shortcodes/getAttributes.ts +19 -0
  26. package/src/components/shortcodes/getContent.ts +4 -0
  27. package/src/integration.ts +147 -0
  28. package/src/layouts/Base.astro +93 -0
  29. package/src/lib/wp.ts +351 -0
  30. package/src/routes/[...uri].astro +41 -0
  31. package/src/routes/blog/[...page].astro +88 -0
  32. package/src/routes/blog/post/[...slug].astro +79 -0
  33. package/src/routes/docs/[...slug].astro +58 -0
  34. package/src/routes/docs/index.astro +66 -0
  35. package/src/routes/index.astro +39 -0
  36. package/src/scripts/soames-nav.js +72 -0
  37. package/src/styles/site-overrides.css +4 -0
  38. package/src/styles/soames/base.css +593 -0
  39. package/src/styles/soames/components.css +1556 -0
  40. package/src/styles/soames/layout.css +209 -0
  41. package/src/styles/soames/overrides.css +2138 -0
  42. package/src/styles/soames/typography.css +23 -0
  43. package/src/styles/theme.css +8 -0
  44. package/src/styles/vendor/normalize.css +343 -0
  45. package/src/styles/vendor/wordpress-blocks.css +3451 -0
  46. package/src/theme-shadow.ts +39 -0
@@ -0,0 +1,1556 @@
1
+ /*! Buttons */
2
+
3
+ .btn {
4
+ font-weight: 500;
5
+ border-width: 2px;
6
+ font-style: normal;
7
+ letter-spacing: 1px;
8
+ margin: .4rem .8rem;
9
+ white-space: normal;
10
+ -webkit-transition: all .3s ease-in-out;
11
+ -moz-transition: all .3s ease-in-out;
12
+ transition: all .3s ease-in-out;
13
+ display: inline-flex;
14
+ align-items: center;
15
+ justify-content: center;
16
+ word-break: break-word;
17
+ -webkit-align-items: center;
18
+ -webkit-justify-content: center;
19
+ display: -webkit-inline-flex;
20
+ }
21
+
22
+ .btn-sm {
23
+ font-weight: 500;
24
+ letter-spacing: 1px;
25
+ -webkit-transition: all .3s ease-in-out;
26
+ -moz-transition: all .3s ease-in-out;
27
+ transition: all .3s ease-in-out;
28
+ }
29
+
30
+ .btn-md {
31
+ font-weight: 500;
32
+ letter-spacing: 1px;
33
+ margin: .4rem .8rem !important;
34
+ -webkit-transition: all .3s ease-in-out;
35
+ -moz-transition: all .3s ease-in-out;
36
+ transition: all .3s ease-in-out;
37
+ }
38
+
39
+ .btn-lg {
40
+ font-weight: 500;
41
+ letter-spacing: 1px;
42
+ margin: .4rem .8rem !important;
43
+ -webkit-transition: all .3s ease-in-out;
44
+ -moz-transition: all .3s ease-in-out;
45
+ transition: all .3s ease-in-out;
46
+ }
47
+
48
+ .soames-section-btn {
49
+ margin-left: -0.25rem;
50
+ margin-right: -0.25rem;
51
+ font-size: 0;
52
+ }
53
+
54
+ nav .soames-section-btn {
55
+ margin-left: 0rem;
56
+ margin-right: 0rem;
57
+ }
58
+
59
+ .btn-form {
60
+ border-radius: 0;
61
+ }
62
+
63
+ .btn-form:hover {
64
+ cursor: pointer;
65
+ }
66
+
67
+ /*! Btn icon margin */
68
+ .btn .soames-iconfont,
69
+ .btn.btn-sm .soames-iconfont {
70
+ cursor: pointer;
71
+ margin-right: 0.5rem;
72
+ }
73
+
74
+ .btn.btn-md .soames-iconfont,
75
+ .btn.btn-md .soames-iconfont {
76
+ margin-right: 0.8rem;
77
+ }
78
+
79
+ .soames-regular {
80
+ font-weight: 400;
81
+ }
82
+
83
+ .soames-semibold {
84
+ font-weight: 500;
85
+ }
86
+
87
+ .soames-bold {
88
+ font-weight: 700;
89
+ }
90
+
91
+ [type='submit'] {
92
+ -webkit-appearance: none;
93
+ }
94
+
95
+ /* Form */
96
+ blockquote {
97
+ font-style: italic;
98
+ padding: 10px 0 10px 20px;
99
+ font-size: 1.09rem;
100
+ position: relative;
101
+ border-width: 3px;
102
+ }
103
+
104
+ .form-control {
105
+ background-color: #f5f5f5;
106
+ box-shadow: none;
107
+ color: #565656;
108
+ line-height: 1.43;
109
+ min-height: 3.5em;
110
+ padding: 1.07em .5em;
111
+ }
112
+
113
+ .form-control,
114
+ .form-control:focus {
115
+ border: 1px solid #e8e8e8;
116
+ }
117
+
118
+ .form-active .form-control:invalid {
119
+ border-color: red;
120
+ }
121
+
122
+ .form-control-label {
123
+ position: relative;
124
+ cursor: pointer;
125
+ margin-bottom: .357em;
126
+ padding: 0;
127
+ }
128
+
129
+ .alert {
130
+ color: #ffffff;
131
+ border-radius: 0;
132
+ border: 0;
133
+ font-size: .875rem;
134
+ line-height: 1.5;
135
+ margin-bottom: 1.875rem;
136
+ padding: 1.25rem;
137
+ position: relative;
138
+ }
139
+
140
+ .alert.alert-form::after {
141
+ background-color: inherit;
142
+ bottom: -7px;
143
+ content: "";
144
+ display: block;
145
+ height: 14px;
146
+ left: 50%;
147
+ margin-left: -7px;
148
+ position: absolute;
149
+ transform: rotate(45deg);
150
+ width: 14px;
151
+ -webkit-transform: rotate(45deg);
152
+ }
153
+
154
+ .form-asterisk {
155
+ font-family: initial;
156
+ position: absolute;
157
+ top: -2px;
158
+ font-weight: normal;
159
+ }
160
+
161
+ /*! Scroll to top arrow */
162
+ #scrollToTop a i:before {
163
+ content: '';
164
+ position: absolute;
165
+ height: 40%;
166
+ top: 25%;
167
+ background: #fff;
168
+ width: 2px;
169
+ left: calc(50% - 1px);
170
+ }
171
+
172
+ #scrollToTop a i:after {
173
+ content: '';
174
+ position: absolute;
175
+ display: block;
176
+ border-top: 2px solid #fff;
177
+ border-right: 2px solid #fff;
178
+ width: 40%;
179
+ height: 40%;
180
+ left: 30%;
181
+ bottom: 30%;
182
+ transform: rotate(135deg);
183
+ -webkit-transform: rotate(135deg);
184
+ }
185
+
186
+ .soames-arrow-up {
187
+ bottom: 25px;
188
+ right: 90px;
189
+ position: fixed;
190
+ text-align: right;
191
+ z-index: 5000;
192
+ color: #ffffff;
193
+ font-size: 32px;
194
+ transform: rotate(180deg);
195
+ -webkit-transform: rotate(180deg);
196
+ }
197
+
198
+ .soames-arrow-up a {
199
+ background: rgba(0, 0, 0, 0.2);
200
+ border-radius: 3px;
201
+ color: #fff;
202
+ display: inline-block;
203
+ height: 60px;
204
+ width: 60px;
205
+ outline-style: none !important;
206
+ position: relative;
207
+ text-decoration: none;
208
+ transition: all 0.3s ease-in-out;
209
+ cursor: pointer;
210
+ text-align: center;
211
+ }
212
+
213
+ .soames-arrow-up a:hover {
214
+ background-color: rgba(0, 0, 0, 0.4);
215
+ }
216
+
217
+ .soames-arrow-up a i {
218
+ line-height: 60px;
219
+ }
220
+
221
+ .soames-arrow-up-icon {
222
+ display: block;
223
+ color: #fff;
224
+ }
225
+
226
+ .soames-arrow-up-icon::before {
227
+ content: '\203a';
228
+ display: inline-block;
229
+ font-family: serif;
230
+ font-size: 32px;
231
+ line-height: 1;
232
+ font-style: normal;
233
+ position: relative;
234
+ top: 6px;
235
+ left: -4px;
236
+ -webkit-transform: rotate(-90deg);
237
+ transform: rotate(-90deg);
238
+ }
239
+
240
+ /*! Arrow Down */
241
+ .soames-arrow {
242
+ position: absolute;
243
+ bottom: 45px;
244
+ left: 50%;
245
+ width: 60px;
246
+ height: 60px;
247
+ cursor: pointer;
248
+ background-color: rgba(80, 80, 80, 0.5);
249
+ border-radius: 50%;
250
+ -webkit-transform: translateX(-50%);
251
+ transform: translateX(-50%);
252
+ }
253
+
254
+ .soames-arrow>a {
255
+ display: inline-block;
256
+ text-decoration: none;
257
+ outline-style: none;
258
+ -webkit-animation: arrowdown 1.7s ease-in-out infinite;
259
+ animation: arrowdown 1.7s ease-in-out infinite;
260
+ }
261
+
262
+ .soames-arrow>a>i {
263
+ position: absolute;
264
+ top: -2px;
265
+ left: 15px;
266
+ font-size: 2rem;
267
+ }
268
+
269
+ @keyframes arrowdown {
270
+ 0% {
271
+ transform: translateY(0px);
272
+ -webkit-transform: translateY(0px);
273
+ }
274
+
275
+ 50% {
276
+ transform: translateY(-5px);
277
+ -webkit-transform: translateY(-5px);
278
+ }
279
+
280
+ 100% {
281
+ transform: translateY(0px);
282
+ -webkit-transform: translateY(0px);
283
+ }
284
+ }
285
+
286
+ @-webkit-keyframes arrowdown {
287
+ 0% {
288
+ transform: translateY(0px);
289
+ -webkit-transform: translateY(0px);
290
+ }
291
+
292
+ 50% {
293
+ transform: translateY(-5px);
294
+ -webkit-transform: translateY(-5px);
295
+ }
296
+
297
+ 100% {
298
+ transform: translateY(0px);
299
+ -webkit-transform: translateY(0px);
300
+ }
301
+ }
302
+
303
+ @media (max-width: 500px) {
304
+ .soames-arrow-up {
305
+ left: 50%;
306
+ right: auto;
307
+ transform: translateX(-50%) rotate(180deg);
308
+ -webkit-transform: translateX(-50%) rotate(180deg);
309
+ }
310
+ }
311
+
312
+ /*Gradients animation*/
313
+ @keyframes gradient-animation {
314
+ from {
315
+ background-position: 0% 100%;
316
+ animation-timing-function: ease-in-out;
317
+ }
318
+
319
+ to {
320
+ background-position: 100% 0%;
321
+ animation-timing-function: ease-in-out;
322
+ }
323
+ }
324
+
325
+ @-webkit-keyframes gradient-animation {
326
+ from {
327
+ background-position: 0% 100%;
328
+ animation-timing-function: ease-in-out;
329
+ }
330
+
331
+ to {
332
+ background-position: 100% 0%;
333
+ animation-timing-function: ease-in-out;
334
+ }
335
+ }
336
+
337
+ .bg-gradient {
338
+ background-size: 200% 200%;
339
+ animation: gradient-animation 5s infinite alternate;
340
+ -webkit-animation: gradient-animation 5s infinite alternate;
341
+ }
342
+
343
+ .menu .navbar-brand {
344
+ display: -webkit-flex;
345
+ }
346
+
347
+ .menu .navbar-brand span {
348
+ display: flex;
349
+ display: -webkit-flex;
350
+ }
351
+
352
+ .menu .navbar-brand .navbar-caption-wrap {
353
+ display: -webkit-flex;
354
+ }
355
+
356
+ .menu .navbar-brand .navbar-logo img {
357
+ display: -webkit-flex;
358
+ }
359
+
360
+ @media (min-width: 768px) and (max-width: 1023px) {
361
+ .menu .navbar-toggleable-sm .navbar-nav {
362
+ display: -webkit-box;
363
+ display: -webkit-flex;
364
+ display: -ms-flexbox;
365
+ }
366
+ }
367
+
368
+ @media (max-width: 1023px) {
369
+ .menu .navbar-collapse {
370
+ max-height: 93.5vh;
371
+ }
372
+
373
+ .menu .navbar-collapse.show {
374
+ overflow: auto;
375
+ }
376
+ }
377
+
378
+ @media (min-width: 1024px) {
379
+ .menu .navbar-nav.nav-dropdown {
380
+ display: -webkit-flex;
381
+ }
382
+
383
+ .menu .navbar-toggleable-sm .navbar-collapse {
384
+ display: -webkit-flex !important;
385
+ }
386
+
387
+ .menu .collapsed .navbar-collapse {
388
+ max-height: 93.5vh;
389
+ }
390
+
391
+ .menu .collapsed .navbar-collapse.show {
392
+ overflow: auto;
393
+ }
394
+ }
395
+
396
+ @media (max-width: 767px) {
397
+ .menu .navbar-collapse {
398
+ max-height: 80vh;
399
+ }
400
+ }
401
+
402
+ /* Others*/
403
+ .note-check a[data-value=Rubik] {
404
+ font-style: normal;
405
+ }
406
+
407
+ .soames-arrow a {
408
+ color: #ffffff;
409
+ }
410
+
411
+ @media (max-width: 767px) {
412
+ .soames-arrow {
413
+ display: none;
414
+ }
415
+ }
416
+
417
+ .navbar {
418
+ display: -webkit-flex;
419
+ -webkit-flex-wrap: wrap;
420
+ -webkit-align-items: center;
421
+ -webkit-justify-content: space-between;
422
+ }
423
+
424
+ .navbar-collapse {
425
+ -webkit-flex-basis: 100%;
426
+ -webkit-flex-grow: 1;
427
+ -webkit-align-items: center;
428
+ }
429
+
430
+ .nav-dropdown .link {
431
+ padding: 0.667em 1.667em !important;
432
+ margin: 0 !important;
433
+ }
434
+
435
+ .nav {
436
+ display: -webkit-flex;
437
+ -webkit-flex-wrap: wrap;
438
+ }
439
+
440
+ .row {
441
+ display: -webkit-flex;
442
+ -webkit-flex-wrap: wrap;
443
+ }
444
+
445
+ .justify-content-center {
446
+ -webkit-justify-content: center;
447
+ }
448
+
449
+ .form-inline {
450
+ display: -webkit-flex;
451
+ -webkit-flex-flow: row wrap;
452
+ -webkit-align-items: center;
453
+ }
454
+
455
+ .card-wrapper {
456
+ -webkit-flex: 1;
457
+ }
458
+
459
+ .carousel-control {
460
+ z-index: 10;
461
+ display: -webkit-flex;
462
+ -webkit-align-items: center;
463
+ -webkit-justify-content: center;
464
+ }
465
+
466
+ .carousel-controls {
467
+ display: -webkit-flex;
468
+ }
469
+
470
+ .media {
471
+ display: -webkit-flex;
472
+ }
473
+
474
+ .form-group:focus {
475
+ outline: none;
476
+ }
477
+
478
+ .jq-selectbox__select {
479
+ padding: 1.07em 0.5em;
480
+ position: absolute;
481
+ top: 0;
482
+ left: 0;
483
+ width: 100%;
484
+ }
485
+
486
+ .jq-selectbox__dropdown {
487
+ position: absolute;
488
+ top: 100% !important;
489
+ left: 0 !important;
490
+ width: 100% !important;
491
+ }
492
+
493
+ .jq-selectbox__trigger-arrow {
494
+ transform: translateY(-50%);
495
+ }
496
+
497
+ .jq-selectbox li {
498
+ padding: 1.07em 0.5em;
499
+ }
500
+
501
+ input[type='range'] {
502
+ padding-left: 0 !important;
503
+ padding-right: 0 !important;
504
+ }
505
+
506
+ .modal-dialog,
507
+ .modal-content {
508
+ height: 100%;
509
+ }
510
+
511
+ .modal-dialog .carousel-inner {
512
+ height: calc(100vh - 1.75rem);
513
+ }
514
+
515
+ @media (max-width: 575px) {
516
+ .modal-dialog .carousel-inner {
517
+ height: calc(100vh - 1rem);
518
+ }
519
+ }
520
+
521
+ .carousel-item {
522
+ text-align: center;
523
+ }
524
+
525
+ .carousel-item img {
526
+ margin: auto;
527
+ }
528
+
529
+ .navbar-toggler {
530
+ -webkit-align-self: flex-start;
531
+ -ms-flex-item-align: start;
532
+ align-self: flex-start;
533
+ padding: 0.25rem 0.75rem;
534
+ font-size: 1.25rem;
535
+ line-height: 1;
536
+ background: transparent;
537
+ border: 1px solid transparent;
538
+ -webkit-border-radius: 0.25rem;
539
+ border-radius: 0.25rem;
540
+ }
541
+
542
+ .navbar-toggler:focus,
543
+ .navbar-toggler:hover {
544
+ text-decoration: none;
545
+ }
546
+
547
+ .navbar-toggler-icon {
548
+ display: inline-block;
549
+ width: 1.5em;
550
+ height: 1.5em;
551
+ vertical-align: middle;
552
+ content: '';
553
+ background: no-repeat center center;
554
+ -webkit-background-size: 100% 100%;
555
+ -o-background-size: 100% 100%;
556
+ background-size: 100% 100%;
557
+ }
558
+
559
+ .navbar-toggler-left {
560
+ position: absolute;
561
+ left: 1rem;
562
+ }
563
+
564
+ .navbar-toggler-right {
565
+ position: absolute;
566
+ right: 1rem;
567
+ }
568
+
569
+ @media (max-width: 575px) {
570
+ .navbar-toggleable .navbar-nav .dropdown-menu {
571
+ position: static;
572
+ float: none;
573
+ }
574
+
575
+ .navbar-toggleable>.container {
576
+ padding-right: 0;
577
+ padding-left: 0;
578
+ }
579
+ }
580
+
581
+ @media (min-width: 576px) {
582
+ .navbar-toggleable {
583
+ -webkit-box-orient: horizontal;
584
+ -webkit-box-direction: normal;
585
+ -webkit-flex-direction: row;
586
+ -ms-flex-direction: row;
587
+ flex-direction: row;
588
+ -webkit-flex-wrap: nowrap;
589
+ -ms-flex-wrap: nowrap;
590
+ flex-wrap: nowrap;
591
+ -webkit-box-align: center;
592
+ -webkit-align-items: center;
593
+ -ms-flex-align: center;
594
+ align-items: center;
595
+ }
596
+
597
+ .navbar-toggleable .navbar-nav {
598
+ -webkit-box-orient: horizontal;
599
+ -webkit-box-direction: normal;
600
+ -webkit-flex-direction: row;
601
+ -ms-flex-direction: row;
602
+ flex-direction: row;
603
+ }
604
+
605
+ .navbar-toggleable .navbar-nav .nav-link {
606
+ padding-right: 0.5rem;
607
+ padding-left: 0.5rem;
608
+ }
609
+
610
+ .navbar-toggleable>.container {
611
+ display: -webkit-box;
612
+ display: -webkit-flex;
613
+ display: -ms-flexbox;
614
+ display: flex;
615
+ -webkit-flex-wrap: nowrap;
616
+ -ms-flex-wrap: nowrap;
617
+ flex-wrap: nowrap;
618
+ -webkit-box-align: center;
619
+ -webkit-align-items: center;
620
+ -ms-flex-align: center;
621
+ align-items: center;
622
+ }
623
+
624
+ .navbar-toggleable .navbar-collapse {
625
+ display: -webkit-box !important;
626
+ display: -webkit-flex !important;
627
+ display: -ms-flexbox !important;
628
+ display: flex !important;
629
+ width: 100%;
630
+ }
631
+
632
+ .navbar-toggleable .navbar-toggler {
633
+ display: none;
634
+ }
635
+ }
636
+
637
+ @media (max-width: 767px) {
638
+ .navbar-toggleable-sm .navbar-nav .dropdown-menu {
639
+ position: static;
640
+ float: none;
641
+ }
642
+
643
+ .navbar-toggleable-sm>.container {
644
+ padding-right: 0;
645
+ padding-left: 0;
646
+ }
647
+ }
648
+
649
+ @media (min-width: 768px) {
650
+ .navbar-toggleable-sm {
651
+ -webkit-box-orient: horizontal;
652
+ -webkit-box-direction: normal;
653
+ -webkit-flex-direction: row;
654
+ -ms-flex-direction: row;
655
+ flex-direction: row;
656
+ -webkit-flex-wrap: nowrap;
657
+ -ms-flex-wrap: nowrap;
658
+ flex-wrap: nowrap;
659
+ -webkit-box-align: center;
660
+ -webkit-align-items: center;
661
+ -ms-flex-align: center;
662
+ align-items: center;
663
+ }
664
+
665
+ .navbar-toggleable-sm .navbar-nav {
666
+ -webkit-box-orient: horizontal;
667
+ -webkit-box-direction: normal;
668
+ -webkit-flex-direction: row;
669
+ -ms-flex-direction: row;
670
+ flex-direction: row;
671
+ }
672
+
673
+ .navbar-toggleable-sm .navbar-nav .nav-link {
674
+ padding-right: 0.5rem;
675
+ padding-left: 0.5rem;
676
+ }
677
+
678
+ .navbar-toggleable-sm>.container {
679
+ display: -webkit-box;
680
+ display: -webkit-flex;
681
+ display: -ms-flexbox;
682
+ display: flex;
683
+ -webkit-flex-wrap: nowrap;
684
+ -ms-flex-wrap: nowrap;
685
+ flex-wrap: nowrap;
686
+ -webkit-box-align: center;
687
+ -webkit-align-items: center;
688
+ -ms-flex-align: center;
689
+ align-items: center;
690
+ }
691
+
692
+ .navbar-toggleable-sm .navbar-collapse {
693
+ display: none;
694
+ width: 100%;
695
+ }
696
+
697
+ .navbar-toggleable-sm .navbar-toggler {
698
+ display: none;
699
+ }
700
+ }
701
+
702
+ @media (max-width: 1023px) {
703
+ .navbar-toggleable-md .navbar-nav .dropdown-menu {
704
+ position: static;
705
+ float: none;
706
+ }
707
+
708
+ .navbar-toggleable-md>.container {
709
+ padding-right: 0;
710
+ padding-left: 0;
711
+ }
712
+ }
713
+
714
+ @media (min-width: 1024px) {
715
+ .navbar-toggleable-md {
716
+ -webkit-box-orient: horizontal;
717
+ -webkit-box-direction: normal;
718
+ -webkit-flex-direction: row;
719
+ -ms-flex-direction: row;
720
+ flex-direction: row;
721
+ -webkit-flex-wrap: nowrap;
722
+ -ms-flex-wrap: nowrap;
723
+ flex-wrap: nowrap;
724
+ -webkit-box-align: center;
725
+ -webkit-align-items: center;
726
+ -ms-flex-align: center;
727
+ align-items: center;
728
+ }
729
+
730
+ .navbar-toggleable-md .navbar-nav {
731
+ -webkit-box-orient: horizontal;
732
+ -webkit-box-direction: normal;
733
+ -webkit-flex-direction: row;
734
+ -ms-flex-direction: row;
735
+ flex-direction: row;
736
+ }
737
+
738
+ .navbar-toggleable-md .navbar-nav .nav-link {
739
+ padding-right: 0.5rem;
740
+ padding-left: 0.5rem;
741
+ }
742
+
743
+ .navbar-toggleable-md>.container {
744
+ display: -webkit-box;
745
+ display: -webkit-flex;
746
+ display: -ms-flexbox;
747
+ display: flex;
748
+ -webkit-flex-wrap: nowrap;
749
+ -ms-flex-wrap: nowrap;
750
+ flex-wrap: nowrap;
751
+ -webkit-box-align: center;
752
+ -webkit-align-items: center;
753
+ -ms-flex-align: center;
754
+ align-items: center;
755
+ }
756
+
757
+ .navbar-toggleable-md .navbar-collapse {
758
+ display: -webkit-box !important;
759
+ display: -webkit-flex !important;
760
+ display: -ms-flexbox !important;
761
+ display: flex !important;
762
+ width: 100%;
763
+ }
764
+
765
+ .navbar-toggleable-md .navbar-toggler {
766
+ display: none;
767
+ }
768
+ }
769
+
770
+ @media (max-width: 1199px) {
771
+ .navbar-toggleable-lg .navbar-nav .dropdown-menu {
772
+ position: static;
773
+ float: none;
774
+ }
775
+
776
+ .navbar-toggleable-lg>.container {
777
+ padding-right: 0;
778
+ padding-left: 0;
779
+ }
780
+ }
781
+
782
+ @media (min-width: 1200px) {
783
+ .navbar-toggleable-lg {
784
+ -webkit-box-orient: horizontal;
785
+ -webkit-box-direction: normal;
786
+ -webkit-flex-direction: row;
787
+ -ms-flex-direction: row;
788
+ flex-direction: row;
789
+ -webkit-flex-wrap: nowrap;
790
+ -ms-flex-wrap: nowrap;
791
+ flex-wrap: nowrap;
792
+ -webkit-box-align: center;
793
+ -webkit-align-items: center;
794
+ -ms-flex-align: center;
795
+ align-items: center;
796
+ }
797
+
798
+ .navbar-toggleable-lg .navbar-nav {
799
+ -webkit-box-orient: horizontal;
800
+ -webkit-box-direction: normal;
801
+ -webkit-flex-direction: row;
802
+ -ms-flex-direction: row;
803
+ flex-direction: row;
804
+ }
805
+
806
+ .navbar-toggleable-lg .navbar-nav .nav-link {
807
+ padding-right: 0.5rem;
808
+ padding-left: 0.5rem;
809
+ }
810
+
811
+ .navbar-toggleable-lg>.container {
812
+ display: -webkit-box;
813
+ display: -webkit-flex;
814
+ display: -ms-flexbox;
815
+ display: flex;
816
+ -webkit-flex-wrap: nowrap;
817
+ -ms-flex-wrap: nowrap;
818
+ flex-wrap: nowrap;
819
+ -webkit-box-align: center;
820
+ -webkit-align-items: center;
821
+ -ms-flex-align: center;
822
+ align-items: center;
823
+ }
824
+
825
+ .navbar-toggleable-lg .navbar-collapse {
826
+ display: -webkit-box !important;
827
+ display: -webkit-flex !important;
828
+ display: -ms-flexbox !important;
829
+ display: flex !important;
830
+ width: 100%;
831
+ }
832
+
833
+ .navbar-toggleable-lg .navbar-toggler {
834
+ display: none;
835
+ }
836
+ }
837
+
838
+ .navbar-toggleable-xl {
839
+ -webkit-box-orient: horizontal;
840
+ -webkit-box-direction: normal;
841
+ -webkit-flex-direction: row;
842
+ -ms-flex-direction: row;
843
+ flex-direction: row;
844
+ -webkit-flex-wrap: nowrap;
845
+ -ms-flex-wrap: nowrap;
846
+ flex-wrap: nowrap;
847
+ -webkit-box-align: center;
848
+ -webkit-align-items: center;
849
+ -ms-flex-align: center;
850
+ align-items: center;
851
+ }
852
+
853
+ .navbar-toggleable-xl .navbar-nav .dropdown-menu {
854
+ position: static;
855
+ float: none;
856
+ }
857
+
858
+ .navbar-toggleable-xl>.container {
859
+ padding-right: 0;
860
+ padding-left: 0;
861
+ }
862
+
863
+ .navbar-toggleable-xl .navbar-nav {
864
+ -webkit-box-orient: horizontal;
865
+ -webkit-box-direction: normal;
866
+ -webkit-flex-direction: row;
867
+ -ms-flex-direction: row;
868
+ flex-direction: row;
869
+ }
870
+
871
+ .navbar-toggleable-xl .navbar-nav .nav-link {
872
+ padding-right: 0.5rem;
873
+ padding-left: 0.5rem;
874
+ }
875
+
876
+ .navbar-toggleable-xl>.container {
877
+ display: -webkit-box;
878
+ display: -webkit-flex;
879
+ display: -ms-flexbox;
880
+ display: flex;
881
+ -webkit-flex-wrap: nowrap;
882
+ -ms-flex-wrap: nowrap;
883
+ flex-wrap: nowrap;
884
+ -webkit-box-align: center;
885
+ -webkit-align-items: center;
886
+ -ms-flex-align: center;
887
+ align-items: center;
888
+ }
889
+
890
+ .navbar-toggleable-xl .navbar-collapse {
891
+ display: -webkit-box !important;
892
+ display: -webkit-flex !important;
893
+ display: -ms-flexbox !important;
894
+ display: flex !important;
895
+ width: 100%;
896
+ }
897
+
898
+ .navbar-toggleable-xl .navbar-toggler {
899
+ display: none;
900
+ }
901
+
902
+ .card-img {
903
+ width: auto;
904
+ }
905
+
906
+ .menu .navbar.collapsed:not(.beta-menu) {
907
+ flex-direction: column;
908
+ -webkit-flex-direction: column;
909
+ }
910
+
911
+ .carousel-item.active,
912
+ .carousel-item-next,
913
+ .carousel-item-prev {
914
+ display: -webkit-box;
915
+ display: -webkit-flex;
916
+ display: -ms-flexbox;
917
+ display: flex;
918
+ }
919
+
920
+ .note-air-layout .dropup .dropdown-menu,
921
+ .note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
922
+ bottom: initial !important;
923
+ }
924
+
925
+ .dropup .dropdown-toggle::after {
926
+ display: none;
927
+ }
928
+
929
+ /*# sourceMappingURL=style.css.map */
930
+ .engine {
931
+ position: absolute;
932
+ text-indent: -2400px;
933
+ text-align: center;
934
+ padding: 0;
935
+ top: 0;
936
+ left: -2400px;
937
+ }
938
+
939
+ .soames-header-lg {
940
+ height: 570px;
941
+ /* The section flex-centers its content (.soames-parallax: align-items:center),
942
+ but the fixed top navbar (~77px) overlays the hero's top edge, so centering
943
+ against the full height pushes content visually toward the header. Pad the
944
+ top by the navbar height so content centers within the VISIBLE region. */
945
+ padding-top: 77px;
946
+ }
947
+
948
+ .soames-header-sm {
949
+ height: 177.1875px;
950
+ padding-top: 0px;
951
+ }
952
+
953
+ .soames-background-lg::after {
954
+ background: url('https://picsum.photos/1080/720');
955
+ background-position: 50% 50%;
956
+ background-size: cover;
957
+ background-repeat: no-repeat;
958
+ position: fixed;
959
+ top: 0px;
960
+ left: 0px;
961
+ overflow: hidden;
962
+ pointer-events: none;
963
+ margin-top: -180px;
964
+ }
965
+
966
+ .soames-background-sm::after {
967
+ background: url('https://picsum.photos/1080/720');
968
+ background-position: 50% 50%;
969
+ background-size: cover;
970
+ background-repeat: no-repeat;
971
+ position: fixed;
972
+ top: 0px;
973
+ left: 0px;
974
+ height: 725.269px;
975
+ overflow: hidden;
976
+ pointer-events: none;
977
+ margin-top: -210px;
978
+ transform: translate3d(0px, 210px, 0px);
979
+ }
980
+
981
+ .soames-gallery .soames-gallery-item {
982
+ position: relative;
983
+ display: inline-block;
984
+ width: 25%;
985
+ cursor: pointer;
986
+ }
987
+
988
+ @media (max-width: 768px) {
989
+ .soames-gallery .soames-gallery-item {
990
+ width: 50%;
991
+ }
992
+ }
993
+
994
+ @media (max-width: 400px) {
995
+ .soames-gallery .soames-gallery-item {
996
+ width: 100%;
997
+ }
998
+ }
999
+
1000
+ .soames-gallery .icon-focus,
1001
+ .soames-gallery .icon-video {
1002
+ position: absolute;
1003
+ top: calc(50% - 32px);
1004
+ left: calc(50% - 24px);
1005
+ font-family: 'SoamesIcons' !important;
1006
+ font-size: 3rem !important;
1007
+ color: #fff;
1008
+ opacity: 0;
1009
+ transition: .2s opacity ease-in-out;
1010
+ z-index: 5;
1011
+ }
1012
+
1013
+ .soames-gallery .icon-focus::before {
1014
+ content: '\e96b';
1015
+ }
1016
+
1017
+ .soames-gallery .icon-video::before {
1018
+ content: '\e95c';
1019
+ }
1020
+
1021
+ .soames-gallery .soames-gallery-item>div:hover .icon-focus,
1022
+ .soames-gallery .soames-gallery-item>div:hover .icon-video {
1023
+ opacity: 1;
1024
+ }
1025
+
1026
+ .soames-gallery .soames-gallery-item img {
1027
+ width: 100%;
1028
+ opacity: 1;
1029
+ -webkit-transition: .2s opacity ease-in-out;
1030
+ transition: .2s opacity ease-in-out;
1031
+ }
1032
+
1033
+ .soames-gallery .soames-gallery-item>div:hover img {
1034
+ opacity: 1;
1035
+ }
1036
+
1037
+ .soames-gallery .soames-gallery-item>div {
1038
+ background: #fff;
1039
+ display: block;
1040
+ outline: none;
1041
+ position: relative;
1042
+ }
1043
+
1044
+ .soames-gallery .soames-gallery-item .icon {
1045
+ -webkit-transform: translateX(-50%) translateY(-50%);
1046
+ -webkit-transition: .2s opacity ease-in-out;
1047
+ color: #000;
1048
+ font-size: 30px;
1049
+ height: 69px;
1050
+ left: 50%;
1051
+ opacity: 0;
1052
+ position: absolute;
1053
+ top: 50%;
1054
+ transform: translateX(-50%) translateY(-50%);
1055
+ transition: .2s opacity ease-in-out;
1056
+ width: 69px;
1057
+ }
1058
+
1059
+ .soames-gallery .soames-gallery-item .icon::after,
1060
+ .soames-gallery .soames-gallery-item .icon::before {
1061
+ content: '';
1062
+ display: block;
1063
+ position: absolute;
1064
+ height: 69px;
1065
+ width: 1px;
1066
+ margin-left: 34.5px;
1067
+ background-color: #fff;
1068
+ }
1069
+
1070
+ .soames-gallery .soames-gallery-item .icon::after {
1071
+ width: 69px;
1072
+ height: 1px;
1073
+ margin-left: 0;
1074
+ margin-top: 34.5px;
1075
+ }
1076
+
1077
+ .soames-gallery .soames-gallery-item>div:hover .icon {
1078
+ opacity: 1;
1079
+ }
1080
+
1081
+ .soames-gallery .soames-gallery-item>div:hover::before {
1082
+ opacity: .9;
1083
+ }
1084
+
1085
+ .soames-gallery .soames-gallery-item>div:hover .soames-gallery-title {
1086
+ background: transparent !important;
1087
+ }
1088
+
1089
+ /* remove spacing */
1090
+ .soames-gallery .soames-gallery-row.no-gutter {
1091
+ margin: 0;
1092
+ }
1093
+
1094
+ .soames-gallery .soames-gallery-row.no-gutter .soames-gallery-item {
1095
+ padding: 0;
1096
+ }
1097
+
1098
+ /* container */
1099
+ .soames-gallery .container.soames-gallery-layout-default {
1100
+ padding: 93px 0;
1101
+ }
1102
+
1103
+ /* fix horizontal scrollbar */
1104
+ .soames-gallery .soames-gallery-layout-article,
1105
+ .soames-gallery .soames-gallery-layout-default {
1106
+ overflow: hidden;
1107
+ }
1108
+
1109
+ /* lightbox */
1110
+ .soames-gallery .modal {
1111
+ position: fixed;
1112
+ overflow: hidden;
1113
+ padding-right: 0 !important;
1114
+ }
1115
+
1116
+ .soames-gallery .modal-content {
1117
+ border-radius: 0;
1118
+ border: none;
1119
+ background: transparent;
1120
+ }
1121
+
1122
+ .soames-gallery .modal-body {
1123
+ padding: 0;
1124
+ }
1125
+
1126
+ .soames-gallery .modal-body img {
1127
+ width: 100%;
1128
+ }
1129
+
1130
+ .soames-gallery .modal .close {
1131
+ position: fixed;
1132
+ background: #1b1b1b;
1133
+ opacity: .5;
1134
+ font-size: 35px;
1135
+ font-weight: 300;
1136
+ width: 70px;
1137
+ height: 70px;
1138
+ border-radius: 50%;
1139
+ color: #fff;
1140
+ top: 2.5rem;
1141
+ right: 2.5rem;
1142
+ line-height: 70px;
1143
+ border: none;
1144
+ text-align: center;
1145
+ text-shadow: none;
1146
+ z-index: 5;
1147
+ -webkit-transition: opacity .3s ease;
1148
+ -moz-transition: opacity .3s ease;
1149
+ -o-transition: opacity .3s ease;
1150
+ transition: opacity .3s ease;
1151
+ font-family: 'SoamesIcons';
1152
+ }
1153
+
1154
+ .soames-gallery .modal .close::before {
1155
+ content: '\e91a';
1156
+ }
1157
+
1158
+ .soames-gallery .modal .close:hover {
1159
+ opacity: 1;
1160
+ background: #000;
1161
+ color: #fff;
1162
+ }
1163
+
1164
+ .soames-gallery .modal-dialog {
1165
+ max-width: 100% !important;
1166
+ }
1167
+
1168
+ .soames-gallery .modal.in .modal-dialog {
1169
+ margin: 0 auto;
1170
+ }
1171
+
1172
+ /* modal back color opacity */
1173
+ .modal-backdrop.in {
1174
+ opacity: .8;
1175
+ filter: alpha(opacity=80);
1176
+ }
1177
+
1178
+ @media (max-width: 768px) {
1179
+
1180
+ .soames-gallery .carousel-control,
1181
+ .soames-gallery .carousel-indicators,
1182
+ .soames-gallery .modal .close {
1183
+ position: fixed;
1184
+ }
1185
+ }
1186
+
1187
+ /* fix fade in effect */
1188
+ .soames-gallery .modal.fade .modal-dialog {
1189
+ -webkit-transition: margin-top .3s ease-out;
1190
+ -moz-transition: margin-top .3s ease-out;
1191
+ -o-transition: margin-top .3s ease-out;
1192
+ transition: margin-top .3s ease-out;
1193
+ }
1194
+
1195
+ .soames-gallery .modal.fade .modal-dialog,
1196
+ .soames-gallery .modal.in .modal-dialog {
1197
+ -webkit-transform: none;
1198
+ -ms-transform: none;
1199
+ -o-transform: none;
1200
+ transform: none;
1201
+ }
1202
+
1203
+ .soames-slider .carousel-inner>.active,
1204
+ .soames-slider .carousel-inner>.next,
1205
+ .soames-slider .carousel-inner>.prev {
1206
+ display: table;
1207
+ }
1208
+
1209
+ .soames-slider .carousel-control {
1210
+ position: absolute;
1211
+ width: 70px;
1212
+ height: 70px;
1213
+ top: 50%;
1214
+ margin-top: -35px;
1215
+ line-height: 70px;
1216
+ border-radius: 50%;
1217
+ font-size: 35px;
1218
+ border: 0;
1219
+ opacity: .5;
1220
+ text-shadow: none;
1221
+ z-index: 5;
1222
+ color: #fff;
1223
+ -webkit-transition: all .2s ease-in-out 0s;
1224
+ -o-transition: all .2s ease-in-out 0s;
1225
+ transition: all .2s ease-in-out 0s;
1226
+ }
1227
+
1228
+ .soames-gallery .soames-slider .carousel-control {
1229
+ position: fixed;
1230
+ }
1231
+
1232
+ @media (max-width: 991px) {
1233
+ .soames-gallery .soames-slider .carousel-control {
1234
+ bottom: 2.5rem;
1235
+ margin-top: 0;
1236
+ top: auto;
1237
+ z-index: 17;
1238
+ }
1239
+ }
1240
+
1241
+ .soames-gallery .soames-slider .carousel-inner>.active {
1242
+ display: block;
1243
+ }
1244
+
1245
+ .soames-slider .carousel-control.left {
1246
+ left: 0;
1247
+ margin-left: 2.5rem;
1248
+ }
1249
+
1250
+ .soames-slider .carousel-control.right {
1251
+ right: 0;
1252
+ margin-right: 2.5rem;
1253
+ }
1254
+
1255
+ .soames-slider .carousel-control .icon-next,
1256
+ .soames-slider .carousel-control .icon-prev {
1257
+ margin-top: -18px;
1258
+ font-size: 40px;
1259
+ line-height: 27px;
1260
+ }
1261
+
1262
+ .soames-slider .carousel-control:hover {
1263
+ background: #1b1b1b;
1264
+ color: #fff;
1265
+ opacity: 1;
1266
+ }
1267
+
1268
+ .soames-slider .carousel-indicators {
1269
+ position: absolute;
1270
+ bottom: 0;
1271
+ margin-bottom: 1.5rem !important;
1272
+ }
1273
+
1274
+ @media (max-width: 543px) {
1275
+ .soames-slider .carousel-indicators {
1276
+ display: none;
1277
+ }
1278
+ }
1279
+
1280
+ .carousel-indicators .active,
1281
+ .carousel-indicators li {
1282
+ width: 15px;
1283
+ height: 15px;
1284
+ margin: 3px;
1285
+ background: #1b1b1b;
1286
+ opacity: .5;
1287
+ }
1288
+
1289
+ .carousel-indicators .active {
1290
+ background: #fff;
1291
+ }
1292
+
1293
+ .carousel-indicators li {
1294
+ max-width: 15px;
1295
+ max-height: 15px;
1296
+ border-radius: 50%;
1297
+ }
1298
+
1299
+ .container .carousel-indicators {
1300
+ margin-bottom: 3px;
1301
+ }
1302
+
1303
+ .soames-gallery .soames-slider .carousel-indicators {
1304
+ position: fixed;
1305
+ margin-bottom: 2.5rem !important;
1306
+ }
1307
+
1308
+ @media (max-width: 991px) {
1309
+ .soames-gallery .soames-slider .carousel-indicators {
1310
+ margin-bottom: 3.625rem !important;
1311
+ padding-left: 2.5rem;
1312
+ padding-right: 2.5rem;
1313
+ }
1314
+ }
1315
+
1316
+ .soames-slider .carousel-indicators .active,
1317
+ .soames-slider .carousel-indicators li {
1318
+ width: 7px;
1319
+ height: 7px;
1320
+ margin: 3px;
1321
+ background: #1b1b1b;
1322
+ border: 4px solid #1b1b1b;
1323
+ opacity: .5;
1324
+ }
1325
+
1326
+ .soames-slider .carousel-indicators .active {
1327
+ background: #fff;
1328
+ }
1329
+
1330
+ @media (max-width: 767px) {
1331
+ .soames-slider .carousel-control {
1332
+ top: auto;
1333
+ bottom: 20px;
1334
+ }
1335
+
1336
+ .soames-slider>.container .carousel-control {
1337
+ margin-bottom: 0;
1338
+ }
1339
+ }
1340
+
1341
+ /* boxed slider */
1342
+ .soames-slider>.boxed-slider {
1343
+ position: relative;
1344
+ padding: 93px 0;
1345
+ }
1346
+
1347
+ .soames-slider>.boxed-slider>div {
1348
+ position: relative;
1349
+ }
1350
+
1351
+ .soames-slider>.container img {
1352
+ width: 100%;
1353
+ }
1354
+
1355
+ .soames-slider>.container img+.row {
1356
+ position: absolute;
1357
+ top: 50%;
1358
+ left: 0;
1359
+ right: 0;
1360
+ -webkit-transform: translateY(-50%);
1361
+ -moz-transform: translateY(-50%);
1362
+ transform: translateY(-50%);
1363
+ z-index: 2;
1364
+ }
1365
+
1366
+ .soames-slider .soames-section {
1367
+ padding: 0;
1368
+ background-attachment: scroll;
1369
+ }
1370
+
1371
+ .soames-slider .soames-table-cell {
1372
+ padding: 0;
1373
+ }
1374
+
1375
+ .soames-slider>.container .carousel-indicators {
1376
+ margin-bottom: 3px;
1377
+ }
1378
+
1379
+ /* article slider */
1380
+ .soames-slider>.article-slider .soames-section,
1381
+ .soames-slider>.article-slider .soames-section .soames-table-cell {
1382
+ padding-top: 0;
1383
+ padding-bottom: 0;
1384
+ }
1385
+
1386
+ .modal-backdrop.show {
1387
+ opacity: .7;
1388
+ }
1389
+
1390
+ .video-container .soames-background-video iframe {
1391
+ width: 100%;
1392
+ height: 100%;
1393
+ }
1394
+
1395
+ .soames-gallery-item__hided {
1396
+ position: absolute !important;
1397
+ left: 0 !important;
1398
+ width: 0 !important;
1399
+ height: 0;
1400
+ padding: 0 !important;
1401
+ }
1402
+
1403
+ .soames-gallery-item__hided img {
1404
+ display: none !important;
1405
+ }
1406
+
1407
+ .soames-gallery-item__hided span {
1408
+ display: none !important;
1409
+ }
1410
+
1411
+ .soames-gallery-filter {
1412
+ padding-top: 30px;
1413
+ padding-bottom: 30px;
1414
+ text-align: center;
1415
+ }
1416
+
1417
+ .soames-gallery-filter li {
1418
+ display: inline-block;
1419
+ padding: 5px 0;
1420
+ transition: all .3s ease-out;
1421
+ }
1422
+
1423
+ .soames-gallery-filter li .btn {
1424
+ cursor: pointer;
1425
+ }
1426
+
1427
+ .soames-gallery-filter.gallery-filter__bg li {
1428
+ color: #fff;
1429
+ }
1430
+
1431
+ .soames-gallery-filter.gallery-filter__bg .active {
1432
+ color: #000;
1433
+ background-color: #fff;
1434
+ }
1435
+
1436
+ .soames-gallery-filter ul {
1437
+ display: inline-block;
1438
+ width: 100%;
1439
+ padding-left: 0;
1440
+ margin-bottom: 0;
1441
+ list-style: none;
1442
+ }
1443
+
1444
+ .soames-gallery-item>div {
1445
+ position: relative;
1446
+ }
1447
+
1448
+ .soames-gallery-item--p1 {
1449
+ padding: 0.5rem;
1450
+ }
1451
+
1452
+ .soames-gallery-item--p2 {
1453
+ padding: 1rem;
1454
+ }
1455
+
1456
+ .soames-gallery-item--p3 {
1457
+ padding: 1.5rem;
1458
+ }
1459
+
1460
+ .soames-gallery-item--p4 {
1461
+ padding: 2rem;
1462
+ }
1463
+
1464
+ .soames-gallery-item--p5 {
1465
+ padding: 2.5rem;
1466
+ }
1467
+
1468
+ .soames-gallery-item--p6 {
1469
+ padding: 3rem;
1470
+ }
1471
+
1472
+ .soames-gallery .soames-gallery-item--p4 {
1473
+ width: 33.333%;
1474
+ }
1475
+
1476
+ .soames-gallery .soames-gallery-item--p6,
1477
+ .soames-gallery .soames-gallery-item--p5 {
1478
+ width: 50%;
1479
+ }
1480
+
1481
+ @media (max-width: 992px) {
1482
+ .soames-gallery-item--p1 {
1483
+ padding: 0.5rem;
1484
+ }
1485
+
1486
+ .soames-gallery-item--p2 {
1487
+ padding: 0.8rem;
1488
+ }
1489
+
1490
+ .soames-gallery-item--p3 {
1491
+ padding: 1rem;
1492
+ }
1493
+
1494
+ .soames-gallery-item--p4 {
1495
+ padding: 1.5rem;
1496
+ }
1497
+
1498
+ .soames-gallery-item--p5 {
1499
+ padding: 1.8rem;
1500
+ }
1501
+
1502
+ .soames-gallery-item--p6 {
1503
+ padding: 2rem;
1504
+ }
1505
+
1506
+ .soames-gallery .soames-gallery-item--p2,
1507
+ .soames-gallery .soames-gallery-item--p3 {
1508
+ width: 50%;
1509
+ }
1510
+
1511
+ .soames-gallery .soames-gallery-item--p6,
1512
+ .soames-gallery .soames-gallery-item--p5,
1513
+ .soames-gallery .soames-gallery-item--p4 {
1514
+ width: 100%;
1515
+ }
1516
+ }
1517
+
1518
+ @media (max-width: 400px) {
1519
+
1520
+ .soames-gallery .soames-gallery-item--p3,
1521
+ .soames-gallery .soames-gallery-item--p2,
1522
+ .soames-gallery .soames-gallery-item--p1 {
1523
+ width: 100%;
1524
+ }
1525
+ }
1526
+
1527
+ /*# sourceMappingURL=style.css.map */
1528
+
1529
+ main {
1530
+ height: 100vh;
1531
+ overflow-x: hidden;
1532
+ overflow-y: auto;
1533
+ perspective: 2px;
1534
+ overscroll-behavior: none;
1535
+ }
1536
+
1537
+ .soames-parallax {
1538
+ transform-style: preserve-3d;
1539
+ position: relative;
1540
+ display: flex;
1541
+ align-items: center;
1542
+ justify-content: center;
1543
+ color: white;
1544
+ }
1545
+
1546
+ .soames-parallax::after {
1547
+ content: ' ';
1548
+ position: absolute;
1549
+ top: 0;
1550
+ right: 0;
1551
+ bottom: 0;
1552
+ left: 0;
1553
+ transform: translateZ(-1px) scale(1.5);
1554
+ background-size: 100%;
1555
+ z-index: -1;
1556
+ }