tessellate 0.1.1

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 (52) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +120 -0
  4. data/_config.yml +24 -0
  5. data/_includes/contact_form.html +42 -0
  6. data/_includes/footer.html +31 -0
  7. data/_includes/header.html +40 -0
  8. data/_layouts/page.html +35 -0
  9. data/_layouts/section_one.html +39 -0
  10. data/_layouts/section_three.html +36 -0
  11. data/_layouts/section_two.html +44 -0
  12. data/assets/css/fontawesome-all.min.css +9 -0
  13. data/assets/css/images/arrow.svg +4 -0
  14. data/assets/css/images/bgbl.svg +21 -0
  15. data/assets/css/images/bgtr.svg +21 -0
  16. data/assets/css/images/dark-arrow.svg +4 -0
  17. data/assets/css/images/ie/content-style1.svg +10 -0
  18. data/assets/css/images/ie/content-style2.svg +10 -0
  19. data/assets/css/images/ie/content-style3.svg +10 -0
  20. data/assets/css/images/overlay.png +0 -0
  21. data/assets/css/main.css +1524 -0
  22. data/assets/js/breakpoints.min.js +2 -0
  23. data/assets/js/browser.min.js +2 -0
  24. data/assets/js/jquery.min.js +2 -0
  25. data/assets/js/jquery.scrolly.min.js +2 -0
  26. data/assets/js/main.js +30 -0
  27. data/assets/js/util.js +587 -0
  28. data/assets/sass/libs/_breakpoints.scss +223 -0
  29. data/assets/sass/libs/_functions.scss +90 -0
  30. data/assets/sass/libs/_html-grid.scss +149 -0
  31. data/assets/sass/libs/_mixins.scss +78 -0
  32. data/assets/sass/libs/_vars.scss +22 -0
  33. data/assets/sass/libs/_vendor.scss +376 -0
  34. data/assets/sass/main.scss +1274 -0
  35. data/assets/webfonts/fa-brands-400.eot +0 -0
  36. data/assets/webfonts/fa-brands-400.svg +3717 -0
  37. data/assets/webfonts/fa-brands-400.ttf +0 -0
  38. data/assets/webfonts/fa-brands-400.woff +0 -0
  39. data/assets/webfonts/fa-brands-400.woff2 +0 -0
  40. data/assets/webfonts/fa-regular-400.eot +0 -0
  41. data/assets/webfonts/fa-regular-400.svg +801 -0
  42. data/assets/webfonts/fa-regular-400.ttf +0 -0
  43. data/assets/webfonts/fa-regular-400.woff +0 -0
  44. data/assets/webfonts/fa-regular-400.woff2 +0 -0
  45. data/assets/webfonts/fa-solid-900.eot +0 -0
  46. data/assets/webfonts/fa-solid-900.svg +5034 -0
  47. data/assets/webfonts/fa-solid-900.ttf +0 -0
  48. data/assets/webfonts/fa-solid-900.woff +0 -0
  49. data/assets/webfonts/fa-solid-900.woff2 +0 -0
  50. data/assets/webfonts/fa-v4compatibility.ttf +0 -0
  51. data/assets/webfonts/fa-v4compatibility.woff2 +0 -0
  52. metadata +107 -0
