soames-gatsby-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 (73) hide show
  1. package/LICENSE +29 -0
  2. package/README.md +24 -0
  3. package/dist/gatsby-config.js +47 -0
  4. package/dist/gatsby-node.js +7 -0
  5. package/dist/src/components/Bio.js +23 -0
  6. package/dist/src/components/BlogSidebar.js +30 -0
  7. package/dist/src/components/Footer.js +11 -0
  8. package/dist/src/components/FooterMenu.js +26 -0
  9. package/dist/src/components/Header.js +12 -0
  10. package/dist/src/components/HeaderMenu.js +34 -0
  11. package/dist/src/components/HeroHeader.js +39 -0
  12. package/dist/src/components/Layout.js +24 -0
  13. package/dist/src/components/Logo.js +17 -0
  14. package/dist/src/components/Seo.js +59 -0
  15. package/dist/src/components/shortcodes/RemoveContentAreaPadding.js +12 -0
  16. package/dist/src/components/shortcodes/SoamesFeature.js +9 -0
  17. package/dist/src/components/shortcodes/SoamesGalleryMenu.js +15 -0
  18. package/dist/src/components/shortcodes/SoamesIconList.js +15 -0
  19. package/dist/src/components/shortcodes/SoamesSoundCloud.js +18 -0
  20. package/dist/src/components/shortcodes/SoamesTextBlock.js +8 -0
  21. package/dist/src/components/shortcodes/SoamesTextList.js +8 -0
  22. package/dist/src/components/shortcodes/SoamesTitle.js +7 -0
  23. package/dist/src/components/shortcodes/SoamesTitleBar.js +7 -0
  24. package/dist/src/components/shortcodes/SoamesTitleBarLg.js +25 -0
  25. package/dist/src/components/shortcodes/SoamesVideo.js +8 -0
  26. package/dist/src/pages/index.js +9 -0
  27. package/dist/src/templates/blog-post-archive.js +59 -0
  28. package/dist/src/templates/blog-post.js +67 -0
  29. package/dist/src/templates/page.js +33 -0
  30. package/dist/src/utils/shortcodes/Shortcodes.js +105 -0
  31. package/dist/src/utils/shortcodes/getAttributes.js +18 -0
  32. package/dist/src/utils/shortcodes/getContent.js +7 -0
  33. package/gatsby-browser.js +11 -0
  34. package/gatsby-node.js +138 -0
  35. package/gatsby-ssr.js +12 -0
  36. package/package.json +76 -0
  37. package/src/components/Bio.tsx +63 -0
  38. package/src/components/BlogSidebar.tsx +86 -0
  39. package/src/components/Footer.tsx +53 -0
  40. package/src/components/FooterMenu.tsx +66 -0
  41. package/src/components/Header.tsx +37 -0
  42. package/src/components/HeaderMenu.tsx +123 -0
  43. package/src/components/HeroHeader.tsx +75 -0
  44. package/src/components/Layout.tsx +60 -0
  45. package/src/components/Logo.tsx +49 -0
  46. package/src/components/Seo.tsx +84 -0
  47. package/src/components/shortcodes/RemoveContentAreaPadding.tsx +13 -0
  48. package/src/components/shortcodes/SoamesFeature.tsx +54 -0
  49. package/src/components/shortcodes/SoamesGalleryMenu.tsx +63 -0
  50. package/src/components/shortcodes/SoamesIconList.tsx +57 -0
  51. package/src/components/shortcodes/SoamesSoundCloud.tsx +71 -0
  52. package/src/components/shortcodes/SoamesTextBlock.tsx +27 -0
  53. package/src/components/shortcodes/SoamesTextList.tsx +27 -0
  54. package/src/components/shortcodes/SoamesTitle.tsx +23 -0
  55. package/src/components/shortcodes/SoamesTitleBar.tsx +21 -0
  56. package/src/components/shortcodes/SoamesTitleBarLg.tsx +56 -0
  57. package/src/components/shortcodes/SoamesVideo.tsx +34 -0
  58. package/src/styles/soames/base.css +592 -0
  59. package/src/styles/soames/components.css +1551 -0
  60. package/src/styles/soames/layout.css +209 -0
  61. package/src/styles/soames/overrides.css +1779 -0
  62. package/src/styles/soames/typography.css +23 -0
  63. package/src/styles/theme.css +8 -0
  64. package/src/styles/vendor/normalize.css +343 -0
  65. package/src/styles/vendor/wordpress-blocks.css +3451 -0
  66. package/src/templates/blog-post-archive.tsx +167 -0
  67. package/src/templates/blog-post.tsx +183 -0
  68. package/src/templates/page.tsx +65 -0
  69. package/src/utils/shortcodes/Shortcodes.tsx +119 -0
  70. package/src/utils/shortcodes/getAttributes.ts +19 -0
  71. package/src/utils/shortcodes/getContent.ts +5 -0
  72. package/static/js/soames-nav-dropdown.js +646 -0
  73. package/static/js/soames-navbar-dropdown.js +127 -0
