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,1779 @@
1
+ .display-1 {
2
+ font-family: 'Rubik', sans-serif;
3
+ font-size: 4.25rem;
4
+ font-display: swap;
5
+ }
6
+
7
+ .display-1>.soames-iconfont {
8
+ font-size: 6.8rem;
9
+ }
10
+
11
+ .display-2 {
12
+ font-family: 'Rubik', sans-serif;
13
+ font-size: 3rem;
14
+ font-display: swap;
15
+ }
16
+
17
+ .display-2>.soames-iconfont {
18
+ font-size: 4.8rem;
19
+ }
20
+
21
+ .display-4 {
22
+ font-family: 'Rubik', sans-serif;
23
+ font-size: 1rem;
24
+ font-display: swap;
25
+ }
26
+
27
+ .display-4>.soames-iconfont {
28
+ font-size: 1.6rem;
29
+ }
30
+
31
+ .display-5 {
32
+ font-family: 'Rubik', sans-serif;
33
+ font-size: 1.5rem;
34
+ font-display: swap;
35
+ }
36
+
37
+ .display-5>.soames-iconfont {
38
+ font-size: 2.4rem;
39
+ }
40
+
41
+ .display-7 {
42
+ font-family: 'Rubik', sans-serif;
43
+ font-size: 1.2rem;
44
+ font-display: swap;
45
+ }
46
+
47
+ .display-7>.soames-iconfont {
48
+ font-size: 1.6rem;
49
+ }
50
+
51
+ .blog-post-content {
52
+ font-size: 1.2rem;
53
+ }
54
+
55
+ /* ---- Fluid typography for mobile devices ---- */
56
+ /* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
57
+ /* 100vw - current viewport width */
58
+ /* (48 - 20) 48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
59
+ /* 0.65 - min scale variable, may vary */
60
+ @media (max-width: 768px) {
61
+ .display-1 {
62
+ font-size: 3.4rem;
63
+ font-size: calc(2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
64
+ line-height: calc(1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
65
+ }
66
+
67
+ .display-2 {
68
+ font-size: 2.4rem;
69
+ font-size: calc(1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
70
+ line-height: calc(1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
71
+ }
72
+
73
+ .display-4 {
74
+ font-size: 0.8rem;
75
+ font-size: calc(1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
76
+ line-height: calc(1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
77
+ }
78
+
79
+ .display-5 {
80
+ font-size: 1.2rem;
81
+ font-size: calc(1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
82
+ line-height: calc(1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
83
+ }
84
+ }
85
+
86
+ /* Buttons */
87
+ .btn {
88
+ padding: 1rem 3rem;
89
+ border-radius: 3px;
90
+ }
91
+
92
+ .btn-sm {
93
+ padding: 0.6rem 1.5rem;
94
+ border-radius: 3px;
95
+ }
96
+
97
+ .btn-md {
98
+ padding: 1rem 3rem;
99
+ border-radius: 3px;
100
+ }
101
+
102
+ .btn-lg {
103
+ padding: 1.2rem 3.2rem;
104
+ border-radius: 3px;
105
+ }
106
+
107
+ .bg-primary {
108
+ background-color: #dc7b25 !important;
109
+ }
110
+
111
+ .bg-success {
112
+ background-color: #f7ed4a !important;
113
+ }
114
+
115
+ .bg-info {
116
+ background-color: #82786e !important;
117
+ }
118
+
119
+ .bg-warning {
120
+ background-color: #879a9f !important;
121
+ }
122
+
123
+ .bg-danger {
124
+ background-color: #b1a374 !important;
125
+ }
126
+
127
+ .btn-primary,
128
+ .btn-primary:active {
129
+ background-color: #dc7b25 !important;
130
+ border-color: #dc7b25 !important;
131
+ color: #ffffff !important;
132
+ }
133
+
134
+ .btn-primary:hover,
135
+ .btn-primary:focus,
136
+ .btn-primary.focus,
137
+ .btn-primary.active {
138
+ color: #ffffff !important;
139
+ background-color: #bc361b !important;
140
+ border-color: #bc361b !important;
141
+ }
142
+
143
+ .btn-primary.disabled,
144
+ .btn-primary:disabled {
145
+ color: #ffffff !important;
146
+ background-color: #bc361b !important;
147
+ border-color: #bc361b!important;
148
+ }
149
+
150
+ .btn-secondary,
151
+ .btn-secondary:active {
152
+ background-color: #ff3366 !important;
153
+ border-color: #ff3366 !important;
154
+ color: #ffffff !important;
155
+ }
156
+
157
+ .btn-secondary:hover,
158
+ .btn-secondary:focus,
159
+ .btn-secondary.focus,
160
+ .btn-secondary.active {
161
+ color: #ffffff !important;
162
+ background-color: #e50039 !important;
163
+ border-color: #e50039 !important;
164
+ }
165
+
166
+ .btn-secondary.disabled,
167
+ .btn-secondary:disabled {
168
+ color: #ffffff !important;
169
+ background-color: #e50039 !important;
170
+ border-color: #e50039 !important;
171
+ }
172
+
173
+ .btn-info,
174
+ .btn-info:active {
175
+ background-color: #82786e !important;
176
+ border-color: #82786e !important;
177
+ color: #ffffff !important;
178
+ }
179
+
180
+ .btn-info:hover,
181
+ .btn-info:focus,
182
+ .btn-info.focus,
183
+ .btn-info.active {
184
+ color: #ffffff !important;
185
+ background-color: #59524b !important;
186
+ border-color: #59524b !important;
187
+ }
188
+
189
+ .btn-info.disabled,
190
+ .btn-info:disabled {
191
+ color: #ffffff !important;
192
+ background-color: #59524b !important;
193
+ border-color: #59524b !important;
194
+ }
195
+
196
+ .btn-success,
197
+ .btn-success:active {
198
+ background-color: #f7ed4a !important;
199
+ border-color: #f7ed4a !important;
200
+ color: #3f3c03 !important;
201
+ }
202
+
203
+ .btn-success:hover,
204
+ .btn-success:focus,
205
+ .btn-success.focus,
206
+ .btn-success.active {
207
+ color: #3f3c03 !important;
208
+ background-color: #eadd0a !important;
209
+ border-color: #eadd0a !important;
210
+ }
211
+
212
+ .btn-success.disabled,
213
+ .btn-success:disabled {
214
+ color: #3f3c03 !important;
215
+ background-color: #eadd0a !important;
216
+ border-color: #eadd0a !important;
217
+ }
218
+
219
+ .btn-warning,
220
+ .btn-warning:active {
221
+ background-color: #879a9f !important;
222
+ border-color: #879a9f !important;
223
+ color: #ffffff !important;
224
+ }
225
+
226
+ .btn-warning:hover,
227
+ .btn-warning:focus,
228
+ .btn-warning.focus,
229
+ .btn-warning.active {
230
+ color: #ffffff !important;
231
+ background-color: #617479 !important;
232
+ border-color: #617479 !important;
233
+ }
234
+
235
+ .btn-warning.disabled,
236
+ .btn-warning:disabled {
237
+ color: #ffffff !important;
238
+ background-color: #617479 !important;
239
+ border-color: #617479 !important;
240
+ }
241
+
242
+ .btn-danger,
243
+ .btn-danger:active {
244
+ background-color: #b1a374 !important;
245
+ border-color: #b1a374 !important;
246
+ color: #ffffff !important;
247
+ }
248
+
249
+ .btn-danger:hover,
250
+ .btn-danger:focus,
251
+ .btn-danger.focus,
252
+ .btn-danger.active {
253
+ color: #ffffff !important;
254
+ background-color: #8b7d4e !important;
255
+ border-color: #8b7d4e !important;
256
+ }
257
+
258
+ .btn-danger.disabled,
259
+ .btn-danger:disabled {
260
+ color: #ffffff !important;
261
+ background-color: #8b7d4e !important;
262
+ border-color: #8b7d4e !important;
263
+ }
264
+
265
+ .btn-white {
266
+ color: #333333 !important;
267
+ }
268
+
269
+ .btn-white,
270
+ .btn-white:active {
271
+ background-color: #ffffff !important;
272
+ border-color: #ffffff !important;
273
+ color: #808080 !important;
274
+ }
275
+
276
+ .btn-white:hover,
277
+ .btn-white:focus,
278
+ .btn-white.focus,
279
+ .btn-white.active {
280
+ color: #808080 !important;
281
+ background-color: #d9d9d9 !important;
282
+ border-color: #d9d9d9 !important;
283
+ }
284
+
285
+ .btn-white.disabled,
286
+ .btn-white:disabled {
287
+ color: #808080 !important;
288
+ background-color: #d9d9d9 !important;
289
+ border-color: #d9d9d9 !important;
290
+ }
291
+
292
+ .btn-black,
293
+ .btn-black:active {
294
+ background-color: #333333 !important;
295
+ border-color: #333333 !important;
296
+ color: #ffffff !important;
297
+ }
298
+
299
+ .btn-black:hover,
300
+ .btn-black:focus,
301
+ .btn-black.focus,
302
+ .btn-black.active {
303
+ color: #ffffff !important;
304
+ background-color: #0d0d0d !important;
305
+ border-color: #0d0d0d !important;
306
+ }
307
+
308
+ .btn-black.disabled,
309
+ .btn-black:disabled {
310
+ color: #ffffff !important;
311
+ background-color: #0d0d0d !important;
312
+ border-color: #0d0d0d !important;
313
+ }
314
+
315
+ .btn-primary-outline,
316
+ .btn-primary-outline:active {
317
+ background: none;
318
+ border-color: #0b566f;
319
+ color: #0b566f;
320
+ }
321
+
322
+ .btn-primary-outline:hover,
323
+ .btn-primary-outline:focus,
324
+ .btn-primary-outline.focus,
325
+ .btn-primary-outline.active {
326
+ color: #ffffff;
327
+ background-color: #dc7b25;
328
+ border-color: #dc7b25;
329
+ }
330
+
331
+ .btn-primary-outline.disabled,
332
+ .btn-primary-outline:disabled {
333
+ color: #ffffff !important;
334
+ background-color: #dc7b25 !important;
335
+ border-color: #dc7b25 !important;
336
+ }
337
+
338
+ .btn-secondary-outline,
339
+ .btn-secondary-outline:active {
340
+ background: none;
341
+ border-color: #cc0033;
342
+ color: #cc0033;
343
+ }
344
+
345
+ .btn-secondary-outline:hover,
346
+ .btn-secondary-outline:focus,
347
+ .btn-secondary-outline.focus,
348
+ .btn-secondary-outline.active {
349
+ color: #ffffff;
350
+ background-color: #ff3366;
351
+ border-color: #ff3366;
352
+ }
353
+
354
+ .btn-secondary-outline.disabled,
355
+ .btn-secondary-outline:disabled {
356
+ color: #ffffff !important;
357
+ background-color: #ff3366 !important;
358
+ border-color: #ff3366 !important;
359
+ }
360
+
361
+ .btn-info-outline,
362
+ .btn-info-outline:active {
363
+ background: none;
364
+ border-color: #4b453f;
365
+ color: #4b453f;
366
+ }
367
+
368
+ .btn-info-outline:hover,
369
+ .btn-info-outline:focus,
370
+ .btn-info-outline.focus,
371
+ .btn-info-outline.active {
372
+ color: #ffffff;
373
+ background-color: #82786e;
374
+ border-color: #82786e;
375
+ }
376
+
377
+ .btn-info-outline.disabled,
378
+ .btn-info-outline:disabled {
379
+ color: #ffffff !important;
380
+ background-color: #82786e !important;
381
+ border-color: #82786e !important;
382
+ }
383
+
384
+ .btn-success-outline,
385
+ .btn-success-outline:active {
386
+ background: none;
387
+ border-color: #d2c609;
388
+ color: #d2c609;
389
+ }
390
+
391
+ .btn-success-outline:hover,
392
+ .btn-success-outline:focus,
393
+ .btn-success-outline.focus,
394
+ .btn-success-outline.active {
395
+ color: #3f3c03;
396
+ background-color: #f7ed4a;
397
+ border-color: #f7ed4a;
398
+ }
399
+
400
+ .btn-success-outline.disabled,
401
+ .btn-success-outline:disabled {
402
+ color: #3f3c03 !important;
403
+ background-color: #f7ed4a !important;
404
+ border-color: #f7ed4a !important;
405
+ }
406
+
407
+ .btn-warning-outline,
408
+ .btn-warning-outline:active {
409
+ background: none;
410
+ border-color: #55666b;
411
+ color: #55666b;
412
+ }
413
+
414
+ .btn-warning-outline:hover,
415
+ .btn-warning-outline:focus,
416
+ .btn-warning-outline.focus,
417
+ .btn-warning-outline.active {
418
+ color: #ffffff;
419
+ background-color: #879a9f;
420
+ border-color: #879a9f;
421
+ }
422
+
423
+ .btn-warning-outline.disabled,
424
+ .btn-warning-outline:disabled {
425
+ color: #ffffff !important;
426
+ background-color: #879a9f !important;
427
+ border-color: #879a9f !important;
428
+ }
429
+
430
+ .btn-danger-outline,
431
+ .btn-danger-outline:active {
432
+ background: none;
433
+ border-color: #7a6e45;
434
+ color: #7a6e45;
435
+ }
436
+
437
+ .btn-danger-outline:hover,
438
+ .btn-danger-outline:focus,
439
+ .btn-danger-outline.focus,
440
+ .btn-danger-outline.active {
441
+ color: #ffffff;
442
+ background-color: #b1a374;
443
+ border-color: #b1a374;
444
+ }
445
+
446
+ .btn-danger-outline.disabled,
447
+ .btn-danger-outline:disabled {
448
+ color: #ffffff !important;
449
+ background-color: #b1a374 !important;
450
+ border-color: #b1a374 !important;
451
+ }
452
+
453
+ .btn-black-outline,
454
+ .btn-black-outline:active {
455
+ background: none;
456
+ border-color: #000000;
457
+ color: #000000;
458
+ }
459
+
460
+ .btn-black-outline:hover,
461
+ .btn-black-outline:focus,
462
+ .btn-black-outline.focus,
463
+ .btn-black-outline.active {
464
+ color: #ffffff;
465
+ background-color: #333333;
466
+ border-color: #333333;
467
+ }
468
+
469
+ .btn-black-outline.disabled,
470
+ .btn-black-outline:disabled {
471
+ color: #ffffff !important;
472
+ background-color: #333333 !important;
473
+ border-color: #333333 !important;
474
+ }
475
+
476
+ .btn-white-outline,
477
+ .btn-white-outline:active,
478
+ .btn-white-outline.active {
479
+ background: none;
480
+ border-color: #ffffff;
481
+ color: #ffffff;
482
+ }
483
+
484
+ .btn-white-outline:hover,
485
+ .btn-white-outline:focus,
486
+ .btn-white-outline.focus {
487
+ color: #333333;
488
+ background-color: #ffffff;
489
+ border-color: #ffffff;
490
+ }
491
+
492
+ .text-primary {
493
+ color: #dc7b25 !important;
494
+ }
495
+
496
+ .text-secondary {
497
+ color: #ff3366 !important;
498
+ }
499
+
500
+ .text-success {
501
+ color: #f7ed4a !important;
502
+ }
503
+
504
+ .text-info {
505
+ color: #82786e !important;
506
+ }
507
+
508
+ .text-warning {
509
+ color: #879a9f !important;
510
+ }
511
+
512
+ .text-danger {
513
+ color: #b1a374 !important;
514
+ }
515
+
516
+ .text-white {
517
+ color: #ffffff !important;
518
+ }
519
+
520
+ .text-black {
521
+ color: #000000 !important;
522
+ }
523
+
524
+ a.text-primary:hover,
525
+ a.text-primary:focus {
526
+ color: #0b566f !important;
527
+ }
528
+
529
+ a.text-secondary:hover,
530
+ a.text-secondary:focus {
531
+ color: #cc0033 !important;
532
+ }
533
+
534
+ a.text-success:hover,
535
+ a.text-success:focus {
536
+ color: #d2c609 !important;
537
+ }
538
+
539
+ a.text-info:hover,
540
+ a.text-info:focus {
541
+ color: #4b453f !important;
542
+ }
543
+
544
+ a.text-warning:hover,
545
+ a.text-warning:focus {
546
+ color: #55666b !important;
547
+ }
548
+
549
+ a.text-danger:hover,
550
+ a.text-danger:focus {
551
+ color: #7a6e45 !important;
552
+ }
553
+
554
+ a.text-white:hover,
555
+ a.text-white:focus {
556
+ color: #b3b3b3 !important;
557
+ }
558
+
559
+ a.text-black:hover,
560
+ a.text-black:focus {
561
+ color: #4d4d4d !important;
562
+ }
563
+
564
+ .alert-success {
565
+ background-color: #70c770;
566
+ }
567
+
568
+ .alert-info {
569
+ background-color: #82786e;
570
+ }
571
+
572
+ .alert-warning {
573
+ background-color: #879a9f;
574
+ }
575
+
576
+ .alert-danger {
577
+ background-color: #b1a374;
578
+ }
579
+
580
+ .soames-section-btn a.btn:not(.btn-form) {
581
+ border-radius: 100px;
582
+ }
583
+
584
+ .soames-section-btn a.btn:not(.btn-form):hover,
585
+ .soames-section-btn a.btn:not(.btn-form):focus {
586
+ box-shadow: none !important;
587
+ }
588
+
589
+ .soames-section-btn a.btn:not(.btn-form):hover,
590
+ .soames-section-btn a.btn:not(.btn-form):focus {
591
+ box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
592
+ -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
593
+ }
594
+
595
+ .soames-gallery-filter li a {
596
+ border-radius: 100px !important;
597
+ }
598
+
599
+ .soames-gallery-filter li.active .btn {
600
+ background-color: #dc7b25;
601
+ border-color: #dc7b25;
602
+ color: #ffffff;
603
+ }
604
+
605
+ .soames-gallery-filter li.active .btn:focus {
606
+ box-shadow: none;
607
+ }
608
+
609
+ .nav-tabs .nav-link {
610
+ border-radius: 100px !important;
611
+ }
612
+
613
+ a,
614
+ a:hover {
615
+ color: #dc7b25;
616
+ }
617
+
618
+ .soames-plan-header.bg-primary .soames-plan-subtitle,
619
+ .soames-plan-header.bg-primary .soames-plan-price-desc {
620
+ color: #b4e6f8;
621
+ }
622
+
623
+ .soames-plan-header.bg-success .soames-plan-subtitle,
624
+ .soames-plan-header.bg-success .soames-plan-price-desc {
625
+ color: #ffffff;
626
+ }
627
+
628
+ .soames-plan-header.bg-info .soames-plan-subtitle,
629
+ .soames-plan-header.bg-info .soames-plan-price-desc {
630
+ color: #beb8b2;
631
+ }
632
+
633
+ .soames-plan-header.bg-warning .soames-plan-subtitle,
634
+ .soames-plan-header.bg-warning .soames-plan-price-desc {
635
+ color: #ced6d8;
636
+ }
637
+
638
+ .soames-plan-header.bg-danger .soames-plan-subtitle,
639
+ .soames-plan-header.bg-danger .soames-plan-price-desc {
640
+ color: #dfd9c6;
641
+ }
642
+
643
+ /* Scroll to top button*/
644
+ .scrollToTop_wraper {
645
+ display: none;
646
+ }
647
+
648
+ .form-control {
649
+ font-family: 'Rubik', sans-serif;
650
+ font-size: 1rem;
651
+ font-display: swap;
652
+ }
653
+
654
+ .form-control>.soames-iconfont {
655
+ font-size: 1.6rem;
656
+ }
657
+
658
+ blockquote {
659
+ border-color: #dc7b25;
660
+ }
661
+
662
+ /* Forms */
663
+ .soames-form .btn {
664
+ margin: .4rem 0;
665
+ }
666
+
667
+ .soames-form .input-group-btn a.btn {
668
+ border-radius: 100px !important;
669
+ }
670
+
671
+ .soames-form .input-group-btn a.btn:hover {
672
+ box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
673
+ }
674
+
675
+ .soames-form .input-group-btn button[type="submit"] {
676
+ border-radius: 100px !important;
677
+ padding: 1rem 3rem;
678
+ }
679
+
680
+ .soames-form .input-group-btn button[type="submit"]:hover {
681
+ box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
682
+ }
683
+
684
+ .form2 .form-control {
685
+ border-top-left-radius: 100px;
686
+ border-bottom-left-radius: 100px;
687
+ }
688
+
689
+ .form2 .input-group-btn a.btn {
690
+ border-top-left-radius: 0 !important;
691
+ border-bottom-left-radius: 0 !important;
692
+ }
693
+
694
+ .form2 .input-group-btn button[type="submit"] {
695
+ border-top-left-radius: 0 !important;
696
+ border-bottom-left-radius: 0 !important;
697
+ }
698
+
699
+ .form3 input[type="email"] {
700
+ border-radius: 100px !important;
701
+ }
702
+
703
+ @media (max-width: 349px) {
704
+ .form2 input[type="email"] {
705
+ border-radius: 100px !important;
706
+ }
707
+
708
+ .form2 .input-group-btn a.btn {
709
+ border-radius: 100px !important;
710
+ }
711
+
712
+ .form2 .input-group-btn button[type="submit"] {
713
+ border-radius: 100px !important;
714
+ }
715
+ }
716
+
717
+ @media (max-width: 767px) {
718
+ .btn {
719
+ font-size: .75rem !important;
720
+ }
721
+
722
+ .btn .soames-iconfont {
723
+ font-size: 1rem !important;
724
+ }
725
+ }
726
+
727
+ /* Footer */
728
+ .soames-footer-content li::before,
729
+ .soames-footer .soames-contacts li::before {
730
+ background: #dc7b25;
731
+ }
732
+
733
+ .soames-footer-content li a:hover,
734
+ .soames-footer .soames-contacts li a:hover {
735
+ color: #dc7b25;
736
+ }
737
+
738
+ .footer3 input[type="email"],
739
+ .footer4 input[type="email"] {
740
+ border-radius: 100px !important;
741
+ }
742
+
743
+ .footer3 .input-group-btn a.btn,
744
+ .footer4 .input-group-btn a.btn {
745
+ border-radius: 100px !important;
746
+ }
747
+
748
+ .footer3 .input-group-btn button[type="submit"],
749
+ .footer4 .input-group-btn button[type="submit"] {
750
+ border-radius: 100px !important;
751
+ }
752
+
753
+ .soames-footer-content ul {
754
+ list-style: none;
755
+ padding: 0px;
756
+ }
757
+
758
+ .soames-footer-list-item {
759
+ margin-bottom: 6px;
760
+ }
761
+
762
+ /* Headers */
763
+ .header13 .form-inline input[type="email"],
764
+ .header14 .form-inline input[type="email"] {
765
+ border-radius: 100px;
766
+ }
767
+
768
+ .header13 .form-inline input[type="text"],
769
+ .header14 .form-inline input[type="text"] {
770
+ border-radius: 100px;
771
+ }
772
+
773
+ .header13 .form-inline input[type="tel"],
774
+ .header14 .form-inline input[type="tel"] {
775
+ border-radius: 100px;
776
+ }
777
+
778
+ .header13 .form-inline a.btn,
779
+ .header14 .form-inline a.btn {
780
+ border-radius: 100px;
781
+ }
782
+
783
+ .header13 .form-inline button,
784
+ .header14 .form-inline button {
785
+ border-radius: 100px !important;
786
+ }
787
+
788
+ @media screen and (-ms-high-contrast: active),
789
+ (-ms-high-contrast: none) {
790
+ .card-wrapper {
791
+ flex: auto !important;
792
+ }
793
+ }
794
+
795
+ .jq-selectbox li:hover,
796
+ .jq-selectbox li.selected {
797
+ background-color: #dc7b25;
798
+ color: #ffffff;
799
+ }
800
+
801
+ .jq-selectbox .jq-selectbox__trigger-arrow,
802
+ .jq-number__spin.minus:after,
803
+ .jq-number__spin.plus:after {
804
+ transition: 0.4s;
805
+ border-top-color: currentColor;
806
+ border-bottom-color: currentColor;
807
+ }
808
+
809
+ .jq-selectbox:hover .jq-selectbox__trigger-arrow,
810
+ .jq-number__spin.minus:hover:after,
811
+ .jq-number__spin.plus:hover:after {
812
+ border-top-color: #dc7b25;
813
+ border-bottom-color: #dc7b25;
814
+ }
815
+
816
+ .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
817
+ .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
818
+ .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
819
+ color: #ffffff !important;
820
+ background-color: #dc7b25 !important;
821
+ box-shadow: none !important;
822
+ }
823
+
824
+ .xdsoft_datetimepicker .xdsoft_calendar td:hover,
825
+ .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
826
+ color: #ffffff !important;
827
+ background: #ff3366 !important;
828
+ box-shadow: none !important;
829
+ }
830
+
831
+ .lazy-bg {
832
+ background-image: none !important;
833
+ }
834
+
835
+ .lazy-placeholder:not(section),
836
+ .lazy-none {
837
+ display: block;
838
+ position: relative;
839
+ padding-bottom: 56.25%;
840
+ }
841
+
842
+ iframe.lazy-placeholder,
843
+ .lazy-placeholder:after {
844
+ content: '';
845
+ position: absolute;
846
+ width: 100px;
847
+ height: 100px;
848
+ background: transparent no-repeat center;
849
+ background-size: contain;
850
+ top: 50%;
851
+ left: 50%;
852
+ transform: translateX(-50%) translateY(-50%);
853
+ background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23dc7b25' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
854
+ }
855
+
856
+ section.lazy-placeholder:after {
857
+ opacity: 0.3;
858
+ }
859
+
860
+ .navbar {
861
+ padding: .5rem 0;
862
+ background: #bc361b;
863
+ transition: none;
864
+ min-height: 77px;
865
+ }
866
+
867
+ .navbar-dropdown.bg-color.transparent.opened {
868
+ background: #bc361b;
869
+ }
870
+
871
+ .soames-gallery-menu {
872
+ padding-top: 0px;
873
+ padding-bottom: 0px;
874
+ background-color: #efefef;
875
+ }
876
+
877
+ .soames-gallery-menu .card-img {
878
+ background-color: #fff;
879
+ }
880
+
881
+ .soames-gallery-menu .card-box {
882
+ background-color: #ffffff;
883
+ padding: 2rem;
884
+ }
885
+
886
+ .soames-gallery-menu h4 {
887
+ font-weight: 500;
888
+ margin: 0;
889
+ text-align: left;
890
+ }
891
+
892
+ .soames-gallery-menu p {
893
+ text-align: left;
894
+ }
895
+
896
+ .soames-gallery-menu .soames-text {
897
+ color: #767676;
898
+ }
899
+
900
+ .soames-gallery-menu .card-wrapper {
901
+ height: 100%;
902
+ box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
903
+ transition: box-shadow 0.3s;
904
+ }
905
+
906
+ .soames-gallery-menu .card-wrapper:hover {
907
+ box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
908
+ transition: box-shadow 0.3s;
909
+ }
910
+
911
+ @media (min-width: 992px) {
912
+ .soames-gallery-menu .my-col {
913
+ flex: 0 0 20%;
914
+ max-width: 20%;
915
+ padding: 15px;
916
+ }
917
+ }
918
+
919
+ .media-wrap-icon {
920
+ background-color: white;
921
+ }
922
+
923
+ .video-block {
924
+ margin: auto;
925
+ }
926
+
927
+ @media (max-width: 768px) {
928
+ .video-block {
929
+ width: 100% !important;
930
+ }
931
+ }
932
+
933
+ .video-wrapper {
934
+ float: none;
935
+ clear: both;
936
+ width: 100%;
937
+ position: relative;
938
+ padding-bottom: 56.25%;
939
+ padding-top: 25px;
940
+ height: 0;
941
+ }
942
+ .video-wrapper iframe {
943
+ position: absolute;
944
+ top: 0;
945
+ left: 0;
946
+ width: 100%;
947
+ height: 100%;
948
+ }
949
+
950
+ .soames-features {
951
+ padding-top: 35px;
952
+ padding-bottom: 30px;
953
+ background-color: #ffffff;
954
+ }
955
+
956
+ .soames-features h2 {
957
+ text-align: left;
958
+ }
959
+
960
+ .soames-features h4 {
961
+ text-align: left;
962
+ font-weight: 500;
963
+ }
964
+
965
+ .soames-features p {
966
+ color: #767676;
967
+ text-align: left;
968
+ }
969
+
970
+ .soames-features .aside-content {
971
+ flex-basis: 100%;
972
+ }
973
+
974
+ .soames-features .block-content {
975
+ display: -webkit-flex;
976
+ flex-direction: column;
977
+ -webkit-flex-direction: column;
978
+ word-break: break-word;
979
+ }
980
+
981
+ .soames-features .media {
982
+ margin: initial;
983
+ align-items: center;
984
+ }
985
+
986
+ .soames-features .soames-figure {
987
+ align-self: flex-start;
988
+ -webkit-align-self: flex-start;
989
+ -webkit-flex-shrink: 0;
990
+ flex-shrink: 0;
991
+ }
992
+
993
+ .soames-figure {
994
+ padding-top: 0;
995
+ }
996
+
997
+ .soames-features .card-img {
998
+ padding-right: 2rem;
999
+ width: auto;
1000
+ }
1001
+
1002
+ .soames-features .card-img span {
1003
+ font-size: 72px;
1004
+ color: #707070;
1005
+ }
1006
+
1007
+ @media (min-width: 992px) {
1008
+ .soames-features .soames-figure {
1009
+ padding-right: 4rem;
1010
+ padding-right: 0;
1011
+ padding-left: 4rem;
1012
+ }
1013
+
1014
+ .soames-features .media-container-row {
1015
+ -webkit-flex-direction: row;
1016
+ }
1017
+ }
1018
+
1019
+ @media (max-width: 991px) {
1020
+ .soames-features .soames-figure {
1021
+ padding-right: 0;
1022
+ padding-bottom: 1rem;
1023
+ margin-bottom: 2rem;
1024
+ padding-bottom: 0;
1025
+ margin-bottom: 0;
1026
+ padding-top: 1rem;
1027
+ margin-top: 2rem;
1028
+ }
1029
+
1030
+ .soames-features .media-container-row {
1031
+ -webkit-flex-direction: column-reverse;
1032
+ }
1033
+ }
1034
+
1035
+ @media (max-width: 300px) {
1036
+ .soames-features .card-img span {
1037
+ font-size: 40px !important;
1038
+ }
1039
+ }
1040
+
1041
+ .soames-features H2 {
1042
+ color: #000000;
1043
+ }
1044
+
1045
+ .soames-features P {
1046
+ color: #000000;
1047
+ }
1048
+
1049
+ .soames-blog-roll {
1050
+ padding-top: 90px;
1051
+ padding-bottom: 30px;
1052
+ background-color: #efefef;
1053
+ }
1054
+
1055
+ .soames-blog-roll .card-box {
1056
+ padding: 0 2rem;
1057
+ }
1058
+
1059
+ .soames-blog-roll .soames-section-btn {
1060
+ padding-top: 1rem;
1061
+ }
1062
+
1063
+ .soames-blog-roll .soames-section-btn a {
1064
+ margin-top: 1rem;
1065
+ margin-bottom: 0;
1066
+ }
1067
+
1068
+ .soames-blog-roll h4 {
1069
+ font-weight: 500;
1070
+ margin: 0;
1071
+ text-align: left;
1072
+ padding-top: 36px;
1073
+ padding-bottom: 0;
1074
+ }
1075
+
1076
+ .soames-blog-roll p {
1077
+ margin: 0;
1078
+ text-align: left;
1079
+ padding-top: 12px;
1080
+ padding-bottom: 12px;
1081
+ }
1082
+
1083
+ .soames-blog-roll .soames-text {
1084
+ color: #000000;
1085
+ }
1086
+
1087
+ .soames-blog-roll .card-wrapper {
1088
+ height: 100%;
1089
+ padding-bottom: 2rem;
1090
+ background: #ffffff;
1091
+ box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
1092
+ transition: box-shadow 0.3s;
1093
+ }
1094
+
1095
+ .soames-blog-roll .card-wrapper:hover {
1096
+ box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
1097
+ transition: box-shadow 0.3s;
1098
+ }
1099
+
1100
+ .soames-menu .navbar {
1101
+ padding: .5rem 0;
1102
+ background: #bc361b;
1103
+ transition: none;
1104
+ min-height: 77px;
1105
+ }
1106
+
1107
+ .soames-menu .navbar-dropdown.bg-color.transparent.opened {
1108
+ background: #bc361b;
1109
+ }
1110
+
1111
+ .soames-menu a {
1112
+ font-style: normal;
1113
+ }
1114
+
1115
+ .soames-menu .nav-item span {
1116
+ padding-right: 0.4em;
1117
+ line-height: 0.5em;
1118
+ vertical-align: text-bottom;
1119
+ position: relative;
1120
+ text-decoration: none;
1121
+ }
1122
+
1123
+ .soames-menu .nav-item a {
1124
+ display: flex;
1125
+ align-items: center;
1126
+ justify-content: center;
1127
+ padding: 0.7rem 0 !important;
1128
+ margin: 0rem .65rem !important;
1129
+ }
1130
+
1131
+ .soames-menu .nav-item:focus,
1132
+ .soames-menu .nav-link:focus {
1133
+ outline: none;
1134
+ }
1135
+
1136
+ .soames-menu .btn {
1137
+ padding: 0.4rem 1.5rem;
1138
+ display: inline-flex;
1139
+ align-items: center;
1140
+ }
1141
+
1142
+ .soames-menu .btn .soames-iconfont {
1143
+ font-size: 1.6rem;
1144
+ }
1145
+
1146
+ .soames-menu .menu-logo {
1147
+ margin-right: auto;
1148
+ }
1149
+
1150
+ .soames-menu .menu-logo .navbar-brand {
1151
+ display: flex;
1152
+ margin-left: 5rem;
1153
+ padding: 0;
1154
+ transition: padding .2s;
1155
+ min-height: 3.8rem;
1156
+ align-items: center;
1157
+ }
1158
+
1159
+ .soames-menu .menu-logo .navbar-brand .navbar-caption-wrap {
1160
+ display: -webkit-flex;
1161
+ -webkit-align-items: center;
1162
+ align-items: center;
1163
+ word-break: break-word;
1164
+ min-width: 7rem;
1165
+ margin: .3rem 0;
1166
+ }
1167
+
1168
+ .soames-menu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
1169
+ line-height: 1.2rem !important;
1170
+ padding-right: 2rem;
1171
+ }
1172
+
1173
+ .soames-menu .menu-logo .navbar-brand .navbar-logo {
1174
+ font-size: 4rem;
1175
+ transition: font-size 0.25s;
1176
+ }
1177
+
1178
+ .soames-menu .menu-logo .navbar-brand .navbar-logo img {
1179
+ display: flex;
1180
+ }
1181
+
1182
+ .soames-menu .menu-logo .navbar-brand .navbar-logo .soames-iconfont {
1183
+ transition: font-size 0.25s;
1184
+ }
1185
+
1186
+ .soames-menu .navbar-toggleable-sm .navbar-collapse {
1187
+ justify-content: flex-end;
1188
+ -webkit-justify-content: flex-end;
1189
+ padding-right: 5rem;
1190
+ width: auto;
1191
+ }
1192
+
1193
+ .soames-menu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
1194
+ flex-wrap: wrap;
1195
+ -webkit-flex-wrap: wrap;
1196
+ padding-left: 0;
1197
+ padding-top: 12px;
1198
+ }
1199
+
1200
+ .soames-menu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
1201
+ -webkit-align-self: center;
1202
+ align-self: center;
1203
+ }
1204
+
1205
+ .soames-menu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
1206
+ padding-left: 0;
1207
+ padding-bottom: 0;
1208
+ }
1209
+
1210
+ .soames-menu .dropdown .dropdown-menu {
1211
+ background: #bc361b;
1212
+ display: none;
1213
+ position: absolute;
1214
+ min-width: 5rem;
1215
+ padding-top: 1.4rem;
1216
+ padding-bottom: 1.4rem;
1217
+ text-align: left;
1218
+ }
1219
+
1220
+ .soames-menu .dropdown .dropdown-menu .dropdown-item {
1221
+ width: auto;
1222
+ padding: 0.235em 1.5385em 0.235em 1.5385em !important;
1223
+ }
1224
+
1225
+ .soames-menu .dropdown .dropdown-menu .dropdown-item::after {
1226
+ right: 0.5rem;
1227
+ }
1228
+
1229
+ .soames-menu .dropdown .dropdown-menu .dropdown-submenu {
1230
+ margin: 0;
1231
+ }
1232
+
1233
+ .soames-menu .dropdown.open>.dropdown-menu {
1234
+ display: block;
1235
+ }
1236
+
1237
+ .soames-menu .navbar-toggleable-sm.opened:after {
1238
+ position: absolute;
1239
+ width: 100vw;
1240
+ height: 100vh;
1241
+ content: '';
1242
+ background-color: rgba(0, 0, 0, 0.1);
1243
+ left: 0;
1244
+ bottom: 0;
1245
+ transform: translateY(100%);
1246
+ -webkit-transform: translateY(100%);
1247
+ z-index: 1000;
1248
+ }
1249
+
1250
+ .soames-menu .navbar.navbar-short {
1251
+ min-height: 60px;
1252
+ transition: all .2s;
1253
+ }
1254
+
1255
+ .soames-menu .navbar.navbar-short .navbar-toggler-right {
1256
+ top: 20px;
1257
+ }
1258
+
1259
+ .soames-menu .navbar.navbar-short .navbar-logo a {
1260
+ font-size: 2.5rem !important;
1261
+ line-height: 2.5rem;
1262
+ transition: font-size 0.25s;
1263
+ }
1264
+
1265
+ .soames-menu .navbar.navbar-short .navbar-logo a .soames-iconfont {
1266
+ font-size: 2.5rem !important;
1267
+ }
1268
+
1269
+ .soames-menu .navbar.navbar-short .navbar-logo a img {
1270
+ height: 3rem !important;
1271
+ }
1272
+
1273
+ .soames-menu .navbar.navbar-short .navbar-brand {
1274
+ min-height: 3rem;
1275
+ }
1276
+
1277
+ .soames-menu button.navbar-toggler {
1278
+ width: 31px;
1279
+ height: 18px;
1280
+ cursor: pointer;
1281
+ transition: all .2s;
1282
+ top: 1.5rem;
1283
+ right: 1rem;
1284
+ }
1285
+
1286
+ .soames-menu button.navbar-toggler:focus {
1287
+ outline: none;
1288
+ }
1289
+
1290
+ .soames-menu button.navbar-toggler .hamburger span {
1291
+ position: absolute;
1292
+ right: 0;
1293
+ width: 30px;
1294
+ height: 2px;
1295
+ border-right: 5px;
1296
+ background-color: #ffffff;
1297
+ }
1298
+
1299
+ .soames-menu button.navbar-toggler .hamburger span:nth-child(1) {
1300
+ top: 0;
1301
+ transition: all .2s;
1302
+ }
1303
+
1304
+ .soames-menu button.navbar-toggler .hamburger span:nth-child(2) {
1305
+ top: 8px;
1306
+ transition: all .15s;
1307
+ }
1308
+
1309
+ .soames-menu button.navbar-toggler .hamburger span:nth-child(3) {
1310
+ top: 8px;
1311
+ transition: all .15s;
1312
+ }
1313
+
1314
+ .soames-menu button.navbar-toggler .hamburger span:nth-child(4) {
1315
+ top: 16px;
1316
+ transition: all .2s;
1317
+ }
1318
+
1319
+ .soames-menu nav.opened .hamburger span:nth-child(1) {
1320
+ top: 8px;
1321
+ width: 0;
1322
+ opacity: 0;
1323
+ right: 50%;
1324
+ transition: all .2s;
1325
+ }
1326
+
1327
+ .soames-menu nav.opened .hamburger span:nth-child(2) {
1328
+ -webkit-transform: rotate(45deg);
1329
+ transform: rotate(45deg);
1330
+ transition: all .25s;
1331
+ }
1332
+
1333
+ .soames-menu nav.opened .hamburger span:nth-child(3) {
1334
+ -webkit-transform: rotate(-45deg);
1335
+ transform: rotate(-45deg);
1336
+ transition: all .25s;
1337
+ }
1338
+
1339
+ .soames-menu nav.opened .hamburger span:nth-child(4) {
1340
+ top: 8px;
1341
+ width: 0;
1342
+ opacity: 0;
1343
+ right: 50%;
1344
+ transition: all .2s;
1345
+ }
1346
+
1347
+ .soames-menu .collapsed.navbar-expand {
1348
+ flex-direction: column;
1349
+ }
1350
+
1351
+ .soames-menu .collapsed .btn {
1352
+ display: flex;
1353
+ }
1354
+
1355
+ .soames-menu .collapsed .navbar-collapse {
1356
+ display: none !important;
1357
+ padding-right: 0 !important;
1358
+ }
1359
+
1360
+ .soames-menu .collapsed .navbar-collapse.collapsing,
1361
+ .soames-menu .collapsed .navbar-collapse.show {
1362
+ display: block !important;
1363
+ }
1364
+
1365
+ .soames-menu .collapsed .navbar-collapse.collapsing .navbar-nav,
1366
+ .soames-menu .collapsed .navbar-collapse.show .navbar-nav {
1367
+ display: block;
1368
+ text-align: center;
1369
+ }
1370
+
1371
+ .soames-menu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
1372
+ .soames-menu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
1373
+ clear: both;
1374
+ }
1375
+
1376
+ .soames-menu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
1377
+ .soames-menu .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
1378
+ margin-bottom: 1rem;
1379
+ }
1380
+
1381
+ .soames-menu .collapsed .navbar-collapse.collapsing .navbar-buttons,
1382
+ .soames-menu .collapsed .navbar-collapse.show .navbar-buttons {
1383
+ text-align: center;
1384
+ }
1385
+
1386
+ .soames-menu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
1387
+ .soames-menu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
1388
+ margin-bottom: 1rem;
1389
+ }
1390
+
1391
+ .soames-menu .collapsed button.navbar-toggler {
1392
+ display: block;
1393
+ }
1394
+
1395
+ .soames-menu .collapsed .navbar-brand {
1396
+ margin-left: 1rem !important;
1397
+ }
1398
+
1399
+ .soames-menu .collapsed .navbar-toggleable-sm {
1400
+ flex-direction: column;
1401
+ -webkit-flex-direction: column;
1402
+ }
1403
+
1404
+ .soames-menu .collapsed .dropdown .dropdown-menu {
1405
+ width: 100%;
1406
+ text-align: center;
1407
+ position: relative;
1408
+ opacity: 0;
1409
+ display: block;
1410
+ height: 0;
1411
+ visibility: hidden;
1412
+ padding: 0;
1413
+ transition-duration: .5s;
1414
+ transition-property: opacity, padding, height;
1415
+ }
1416
+
1417
+ .soames-menu .collapsed .dropdown.open>.dropdown-menu {
1418
+ position: relative;
1419
+ opacity: 1;
1420
+ height: auto;
1421
+ padding: 1.4rem 0;
1422
+ visibility: visible;
1423
+ }
1424
+
1425
+ .soames-menu .collapsed .dropdown .dropdown-submenu {
1426
+ left: 0;
1427
+ text-align: center;
1428
+ width: 100%;
1429
+ }
1430
+
1431
+ .soames-menu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
1432
+ margin-top: 0;
1433
+ position: inherit;
1434
+ right: 0;
1435
+ top: 50%;
1436
+ display: inline-block;
1437
+ width: 0;
1438
+ height: 0;
1439
+ margin-left: .3em;
1440
+ vertical-align: middle;
1441
+ content: "";
1442
+ border-top: .30em solid;
1443
+ border-right: .30em solid transparent;
1444
+ border-left: .30em solid transparent;
1445
+ }
1446
+
1447
+ @media (max-width: 991px) {
1448
+ .soames-menu .navbar-expand {
1449
+ flex-direction: column;
1450
+ }
1451
+
1452
+ .soames-menu img {
1453
+ height: 3.8rem !important;
1454
+ }
1455
+
1456
+ .soames-menu .btn {
1457
+ display: flex;
1458
+ }
1459
+
1460
+ .soames-menu button.navbar-toggler {
1461
+ display: block;
1462
+ }
1463
+
1464
+ .soames-menu .navbar-brand {
1465
+ margin-left: 1rem !important;
1466
+ }
1467
+
1468
+ .soames-menu .navbar-toggleable-sm {
1469
+ flex-direction: column;
1470
+ -webkit-flex-direction: column;
1471
+ }
1472
+
1473
+ .soames-menu .navbar-collapse {
1474
+ display: none !important;
1475
+ padding-right: 0 !important;
1476
+ }
1477
+
1478
+ .soames-menu .navbar-collapse.collapsing,
1479
+ .soames-menu .navbar-collapse.show {
1480
+ display: block !important;
1481
+ }
1482
+
1483
+ .soames-menu .navbar-collapse.collapsing .navbar-nav,
1484
+ .soames-menu .navbar-collapse.show .navbar-nav {
1485
+ display: block;
1486
+ text-align: center;
1487
+ }
1488
+
1489
+ .soames-menu .navbar-collapse.collapsing .navbar-nav .nav-item,
1490
+ .soames-menu .navbar-collapse.show .navbar-nav .nav-item {
1491
+ clear: both;
1492
+ }
1493
+
1494
+ .soames-menu .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
1495
+ .soames-menu .navbar-collapse.show .navbar-nav .nav-item:last-child {
1496
+ margin-bottom: 1rem;
1497
+ }
1498
+
1499
+ .soames-menu .navbar-collapse.collapsing .navbar-buttons,
1500
+ .soames-menu .navbar-collapse.show .navbar-buttons {
1501
+ text-align: center;
1502
+ }
1503
+
1504
+ .soames-menu .navbar-collapse.collapsing .navbar-buttons:last-child,
1505
+ .soames-menu .navbar-collapse.show .navbar-buttons:last-child {
1506
+ margin-bottom: 1rem;
1507
+ }
1508
+
1509
+ .soames-menu .dropdown .dropdown-menu {
1510
+ width: 100%;
1511
+ text-align: center;
1512
+ position: relative;
1513
+ opacity: 0;
1514
+ display: block;
1515
+ height: 0;
1516
+ visibility: hidden;
1517
+ padding: 0;
1518
+ transition-duration: .5s;
1519
+ transition-property: opacity, padding, height;
1520
+ }
1521
+
1522
+ .soames-menu .dropdown.open>.dropdown-menu {
1523
+ position: relative;
1524
+ opacity: 1;
1525
+ height: auto;
1526
+ padding: 1.4rem 0;
1527
+ visibility: visible;
1528
+ }
1529
+
1530
+ .soames-menu .dropdown .dropdown-submenu {
1531
+ left: 0;
1532
+ text-align: center;
1533
+ width: 100%;
1534
+ }
1535
+
1536
+ .soames-menu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
1537
+ margin-top: 0;
1538
+ position: inherit;
1539
+ right: 0;
1540
+ top: 50%;
1541
+ display: inline-block;
1542
+ width: 0;
1543
+ height: 0;
1544
+ margin-left: .3em;
1545
+ vertical-align: middle;
1546
+ content: "";
1547
+ border-top: .30em solid;
1548
+ border-right: .30em solid transparent;
1549
+ border-left: .30em solid transparent;
1550
+ }
1551
+ }
1552
+
1553
+ @media (min-width: 767px) {
1554
+ .soames-menu .menu-logo {
1555
+ flex-shrink: 0;
1556
+ }
1557
+ }
1558
+
1559
+ .soames-menu .navbar-collapse {
1560
+ flex-basis: auto;
1561
+ }
1562
+
1563
+ .soames-menu .nav-link:hover,
1564
+ .soames-menu .dropdown-item:hover {
1565
+ color: #c1c1c1 !important;
1566
+ }
1567
+
1568
+ .soames-title-bar h2 {
1569
+ color: #ffffff;
1570
+ }
1571
+
1572
+ .soames-title {
1573
+ padding-top: 20px;
1574
+ padding-bottom: 0px;
1575
+ background-color: #ffffff;
1576
+ }
1577
+
1578
+ .soames-title H2 {
1579
+ text-align: center;
1580
+ }
1581
+
1582
+ .soames-section-title {
1583
+ margin-top: 18px;
1584
+ margin-bottom: 12px;
1585
+ }
1586
+
1587
+ .soames-section-subtitle {
1588
+ margin-top: 0px;
1589
+ }
1590
+
1591
+ .soames-article {
1592
+ padding-top: 0px;
1593
+ padding-bottom: 30px;
1594
+ background-color: #ffffff;
1595
+ }
1596
+
1597
+ .soames-article .line {
1598
+ background-color: #c1c1c1;
1599
+ color: #c1c1c1;
1600
+ align: center;
1601
+ height: 2px;
1602
+ margin: 0 auto;
1603
+ }
1604
+
1605
+ .soames-article .section-text {
1606
+ padding: 2rem 0;
1607
+ text-align: left;
1608
+ color: #000000;
1609
+ }
1610
+
1611
+ .soames-article .inner-container {
1612
+ margin: 0 auto;
1613
+ }
1614
+
1615
+ @media (max-width: 768px) {
1616
+ .soames-article .inner-container {
1617
+ width: 100% !important;
1618
+ }
1619
+ }
1620
+
1621
+ .soames-video-container {
1622
+ padding-top: 60px;
1623
+ padding-bottom: 60px;
1624
+ background: #bc361b;
1625
+ background: linear-gradient(0deg, #bc361b, #700a06);
1626
+ }
1627
+
1628
+ .soames-video-container .video-block {
1629
+ margin: auto;
1630
+ }
1631
+
1632
+ @media (max-width: 768px) {
1633
+ .soames-video-container .video-block {
1634
+ width: 100% !important;
1635
+ }
1636
+ }
1637
+
1638
+ .soames-title-bar {
1639
+ padding-top: 0px;
1640
+ padding-bottom: 0px;
1641
+ background-color: #dc7b25;
1642
+ }
1643
+
1644
+ .soames-title-bar .soames-section-subtitle {
1645
+ color: #767676;
1646
+ }
1647
+
1648
+ .soames-title-bar h2 {
1649
+ text-align: center;
1650
+ padding-bottom: 12px;
1651
+ }
1652
+
1653
+ .soames-section-subhead {
1654
+ background-color: #eee;
1655
+ }
1656
+
1657
+ .soames-list {
1658
+ padding-top: 0px;
1659
+ padding-bottom: 45px;
1660
+ background-color: #ffffff;
1661
+ }
1662
+
1663
+ .soames-list .counter-container {
1664
+ color: #767676;
1665
+ }
1666
+
1667
+ .soames-list .counter-container ul {
1668
+ margin-bottom: 0;
1669
+ }
1670
+
1671
+ .soames-list .counter-container ul li {
1672
+ margin-bottom: 1rem;
1673
+ }
1674
+
1675
+ .soames-list .soames-text UL {
1676
+ color: #000000;
1677
+ }
1678
+
1679
+ .soames-footer {
1680
+ padding-top: 15px;
1681
+ padding-bottom: 0px;
1682
+ background-color: #2e2e2e;
1683
+ }
1684
+
1685
+ .soames-footer h5 {
1686
+ color: #ffffff;
1687
+ }
1688
+
1689
+ @media (max-width: 767px) {
1690
+ .soames-footer .content {
1691
+ text-align: center;
1692
+ }
1693
+
1694
+ .soames-footer .content>div:not(:last-child) {
1695
+ margin-bottom: 2rem;
1696
+ }
1697
+ }
1698
+
1699
+ @media (max-width: 767px) {
1700
+ .soames-footer .media-wrap {
1701
+ margin-bottom: 1rem;
1702
+ }
1703
+ }
1704
+
1705
+ .soames-footer .media-wrap .soames-iconfont-logo {
1706
+ font-size: 7.5rem;
1707
+ color: #f36;
1708
+ }
1709
+
1710
+ .soames-footer .media-wrap img {
1711
+ height: 6rem;
1712
+ }
1713
+
1714
+ @media (max-width: 767px) {
1715
+ .soames-footer .footer-lower .copyright {
1716
+ margin-bottom: 1rem;
1717
+ text-align: center;
1718
+ }
1719
+ }
1720
+
1721
+ .soames-footer .footer-lower hr {
1722
+ margin: 1rem 0;
1723
+ border-color: #fff;
1724
+ opacity: .05;
1725
+ }
1726
+
1727
+ .soames-footer .footer-lower .social-list {
1728
+ padding-left: 0;
1729
+ margin-bottom: 0;
1730
+ list-style: none;
1731
+ display: flex;
1732
+ flex-wrap: wrap;
1733
+ justify-content: flex-end;
1734
+ -webkit-justify-content: flex-end;
1735
+ }
1736
+
1737
+ .soames-footer .footer-lower .social-list .soames-iconfont-social {
1738
+ font-size: 1.3rem;
1739
+ color: #fff;
1740
+ }
1741
+
1742
+ .soames-footer .footer-lower .social-list .soc-item {
1743
+ margin: 0 .5rem;
1744
+ }
1745
+
1746
+ .soames-footer .footer-lower .social-list a {
1747
+ margin: 0;
1748
+ opacity: .5;
1749
+ -webkit-transition: .2s linear;
1750
+ transition: .2s linear;
1751
+ }
1752
+
1753
+ .soames-footer .footer-lower .social-list a:hover {
1754
+ opacity: 1;
1755
+ }
1756
+
1757
+ @media (max-width: 767px) {
1758
+ .soames-footer .footer-lower .social-list {
1759
+ justify-content: center;
1760
+ -webkit-justify-content: center;
1761
+ }
1762
+ }
1763
+
1764
+ /* Soames styles for Gatsby WordPress content */
1765
+
1766
+ .soames-gatsby-content {
1767
+ padding: 60px 100px 40px 100px;
1768
+ background-color: #fff;
1769
+ }
1770
+
1771
+ .soames-gatsby-blog-content {
1772
+ padding: 60px 40px 40px 40px;
1773
+ background-color: #fff;
1774
+ }
1775
+
1776
+ .soames-gatsby-sidebar {
1777
+ padding: 60px 40px 40px 40px;
1778
+ background-color: #efefef;
1779
+ }