@@ -0,0 +1,1524 @@
1
+ @import url("fontawesome-all.min.css");
2
+ @import url("https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,400,400italic");
3
+ /*
4
+ Tessellate by HTML5 UP
5
+ html5up.net | @ajlkn
6
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
7
+ */
8
+ html, body, div, span, applet, object,
9
+ iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
10
+ pre, a, abbr, acronym, address, big, cite,
11
+ code, del, dfn, em, img, ins, kbd, q, s, samp,
12
+ small, strike, strong, sub, sup, tt, var, b,
13
+ u, i, center, dl, dt, dd, ol, ul, li, fieldset,
14
+ form, label, legend, table, caption, tbody,
15
+ tfoot, thead, tr, th, td, article, aside,
16
+ canvas, details, embed, figure, figcaption,
17
+ footer, header, hgroup, menu, nav, output, ruby,
18
+ section, summary, time, mark, audio, video {
19
+ margin: 0;
20
+ padding: 0;
21
+ border: 0;
22
+ font-size: 100%;
23
+ font: inherit;
24
+ vertical-align: baseline; }
25
+
26
+ article, aside, details, figcaption, figure,
27
+ footer, header, hgroup, menu, nav, section {
28
+ display: block; }
29
+
30
+ body {
31
+ line-height: 1; }
32
+
33
+ ol, ul {
34
+ list-style: none; }
35
+
36
+ blockquote, q {
37
+ quotes: none; }
38
+ blockquote:before, blockquote:after, q:before, q:after {
39
+ content: '';
40
+ content: none; }
41
+
42
+ table {
43
+ border-collapse: collapse;
44
+ border-spacing: 0; }
45
+
46
+ body {
47
+ -webkit-text-size-adjust: none; }
48
+
49
+ mark {
50
+ background-color: transparent;
51
+ color: inherit; }
52
+
53
+ input::-moz-focus-inner {
54
+ border: 0;
55
+ padding: 0; }
56
+
57
+ input, select, textarea {
58
+ -moz-appearance: none;
59
+ -webkit-appearance: none;
60
+ -ms-appearance: none;
61
+ appearance: none; }
62
+
63
+ /* Basic */
64
+ @-ms-viewport {
65
+ width: device-width; }
66
+ html {
67
+ box-sizing: border-box; }
68
+
69
+ *, *:before, *:after {
70
+ box-sizing: inherit; }
71
+
72
+ body {
73
+ background: #F8F8F8;
74
+ font-family: 'Roboto', sans-serif;
75
+ font-weight: 300;
76
+ font-size: 17pt;
77
+ line-height: 1.75em;
78
+ color: #888;
79
+ -webkit-text-stroke: 0.1px; }
80
+ body.is-preload *, body.is-preload *:before, body.is-preload *:after {
81
+ -moz-animation: none !important;
82
+ -webkit-animation: none !important;
83
+ -ms-animation: none !important;
84
+ animation: none !important;
85
+ -moz-transition: none !important;
86
+ -webkit-transition: none !important;
87
+ -ms-transition: none !important;
88
+ transition: none !important; }
89
+
90
+ .dark {
91
+ color: #aaa;
92
+ color: rgba(255, 255, 255, 0.65); }
93
+
94
+ input, textarea, select {
95
+ font-family: 'Roboto', sans-serif;
96
+ font-weight: 300;
97
+ font-size: 17pt;
98
+ line-height: 1.75em;
99
+ color: #888;
100
+ -webkit-text-stroke: 0.1px; }
101
+
102
+ h1, h2, h3, h4, h5, h6 {
103
+ color: #666;
104
+ margin: 0 0 1em 0;
105
+ font-weight: 100;
106
+ line-height: 1.5em; }
107
+
108
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
109
+ color: inherit;
110
+ text-decoration: none; }
111
+
112
+ .dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
113
+ color: #fff; }
114
+
115
+ strong, b {
116
+ font-weight: 400;
117
+ color: inherit; }
118
+
119
+ .dark strong, .dark b {
120
+ color: #fff;
121
+ color: rgba(255, 255, 255, 0.85); }
122
+
123
+ em, i {
124
+ font-style: italic; }
125
+
126
+ a {
127
+ -moz-transition: border-bottom-color 0.25s ease-in-out;
128
+ -webkit-transition: border-bottom-color 0.25s ease-in-out;
129
+ -ms-transition: border-bottom-color 0.25s ease-in-out;
130
+ transition: border-bottom-color 0.25s ease-in-out;
131
+ color: inherit;
132
+ text-decoration: none;
133
+ border-bottom: dotted 1px rgba(0, 0, 0, 0.25); }
134
+ a:hover {
135
+ border-bottom-color: rgba(0, 0, 0, 0); }
136
+
137
+ .dark a {
138
+ color: #fff;
139
+ border-bottom-color: rgba(255, 255, 255, 0.5); }
140
+ .dark a:hover {
141
+ border-bottom-color: rgba(255, 255, 255, 0); }
142
+
143
+ sub {
144
+ position: relative;
145
+ top: 0.5em;
146
+ font-size: 0.8em; }
147
+
148
+ sup {
149
+ position: relative;
150
+ top: -0.5em;
151
+ font-size: 0.8em; }
152
+
153
+ hr {
154
+ border: 0;
155
+ border-top: solid 1px #e6e6e6;
156
+ margin: 2em 0 2em 0; }
157
+
158
+ .dark hr {
159
+ border-top-color: rgba(255, 255, 255, 0.5); }
160
+
161
+ blockquote {
162
+ border-left: solid 0.25em #e6e6e6;
163
+ padding: 1em 0 1em 2em;
164
+ font-style: italic; }
165
+
166
+ .dark blockquote {
167
+ border-left-color: rgba(255, 255, 255, 0.5); }
168
+
169
+ p, ul, ol, dl, table {
170
+ margin-bottom: 1em; }
171
+
172
+ p {
173
+ text-align: justify; }
174
+
175
+ header {
176
+ margin-bottom: 1em; }
177
+ header h1, header h2, header h3, header h4, header h5, header h6 {
178
+ margin: 0; }
179
+ header p {
180
+ display: block;
181
+ margin: 0;
182
+ padding: 0.25em 0 0.5em 0; }
183
+
184
+ footer {
185
+ padding-top: 1.5em; }
186
+
187
+ br.clear {
188
+ clear: both; }
189
+
190
+ .featured {
191
+ text-align: center; }
192
+ .featured p {
193
+ text-align: center; }
194
+
195
+ /* Container */
196
+ .container {
197
+ margin: 0 auto;
198
+ max-width: 100%;
199
+ width: 1360px; }
200
+ .container.medium {
201
+ width: 1020px; }
202
+ @media screen and (max-width: 1680px) {
203
+ .container {
204
+ width: 1200px; }
205
+ .container.medium {
206
+ width: 900px; } }
207
+ @media screen and (max-width: 1280px) {
208
+ .container {
209
+ width: 960px; }
210
+ .container.medium {
211
+ width: 720px; } }
212
+ @media screen and (max-width: 1000px) {
213
+ .container {
214
+ width: 100% !important; } }
215
+
216
+ /* Row */
217
+ .row {
218
+ display: flex;
219
+ flex-wrap: wrap;
220
+ box-sizing: border-box;
221
+ align-items: stretch; }
222
+ .row > * {
223
+ box-sizing: border-box; }
224
+ .row.gtr-uniform > * > :last-child {
225
+ margin-bottom: 0; }
226
+ .row.aln-left {
227
+ justify-content: flex-start; }
228
+ .row.aln-center {
229
+ justify-content: center; }
230
+ .row.aln-right {
231
+ justify-content: flex-end; }
232
+ .row.aln-top {
233
+ align-items: flex-start; }
234
+ .row.aln-middle {
235
+ align-items: center; }
236
+ .row.aln-bottom {
237
+ align-items: flex-end; }
238
+ .row > .imp {
239
+ order: -1; }
240
+ .row > .col-1 {
241
+ width: 8.3333333333%; }
242
+ .row > .off-1 {
243
+ margin-left: 8.3333333333%; }
244
+ .row > .col-2 {
245
+ width: 16.6666666667%; }
246
+ .row > .off-2 {
247
+ margin-left: 16.6666666667%; }
248
+ .row > .col-3 {
249
+ width: 25%; }
250
+ .row > .off-3 {
251
+ margin-left: 25%; }
252
+ .row > .col-4 {
253
+ width: 33.3333333333%; }
254
+ .row > .off-4 {
255
+ margin-left: 33.3333333333%; }
256
+ .row > .col-5 {
257
+ width: 41.6666666667%; }
258
+ .row > .off-5 {
259
+ margin-left: 41.6666666667%; }
260
+ .row > .col-6 {
261
+ width: 50%; }
262
+ .row > .off-6 {
263
+ margin-left: 50%; }
264
+ .row > .col-7 {
265
+ width: 58.3333333333%; }
266
+ .row > .off-7 {
267
+ margin-left: 58.3333333333%; }
268
+ .row > .col-8 {
269
+ width: 66.6666666667%; }
270
+ .row > .off-8 {
271
+ margin-left: 66.6666666667%; }
272
+ .row > .col-9 {
273
+ width: 75%; }
274
+ .row > .off-9 {
275
+ margin-left: 75%; }
276
+ .row > .col-10 {
277
+ width: 83.3333333333%; }
278
+ .row > .off-10 {
279
+ margin-left: 83.3333333333%; }
280
+ .row > .col-11 {
281
+ width: 91.6666666667%; }
282
+ .row > .off-11 {
283
+ margin-left: 91.6666666667%; }
284
+ .row > .col-12 {
285
+ width: 100%; }
286
+ .row > .off-12 {
287
+ margin-left: 100%; }
288
+ .row.gtr-0 {
289
+ margin-top: 0px;
290
+ margin-left: 0px; }
291
+ .row.gtr-0 > * {
292
+ padding: 0px 0 0 0px; }
293
+ .row.gtr-0.gtr-uniform {
294
+ margin-top: 0px; }
295
+ .row.gtr-0.gtr-uniform > * {
296
+ padding-top: 0px; }
297
+ .row.gtr-25 {
298
+ margin-top: -12.5px;
299
+ margin-left: -12.5px; }
300
+ .row.gtr-25 > * {
301
+ padding: 12.5px 0 0 12.5px; }
302
+ .row.gtr-25.gtr-uniform {
303
+ margin-top: -12.5px; }
304
+ .row.gtr-25.gtr-uniform > * {
305
+ padding-top: 12.5px; }
306
+ .row.gtr-50 {
307
+ margin-top: -25px;
308
+ margin-left: -25px; }
309
+ .row.gtr-50 > * {
310
+ padding: 25px 0 0 25px; }
311
+ .row.gtr-50.gtr-uniform {
312
+ margin-top: -25px; }
313
+ .row.gtr-50.gtr-uniform > * {
314
+ padding-top: 25px; }
315
+ .row {
316
+ margin-top: -50px;
317
+ margin-left: -50px; }
318
+ .row > * {
319
+ padding: 50px 0 0 50px; }
320
+ .row.gtr-uniform {
321
+ margin-top: -50px; }
322
+ .row.gtr-uniform > * {
323
+ padding-top: 50px; }
324
+ .row.gtr-150 {
325
+ margin-top: -75px;
326
+ margin-left: -75px; }
327
+ .row.gtr-150 > * {
328
+ padding: 75px 0 0 75px; }
329
+ .row.gtr-150.gtr-uniform {
330
+ margin-top: -75px; }
331
+ .row.gtr-150.gtr-uniform > * {
332
+ padding-top: 75px; }
333
+ .row.gtr-200 {
334
+ margin-top: -100px;
335
+ margin-left: -100px; }
336
+ .row.gtr-200 > * {
337
+ padding: 100px 0 0 100px; }
338
+ .row.gtr-200.gtr-uniform {
339
+ margin-top: -100px; }
340
+ .row.gtr-200.gtr-uniform > * {
341
+ padding-top: 100px; }
342
+ @media screen and (max-width: 1680px) {
343
+ .row {
344
+ display: flex;
345
+ flex-wrap: wrap;
346
+ box-sizing: border-box;
347
+ align-items: stretch; }
348
+ .row > * {
349
+ box-sizing: border-box; }
350
+ .row.gtr-uniform > * > :last-child {
351
+ margin-bottom: 0; }
352
+ .row.aln-left {
353
+ justify-content: flex-start; }
354
+ .row.aln-center {
355
+ justify-content: center; }
356
+ .row.aln-right {
357
+ justify-content: flex-end; }
358
+ .row.aln-top {
359
+ align-items: flex-start; }
360
+ .row.aln-middle {
361
+ align-items: center; }
362
+ .row.aln-bottom {
363
+ align-items: flex-end; }
364
+ .row > .imp-wide {
365
+ order: -1; }
366
+ .row > .col-1-wide {
367
+ width: 8.3333333333%; }
368
+ .row > .off-1-wide {
369
+ margin-left: 8.3333333333%; }
370
+ .row > .col-2-wide {
371
+ width: 16.6666666667%; }
372
+ .row > .off-2-wide {
373
+ margin-left: 16.6666666667%; }
374
+ .row > .col-3-wide {
375
+ width: 25%; }
376
+ .row > .off-3-wide {
377
+ margin-left: 25%; }
378
+ .row > .col-4-wide {
379
+ width: 33.3333333333%; }
380
+ .row > .off-4-wide {
381
+ margin-left: 33.3333333333%; }
382
+ .row > .col-5-wide {
383
+ width: 41.6666666667%; }
384
+ .row > .off-5-wide {
385
+ margin-left: 41.6666666667%; }
386
+ .row > .col-6-wide {
387
+ width: 50%; }
388
+ .row > .off-6-wide {
389
+ margin-left: 50%; }
390
+ .row > .col-7-wide {
391
+ width: 58.3333333333%; }
392
+ .row > .off-7-wide {
393
+ margin-left: 58.3333333333%; }
394
+ .row > .col-8-wide {
395
+ width: 66.6666666667%; }
396
+ .row > .off-8-wide {
397
+ margin-left: 66.6666666667%; }
398
+ .row > .col-9-wide {
399
+ width: 75%; }
400
+ .row > .off-9-wide {
401
+ margin-left: 75%; }
402
+ .row > .col-10-wide {
403
+ width: 83.3333333333%; }
404
+ .row > .off-10-wide {
405
+ margin-left: 83.3333333333%; }
406
+ .row > .col-11-wide {
407
+ width: 91.6666666667%; }
408
+ .row > .off-11-wide {
409
+ margin-left: 91.6666666667%; }
410
+ .row > .col-12-wide {
411
+ width: 100%; }
412
+ .row > .off-12-wide {
413
+ margin-left: 100%; }
414
+ .row.gtr-0 {
415
+ margin-top: 0px;
416
+ margin-left: 0px; }
417
+ .row.gtr-0 > * {
418
+ padding: 0px 0 0 0px; }
419
+ .row.gtr-0.gtr-uniform {
420
+ margin-top: 0px; }
421
+ .row.gtr-0.gtr-uniform > * {
422
+ padding-top: 0px; }
423
+ .row.gtr-25 {
424
+ margin-top: -10px;
425
+ margin-left: -10px; }
426
+ .row.gtr-25 > * {
427
+ padding: 10px 0 0 10px; }
428
+ .row.gtr-25.gtr-uniform {
429
+ margin-top: -10px; }
430
+ .row.gtr-25.gtr-uniform > * {
431
+ padding-top: 10px; }
432
+ .row.gtr-50 {
433
+ margin-top: -20px;
434
+ margin-left: -20px; }
435
+ .row.gtr-50 > * {
436
+ padding: 20px 0 0 20px; }
437
+ .row.gtr-50.gtr-uniform {
438
+ margin-top: -20px; }
439
+ .row.gtr-50.gtr-uniform > * {
440
+ padding-top: 20px; }
441
+ .row {
442
+ margin-top: -40px;
443
+ margin-left: -40px; }
444
+ .row > * {
445
+ padding: 40px 0 0 40px; }
446
+ .row.gtr-uniform {
447
+ margin-top: -40px; }
448
+ .row.gtr-uniform > * {
449
+ padding-top: 40px; }
450
+ .row.gtr-150 {
451
+ margin-top: -60px;
452
+ margin-left: -60px; }
453
+ .row.gtr-150 > * {
454
+ padding: 60px 0 0 60px; }
455
+ .row.gtr-150.gtr-uniform {
456
+ margin-top: -60px; }
457
+ .row.gtr-150.gtr-uniform > * {
458
+ padding-top: 60px; }
459
+ .row.gtr-200 {
460
+ margin-top: -80px;
461
+ margin-left: -80px; }
462
+ .row.gtr-200 > * {
463
+ padding: 80px 0 0 80px; }
464
+ .row.gtr-200.gtr-uniform {
465
+ margin-top: -80px; }
466
+ .row.gtr-200.gtr-uniform > * {
467
+ padding-top: 80px; } }
468
+ @media screen and (max-width: 1280px) {
469
+ .row {
470
+ display: flex;
471
+ flex-wrap: wrap;
472
+ box-sizing: border-box;
473
+ align-items: stretch; }
474
+ .row > * {
475
+ box-sizing: border-box; }
476
+ .row.gtr-uniform > * > :last-child {
477
+ margin-bottom: 0; }
478
+ .row.aln-left {
479
+ justify-content: flex-start; }
480
+ .row.aln-center {
481
+ justify-content: center; }
482
+ .row.aln-right {
483
+ justify-content: flex-end; }
484
+ .row.aln-top {
485
+ align-items: flex-start; }
486
+ .row.aln-middle {
487
+ align-items: center; }
488
+ .row.aln-bottom {
489
+ align-items: flex-end; }
490
+ .row > .imp-normal {
491
+ order: -1; }
492
+ .row > .col-1-normal {
493
+ width: 8.3333333333%; }
494
+ .row > .off-1-normal {
495
+ margin-left: 8.3333333333%; }
496
+ .row > .col-2-normal {
497
+ width: 16.6666666667%; }
498
+ .row > .off-2-normal {
499
+ margin-left: 16.6666666667%; }
500
+ .row > .col-3-normal {
501
+ width: 25%; }
502
+ .row > .off-3-normal {
503
+ margin-left: 25%; }
504
+ .row > .col-4-normal {
505
+ width: 33.3333333333%; }
506
+ .row > .off-4-normal {
507
+ margin-left: 33.3333333333%; }
508
+ .row > .col-5-normal {
509
+ width: 41.6666666667%; }
510
+ .row > .off-5-normal {
511
+ margin-left: 41.6666666667%; }
512
+ .row > .col-6-normal {
513
+ width: 50%; }
514
+ .row > .off-6-normal {
515
+ margin-left: 50%; }
516
+ .row > .col-7-normal {
517
+ width: 58.3333333333%; }
518
+ .row > .off-7-normal {
519
+ margin-left: 58.3333333333%; }
520
+ .row > .col-8-normal {
521
+ width: 66.6666666667%; }
522
+ .row > .off-8-normal {
523
+ margin-left: 66.6666666667%; }
524
+ .row > .col-9-normal {
525
+ width: 75%; }
526
+ .row > .off-9-normal {
527
+ margin-left: 75%; }
528
+ .row > .col-10-normal {
529
+ width: 83.3333333333%; }
530
+ .row > .off-10-normal {
531
+ margin-left: 83.3333333333%; }
532
+ .row > .col-11-normal {
533
+ width: 91.6666666667%; }
534
+ .row > .off-11-normal {
535
+ margin-left: 91.6666666667%; }
536
+ .row > .col-12-normal {
537
+ width: 100%; }
538
+ .row > .off-12-normal {
539
+ margin-left: 100%; }
540
+ .row.gtr-0 {
541
+ margin-top: 0px;
542
+ margin-left: 0px; }
543
+ .row.gtr-0 > * {
544
+ padding: 0px 0 0 0px; }
545
+ .row.gtr-0.gtr-uniform {
546
+ margin-top: 0px; }
547
+ .row.gtr-0.gtr-uniform > * {
548
+ padding-top: 0px; }
549
+ .row.gtr-25 {
550
+ margin-top: -7.5px;
551
+ margin-left: -7.5px; }
552
+ .row.gtr-25 > * {
553
+ padding: 7.5px 0 0 7.5px; }
554
+ .row.gtr-25.gtr-uniform {
555
+ margin-top: -7.5px; }
556
+ .row.gtr-25.gtr-uniform > * {
557
+ padding-top: 7.5px; }
558
+ .row.gtr-50 {
559
+ margin-top: -15px;
560
+ margin-left: -15px; }
561
+ .row.gtr-50 > * {
562
+ padding: 15px 0 0 15px; }
563
+ .row.gtr-50.gtr-uniform {
564
+ margin-top: -15px; }
565
+ .row.gtr-50.gtr-uniform > * {
566
+ padding-top: 15px; }
567
+ .row {
568
+ margin-top: -30px;
569
+ margin-left: -30px; }
570
+ .row > * {
571
+ padding: 30px 0 0 30px; }
572
+ .row.gtr-uniform {
573
+ margin-top: -30px; }
574
+ .row.gtr-uniform > * {
575
+ padding-top: 30px; }
576
+ .row.gtr-150 {
577
+ margin-top: -45px;
578
+ margin-left: -45px; }
579
+ .row.gtr-150 > * {
580
+ padding: 45px 0 0 45px; }
581
+ .row.gtr-150.gtr-uniform {
582
+ margin-top: -45px; }
583
+ .row.gtr-150.gtr-uniform > * {
584
+ padding-top: 45px; }
585
+ .row.gtr-200 {
586
+ margin-top: -60px;
587
+ margin-left: -60px; }
588
+ .row.gtr-200 > * {
589
+ padding: 60px 0 0 60px; }
590
+ .row.gtr-200.gtr-uniform {
591
+ margin-top: -60px; }
592
+ .row.gtr-200.gtr-uniform > * {
593
+ padding-top: 60px; } }
594
+ @media screen and (max-width: 1000px) {
595
+ .row {
596
+ display: flex;
597
+ flex-wrap: wrap;
598
+ box-sizing: border-box;
599
+ align-items: stretch; }
600
+ .row > * {
601
+ box-sizing: border-box; }
602
+ .row.gtr-uniform > * > :last-child {
603
+ margin-bottom: 0; }
604
+ .row.aln-left {
605
+ justify-content: flex-start; }
606
+ .row.aln-center {
607
+ justify-content: center; }
608
+ .row.aln-right {
609
+ justify-content: flex-end; }
610
+ .row.aln-top {
611
+ align-items: flex-start; }
612
+ .row.aln-middle {
613
+ align-items: center; }
614
+ .row.aln-bottom {
615
+ align-items: flex-end; }
616
+ .row > .imp-narrow {
617
+ order: -1; }
618
+ .row > .col-1-narrow {
619
+ width: 8.3333333333%; }
620
+ .row > .off-1-narrow {
621
+ margin-left: 8.3333333333%; }
622
+ .row > .col-2-narrow {
623
+ width: 16.6666666667%; }
624
+ .row > .off-2-narrow {
625
+ margin-left: 16.6666666667%; }
626
+ .row > .col-3-narrow {
627
+ width: 25%; }
628
+ .row > .off-3-narrow {
629
+ margin-left: 25%; }
630
+ .row > .col-4-narrow {
631
+ width: 33.3333333333%; }
632
+ .row > .off-4-narrow {
633
+ margin-left: 33.3333333333%; }
634
+ .row > .col-5-narrow {
635
+ width: 41.6666666667%; }
636
+ .row > .off-5-narrow {
637
+ margin-left: 41.6666666667%; }
638
+ .row > .col-6-narrow {
639
+ width: 50%; }
640
+ .row > .off-6-narrow {
641
+ margin-left: 50%; }
642
+ .row > .col-7-narrow {
643
+ width: 58.3333333333%; }
644
+ .row > .off-7-narrow {
645
+ margin-left: 58.3333333333%; }
646
+ .row > .col-8-narrow {
647
+ width: 66.6666666667%; }
648
+ .row > .off-8-narrow {
649
+ margin-left: 66.6666666667%; }
650
+ .row > .col-9-narrow {
651
+ width: 75%; }
652
+ .row > .off-9-narrow {
653
+ margin-left: 75%; }
654
+ .row > .col-10-narrow {
655
+ width: 83.3333333333%; }
656
+ .row > .off-10-narrow {
657
+ margin-left: 83.3333333333%; }
658
+ .row > .col-11-narrow {
659
+ width: 91.6666666667%; }
660
+ .row > .off-11-narrow {
661
+ margin-left: 91.6666666667%; }
662
+ .row > .col-12-narrow {
663
+ width: 100%; }
664
+ .row > .off-12-narrow {
665
+ margin-left: 100%; }
666
+ .row.gtr-0 {
667
+ margin-top: 0px;
668
+ margin-left: 0px; }
669
+ .row.gtr-0 > * {
670
+ padding: 0px 0 0 0px; }
671
+ .row.gtr-0.gtr-uniform {
672
+ margin-top: 0px; }
673
+ .row.gtr-0.gtr-uniform > * {
674
+ padding-top: 0px; }
675
+ .row.gtr-25 {
676
+ margin-top: -6.25px;
677
+ margin-left: -6.25px; }
678
+ .row.gtr-25 > * {
679
+ padding: 6.25px 0 0 6.25px; }
680
+ .row.gtr-25.gtr-uniform {
681
+ margin-top: -6.25px; }
682
+ .row.gtr-25.gtr-uniform > * {
683
+ padding-top: 6.25px; }
684
+ .row.gtr-50 {
685
+ margin-top: -12.5px;
686
+ margin-left: -12.5px; }
687
+ .row.gtr-50 > * {
688
+ padding: 12.5px 0 0 12.5px; }
689
+ .row.gtr-50.gtr-uniform {
690
+ margin-top: -12.5px; }
691
+ .row.gtr-50.gtr-uniform > * {
692
+ padding-top: 12.5px; }
693
+ .row {
694
+ margin-top: -25px;
695
+ margin-left: -25px; }
696
+ .row > * {
697
+ padding: 25px 0 0 25px; }
698
+ .row.gtr-uniform {
699
+ margin-top: -25px; }
700
+ .row.gtr-uniform > * {
701
+ padding-top: 25px; }
702
+ .row.gtr-150 {
703
+ margin-top: -37.5px;
704
+ margin-left: -37.5px; }
705
+ .row.gtr-150 > * {
706
+ padding: 37.5px 0 0 37.5px; }
707
+ .row.gtr-150.gtr-uniform {
708
+ margin-top: -37.5px; }
709
+ .row.gtr-150.gtr-uniform > * {
710
+ padding-top: 37.5px; }
711
+ .row.gtr-200 {
712
+ margin-top: -50px;
713
+ margin-left: -50px; }
714
+ .row.gtr-200 > * {
715
+ padding: 50px 0 0 50px; }
716
+ .row.gtr-200.gtr-uniform {
717
+ margin-top: -50px; }
718
+ .row.gtr-200.gtr-uniform > * {
719
+ padding-top: 50px; } }
720
+ @media screen and (max-width: 736px) {
721
+ .row {
722
+ display: flex;
723
+ flex-wrap: wrap;
724
+ box-sizing: border-box;
725
+ align-items: stretch; }
726
+ .row > * {
727
+ box-sizing: border-box; }
728
+ .row.gtr-uniform > * > :last-child {
729
+ margin-bottom: 0; }
730
+ .row.aln-left {
731
+ justify-content: flex-start; }
732
+ .row.aln-center {
733
+ justify-content: center; }
734
+ .row.aln-right {
735
+ justify-content: flex-end; }
736
+ .row.aln-top {
737
+ align-items: flex-start; }
738
+ .row.aln-middle {
739
+ align-items: center; }
740
+ .row.aln-bottom {
741
+ align-items: flex-end; }
742
+ .row > .imp-mobile {
743
+ order: -1; }
744
+ .row > .col-1-mobile {
745
+ width: 8.3333333333%; }
746
+ .row > .off-1-mobile {
747
+ margin-left: 8.3333333333%; }
748
+ .row > .col-2-mobile {
749
+ width: 16.6666666667%; }
750
+ .row > .off-2-mobile {
751
+ margin-left: 16.6666666667%; }
752
+ .row > .col-3-mobile {
753
+ width: 25%; }
754
+ .row > .off-3-mobile {
755
+ margin-left: 25%; }
756
+ .row > .col-4-mobile {
757
+ width: 33.3333333333%; }
758
+ .row > .off-4-mobile {
759
+ margin-left: 33.3333333333%; }
760
+ .row > .col-5-mobile {
761
+ width: 41.6666666667%; }
762
+ .row > .off-5-mobile {
763
+ margin-left: 41.6666666667%; }
764
+ .row > .col-6-mobile {
765
+ width: 50%; }
766
+ .row > .off-6-mobile {
767
+ margin-left: 50%; }
768
+ .row > .col-7-mobile {
769
+ width: 58.3333333333%; }
770
+ .row > .off-7-mobile {
771
+ margin-left: 58.3333333333%; }
772
+ .row > .col-8-mobile {
773
+ width: 66.6666666667%; }
774
+ .row > .off-8-mobile {
775
+ margin-left: 66.6666666667%; }
776
+ .row > .col-9-mobile {
777
+ width: 75%; }
778
+ .row > .off-9-mobile {
779
+ margin-left: 75%; }
780
+ .row > .col-10-mobile {
781
+ width: 83.3333333333%; }
782
+ .row > .off-10-mobile {
783
+ margin-left: 83.3333333333%; }
784
+ .row > .col-11-mobile {
785
+ width: 91.6666666667%; }
786
+ .row > .off-11-mobile {
787
+ margin-left: 91.6666666667%; }
788
+ .row > .col-12-mobile {
789
+ width: 100%; }
790
+ .row > .off-12-mobile {
791
+ margin-left: 100%; }
792
+ .row.gtr-0 {
793
+ margin-top: 0px;
794
+ margin-left: 0px; }
795
+ .row.gtr-0 > * {
796
+ padding: 0px 0 0 0px; }
797
+ .row.gtr-0.gtr-uniform {
798
+ margin-top: 0px; }
799
+ .row.gtr-0.gtr-uniform > * {
800
+ padding-top: 0px; }
801
+ .row.gtr-25 {
802
+ margin-top: -5px;
803
+ margin-left: -5px; }
804
+ .row.gtr-25 > * {
805
+ padding: 5px 0 0 5px; }
806
+ .row.gtr-25.gtr-uniform {
807
+ margin-top: -5px; }
808
+ .row.gtr-25.gtr-uniform > * {
809
+ padding-top: 5px; }
810
+ .row.gtr-50 {
811
+ margin-top: -10px;
812
+ margin-left: -10px; }
813
+ .row.gtr-50 > * {
814
+ padding: 10px 0 0 10px; }
815
+ .row.gtr-50.gtr-uniform {
816
+ margin-top: -10px; }
817
+ .row.gtr-50.gtr-uniform > * {
818
+ padding-top: 10px; }
819
+ .row {
820
+ margin-top: -20px;
821
+ margin-left: -20px; }
822
+ .row > * {
823
+ padding: 20px 0 0 20px; }
824
+ .row.gtr-uniform {
825
+ margin-top: -20px; }
826
+ .row.gtr-uniform > * {
827
+ padding-top: 20px; }
828
+ .row.gtr-150 {
829
+ margin-top: -30px;
830
+ margin-left: -30px; }
831
+ .row.gtr-150 > * {
832
+ padding: 30px 0 0 30px; }
833
+ .row.gtr-150.gtr-uniform {
834
+ margin-top: -30px; }
835
+ .row.gtr-150.gtr-uniform > * {
836
+ padding-top: 30px; }
837
+ .row.gtr-200 {
838
+ margin-top: -40px;
839
+ margin-left: -40px; }
840
+ .row.gtr-200 > * {
841
+ padding: 40px 0 0 40px; }
842
+ .row.gtr-200.gtr-uniform {
843
+ margin-top: -40px; }
844
+ .row.gtr-200.gtr-uniform > * {
845
+ padding-top: 40px; } }
846
+
847
+ /* Sections/Article */
848
+ section,
849
+ article {
850
+ margin-bottom: 3em; }
851
+ section ul, section ol, section dl,
852
+ article ul,
853
+ article ol,
854
+ article dl {
855
+ text-align: start;
856
+ display: inline-block; }
857
+
858
+ section > :last-child,
859
+ article > :last-child,
860
+ section:last-child,
861
+ article:last-child {
862
+ margin-bottom: 0; }
863
+
864
+ .row > section,
865
+ .row > article {
866
+ margin-bottom: 0; }
867
+
868
+ /* Image */
869
+ .image {
870
+ position: relative;
871
+ display: inline-block;
872
+ border: 0; }
873
+ .image:after {
874
+ content: '';
875
+ position: absolute;
876
+ left: 0;
877
+ top: 0;
878
+ width: 100%;
879
+ height: 100%;
880
+ background: url("images/overlay.png"); }
881
+ .image img {
882
+ display: block;
883
+ width: 100%;
884
+ border-radius: 0.5em; }
885
+ .image.featured {
886
+ display: block;
887
+ width: 100%;
888
+ margin: 0 0 2em 0; }
889
+ .image.fit {
890
+ display: block;
891
+ width: 100%; }
892
+ .image.left {
893
+ float: left;
894
+ margin: 0 2em 2em 0; }
895
+ .image.centered {
896
+ display: block;
897
+ margin: 0 0 2em 0; }
898
+ .image.centered img {
899
+ margin: 0 auto;
900
+ width: auto; }
901
+
902
+ /* List */
903
+ ul {
904
+ list-style: disc;
905
+ padding-left: 1em; }
906
+ ul li {
907
+ padding-left: 0.5em; }
908
+
909
+ ol {
910
+ list-style: decimal;
911
+ padding-left: 1.25em; }
912
+ ol li {
913
+ padding-left: 0.25em; }
914
+
915
+ /* Icons */
916
+ ul.icons {
917
+ cursor: default;
918
+ list-style: none;
919
+ padding-left: 0; }
920
+ ul.icons li {
921
+ display: inline-block;
922
+ padding-left: 0.75em; }
923
+ ul.icons a {
924
+ -moz-transition: background-color 0.25s ease-in-out;
925
+ -webkit-transition: background-color 0.25s ease-in-out;
926
+ -ms-transition: background-color 0.25s ease-in-out;
927
+ transition: background-color 0.25s ease-in-out;
928
+ display: inline-block;
929
+ width: 2.75em;
930
+ height: 2.75em;
931
+ line-height: 2.8em;
932
+ text-align: center;
933
+ border: 0;
934
+ box-shadow: inset 0 0 0 1px #e6e6e6;
935
+ border-radius: 100%;
936
+ color: #aaa; }
937
+ ul.icons a:hover {
938
+ background: rgba(0, 0, 0, 0.025); }
939
+
940
+ /* Menu */
941
+ ul.menu {
942
+ cursor: default;
943
+ list-style: none;
944
+ padding-left: 0; }
945
+ ul.menu li {
946
+ display: inline-block;
947
+ line-height: 1em;
948
+ border-left: solid 1px #e6e6e6;
949
+ padding: 0 0 0 0.5em;
950
+ margin: 0 0 0 0.5em; }
951
+ ul.menu li:first-child {
952
+ border-left: 0;
953
+ padding-left: 0;
954
+ margin-left: 0; }
955
+
956
+ /* Actions */
957
+ ul.actions {
958
+ display: -moz-flex;
959
+ display: -webkit-flex;
960
+ display: -ms-flex;
961
+ display: flex;
962
+ cursor: default;
963
+ list-style: none;
964
+ margin-left: -1em;
965
+ padding-left: 0; }
966
+ ul.actions li {
967
+ padding: 0 0 0 1em;
968
+ vertical-align: middle; }
969
+ ul.actions.special {
970
+ -moz-justify-content: center;
971
+ -webkit-justify-content: center;
972
+ -ms-justify-content: center;
973
+ justify-content: center;
974
+ width: 100%;
975
+ margin-left: 0; }
976
+ ul.actions.special li:first-child {
977
+ padding-left: 0; }
978
+ ul.actions.stacked {
979
+ -moz-flex-direction: column;
980
+ -webkit-flex-direction: column;
981
+ -ms-flex-direction: column;
982
+ flex-direction: column;
983
+ margin-left: 0; }
984
+ ul.actions.stacked li {
985
+ padding: 1.25em 0 0 0; }
986
+ ul.actions.stacked li:first-child {
987
+ padding-top: 0; }
988
+ ul.actions.fit {
989
+ width: calc(100% + 1em); }
990
+ ul.actions.fit li {
991
+ -moz-flex-grow: 1;
992
+ -webkit-flex-grow: 1;
993
+ -ms-flex-grow: 1;
994
+ flex-grow: 1;
995
+ -moz-flex-shrink: 1;
996
+ -webkit-flex-shrink: 1;
997
+ -ms-flex-shrink: 1;
998
+ flex-shrink: 1;
999
+ width: 100%; }
1000
+ ul.actions.fit li > * {
1001
+ width: 100%; }
1002
+ ul.actions.fit.stacked {
1003
+ width: 100%; }
1004
+ @media screen and (max-width: 1000px) {
1005
+ ul.actions {
1006
+ -moz-justify-content: center;
1007
+ -webkit-justify-content: center;
1008
+ -ms-justify-content: center;
1009
+ justify-content: center;
1010
+ width: 100%;
1011
+ margin-left: 0; }
1012
+ ul.actions li:first-child {
1013
+ padding-left: 0; } }
1014
+ @media screen and (max-width: 736px) {
1015
+ ul.actions:not(.fixed) {
1016
+ -moz-flex-direction: column;
1017
+ -webkit-flex-direction: column;
1018
+ -ms-flex-direction: column;
1019
+ flex-direction: column;
1020
+ margin-left: 0;
1021
+ width: 100% !important; }
1022
+ ul.actions:not(.fixed) li {
1023
+ -moz-flex-grow: 1;
1024
+ -webkit-flex-grow: 1;
1025
+ -ms-flex-grow: 1;
1026
+ flex-grow: 1;
1027
+ -moz-flex-shrink: 1;
1028
+ -webkit-flex-shrink: 1;
1029
+ -ms-flex-shrink: 1;
1030
+ flex-shrink: 1;
1031
+ padding: 1em 0 0 0;
1032
+ text-align: center;
1033
+ width: 100%; }
1034
+ ul.actions:not(.fixed) li > * {
1035
+ width: 100%; }
1036
+ ul.actions:not(.fixed) li:first-child {
1037
+ padding-top: 0; }
1038
+ ul.actions:not(.fixed) li input[type="submit"],
1039
+ ul.actions:not(.fixed) li input[type="reset"],
1040
+ ul.actions:not(.fixed) li input[type="button"],
1041
+ ul.actions:not(.fixed) li button,
1042
+ ul.actions:not(.fixed) li .button {
1043
+ width: 100%; }
1044
+ ul.actions:not(.fixed) li input[type="submit"].icon:before,
1045
+ ul.actions:not(.fixed) li input[type="reset"].icon:before,
1046
+ ul.actions:not(.fixed) li input[type="button"].icon:before,
1047
+ ul.actions:not(.fixed) li button.icon:before,
1048
+ ul.actions:not(.fixed) li .button.icon:before {
1049
+ margin-left: -0.5em; } }
1050
+
1051
+ /* Form */
1052
+ form .actions {
1053
+ margin-bottom: 0; }
1054
+ form label {
1055
+ display: block; }
1056
+ form input[type="text"],
1057
+ form input[type="email"],
1058
+ form input[type="password"],
1059
+ form select,
1060
+ form .select,
1061
+ form textarea {
1062
+ -moz-transition: all 0.25s ease-in-out;
1063
+ -webkit-transition: all 0.25s ease-in-out;
1064
+ -ms-transition: all 0.25s ease-in-out;
1065
+ transition: all 0.25s ease-in-out;
1066
+ -moz-appearance: none;
1067
+ -webkit-appearance: none;
1068
+ -ms-appearance: none;
1069
+ appearance: none;
1070
+ display: block;
1071
+ box-shadow: inset 0 0 0 1px #e6e6e6;
1072
+ background: #f8f8f8;
1073
+ width: 100%;
1074
+ padding: 0.85em 1em 0.85em 1em;
1075
+ border-radius: 0.25em;
1076
+ border: 0; }
1077
+ form input[type="text"]:focus,
1078
+ form input[type="email"]:focus,
1079
+ form input[type="password"]:focus,
1080
+ form select:focus,
1081
+ form .select:focus,
1082
+ form textarea:focus {
1083
+ outline: 0;
1084
+ box-shadow: inset 0 0 0 1px #afd9e0;
1085
+ background: #fcfcfc; }
1086
+ form input[type="text"],
1087
+ form input[type="email"],
1088
+ form input[type="password"],
1089
+ form select {
1090
+ line-height: 1.25em; }
1091
+ form textarea {
1092
+ min-height: 13em; }
1093
+ form select {
1094
+ position: relative; }
1095
+ form select option:not(:checked) {
1096
+ color: #000; }
1097
+ form .select {
1098
+ position: relative;
1099
+ padding: 0;
1100
+ overflow-x: hidden;
1101
+ outline: 0; }
1102
+ form .select select {
1103
+ width: calc(100% + 2em);
1104
+ background: none !important;
1105
+ box-shadow: none !important;
1106
+ border: 0 !important;
1107
+ cursor: pointer; }
1108
+ form .select select::-moz-focus-inner {
1109
+ border: 0;
1110
+ outline: 0; }
1111
+ form .select:before {
1112
+ content: '';
1113
+ position: absolute;
1114
+ top: 15%;
1115
+ right: 1em;
1116
+ width: 1.25em;
1117
+ height: 75%;
1118
+ background: url("images/arrow.svg") center center no-repeat;
1119
+ background-size: contain;
1120
+ z-index: 0; }
1121
+ form .select select::-ms-expand {
1122
+ display: none; }
1123
+ form ::-moz-focus-inner {
1124
+ border: 0; }
1125
+ form ::-webkit-input-placeholder {
1126
+ color: #aaa !important; }
1127
+ form :-moz-placeholder {
1128
+ color: #555 !important; }
1129
+ form ::-moz-placeholder {
1130
+ color: #555 !important; }
1131
+ form :-ms-input-placeholder {
1132
+ color: #555 !important; }
1133
+
1134
+ .dark form input[type="text"],
1135
+ .dark form input[type="email"],
1136
+ .dark form input[type="password"],
1137
+ .dark form select,
1138
+ .dark form .select,
1139
+ .dark form textarea {
1140
+ background: none;
1141
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
1142
+ color: #fff; }
1143
+ .dark form input[type="text"]:focus,
1144
+ .dark form input[type="email"]:focus,
1145
+ .dark form input[type="password"]:focus,
1146
+ .dark form select:focus,
1147
+ .dark form .select:focus,
1148
+ .dark form textarea:focus {
1149
+ background: rgba(255, 255, 255, 0.1);
1150
+ box-shadow: inset 0 0 0 1px #fff; }
1151
+ .dark form .select:before {
1152
+ background: url("images/dark-arrow.svg") center center no-repeat;
1153
+ background-size: contain; }
1154
+ .dark form .formerize-placeholder {
1155
+ color: #aaa !important;
1156
+ color: rgba(255, 255, 255, 0.85) !important; }
1157
+ .dark form ::-webkit-input-placeholder {
1158
+ color: rgba(255, 255, 255, 0.85) !important; }
1159
+ .dark form :-moz-placeholder {
1160
+ color: rgba(255, 255, 255, 0.85) !important; }
1161
+ .dark form ::-moz-placeholder {
1162
+ color: rgba(255, 255, 255, 0.85) !important; }
1163
+ .dark form :-ms-input-placeholder {
1164
+ color: rgba(255, 255, 255, 0.85) !important; }
1165
+
1166
+ /* Table */
1167
+ table {
1168
+ width: 100%; }
1169
+ table.default {
1170
+ width: 100%;
1171
+ border-collapse: collapse; }
1172
+ table.default tbody tr {
1173
+ border: solid 1px #e6e6e6; }
1174
+ table.default tbody tr:nth-child(2n+2) {
1175
+ background: #f8f8f8; }
1176
+ table.default td {
1177
+ padding: 0.5em 1em 0.5em 1em; }
1178
+ table.default th {
1179
+ text-align: left;
1180
+ padding: 0.5em 1em 1em 1em; }
1181
+ table.default tfoot td {
1182
+ padding-top: 1em; }
1183
+
1184
+ .dark table.default tbody tr {
1185
+ border-color: rgba(255, 255, 255, 0.5); }
1186
+ .dark table.default tbody tr:nth-child(2n+2) {
1187
+ background: rgba(255, 255, 255, 0.1); }
1188
+
1189
+ /* Button */
1190
+ input[type="button"],
1191
+ input[type="submit"],
1192
+ input[type="reset"],
1193
+ button,
1194
+ .button {
1195
+ -moz-transition: all 0.25s ease-in-out;
1196
+ -webkit-transition: all 0.25s ease-in-out;
1197
+ -ms-transition: all 0.25s ease-in-out;
1198
+ transition: all 0.25s ease-in-out;
1199
+ -webkit-appearance: none;
1200
+ position: relative;
1201
+ display: inline-block;
1202
+ background: #3d3d3d;
1203
+ padding: 0.85em 3em 0.85em 3em;
1204
+ border-radius: 0.25em;
1205
+ cursor: pointer;
1206
+ border: 0;
1207
+ color: #fff;
1208
+ text-align: center;
1209
+ text-decoration: none; }
1210
+ input[type="button"]:hover,
1211
+ input[type="submit"]:hover,
1212
+ input[type="reset"]:hover,
1213
+ button:hover,
1214
+ .button:hover {
1215
+ background: #4f4f4f; }
1216
+ input[type="button"].alt,
1217
+ input[type="submit"].alt,
1218
+ input[type="reset"].alt,
1219
+ button.alt,
1220
+ .button.alt {
1221
+ color: inherit;
1222
+ box-shadow: inset 0 0 0 1px #e6e6e6;
1223
+ background: none; }
1224
+ input[type="button"].alt:hover,
1225
+ input[type="submit"].alt:hover,
1226
+ input[type="reset"].alt:hover,
1227
+ button.alt:hover,
1228
+ .button.alt:hover {
1229
+ background: rgba(0, 0, 0, 0.025); }
1230
+
1231
+ .dark input[type="button"],
1232
+ .dark input[type="submit"],
1233
+ .dark input[type="reset"],
1234
+ .dark button,
1235
+ .dark .button {
1236
+ background: rgba(255, 255, 255, 0.15);
1237
+ box-shadow: inset 0 0 0 1px #fff;
1238
+ color: #fff; }
1239
+ .dark input[type="button"]:hover,
1240
+ .dark input[type="submit"]:hover,
1241
+ .dark input[type="reset"]:hover,
1242
+ .dark button:hover,
1243
+ .dark .button:hover {
1244
+ background: rgba(255, 255, 255, 0.25); }
1245
+ .dark input[type="button"].alt,
1246
+ .dark input[type="submit"].alt,
1247
+ .dark input[type="reset"].alt,
1248
+ .dark button.alt,
1249
+ .dark .button.alt {
1250
+ background: none;
1251
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
1252
+ .dark input[type="button"].alt:hover,
1253
+ .dark input[type="submit"].alt:hover,
1254
+ .dark input[type="reset"].alt:hover,
1255
+ .dark button.alt:hover,
1256
+ .dark .button.alt:hover {
1257
+ background: rgba(255, 255, 255, 0.15);
1258
+ box-shadow: inset 0 0 0 1px #fff; }
1259
+
1260
+ /* Feature Icon */
1261
+ .feature-icon {
1262
+ display: inline-block;
1263
+ position: relative;
1264
+ padding-bottom: 5em;
1265
+ margin-bottom: 2.75em;
1266
+ cursor: default; }
1267
+ .feature-icon .icon {
1268
+ display: inline-block;
1269
+ width: 2em;
1270
+ height: 2em;
1271
+ font-size: 4.5em;
1272
+ border-radius: 100%;
1273
+ box-shadow: inset 0 0 0 1px #666;
1274
+ color: #666;
1275
+ line-height: 2em; }
1276
+ .feature-icon:before {
1277
+ content: '';
1278
+ background: #666;
1279
+ position: absolute;
1280
+ bottom: 0;
1281
+ left: 50%;
1282
+ margin-left: -0.325em;
1283
+ width: 0.65em;
1284
+ height: 0.65em;
1285
+ display: block;
1286
+ border-radius: 100%; }
1287
+ .feature-icon:after {
1288
+ content: '';
1289
+ position: absolute;
1290
+ left: 50%;
1291
+ bottom: 0.65em;
1292
+ width: 1px;
1293
+ height: 4.35em;
1294
+ background: #666;
1295
+ margin-left: -0.5px; }
1296
+
1297
+ .dark .feature-icon .icon {
1298
+ background: rgba(255, 255, 255, 0.15);
1299
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
1300
+ color: #fff; }
1301
+ .dark .feature-icon:before, .dark .feature-icon:after {
1302
+ background: rgba(255, 255, 255, 0.5); }
1303
+
1304
+ /* Icons */
1305
+ .icon {
1306
+ text-decoration: none;
1307
+ text-decoration: none; }
1308
+ .icon:before {
1309
+ -moz-osx-font-smoothing: grayscale;
1310
+ -webkit-font-smoothing: antialiased;
1311
+ display: inline-block;
1312
+ font-style: normal;
1313
+ font-variant: normal;
1314
+ text-rendering: auto;
1315
+ line-height: 1;
1316
+ text-transform: none !important;
1317
+ font-family: 'Font Awesome 6 Free';
1318
+ font-weight: 400; }
1319
+ .icon:before {
1320
+ line-height: inhreit; }
1321
+ .icon > .label {
1322
+ display: none; }
1323
+ .icon.solid:before {
1324
+ font-weight: 900; }
1325
+ .icon.brands:before {
1326
+ font-family: 'Font Awesome 6 Brands'; }
1327
+
1328
+ /* Header */
1329
+ #header {
1330
+ position: relative;
1331
+ margin: 0;
1332
+ background-image: url("images/overlay.png"), url("../../images/header.jpg");
1333
+ background-size: auto, cover;
1334
+ background-position: top left, center center;
1335
+ background-repeat: repeat, no-repeat;
1336
+ padding: 14em 0 14em 0;
1337
+ text-align: center;
1338
+ color: #fff; }
1339
+ #header header h1 {
1340
+ font-size: 2.25em;
1341
+ line-height: 1.25em;
1342
+ margin-bottom: 0; }
1343
+ #header header p {
1344
+ margin-top: 1.25em;
1345
+ font-weight: 100;
1346
+ padding: 0;
1347
+ font-size: 1.25em;
1348
+ line-height: 1.5em;
1349
+ text-align: center; }
1350
+ #header footer {
1351
+ padding-top: 1.5em; }
1352
+
1353
+ /* Main Sections */
1354
+ .main {
1355
+ position: relative;
1356
+ margin: 0; }
1357
+ .main > header {
1358
+ background: #fff;
1359
+ text-align: center;
1360
+ padding: 5em 0 5em 0;
1361
+ margin: 0; }
1362
+ .main > header h2 {
1363
+ font-size: 2.25em;
1364
+ font-weight: 100;
1365
+ margin-bottom: 0; }
1366
+ .main > header p {
1367
+ margin: 2em 0 0 0;
1368
+ padding: 0;
1369
+ text-align: center; }
1370
+ .main > .content {
1371
+ padding: 6em 0 6em 0; }
1372
+ .main > .content h3 {
1373
+ font-size: 1.5em; }
1374
+ .main > .content.dark {
1375
+ background: #433; }
1376
+ .main > .content.style1 {
1377
+ background: url("images/bgtr.svg") top right no-repeat, url("images/bgbl.svg") bottom left no-repeat, url("images/bgbl.svg") bottom left no-repeat, url("images/overlay.png"), linear-gradient(45deg, #b39c68, #a56365, #412e4c); }
1378
+ .main > .content.style2 {
1379
+ background: url("images/bgtr.svg") top right no-repeat, url("images/bgbl.svg") bottom left no-repeat, url("images/overlay.png"), linear-gradient(45deg, #384955, #655361, #85505f); }
1380
+ .main > .content.style3 {
1381
+ background: url("images/bgtr.svg") top right no-repeat, url("images/bgbl.svg") bottom left no-repeat, url("images/overlay.png"), linear-gradient(45deg, #5f796b, #3a4e59, #2f394e); }
1382
+ .main > .content.style4 {
1383
+ padding-top: 0;
1384
+ background: #fff; }
1385
+
1386
+ /* Footer */
1387
+ #footer {
1388
+ position: relative;
1389
+ margin: 0;
1390
+ text-align: center;
1391
+ padding: 4em 0 8em 0;
1392
+ box-shadow: inset 0 1px 0 0 #e6e6e6; }
1393
+ #footer .copyright {
1394
+ margin-top: 3em;
1395
+ font-size: 0.8em;
1396
+ color: #aaa; }
1397
+ #footer .copyright a {
1398
+ color: inherit; }
1399
+ #footer ul.icons a {
1400
+ box-shadow: inset 0 0 0 1px #d6d6d6; }
1401
+
1402
+ /* Wide */
1403
+ @media screen and (max-width: 1680px) {
1404
+ /* Basic */
1405
+ body, input, textarea, select {
1406
+ font-size: 15pt;
1407
+ line-height: 1.75em; } }
1408
+ /* Normal */
1409
+ @media screen and (max-width: 1280px) {
1410
+ /* Basic */
1411
+ body, input, textarea, select {
1412
+ font-size: 13pt;
1413
+ line-height: 1.65em; }
1414
+
1415
+ /* Feature Icon */
1416
+ .feature-icon {
1417
+ margin-bottom: 2em; }
1418
+
1419
+ /* Header */
1420
+ #header {
1421
+ padding: 12em 0 12em 0; }
1422
+
1423
+ /* Main Sections */
1424
+ .main > header {
1425
+ padding: 4em 0 4em 0; }
1426
+ .main > .content {
1427
+ padding: 4em 0 4em 0; } }
1428
+ /* Narrow */
1429
+ @media screen and (max-width: 1000px) {
1430
+ /* Basic */
1431
+ header, footer, h2, h3, h4, h5, h6, header > p {
1432
+ text-align: center; }
1433
+
1434
+ /* Sections/Article */
1435
+ section, article {
1436
+ margin: 0 0 2.5em 0 !important; }
1437
+
1438
+ .row > section, .row > article {
1439
+ margin: 0 0 2.5em 0 !important; }
1440
+
1441
+ /* Table */
1442
+ .table-wrapper {
1443
+ width: 100%;
1444
+ overflow-x: scroll;
1445
+ padding-left: 1px;
1446
+ -webkit-overflow-scrolling: touch; }
1447
+
1448
+ /* Header */
1449
+ #header {
1450
+ margin: 0 !important;
1451
+ padding: 8em 2em 8em 2em; }
1452
+ #header header p {
1453
+ margin-top: 1em; }
1454
+ #header footer {
1455
+ padding-top: 1.25em; }
1456
+
1457
+ /* Main Sections */
1458
+ .main {
1459
+ margin: 0 !important; }
1460
+ .main > header {
1461
+ padding: 3.5em 2em 3.5em 2em; }
1462
+ .main > header h2 {
1463
+ font-size: 1.85em; }
1464
+ .main > header br {
1465
+ display: none; }
1466
+ .main > header p {
1467
+ margin: 1.5em 0 0 0; }
1468
+ .main > .content {
1469
+ padding: 3.5em 20px 3.5em 20px; }
1470
+ .main > .content > .container > :last-child {
1471
+ margin-bottom: 0 !important; }
1472
+
1473
+ /* Footer */
1474
+ #footer {
1475
+ margin: 0 !important;
1476
+ padding: 3em 0 3em 0; }
1477
+ #footer .copyright {
1478
+ margin-top: 2em; } }
1479
+ /* Mobile */
1480
+ @media screen and (max-width: 736px) {
1481
+ /* Basic */
1482
+ body, input, textarea, select {
1483
+ font-size: 11pt; }
1484
+
1485
+ /* Sections/Article */
1486
+ section, article {
1487
+ margin: 0 0 1.5em 0 !important; }
1488
+
1489
+ .row > section, .row > article {
1490
+ margin: 0 0 1.5em 0 !important; }
1491
+
1492
+ /* Button */
1493
+ .button {
1494
+ padding-left: 0;
1495
+ padding-right: 0;
1496
+ width: 100%;
1497
+ max-width: 24em; }
1498
+
1499
+ /* Icons */
1500
+ ul.icons li {
1501
+ padding-left: 0.35em; }
1502
+
1503
+ /* Menu */
1504
+ ul.menu li {
1505
+ border: 0;
1506
+ padding: 0;
1507
+ display: block;
1508
+ margin: 1em 0 1em 0; }
1509
+
1510
+ /* Header */
1511
+ #header {
1512
+ padding: 6em 20px 6em 20px; }
1513
+ #header > header {
1514
+ padding: 0 1em 0 1em; }
1515
+
1516
+ /* Main Sections */
1517
+ .main > header {
1518
+ padding: 3em 20px 3em 20px; }
1519
+ .main > header h2 {
1520
+ font-size: 1.5em; }
1521
+ .main > .content {
1522
+ padding: 3em 20px 3em 20px; }
1523
+ .main > .content h3 {
1524
+ font-size: 1.25em; } }