@@ -0,0 +1,1551 @@
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
+ padding-top: 40px;
942
+ }
943
+
944
+ .soames-header-sm {
945
+ height: 177.1875px;
946
+ padding-top: 0px;
947
+ }
948
+
949
+ .soames-background-lg::after {
950
+ background: url('https://picsum.photos/1080/720');
951
+ background-position: 50% 50%;
952
+ background-size: cover;
953
+ background-repeat: no-repeat;
954
+ position: fixed;
955
+ top: 0px;
956
+ left: 0px;
957
+ overflow: hidden;
958
+ pointer-events: none;
959
+ margin-top: -180px;
960
+ }
961
+
962
+ .soames-background-sm::after {
963
+ background: url('https://picsum.photos/1080/720');
964
+ background-position: 50% 50%;
965
+ background-size: cover;
966
+ background-repeat: no-repeat;
967
+ position: fixed;
968
+ top: 0px;
969
+ left: 0px;
970
+ height: 725.269px;
971
+ overflow: hidden;
972
+ pointer-events: none;
973
+ margin-top: -210px;
974
+ transform: translate3d(0px, 210px, 0px);
975
+ }
976
+
977
+ .soames-gallery .soames-gallery-item {
978
+ position: relative;
979
+ display: inline-block;
980
+ width: 25%;
981
+ cursor: pointer;
982
+ }
983
+
984
+ @media (max-width: 768px) {
985
+ .soames-gallery .soames-gallery-item {
986
+ width: 50%;
987
+ }
988
+ }
989
+
990
+ @media (max-width: 400px) {
991
+ .soames-gallery .soames-gallery-item {
992
+ width: 100%;
993
+ }
994
+ }
995
+
996
+ .soames-gallery .icon-focus,
997
+ .soames-gallery .icon-video {
998
+ position: absolute;
999
+ top: calc(50% - 32px);
1000
+ left: calc(50% - 24px);
1001
+ font-family: 'SoamesIcons' !important;
1002
+ font-size: 3rem !important;
1003
+ color: #fff;
1004
+ opacity: 0;
1005
+ transition: .2s opacity ease-in-out;
1006
+ z-index: 5;
1007
+ }
1008
+
1009
+ .soames-gallery .icon-focus::before {
1010
+ content: '\e96b';
1011
+ }
1012
+
1013
+ .soames-gallery .icon-video::before {
1014
+ content: '\e95c';
1015
+ }
1016
+
1017
+ .soames-gallery .soames-gallery-item>div:hover .icon-focus,
1018
+ .soames-gallery .soames-gallery-item>div:hover .icon-video {
1019
+ opacity: 1;
1020
+ }
1021
+
1022
+ .soames-gallery .soames-gallery-item img {
1023
+ width: 100%;
1024
+ opacity: 1;
1025
+ -webkit-transition: .2s opacity ease-in-out;
1026
+ transition: .2s opacity ease-in-out;
1027
+ }
1028
+
1029
+ .soames-gallery .soames-gallery-item>div:hover img {
1030
+ opacity: 1;
1031
+ }
1032
+
1033
+ .soames-gallery .soames-gallery-item>div {
1034
+ background: #fff;
1035
+ display: block;
1036
+ outline: none;
1037
+ position: relative;
1038
+ }
1039
+
1040
+ .soames-gallery .soames-gallery-item .icon {
1041
+ -webkit-transform: translateX(-50%) translateY(-50%);
1042
+ -webkit-transition: .2s opacity ease-in-out;
1043
+ color: #000;
1044
+ font-size: 30px;
1045
+ height: 69px;
1046
+ left: 50%;
1047
+ opacity: 0;
1048
+ position: absolute;
1049
+ top: 50%;
1050
+ transform: translateX(-50%) translateY(-50%);
1051
+ transition: .2s opacity ease-in-out;
1052
+ width: 69px;
1053
+ }
1054
+
1055
+ .soames-gallery .soames-gallery-item .icon::after,
1056
+ .soames-gallery .soames-gallery-item .icon::before {
1057
+ content: '';
1058
+ display: block;
1059
+ position: absolute;
1060
+ height: 69px;
1061
+ width: 1px;
1062
+ margin-left: 34.5px;
1063
+ background-color: #fff;
1064
+ }
1065
+
1066
+ .soames-gallery .soames-gallery-item .icon::after {
1067
+ width: 69px;
1068
+ height: 1px;
1069
+ margin-left: 0;
1070
+ margin-top: 34.5px;
1071
+ }
1072
+
1073
+ .soames-gallery .soames-gallery-item>div:hover .icon {
1074
+ opacity: 1;
1075
+ }
1076
+
1077
+ .soames-gallery .soames-gallery-item>div:hover::before {
1078
+ opacity: .9;
1079
+ }
1080
+
1081
+ .soames-gallery .soames-gallery-item>div:hover .soames-gallery-title {
1082
+ background: transparent !important;
1083
+ }
1084
+
1085
+ /* remove spacing */
1086
+ .soames-gallery .soames-gallery-row.no-gutter {
1087
+ margin: 0;
1088
+ }
1089
+
1090
+ .soames-gallery .soames-gallery-row.no-gutter .soames-gallery-item {
1091
+ padding: 0;
1092
+ }
1093
+
1094
+ /* container */
1095
+ .soames-gallery .container.soames-gallery-layout-default {
1096
+ padding: 93px 0;
1097
+ }
1098
+
1099
+ /* fix horizontal scrollbar */
1100
+ .soames-gallery .soames-gallery-layout-article,
1101
+ .soames-gallery .soames-gallery-layout-default {
1102
+ overflow: hidden;
1103
+ }
1104
+
1105
+ /* lightbox */
1106
+ .soames-gallery .modal {
1107
+ position: fixed;
1108
+ overflow: hidden;
1109
+ padding-right: 0 !important;
1110
+ }
1111
+
1112
+ .soames-gallery .modal-content {
1113
+ border-radius: 0;
1114
+ border: none;
1115
+ background: transparent;
1116
+ }
1117
+
1118
+ .soames-gallery .modal-body {
1119
+ padding: 0;
1120
+ }
1121
+
1122
+ .soames-gallery .modal-body img {
1123
+ width: 100%;
1124
+ }
1125
+
1126
+ .soames-gallery .modal .close {
1127
+ position: fixed;
1128
+ background: #1b1b1b;
1129
+ opacity: .5;
1130
+ font-size: 35px;
1131
+ font-weight: 300;
1132
+ width: 70px;
1133
+ height: 70px;
1134
+ border-radius: 50%;
1135
+ color: #fff;
1136
+ top: 2.5rem;
1137
+ right: 2.5rem;
1138
+ line-height: 70px;
1139
+ border: none;
1140
+ text-align: center;
1141
+ text-shadow: none;
1142
+ z-index: 5;
1143
+ -webkit-transition: opacity .3s ease;
1144
+ -moz-transition: opacity .3s ease;
1145
+ -o-transition: opacity .3s ease;
1146
+ transition: opacity .3s ease;
1147
+ font-family: 'SoamesIcons';
1148
+ }
1149
+
1150
+ .soames-gallery .modal .close::before {
1151
+ content: '\e91a';
1152
+ }
1153
+
1154
+ .soames-gallery .modal .close:hover {
1155
+ opacity: 1;
1156
+ background: #000;
1157
+ color: #fff;
1158
+ }
1159
+
1160
+ .soames-gallery .modal-dialog {
1161
+ max-width: 100% !important;
1162
+ }
1163
+
1164
+ .soames-gallery .modal.in .modal-dialog {
1165
+ margin: 0 auto;
1166
+ }
1167
+
1168
+ /* modal back color opacity */
1169
+ .modal-backdrop.in {
1170
+ opacity: .8;
1171
+ filter: alpha(opacity=80);
1172
+ }
1173
+
1174
+ @media (max-width: 768px) {
1175
+
1176
+ .soames-gallery .carousel-control,
1177
+ .soames-gallery .carousel-indicators,
1178
+ .soames-gallery .modal .close {
1179
+ position: fixed;
1180
+ }
1181
+ }
1182
+
1183
+ /* fix fade in effect */
1184
+ .soames-gallery .modal.fade .modal-dialog {
1185
+ -webkit-transition: margin-top .3s ease-out;
1186
+ -moz-transition: margin-top .3s ease-out;
1187
+ -o-transition: margin-top .3s ease-out;
1188
+ transition: margin-top .3s ease-out;
1189
+ }
1190
+
1191
+ .soames-gallery .modal.fade .modal-dialog,
1192
+ .soames-gallery .modal.in .modal-dialog {
1193
+ -webkit-transform: none;
1194
+ -ms-transform: none;
1195
+ -o-transform: none;
1196
+ transform: none;
1197
+ }
1198
+
1199
+ .soames-slider .carousel-inner>.active,
1200
+ .soames-slider .carousel-inner>.next,
1201
+ .soames-slider .carousel-inner>.prev {
1202
+ display: table;
1203
+ }
1204
+
1205
+ .soames-slider .carousel-control {
1206
+ position: absolute;
1207
+ width: 70px;
1208
+ height: 70px;
1209
+ top: 50%;
1210
+ margin-top: -35px;
1211
+ line-height: 70px;
1212
+ border-radius: 50%;
1213
+ font-size: 35px;
1214
+ border: 0;
1215
+ opacity: .5;
1216
+ text-shadow: none;
1217
+ z-index: 5;
1218
+ color: #fff;
1219
+ -webkit-transition: all .2s ease-in-out 0s;
1220
+ -o-transition: all .2s ease-in-out 0s;
1221
+ transition: all .2s ease-in-out 0s;
1222
+ }
1223
+
1224
+ .soames-gallery .soames-slider .carousel-control {
1225
+ position: fixed;
1226
+ }
1227
+
1228
+ @media (max-width: 991px) {
1229
+ .soames-gallery .soames-slider .carousel-control {
1230
+ bottom: 2.5rem;
1231
+ margin-top: 0;
1232
+ top: auto;
1233
+ z-index: 17;
1234
+ }
1235
+ }
1236
+
1237
+ .soames-gallery .soames-slider .carousel-inner>.active {
1238
+ display: block;
1239
+ }
1240
+
1241
+ .soames-slider .carousel-control.left {
1242
+ left: 0;
1243
+ margin-left: 2.5rem;
1244
+ }
1245
+
1246
+ .soames-slider .carousel-control.right {
1247
+ right: 0;
1248
+ margin-right: 2.5rem;
1249
+ }
1250
+
1251
+ .soames-slider .carousel-control .icon-next,
1252
+ .soames-slider .carousel-control .icon-prev {
1253
+ margin-top: -18px;
1254
+ font-size: 40px;
1255
+ line-height: 27px;
1256
+ }
1257
+
1258
+ .soames-slider .carousel-control:hover {
1259
+ background: #1b1b1b;
1260
+ color: #fff;
1261
+ opacity: 1;
1262
+ }
1263
+
1264
+ .soames-slider .carousel-indicators {
1265
+ position: absolute;
1266
+ bottom: 0;
1267
+ margin-bottom: 1.5rem !important;
1268
+ }
1269
+
1270
+ @media (max-width: 543px) {
1271
+ .soames-slider .carousel-indicators {
1272
+ display: none;
1273
+ }
1274
+ }
1275
+
1276
+ .carousel-indicators .active,
1277
+ .carousel-indicators li {
1278
+ width: 15px;
1279
+ height: 15px;
1280
+ margin: 3px;
1281
+ background: #1b1b1b;
1282
+ opacity: .5;
1283
+ }
1284
+
1285
+ .carousel-indicators .active {
1286
+ background: #fff;
1287
+ }
1288
+
1289
+ .carousel-indicators li {
1290
+ max-width: 15px;
1291
+ max-height: 15px;
1292
+ border-radius: 50%;
1293
+ }
1294
+
1295
+ .container .carousel-indicators {
1296
+ margin-bottom: 3px;
1297
+ }
1298
+
1299
+ .soames-gallery .soames-slider .carousel-indicators {
1300
+ position: fixed;
1301
+ margin-bottom: 2.5rem !important;
1302
+ }
1303
+
1304
+ @media (max-width: 991px) {
1305
+ .soames-gallery .soames-slider .carousel-indicators {
1306
+ margin-bottom: 3.625rem !important;
1307
+ padding-left: 2.5rem;
1308
+ padding-right: 2.5rem;
1309
+ }
1310
+ }
1311
+
1312
+ .soames-slider .carousel-indicators .active,
1313
+ .soames-slider .carousel-indicators li {
1314
+ width: 7px;
1315
+ height: 7px;
1316
+ margin: 3px;
1317
+ background: #1b1b1b;
1318
+ border: 4px solid #1b1b1b;
1319
+ opacity: .5;
1320
+ }
1321
+
1322
+ .soames-slider .carousel-indicators .active {
1323
+ background: #fff;
1324
+ }
1325
+
1326
+ @media (max-width: 767px) {
1327
+ .soames-slider .carousel-control {
1328
+ top: auto;
1329
+ bottom: 20px;
1330
+ }
1331
+
1332
+ .soames-slider>.container .carousel-control {
1333
+ margin-bottom: 0;
1334
+ }
1335
+ }
1336
+
1337
+ /* boxed slider */
1338
+ .soames-slider>.boxed-slider {
1339
+ position: relative;
1340
+ padding: 93px 0;
1341
+ }
1342
+
1343
+ .soames-slider>.boxed-slider>div {
1344
+ position: relative;
1345
+ }
1346
+
1347
+ .soames-slider>.container img {
1348
+ width: 100%;
1349
+ }
1350
+
1351
+ .soames-slider>.container img+.row {
1352
+ position: absolute;
1353
+ top: 50%;
1354
+ left: 0;
1355
+ right: 0;
1356
+ -webkit-transform: translateY(-50%);
1357
+ -moz-transform: translateY(-50%);
1358
+ transform: translateY(-50%);
1359
+ z-index: 2;
1360
+ }
1361
+
1362
+ .soames-slider .soames-section {
1363
+ padding: 0;
1364
+ background-attachment: scroll;
1365
+ }
1366
+
1367
+ .soames-slider .soames-table-cell {
1368
+ padding: 0;
1369
+ }
1370
+
1371
+ .soames-slider>.container .carousel-indicators {
1372
+ margin-bottom: 3px;
1373
+ }
1374
+
1375
+ /* article slider */
1376
+ .soames-slider>.article-slider .soames-section,
1377
+ .soames-slider>.article-slider .soames-section .soames-table-cell {
1378
+ padding-top: 0;
1379
+ padding-bottom: 0;
1380
+ }
1381
+
1382
+ .modal-backdrop.show {
1383
+ opacity: .7;
1384
+ }
1385
+
1386
+ .video-container .soames-background-video iframe {
1387
+ width: 100%;
1388
+ height: 100%;
1389
+ }
1390
+
1391
+ .soames-gallery-item__hided {
1392
+ position: absolute !important;
1393
+ left: 0 !important;
1394
+ width: 0 !important;
1395
+ height: 0;
1396
+ padding: 0 !important;
1397
+ }
1398
+
1399
+ .soames-gallery-item__hided img {
1400
+ display: none !important;
1401
+ }
1402
+
1403
+ .soames-gallery-item__hided span {
1404
+ display: none !important;
1405
+ }
1406
+
1407
+ .soames-gallery-filter {
1408
+ padding-top: 30px;
1409
+ padding-bottom: 30px;
1410
+ text-align: center;
1411
+ }
1412
+
1413
+ .soames-gallery-filter li {
1414
+ display: inline-block;
1415
+ padding: 5px 0;
1416
+ transition: all .3s ease-out;
1417
+ }
1418
+
1419
+ .soames-gallery-filter li .btn {
1420
+ cursor: pointer;
1421
+ }
1422
+
1423
+ .soames-gallery-filter.gallery-filter__bg li {
1424
+ color: #fff;
1425
+ }
1426
+
1427
+ .soames-gallery-filter.gallery-filter__bg .active {
1428
+ color: #000;
1429
+ background-color: #fff;
1430
+ }
1431
+
1432
+ .soames-gallery-filter ul {
1433
+ display: inline-block;
1434
+ width: 100%;
1435
+ padding-left: 0;
1436
+ margin-bottom: 0;
1437
+ list-style: none;
1438
+ }
1439
+
1440
+ .soames-gallery-item>div {
1441
+ position: relative;
1442
+ }
1443
+
1444
+ .soames-gallery-item--p1 {
1445
+ padding: 0.5rem;
1446
+ }
1447
+
1448
+ .soames-gallery-item--p2 {
1449
+ padding: 1rem;
1450
+ }
1451
+
1452
+ .soames-gallery-item--p3 {
1453
+ padding: 1.5rem;
1454
+ }
1455
+
1456
+ .soames-gallery-item--p4 {
1457
+ padding: 2rem;
1458
+ }
1459
+
1460
+ .soames-gallery-item--p5 {
1461
+ padding: 2.5rem;
1462
+ }
1463
+
1464
+ .soames-gallery-item--p6 {
1465
+ padding: 3rem;
1466
+ }
1467
+
1468
+ .soames-gallery .soames-gallery-item--p4 {
1469
+ width: 33.333%;
1470
+ }
1471
+
1472
+ .soames-gallery .soames-gallery-item--p6,
1473
+ .soames-gallery .soames-gallery-item--p5 {
1474
+ width: 50%;
1475
+ }
1476
+
1477
+ @media (max-width: 992px) {
1478
+ .soames-gallery-item--p1 {
1479
+ padding: 0.5rem;
1480
+ }
1481
+
1482
+ .soames-gallery-item--p2 {
1483
+ padding: 0.8rem;
1484
+ }
1485
+
1486
+ .soames-gallery-item--p3 {
1487
+ padding: 1rem;
1488
+ }
1489
+
1490
+ .soames-gallery-item--p4 {
1491
+ padding: 1.5rem;
1492
+ }
1493
+
1494
+ .soames-gallery-item--p5 {
1495
+ padding: 1.8rem;
1496
+ }
1497
+
1498
+ .soames-gallery-item--p6 {
1499
+ padding: 2rem;
1500
+ }
1501
+
1502
+ .soames-gallery .soames-gallery-item--p2,
1503
+ .soames-gallery .soames-gallery-item--p3 {
1504
+ width: 50%;
1505
+ }
1506
+
1507
+ .soames-gallery .soames-gallery-item--p6,
1508
+ .soames-gallery .soames-gallery-item--p5,
1509
+ .soames-gallery .soames-gallery-item--p4 {
1510
+ width: 100%;
1511
+ }
1512
+ }
1513
+
1514
+ @media (max-width: 400px) {
1515
+
1516
+ .soames-gallery .soames-gallery-item--p3,
1517
+ .soames-gallery .soames-gallery-item--p2,
1518
+ .soames-gallery .soames-gallery-item--p1 {
1519
+ width: 100%;
1520
+ }
1521
+ }
1522
+
1523
+ /*# sourceMappingURL=style.css.map */
1524
+
1525
+ main {
1526
+ height: 100vh;
1527
+ overflow-x: hidden;
1528
+ overflow-y: auto;
1529
+ perspective: 2px;
1530
+ }
1531
+
1532
+ .soames-parallax {
1533
+ transform-style: preserve-3d;
1534
+ position: relative;
1535
+ display: flex;
1536
+ align-items: center;
1537
+ justify-content: center;
1538
+ color: white;
1539
+ }
1540
+
1541
+ .soames-parallax::after {
1542
+ content: ' ';
1543
+ position: absolute;
1544
+ top: 0;
1545
+ right: 0;
1546
+ bottom: 0;
1547
+ left: 0;
1548
+ transform: translateZ(-1px) scale(1.5);
1549
+ background-size: 100%;
1550
+ z-index: -1;
1551
+ }