strata-academic 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +116 -0
  3. data/README.md +110 -0
  4. data/_layouts/homepage.html +101 -0
  5. data/_sass/strata-academic.scss +3220 -0
  6. data/assets/css/style.scss +4 -0
  7. data/assets/img/avatar.png +0 -0
  8. data/assets/img/bg.jpg +0 -0
  9. data/assets/img/favicon-dark.png +0 -0
  10. data/assets/img/favicon.png +0 -0
  11. data/assets/js/favicon-switcher.js +64 -0
  12. data/assets/js/scale.fix.js +27 -0
  13. data/assets/original/css/fontawesome-all.min.css +5 -0
  14. data/assets/original/css/images/overlay.png +0 -0
  15. data/assets/original/css/main.css +3221 -0
  16. data/assets/original/js/breakpoints.min.js +2 -0
  17. data/assets/original/js/browser.min.js +2 -0
  18. data/assets/original/js/jquery.min.js +2 -0
  19. data/assets/original/js/jquery.poptrox.min.js +2 -0
  20. data/assets/original/js/main.js +117 -0
  21. data/assets/original/js/util.js +587 -0
  22. data/assets/original/sass/libs/_breakpoints.scss +223 -0
  23. data/assets/original/sass/libs/_functions.scss +90 -0
  24. data/assets/original/sass/libs/_html-grid.scss +149 -0
  25. data/assets/original/sass/libs/_mixins.scss +78 -0
  26. data/assets/original/sass/libs/_vars.scss +59 -0
  27. data/assets/original/sass/libs/_vendor.scss +376 -0
  28. data/assets/original/sass/main.scss +1633 -0
  29. data/assets/original/webfonts/fa-brands-400.eot +0 -0
  30. data/assets/original/webfonts/fa-brands-400.svg +3442 -0
  31. data/assets/original/webfonts/fa-brands-400.ttf +0 -0
  32. data/assets/original/webfonts/fa-brands-400.woff +0 -0
  33. data/assets/original/webfonts/fa-brands-400.woff2 +0 -0
  34. data/assets/original/webfonts/fa-regular-400.eot +0 -0
  35. data/assets/original/webfonts/fa-regular-400.svg +803 -0
  36. data/assets/original/webfonts/fa-regular-400.ttf +0 -0
  37. data/assets/original/webfonts/fa-regular-400.woff +0 -0
  38. data/assets/original/webfonts/fa-regular-400.woff2 +0 -0
  39. data/assets/original/webfonts/fa-solid-900.eot +0 -0
  40. data/assets/original/webfonts/fa-solid-900.svg +4649 -0
  41. data/assets/original/webfonts/fa-solid-900.ttf +0 -0
  42. data/assets/original/webfonts/fa-solid-900.woff +0 -0
  43. data/assets/original/webfonts/fa-solid-900.woff2 +0 -0
  44. metadata +162 -0
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "strata-academic";
Binary file
Binary file
Binary file
@@ -0,0 +1,64 @@
1
+ ;(function(mod){
2
+ function collectLinks() {
3
+ return Array.prototype.slice.apply(
4
+ document.head.querySelectorAll('link[rel*="icon"]')
5
+ )
6
+ }
7
+
8
+ function applyLink(source, target) {
9
+ target.setAttribute('type', source.getAttribute('type'))
10
+ target.setAttribute('href', source.getAttribute('href'))
11
+ }
12
+
13
+ // eslint-disable-next-line no-unused-vars
14
+ function initSwitcher(delay) {
15
+ // Exit if media queries aren't supported
16
+ if (typeof window.matchMedia !== 'function') {
17
+ return function noop() {}
18
+ }
19
+
20
+ var links = collectLinks()
21
+ var current = document.createElement('link')
22
+ var prevMatch
23
+
24
+ current.setAttribute('rel', 'shortcut icon')
25
+ document.head.appendChild(current)
26
+
27
+ function faviconApplyLoop() {
28
+ var matched
29
+
30
+ links.forEach(function(link) {
31
+ if (window.matchMedia(link.media).matches) {
32
+ matched = link
33
+ }
34
+ })
35
+
36
+ if (! matched) {
37
+ return
38
+ }
39
+
40
+ if (matched.media !== prevMatch) {
41
+ prevMatch = matched.media
42
+ applyLink(matched, current)
43
+ }
44
+ }
45
+
46
+ var intervalId = setInterval(faviconApplyLoop, delay || 300)
47
+
48
+ function unsubscribe() {
49
+ clearInterval(intervalId)
50
+ links.forEach(function(link) {
51
+ document.head.appendChild(link)
52
+ })
53
+ }
54
+
55
+ faviconApplyLoop()
56
+ links.forEach(function(link) {
57
+ document.head.removeChild(link)
58
+ })
59
+
60
+ return unsubscribe
61
+ }
62
+
63
+ initSwitcher()
64
+ })()
@@ -0,0 +1,27 @@
1
+ (function(document) {
2
+ var metas = document.getElementsByTagName('meta'),
3
+ changeViewportContent = function(content) {
4
+ for (var i = 0; i < metas.length; i++) {
5
+ if (metas[i].name == "viewport") {
6
+ metas[i].content = content;
7
+ }
8
+ }
9
+ },
10
+ initialize = function() {
11
+ changeViewportContent("width=device-width, minimum-scale=1.0, maximum-scale=1.0");
12
+ },
13
+ gestureStart = function() {
14
+ changeViewportContent("width=device-width, minimum-scale=0.25, maximum-scale=1.6");
15
+ },
16
+ gestureEnd = function() {
17
+ initialize();
18
+ };
19
+
20
+
21
+ if (navigator.userAgent.match(/iPhone/i)) {
22
+ initialize();
23
+
24
+ document.addEventListener("touchstart", gestureStart, false);
25
+ document.addEventListener("touchend", gestureEnd, false);
26
+ }
27
+ })(document);
@@ -0,0 +1,5 @@
1
+ /*!
2
+ * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ .fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;font-display:auto;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:auto;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:auto;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
@@ -0,0 +1,3221 @@
1
+ @import url("fontawesome-all.min.css");
2
+ @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic");
3
+
4
+ /*
5
+ Strata by HTML5 UP
6
+ html5up.net | @ajlkn
7
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
8
+ */
9
+
10
+ html, body, div, span, applet, object,
11
+ iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
12
+ pre, a, abbr, acronym, address, big, cite,
13
+ code, del, dfn, em, img, ins, kbd, q, s, samp,
14
+ small, strike, strong, sub, sup, tt, var, b,
15
+ u, i, center, dl, dt, dd, ol, ul, li, fieldset,
16
+ form, label, legend, table, caption, tbody,
17
+ tfoot, thead, tr, th, td, article, aside,
18
+ canvas, details, embed, figure, figcaption,
19
+ footer, header, hgroup, menu, nav, output, ruby,
20
+ section, summary, time, mark, audio, video {
21
+ margin: 0;
22
+ padding: 0;
23
+ border: 0;
24
+ font-size: 100%;
25
+ font: inherit;
26
+ vertical-align: baseline;}
27
+
28
+ article, aside, details, figcaption, figure,
29
+ footer, header, hgroup, menu, nav, section {
30
+ display: block;}
31
+
32
+ body {
33
+ line-height: 1;
34
+ }
35
+
36
+ ol, ul {
37
+ list-style: none;
38
+ }
39
+
40
+ blockquote, q {
41
+ quotes: none;
42
+ }
43
+
44
+ blockquote:before, blockquote:after, q:before, q:after {
45
+ content: '';
46
+ content: none;
47
+ }
48
+
49
+ table {
50
+ border-collapse: collapse;
51
+ border-spacing: 0;
52
+ }
53
+
54
+ body {
55
+ -webkit-text-size-adjust: none;
56
+ }
57
+
58
+ mark {
59
+ background-color: transparent;
60
+ color: inherit;
61
+ }
62
+
63
+ input::-moz-focus-inner {
64
+ border: 0;
65
+ padding: 0;
66
+ }
67
+
68
+ input, select, textarea {
69
+ -moz-appearance: none;
70
+ -webkit-appearance: none;
71
+ -ms-appearance: none;
72
+ appearance: none;
73
+ }
74
+
75
+ /* Basic */
76
+
77
+ html {
78
+ box-sizing: border-box;
79
+ }
80
+
81
+ *, *:before, *:after {
82
+ box-sizing: inherit;
83
+ }
84
+
85
+ body {
86
+ background: #fff;
87
+ }
88
+
89
+ body.is-preload *, body.is-preload *:before, body.is-preload *:after {
90
+ -moz-animation: none !important;
91
+ -webkit-animation: none !important;
92
+ -ms-animation: none !important;
93
+ animation: none !important;
94
+ -moz-transition: none !important;
95
+ -webkit-transition: none !important;
96
+ -ms-transition: none !important;
97
+ transition: none !important;
98
+ }
99
+
100
+ body, input, select, textarea {
101
+ color: #a2a2a2;
102
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
103
+ font-size: 16pt;
104
+ font-weight: 400;
105
+ line-height: 1.75em;
106
+ }
107
+
108
+ a {
109
+ -moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
110
+ -webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
111
+ -ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
112
+ transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
113
+ border-bottom: dotted 1px;
114
+ color: #49bf9d;
115
+ text-decoration: none;
116
+ }
117
+
118
+ a:hover {
119
+ border-bottom-color: transparent;
120
+ color: #49bf9d !important;
121
+ text-decoration: none;
122
+ }
123
+
124
+ strong, b {
125
+ color: #787878;
126
+ font-weight: 400;
127
+ }
128
+
129
+ em, i {
130
+ font-style: italic;
131
+ }
132
+
133
+ p {
134
+ margin: 0 0 2em 0;
135
+ }
136
+
137
+ h1, h2, h3, h4, h5, h6 {
138
+ color: #787878;
139
+ font-weight: 400;
140
+ line-height: 1em;
141
+ margin: 0 0 1em 0;
142
+ }
143
+
144
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
145
+ color: inherit;
146
+ text-decoration: none;
147
+ }
148
+
149
+ h1 {
150
+ font-size: 2em;
151
+ line-height: 1.5em;
152
+ }
153
+
154
+ h2 {
155
+ font-size: 1.5em;
156
+ line-height: 1.5em;
157
+ }
158
+
159
+ h3 {
160
+ font-size: 1.25em;
161
+ line-height: 1.5em;
162
+ }
163
+
164
+ h4 {
165
+ font-size: 1.1em;
166
+ line-height: 1.5em;
167
+ }
168
+
169
+ h5 {
170
+ font-size: 0.9em;
171
+ line-height: 1.5em;
172
+ }
173
+
174
+ h6 {
175
+ font-size: 0.7em;
176
+ line-height: 1.5em;
177
+ }
178
+
179
+ sub {
180
+ font-size: 0.8em;
181
+ position: relative;
182
+ top: 0.5em;
183
+ }
184
+
185
+ sup {
186
+ font-size: 0.8em;
187
+ position: relative;
188
+ top: -0.5em;
189
+ }
190
+
191
+ hr {
192
+ border: 0;
193
+ border-bottom: solid 2px #efefef;
194
+ margin: 2em 0;
195
+ }
196
+
197
+ hr.major {
198
+ margin: 3em 0;
199
+ }
200
+
201
+ blockquote {
202
+ border-left: solid 6px #efefef;
203
+ font-style: italic;
204
+ margin: 0 0 2em 0;
205
+ padding: 0.5em 0 0.5em 1.5em;
206
+ }
207
+
208
+ code {
209
+ background: #f7f7f7;
210
+ border-radius: 0.35em;
211
+ border: solid 2px #efefef;
212
+ font-family: "Courier New", monospace;
213
+ font-size: 0.9em;
214
+ margin: 0 0.25em;
215
+ padding: 0.25em 0.65em;
216
+ }
217
+
218
+ pre {
219
+ -webkit-overflow-scrolling: touch;
220
+ font-family: "Courier New", monospace;
221
+ font-size: 0.9em;
222
+ margin: 0 0 2em 0;
223
+ }
224
+
225
+ pre code {
226
+ display: block;
227
+ line-height: 1.75em;
228
+ padding: 1em 1.5em;
229
+ overflow-x: auto;
230
+ }
231
+
232
+ .align-left {
233
+ text-align: left;
234
+ }
235
+
236
+ .align-center {
237
+ text-align: center;
238
+ }
239
+
240
+ .align-right {
241
+ text-align: right;
242
+ }
243
+
244
+ /* Container */
245
+
246
+ .container {
247
+ margin: 0 auto;
248
+ max-width: calc(100% - 4em);
249
+ width: 100%;
250
+ }
251
+
252
+ .container.xsmall {
253
+ width: 25%;
254
+ }
255
+
256
+ .container.small {
257
+ width: 50%;
258
+ }
259
+
260
+ .container.medium {
261
+ width: 75%;
262
+ }
263
+
264
+ .container.large {
265
+ width: 125%;
266
+ }
267
+
268
+ .container.xlarge {
269
+ width: 150%;
270
+ }
271
+
272
+ .container.max {
273
+ width: 100%;
274
+ }
275
+
276
+ @media screen and (max-width: 980px) {
277
+
278
+ .container {
279
+ width: 100% !important;
280
+ max-width: 100% !important;
281
+ }
282
+
283
+ }
284
+
285
+ @media screen and (max-width: 480px) {
286
+
287
+ .container {
288
+ max-width: calc(100% - 3em);
289
+ }
290
+
291
+ }
292
+
293
+ /* Row */
294
+
295
+ .row {
296
+ display: flex;
297
+ flex-wrap: wrap;
298
+ box-sizing: border-box;
299
+ align-items: stretch;
300
+ }
301
+
302
+ .row > * {
303
+ box-sizing: border-box;
304
+ }
305
+
306
+ .row.gtr-uniform > * > :last-child {
307
+ margin-bottom: 0;
308
+ }
309
+
310
+ .row.aln-left {
311
+ justify-content: flex-start;
312
+ }
313
+
314
+ .row.aln-center {
315
+ justify-content: center;
316
+ }
317
+
318
+ .row.aln-right {
319
+ justify-content: flex-end;
320
+ }
321
+
322
+ .row.aln-top {
323
+ align-items: flex-start;
324
+ }
325
+
326
+ .row.aln-middle {
327
+ align-items: center;
328
+ }
329
+
330
+ .row.aln-bottom {
331
+ align-items: flex-end;
332
+ }
333
+
334
+ .row > .imp {
335
+ order: -1;
336
+ }
337
+
338
+ .row > .col-1 {
339
+ width: 8.33333%;
340
+ }
341
+
342
+ .row > .off-1 {
343
+ margin-left: 8.33333%;
344
+ }
345
+
346
+ .row > .col-2 {
347
+ width: 16.66667%;
348
+ }
349
+
350
+ .row > .off-2 {
351
+ margin-left: 16.66667%;
352
+ }
353
+
354
+ .row > .col-3 {
355
+ width: 25%;
356
+ }
357
+
358
+ .row > .off-3 {
359
+ margin-left: 25%;
360
+ }
361
+
362
+ .row > .col-4 {
363
+ width: 33.33333%;
364
+ }
365
+
366
+ .row > .off-4 {
367
+ margin-left: 33.33333%;
368
+ }
369
+
370
+ .row > .col-5 {
371
+ width: 41.66667%;
372
+ }
373
+
374
+ .row > .off-5 {
375
+ margin-left: 41.66667%;
376
+ }
377
+
378
+ .row > .col-6 {
379
+ width: 50%;
380
+ }
381
+
382
+ .row > .off-6 {
383
+ margin-left: 50%;
384
+ }
385
+
386
+ .row > .col-7 {
387
+ width: 58.33333%;
388
+ }
389
+
390
+ .row > .off-7 {
391
+ margin-left: 58.33333%;
392
+ }
393
+
394
+ .row > .col-8 {
395
+ width: 66.66667%;
396
+ }
397
+
398
+ .row > .off-8 {
399
+ margin-left: 66.66667%;
400
+ }
401
+
402
+ .row > .col-9 {
403
+ width: 75%;
404
+ }
405
+
406
+ .row > .off-9 {
407
+ margin-left: 75%;
408
+ }
409
+
410
+ .row > .col-10 {
411
+ width: 83.33333%;
412
+ }
413
+
414
+ .row > .off-10 {
415
+ margin-left: 83.33333%;
416
+ }
417
+
418
+ .row > .col-11 {
419
+ width: 91.66667%;
420
+ }
421
+
422
+ .row > .off-11 {
423
+ margin-left: 91.66667%;
424
+ }
425
+
426
+ .row > .col-12 {
427
+ width: 100%;
428
+ }
429
+
430
+ .row > .off-12 {
431
+ margin-left: 100%;
432
+ }
433
+
434
+ .row.gtr-0 {
435
+ margin-top: 0;
436
+ margin-left: 0em;
437
+ }
438
+
439
+ .row.gtr-0 > * {
440
+ padding: 0 0 0 0em;
441
+ }
442
+
443
+ .row.gtr-0.gtr-uniform {
444
+ margin-top: 0em;
445
+ }
446
+
447
+ .row.gtr-0.gtr-uniform > * {
448
+ padding-top: 0em;
449
+ }
450
+
451
+ .row.gtr-25 {
452
+ margin-top: 0;
453
+ margin-left: -0.625em;
454
+ }
455
+
456
+ .row.gtr-25 > * {
457
+ padding: 0 0 0 0.625em;
458
+ }
459
+
460
+ .row.gtr-25.gtr-uniform {
461
+ margin-top: -0.625em;
462
+ }
463
+
464
+ .row.gtr-25.gtr-uniform > * {
465
+ padding-top: 0.625em;
466
+ }
467
+
468
+ .row.gtr-50 {
469
+ margin-top: 0;
470
+ margin-left: -1.25em;
471
+ }
472
+
473
+ .row.gtr-50 > * {
474
+ padding: 0 0 0 1.25em;
475
+ }
476
+
477
+ .row.gtr-50.gtr-uniform {
478
+ margin-top: -1.25em;
479
+ }
480
+
481
+ .row.gtr-50.gtr-uniform > * {
482
+ padding-top: 1.25em;
483
+ }
484
+
485
+ .row {
486
+ margin-top: 0;
487
+ margin-left: -2.5em;
488
+ }
489
+
490
+ .row > * {
491
+ padding: 0 0 0 2.5em;
492
+ }
493
+
494
+ .row.gtr-uniform {
495
+ margin-top: -2.5em;
496
+ }
497
+
498
+ .row.gtr-uniform > * {
499
+ padding-top: 2.5em;
500
+ }
501
+
502
+ .row.gtr-150 {
503
+ margin-top: 0;
504
+ margin-left: -3.75em;
505
+ }
506
+
507
+ .row.gtr-150 > * {
508
+ padding: 0 0 0 3.75em;
509
+ }
510
+
511
+ .row.gtr-150.gtr-uniform {
512
+ margin-top: -3.75em;
513
+ }
514
+
515
+ .row.gtr-150.gtr-uniform > * {
516
+ padding-top: 3.75em;
517
+ }
518
+
519
+ .row.gtr-200 {
520
+ margin-top: 0;
521
+ margin-left: -5em;
522
+ }
523
+
524
+ .row.gtr-200 > * {
525
+ padding: 0 0 0 5em;
526
+ }
527
+
528
+ .row.gtr-200.gtr-uniform {
529
+ margin-top: -5em;
530
+ }
531
+
532
+ .row.gtr-200.gtr-uniform > * {
533
+ padding-top: 5em;
534
+ }
535
+
536
+ @media screen and (max-width: 1800px) {
537
+
538
+ .row {
539
+ display: flex;
540
+ flex-wrap: wrap;
541
+ box-sizing: border-box;
542
+ align-items: stretch;
543
+ }
544
+
545
+ .row > * {
546
+ box-sizing: border-box;
547
+ }
548
+
549
+ .row.gtr-uniform > * > :last-child {
550
+ margin-bottom: 0;
551
+ }
552
+
553
+ .row.aln-left {
554
+ justify-content: flex-start;
555
+ }
556
+
557
+ .row.aln-center {
558
+ justify-content: center;
559
+ }
560
+
561
+ .row.aln-right {
562
+ justify-content: flex-end;
563
+ }
564
+
565
+ .row.aln-top {
566
+ align-items: flex-start;
567
+ }
568
+
569
+ .row.aln-middle {
570
+ align-items: center;
571
+ }
572
+
573
+ .row.aln-bottom {
574
+ align-items: flex-end;
575
+ }
576
+
577
+ .row > .imp-xlarge {
578
+ order: -1;
579
+ }
580
+
581
+ .row > .col-1-xlarge {
582
+ width: 8.33333%;
583
+ }
584
+
585
+ .row > .off-1-xlarge {
586
+ margin-left: 8.33333%;
587
+ }
588
+
589
+ .row > .col-2-xlarge {
590
+ width: 16.66667%;
591
+ }
592
+
593
+ .row > .off-2-xlarge {
594
+ margin-left: 16.66667%;
595
+ }
596
+
597
+ .row > .col-3-xlarge {
598
+ width: 25%;
599
+ }
600
+
601
+ .row > .off-3-xlarge {
602
+ margin-left: 25%;
603
+ }
604
+
605
+ .row > .col-4-xlarge {
606
+ width: 33.33333%;
607
+ }
608
+
609
+ .row > .off-4-xlarge {
610
+ margin-left: 33.33333%;
611
+ }
612
+
613
+ .row > .col-5-xlarge {
614
+ width: 41.66667%;
615
+ }
616
+
617
+ .row > .off-5-xlarge {
618
+ margin-left: 41.66667%;
619
+ }
620
+
621
+ .row > .col-6-xlarge {
622
+ width: 50%;
623
+ }
624
+
625
+ .row > .off-6-xlarge {
626
+ margin-left: 50%;
627
+ }
628
+
629
+ .row > .col-7-xlarge {
630
+ width: 58.33333%;
631
+ }
632
+
633
+ .row > .off-7-xlarge {
634
+ margin-left: 58.33333%;
635
+ }
636
+
637
+ .row > .col-8-xlarge {
638
+ width: 66.66667%;
639
+ }
640
+
641
+ .row > .off-8-xlarge {
642
+ margin-left: 66.66667%;
643
+ }
644
+
645
+ .row > .col-9-xlarge {
646
+ width: 75%;
647
+ }
648
+
649
+ .row > .off-9-xlarge {
650
+ margin-left: 75%;
651
+ }
652
+
653
+ .row > .col-10-xlarge {
654
+ width: 83.33333%;
655
+ }
656
+
657
+ .row > .off-10-xlarge {
658
+ margin-left: 83.33333%;
659
+ }
660
+
661
+ .row > .col-11-xlarge {
662
+ width: 91.66667%;
663
+ }
664
+
665
+ .row > .off-11-xlarge {
666
+ margin-left: 91.66667%;
667
+ }
668
+
669
+ .row > .col-12-xlarge {
670
+ width: 100%;
671
+ }
672
+
673
+ .row > .off-12-xlarge {
674
+ margin-left: 100%;
675
+ }
676
+
677
+ .row.gtr-0 {
678
+ margin-top: 0;
679
+ margin-left: 0em;
680
+ }
681
+
682
+ .row.gtr-0 > * {
683
+ padding: 0 0 0 0em;
684
+ }
685
+
686
+ .row.gtr-0.gtr-uniform {
687
+ margin-top: 0em;
688
+ }
689
+
690
+ .row.gtr-0.gtr-uniform > * {
691
+ padding-top: 0em;
692
+ }
693
+
694
+ .row.gtr-25 {
695
+ margin-top: 0;
696
+ margin-left: -0.625em;
697
+ }
698
+
699
+ .row.gtr-25 > * {
700
+ padding: 0 0 0 0.625em;
701
+ }
702
+
703
+ .row.gtr-25.gtr-uniform {
704
+ margin-top: -0.625em;
705
+ }
706
+
707
+ .row.gtr-25.gtr-uniform > * {
708
+ padding-top: 0.625em;
709
+ }
710
+
711
+ .row.gtr-50 {
712
+ margin-top: 0;
713
+ margin-left: -1.25em;
714
+ }
715
+
716
+ .row.gtr-50 > * {
717
+ padding: 0 0 0 1.25em;
718
+ }
719
+
720
+ .row.gtr-50.gtr-uniform {
721
+ margin-top: -1.25em;
722
+ }
723
+
724
+ .row.gtr-50.gtr-uniform > * {
725
+ padding-top: 1.25em;
726
+ }
727
+
728
+ .row {
729
+ margin-top: 0;
730
+ margin-left: -2.5em;
731
+ }
732
+
733
+ .row > * {
734
+ padding: 0 0 0 2.5em;
735
+ }
736
+
737
+ .row.gtr-uniform {
738
+ margin-top: -2.5em;
739
+ }
740
+
741
+ .row.gtr-uniform > * {
742
+ padding-top: 2.5em;
743
+ }
744
+
745
+ .row.gtr-150 {
746
+ margin-top: 0;
747
+ margin-left: -3.75em;
748
+ }
749
+
750
+ .row.gtr-150 > * {
751
+ padding: 0 0 0 3.75em;
752
+ }
753
+
754
+ .row.gtr-150.gtr-uniform {
755
+ margin-top: -3.75em;
756
+ }
757
+
758
+ .row.gtr-150.gtr-uniform > * {
759
+ padding-top: 3.75em;
760
+ }
761
+
762
+ .row.gtr-200 {
763
+ margin-top: 0;
764
+ margin-left: -5em;
765
+ }
766
+
767
+ .row.gtr-200 > * {
768
+ padding: 0 0 0 5em;
769
+ }
770
+
771
+ .row.gtr-200.gtr-uniform {
772
+ margin-top: -5em;
773
+ }
774
+
775
+ .row.gtr-200.gtr-uniform > * {
776
+ padding-top: 5em;
777
+ }
778
+
779
+ }
780
+
781
+ @media screen and (max-width: 1280px) {
782
+
783
+ .row {
784
+ display: flex;
785
+ flex-wrap: wrap;
786
+ box-sizing: border-box;
787
+ align-items: stretch;
788
+ }
789
+
790
+ .row > * {
791
+ box-sizing: border-box;
792
+ }
793
+
794
+ .row.gtr-uniform > * > :last-child {
795
+ margin-bottom: 0;
796
+ }
797
+
798
+ .row.aln-left {
799
+ justify-content: flex-start;
800
+ }
801
+
802
+ .row.aln-center {
803
+ justify-content: center;
804
+ }
805
+
806
+ .row.aln-right {
807
+ justify-content: flex-end;
808
+ }
809
+
810
+ .row.aln-top {
811
+ align-items: flex-start;
812
+ }
813
+
814
+ .row.aln-middle {
815
+ align-items: center;
816
+ }
817
+
818
+ .row.aln-bottom {
819
+ align-items: flex-end;
820
+ }
821
+
822
+ .row > .imp-large {
823
+ order: -1;
824
+ }
825
+
826
+ .row > .col-1-large {
827
+ width: 8.33333%;
828
+ }
829
+
830
+ .row > .off-1-large {
831
+ margin-left: 8.33333%;
832
+ }
833
+
834
+ .row > .col-2-large {
835
+ width: 16.66667%;
836
+ }
837
+
838
+ .row > .off-2-large {
839
+ margin-left: 16.66667%;
840
+ }
841
+
842
+ .row > .col-3-large {
843
+ width: 25%;
844
+ }
845
+
846
+ .row > .off-3-large {
847
+ margin-left: 25%;
848
+ }
849
+
850
+ .row > .col-4-large {
851
+ width: 33.33333%;
852
+ }
853
+
854
+ .row > .off-4-large {
855
+ margin-left: 33.33333%;
856
+ }
857
+
858
+ .row > .col-5-large {
859
+ width: 41.66667%;
860
+ }
861
+
862
+ .row > .off-5-large {
863
+ margin-left: 41.66667%;
864
+ }
865
+
866
+ .row > .col-6-large {
867
+ width: 50%;
868
+ }
869
+
870
+ .row > .off-6-large {
871
+ margin-left: 50%;
872
+ }
873
+
874
+ .row > .col-7-large {
875
+ width: 58.33333%;
876
+ }
877
+
878
+ .row > .off-7-large {
879
+ margin-left: 58.33333%;
880
+ }
881
+
882
+ .row > .col-8-large {
883
+ width: 66.66667%;
884
+ }
885
+
886
+ .row > .off-8-large {
887
+ margin-left: 66.66667%;
888
+ }
889
+
890
+ .row > .col-9-large {
891
+ width: 75%;
892
+ }
893
+
894
+ .row > .off-9-large {
895
+ margin-left: 75%;
896
+ }
897
+
898
+ .row > .col-10-large {
899
+ width: 83.33333%;
900
+ }
901
+
902
+ .row > .off-10-large {
903
+ margin-left: 83.33333%;
904
+ }
905
+
906
+ .row > .col-11-large {
907
+ width: 91.66667%;
908
+ }
909
+
910
+ .row > .off-11-large {
911
+ margin-left: 91.66667%;
912
+ }
913
+
914
+ .row > .col-12-large {
915
+ width: 100%;
916
+ }
917
+
918
+ .row > .off-12-large {
919
+ margin-left: 100%;
920
+ }
921
+
922
+ .row.gtr-0 {
923
+ margin-top: 0;
924
+ margin-left: 0em;
925
+ }
926
+
927
+ .row.gtr-0 > * {
928
+ padding: 0 0 0 0em;
929
+ }
930
+
931
+ .row.gtr-0.gtr-uniform {
932
+ margin-top: 0em;
933
+ }
934
+
935
+ .row.gtr-0.gtr-uniform > * {
936
+ padding-top: 0em;
937
+ }
938
+
939
+ .row.gtr-25 {
940
+ margin-top: 0;
941
+ margin-left: -0.5em;
942
+ }
943
+
944
+ .row.gtr-25 > * {
945
+ padding: 0 0 0 0.5em;
946
+ }
947
+
948
+ .row.gtr-25.gtr-uniform {
949
+ margin-top: -0.5em;
950
+ }
951
+
952
+ .row.gtr-25.gtr-uniform > * {
953
+ padding-top: 0.5em;
954
+ }
955
+
956
+ .row.gtr-50 {
957
+ margin-top: 0;
958
+ margin-left: -1em;
959
+ }
960
+
961
+ .row.gtr-50 > * {
962
+ padding: 0 0 0 1em;
963
+ }
964
+
965
+ .row.gtr-50.gtr-uniform {
966
+ margin-top: -1em;
967
+ }
968
+
969
+ .row.gtr-50.gtr-uniform > * {
970
+ padding-top: 1em;
971
+ }
972
+
973
+ .row {
974
+ margin-top: 0;
975
+ margin-left: -2em;
976
+ }
977
+
978
+ .row > * {
979
+ padding: 0 0 0 2em;
980
+ }
981
+
982
+ .row.gtr-uniform {
983
+ margin-top: -2em;
984
+ }
985
+
986
+ .row.gtr-uniform > * {
987
+ padding-top: 2em;
988
+ }
989
+
990
+ .row.gtr-150 {
991
+ margin-top: 0;
992
+ margin-left: -3em;
993
+ }
994
+
995
+ .row.gtr-150 > * {
996
+ padding: 0 0 0 3em;
997
+ }
998
+
999
+ .row.gtr-150.gtr-uniform {
1000
+ margin-top: -3em;
1001
+ }
1002
+
1003
+ .row.gtr-150.gtr-uniform > * {
1004
+ padding-top: 3em;
1005
+ }
1006
+
1007
+ .row.gtr-200 {
1008
+ margin-top: 0;
1009
+ margin-left: -4em;
1010
+ }
1011
+
1012
+ .row.gtr-200 > * {
1013
+ padding: 0 0 0 4em;
1014
+ }
1015
+
1016
+ .row.gtr-200.gtr-uniform {
1017
+ margin-top: -4em;
1018
+ }
1019
+
1020
+ .row.gtr-200.gtr-uniform > * {
1021
+ padding-top: 4em;
1022
+ }
1023
+
1024
+ }
1025
+
1026
+ @media screen and (max-width: 980px) {
1027
+
1028
+ .row {
1029
+ display: flex;
1030
+ flex-wrap: wrap;
1031
+ box-sizing: border-box;
1032
+ align-items: stretch;
1033
+ }
1034
+
1035
+ .row > * {
1036
+ box-sizing: border-box;
1037
+ }
1038
+
1039
+ .row.gtr-uniform > * > :last-child {
1040
+ margin-bottom: 0;
1041
+ }
1042
+
1043
+ .row.aln-left {
1044
+ justify-content: flex-start;
1045
+ }
1046
+
1047
+ .row.aln-center {
1048
+ justify-content: center;
1049
+ }
1050
+
1051
+ .row.aln-right {
1052
+ justify-content: flex-end;
1053
+ }
1054
+
1055
+ .row.aln-top {
1056
+ align-items: flex-start;
1057
+ }
1058
+
1059
+ .row.aln-middle {
1060
+ align-items: center;
1061
+ }
1062
+
1063
+ .row.aln-bottom {
1064
+ align-items: flex-end;
1065
+ }
1066
+
1067
+ .row > .imp-medium {
1068
+ order: -1;
1069
+ }
1070
+
1071
+ .row > .col-1-medium {
1072
+ width: 8.33333%;
1073
+ }
1074
+
1075
+ .row > .off-1-medium {
1076
+ margin-left: 8.33333%;
1077
+ }
1078
+
1079
+ .row > .col-2-medium {
1080
+ width: 16.66667%;
1081
+ }
1082
+
1083
+ .row > .off-2-medium {
1084
+ margin-left: 16.66667%;
1085
+ }
1086
+
1087
+ .row > .col-3-medium {
1088
+ width: 25%;
1089
+ }
1090
+
1091
+ .row > .off-3-medium {
1092
+ margin-left: 25%;
1093
+ }
1094
+
1095
+ .row > .col-4-medium {
1096
+ width: 33.33333%;
1097
+ }
1098
+
1099
+ .row > .off-4-medium {
1100
+ margin-left: 33.33333%;
1101
+ }
1102
+
1103
+ .row > .col-5-medium {
1104
+ width: 41.66667%;
1105
+ }
1106
+
1107
+ .row > .off-5-medium {
1108
+ margin-left: 41.66667%;
1109
+ }
1110
+
1111
+ .row > .col-6-medium {
1112
+ width: 50%;
1113
+ }
1114
+
1115
+ .row > .off-6-medium {
1116
+ margin-left: 50%;
1117
+ }
1118
+
1119
+ .row > .col-7-medium {
1120
+ width: 58.33333%;
1121
+ }
1122
+
1123
+ .row > .off-7-medium {
1124
+ margin-left: 58.33333%;
1125
+ }
1126
+
1127
+ .row > .col-8-medium {
1128
+ width: 66.66667%;
1129
+ }
1130
+
1131
+ .row > .off-8-medium {
1132
+ margin-left: 66.66667%;
1133
+ }
1134
+
1135
+ .row > .col-9-medium {
1136
+ width: 75%;
1137
+ }
1138
+
1139
+ .row > .off-9-medium {
1140
+ margin-left: 75%;
1141
+ }
1142
+
1143
+ .row > .col-10-medium {
1144
+ width: 83.33333%;
1145
+ }
1146
+
1147
+ .row > .off-10-medium {
1148
+ margin-left: 83.33333%;
1149
+ }
1150
+
1151
+ .row > .col-11-medium {
1152
+ width: 91.66667%;
1153
+ }
1154
+
1155
+ .row > .off-11-medium {
1156
+ margin-left: 91.66667%;
1157
+ }
1158
+
1159
+ .row > .col-12-medium {
1160
+ width: 100%;
1161
+ }
1162
+
1163
+ .row > .off-12-medium {
1164
+ margin-left: 100%;
1165
+ }
1166
+
1167
+ .row.gtr-0 {
1168
+ margin-top: 0;
1169
+ margin-left: 0em;
1170
+ }
1171
+
1172
+ .row.gtr-0 > * {
1173
+ padding: 0 0 0 0em;
1174
+ }
1175
+
1176
+ .row.gtr-0.gtr-uniform {
1177
+ margin-top: 0em;
1178
+ }
1179
+
1180
+ .row.gtr-0.gtr-uniform > * {
1181
+ padding-top: 0em;
1182
+ }
1183
+
1184
+ .row.gtr-25 {
1185
+ margin-top: 0;
1186
+ margin-left: -0.5em;
1187
+ }
1188
+
1189
+ .row.gtr-25 > * {
1190
+ padding: 0 0 0 0.5em;
1191
+ }
1192
+
1193
+ .row.gtr-25.gtr-uniform {
1194
+ margin-top: -0.5em;
1195
+ }
1196
+
1197
+ .row.gtr-25.gtr-uniform > * {
1198
+ padding-top: 0.5em;
1199
+ }
1200
+
1201
+ .row.gtr-50 {
1202
+ margin-top: 0;
1203
+ margin-left: -1em;
1204
+ }
1205
+
1206
+ .row.gtr-50 > * {
1207
+ padding: 0 0 0 1em;
1208
+ }
1209
+
1210
+ .row.gtr-50.gtr-uniform {
1211
+ margin-top: -1em;
1212
+ }
1213
+
1214
+ .row.gtr-50.gtr-uniform > * {
1215
+ padding-top: 1em;
1216
+ }
1217
+
1218
+ .row {
1219
+ margin-top: 0;
1220
+ margin-left: -2em;
1221
+ }
1222
+
1223
+ .row > * {
1224
+ padding: 0 0 0 2em;
1225
+ }
1226
+
1227
+ .row.gtr-uniform {
1228
+ margin-top: -2em;
1229
+ }
1230
+
1231
+ .row.gtr-uniform > * {
1232
+ padding-top: 2em;
1233
+ }
1234
+
1235
+ .row.gtr-150 {
1236
+ margin-top: 0;
1237
+ margin-left: -3em;
1238
+ }
1239
+
1240
+ .row.gtr-150 > * {
1241
+ padding: 0 0 0 3em;
1242
+ }
1243
+
1244
+ .row.gtr-150.gtr-uniform {
1245
+ margin-top: -3em;
1246
+ }
1247
+
1248
+ .row.gtr-150.gtr-uniform > * {
1249
+ padding-top: 3em;
1250
+ }
1251
+
1252
+ .row.gtr-200 {
1253
+ margin-top: 0;
1254
+ margin-left: -4em;
1255
+ }
1256
+
1257
+ .row.gtr-200 > * {
1258
+ padding: 0 0 0 4em;
1259
+ }
1260
+
1261
+ .row.gtr-200.gtr-uniform {
1262
+ margin-top: -4em;
1263
+ }
1264
+
1265
+ .row.gtr-200.gtr-uniform > * {
1266
+ padding-top: 4em;
1267
+ }
1268
+
1269
+ }
1270
+
1271
+ @media screen and (max-width: 736px) {
1272
+
1273
+ .row {
1274
+ display: flex;
1275
+ flex-wrap: wrap;
1276
+ box-sizing: border-box;
1277
+ align-items: stretch;
1278
+ }
1279
+
1280
+ .row > * {
1281
+ box-sizing: border-box;
1282
+ }
1283
+
1284
+ .row.gtr-uniform > * > :last-child {
1285
+ margin-bottom: 0;
1286
+ }
1287
+
1288
+ .row.aln-left {
1289
+ justify-content: flex-start;
1290
+ }
1291
+
1292
+ .row.aln-center {
1293
+ justify-content: center;
1294
+ }
1295
+
1296
+ .row.aln-right {
1297
+ justify-content: flex-end;
1298
+ }
1299
+
1300
+ .row.aln-top {
1301
+ align-items: flex-start;
1302
+ }
1303
+
1304
+ .row.aln-middle {
1305
+ align-items: center;
1306
+ }
1307
+
1308
+ .row.aln-bottom {
1309
+ align-items: flex-end;
1310
+ }
1311
+
1312
+ .row > .imp-small {
1313
+ order: -1;
1314
+ }
1315
+
1316
+ .row > .col-1-small {
1317
+ width: 8.33333%;
1318
+ }
1319
+
1320
+ .row > .off-1-small {
1321
+ margin-left: 8.33333%;
1322
+ }
1323
+
1324
+ .row > .col-2-small {
1325
+ width: 16.66667%;
1326
+ }
1327
+
1328
+ .row > .off-2-small {
1329
+ margin-left: 16.66667%;
1330
+ }
1331
+
1332
+ .row > .col-3-small {
1333
+ width: 25%;
1334
+ }
1335
+
1336
+ .row > .off-3-small {
1337
+ margin-left: 25%;
1338
+ }
1339
+
1340
+ .row > .col-4-small {
1341
+ width: 33.33333%;
1342
+ }
1343
+
1344
+ .row > .off-4-small {
1345
+ margin-left: 33.33333%;
1346
+ }
1347
+
1348
+ .row > .col-5-small {
1349
+ width: 41.66667%;
1350
+ }
1351
+
1352
+ .row > .off-5-small {
1353
+ margin-left: 41.66667%;
1354
+ }
1355
+
1356
+ .row > .col-6-small {
1357
+ width: 50%;
1358
+ }
1359
+
1360
+ .row > .off-6-small {
1361
+ margin-left: 50%;
1362
+ }
1363
+
1364
+ .row > .col-7-small {
1365
+ width: 58.33333%;
1366
+ }
1367
+
1368
+ .row > .off-7-small {
1369
+ margin-left: 58.33333%;
1370
+ }
1371
+
1372
+ .row > .col-8-small {
1373
+ width: 66.66667%;
1374
+ }
1375
+
1376
+ .row > .off-8-small {
1377
+ margin-left: 66.66667%;
1378
+ }
1379
+
1380
+ .row > .col-9-small {
1381
+ width: 75%;
1382
+ }
1383
+
1384
+ .row > .off-9-small {
1385
+ margin-left: 75%;
1386
+ }
1387
+
1388
+ .row > .col-10-small {
1389
+ width: 83.33333%;
1390
+ }
1391
+
1392
+ .row > .off-10-small {
1393
+ margin-left: 83.33333%;
1394
+ }
1395
+
1396
+ .row > .col-11-small {
1397
+ width: 91.66667%;
1398
+ }
1399
+
1400
+ .row > .off-11-small {
1401
+ margin-left: 91.66667%;
1402
+ }
1403
+
1404
+ .row > .col-12-small {
1405
+ width: 100%;
1406
+ }
1407
+
1408
+ .row > .off-12-small {
1409
+ margin-left: 100%;
1410
+ }
1411
+
1412
+ .row.gtr-0 {
1413
+ margin-top: 0;
1414
+ margin-left: 0em;
1415
+ }
1416
+
1417
+ .row.gtr-0 > * {
1418
+ padding: 0 0 0 0em;
1419
+ }
1420
+
1421
+ .row.gtr-0.gtr-uniform {
1422
+ margin-top: 0em;
1423
+ }
1424
+
1425
+ .row.gtr-0.gtr-uniform > * {
1426
+ padding-top: 0em;
1427
+ }
1428
+
1429
+ .row.gtr-25 {
1430
+ margin-top: 0;
1431
+ margin-left: -0.375em;
1432
+ }
1433
+
1434
+ .row.gtr-25 > * {
1435
+ padding: 0 0 0 0.375em;
1436
+ }
1437
+
1438
+ .row.gtr-25.gtr-uniform {
1439
+ margin-top: -0.375em;
1440
+ }
1441
+
1442
+ .row.gtr-25.gtr-uniform > * {
1443
+ padding-top: 0.375em;
1444
+ }
1445
+
1446
+ .row.gtr-50 {
1447
+ margin-top: 0;
1448
+ margin-left: -0.75em;
1449
+ }
1450
+
1451
+ .row.gtr-50 > * {
1452
+ padding: 0 0 0 0.75em;
1453
+ }
1454
+
1455
+ .row.gtr-50.gtr-uniform {
1456
+ margin-top: -0.75em;
1457
+ }
1458
+
1459
+ .row.gtr-50.gtr-uniform > * {
1460
+ padding-top: 0.75em;
1461
+ }
1462
+
1463
+ .row {
1464
+ margin-top: 0;
1465
+ margin-left: -1.5em;
1466
+ }
1467
+
1468
+ .row > * {
1469
+ padding: 0 0 0 1.5em;
1470
+ }
1471
+
1472
+ .row.gtr-uniform {
1473
+ margin-top: -1.5em;
1474
+ }
1475
+
1476
+ .row.gtr-uniform > * {
1477
+ padding-top: 1.5em;
1478
+ }
1479
+
1480
+ .row.gtr-150 {
1481
+ margin-top: 0;
1482
+ margin-left: -2.25em;
1483
+ }
1484
+
1485
+ .row.gtr-150 > * {
1486
+ padding: 0 0 0 2.25em;
1487
+ }
1488
+
1489
+ .row.gtr-150.gtr-uniform {
1490
+ margin-top: -2.25em;
1491
+ }
1492
+
1493
+ .row.gtr-150.gtr-uniform > * {
1494
+ padding-top: 2.25em;
1495
+ }
1496
+
1497
+ .row.gtr-200 {
1498
+ margin-top: 0;
1499
+ margin-left: -3em;
1500
+ }
1501
+
1502
+ .row.gtr-200 > * {
1503
+ padding: 0 0 0 3em;
1504
+ }
1505
+
1506
+ .row.gtr-200.gtr-uniform {
1507
+ margin-top: -3em;
1508
+ }
1509
+
1510
+ .row.gtr-200.gtr-uniform > * {
1511
+ padding-top: 3em;
1512
+ }
1513
+
1514
+ }
1515
+
1516
+ @media screen and (max-width: 480px) {
1517
+
1518
+ .row {
1519
+ display: flex;
1520
+ flex-wrap: wrap;
1521
+ box-sizing: border-box;
1522
+ align-items: stretch;
1523
+ }
1524
+
1525
+ .row > * {
1526
+ box-sizing: border-box;
1527
+ }
1528
+
1529
+ .row.gtr-uniform > * > :last-child {
1530
+ margin-bottom: 0;
1531
+ }
1532
+
1533
+ .row.aln-left {
1534
+ justify-content: flex-start;
1535
+ }
1536
+
1537
+ .row.aln-center {
1538
+ justify-content: center;
1539
+ }
1540
+
1541
+ .row.aln-right {
1542
+ justify-content: flex-end;
1543
+ }
1544
+
1545
+ .row.aln-top {
1546
+ align-items: flex-start;
1547
+ }
1548
+
1549
+ .row.aln-middle {
1550
+ align-items: center;
1551
+ }
1552
+
1553
+ .row.aln-bottom {
1554
+ align-items: flex-end;
1555
+ }
1556
+
1557
+ .row > .imp-xsmall {
1558
+ order: -1;
1559
+ }
1560
+
1561
+ .row > .col-1-xsmall {
1562
+ width: 8.33333%;
1563
+ }
1564
+
1565
+ .row > .off-1-xsmall {
1566
+ margin-left: 8.33333%;
1567
+ }
1568
+
1569
+ .row > .col-2-xsmall {
1570
+ width: 16.66667%;
1571
+ }
1572
+
1573
+ .row > .off-2-xsmall {
1574
+ margin-left: 16.66667%;
1575
+ }
1576
+
1577
+ .row > .col-3-xsmall {
1578
+ width: 25%;
1579
+ }
1580
+
1581
+ .row > .off-3-xsmall {
1582
+ margin-left: 25%;
1583
+ }
1584
+
1585
+ .row > .col-4-xsmall {
1586
+ width: 33.33333%;
1587
+ }
1588
+
1589
+ .row > .off-4-xsmall {
1590
+ margin-left: 33.33333%;
1591
+ }
1592
+
1593
+ .row > .col-5-xsmall {
1594
+ width: 41.66667%;
1595
+ }
1596
+
1597
+ .row > .off-5-xsmall {
1598
+ margin-left: 41.66667%;
1599
+ }
1600
+
1601
+ .row > .col-6-xsmall {
1602
+ width: 50%;
1603
+ }
1604
+
1605
+ .row > .off-6-xsmall {
1606
+ margin-left: 50%;
1607
+ }
1608
+
1609
+ .row > .col-7-xsmall {
1610
+ width: 58.33333%;
1611
+ }
1612
+
1613
+ .row > .off-7-xsmall {
1614
+ margin-left: 58.33333%;
1615
+ }
1616
+
1617
+ .row > .col-8-xsmall {
1618
+ width: 66.66667%;
1619
+ }
1620
+
1621
+ .row > .off-8-xsmall {
1622
+ margin-left: 66.66667%;
1623
+ }
1624
+
1625
+ .row > .col-9-xsmall {
1626
+ width: 75%;
1627
+ }
1628
+
1629
+ .row > .off-9-xsmall {
1630
+ margin-left: 75%;
1631
+ }
1632
+
1633
+ .row > .col-10-xsmall {
1634
+ width: 83.33333%;
1635
+ }
1636
+
1637
+ .row > .off-10-xsmall {
1638
+ margin-left: 83.33333%;
1639
+ }
1640
+
1641
+ .row > .col-11-xsmall {
1642
+ width: 91.66667%;
1643
+ }
1644
+
1645
+ .row > .off-11-xsmall {
1646
+ margin-left: 91.66667%;
1647
+ }
1648
+
1649
+ .row > .col-12-xsmall {
1650
+ width: 100%;
1651
+ }
1652
+
1653
+ .row > .off-12-xsmall {
1654
+ margin-left: 100%;
1655
+ }
1656
+
1657
+ .row.gtr-0 {
1658
+ margin-top: 0;
1659
+ margin-left: 0em;
1660
+ }
1661
+
1662
+ .row.gtr-0 > * {
1663
+ padding: 0 0 0 0em;
1664
+ }
1665
+
1666
+ .row.gtr-0.gtr-uniform {
1667
+ margin-top: 0em;
1668
+ }
1669
+
1670
+ .row.gtr-0.gtr-uniform > * {
1671
+ padding-top: 0em;
1672
+ }
1673
+
1674
+ .row.gtr-25 {
1675
+ margin-top: 0;
1676
+ margin-left: -0.375em;
1677
+ }
1678
+
1679
+ .row.gtr-25 > * {
1680
+ padding: 0 0 0 0.375em;
1681
+ }
1682
+
1683
+ .row.gtr-25.gtr-uniform {
1684
+ margin-top: -0.375em;
1685
+ }
1686
+
1687
+ .row.gtr-25.gtr-uniform > * {
1688
+ padding-top: 0.375em;
1689
+ }
1690
+
1691
+ .row.gtr-50 {
1692
+ margin-top: 0;
1693
+ margin-left: -0.75em;
1694
+ }
1695
+
1696
+ .row.gtr-50 > * {
1697
+ padding: 0 0 0 0.75em;
1698
+ }
1699
+
1700
+ .row.gtr-50.gtr-uniform {
1701
+ margin-top: -0.75em;
1702
+ }
1703
+
1704
+ .row.gtr-50.gtr-uniform > * {
1705
+ padding-top: 0.75em;
1706
+ }
1707
+
1708
+ .row {
1709
+ margin-top: 0;
1710
+ margin-left: -1.5em;
1711
+ }
1712
+
1713
+ .row > * {
1714
+ padding: 0 0 0 1.5em;
1715
+ }
1716
+
1717
+ .row.gtr-uniform {
1718
+ margin-top: -1.5em;
1719
+ }
1720
+
1721
+ .row.gtr-uniform > * {
1722
+ padding-top: 1.5em;
1723
+ }
1724
+
1725
+ .row.gtr-150 {
1726
+ margin-top: 0;
1727
+ margin-left: -2.25em;
1728
+ }
1729
+
1730
+ .row.gtr-150 > * {
1731
+ padding: 0 0 0 2.25em;
1732
+ }
1733
+
1734
+ .row.gtr-150.gtr-uniform {
1735
+ margin-top: -2.25em;
1736
+ }
1737
+
1738
+ .row.gtr-150.gtr-uniform > * {
1739
+ padding-top: 2.25em;
1740
+ }
1741
+
1742
+ .row.gtr-200 {
1743
+ margin-top: 0;
1744
+ margin-left: -3em;
1745
+ }
1746
+
1747
+ .row.gtr-200 > * {
1748
+ padding: 0 0 0 3em;
1749
+ }
1750
+
1751
+ .row.gtr-200.gtr-uniform {
1752
+ margin-top: -3em;
1753
+ }
1754
+
1755
+ .row.gtr-200.gtr-uniform > * {
1756
+ padding-top: 3em;
1757
+ }
1758
+
1759
+ }
1760
+
1761
+ /* Section/Article */
1762
+
1763
+ section.special, article.special {
1764
+ text-align: center;
1765
+ }
1766
+
1767
+ header p {
1768
+ color: #b2b2b2;
1769
+ position: relative;
1770
+ margin: 0 0 1.5em 0;
1771
+ }
1772
+
1773
+ header h2 + p {
1774
+ font-size: 1.25em;
1775
+ margin-top: -1em;
1776
+ line-height: 1.5em;
1777
+ }
1778
+
1779
+ header h3 + p {
1780
+ font-size: 1.1em;
1781
+ margin-top: -0.8em;
1782
+ line-height: 1.5em;
1783
+ }
1784
+
1785
+ header h4 + p,
1786
+ header h5 + p,
1787
+ header h6 + p {
1788
+ font-size: 0.9em;
1789
+ margin-top: -0.6em;
1790
+ line-height: 1.5em;
1791
+ }
1792
+
1793
+ header.major h2 {
1794
+ font-size: 2em;
1795
+ }
1796
+
1797
+ /* Form */
1798
+
1799
+ form {
1800
+ margin: 0 0 2em 0;
1801
+ }
1802
+
1803
+ label {
1804
+ color: #787878;
1805
+ display: block;
1806
+ font-size: 0.9em;
1807
+ font-weight: 400;
1808
+ margin: 0 0 1em 0;
1809
+ }
1810
+
1811
+ input[type="text"],
1812
+ input[type="password"],
1813
+ input[type="email"],
1814
+ select,
1815
+ textarea {
1816
+ -moz-appearance: none;
1817
+ -webkit-appearance: none;
1818
+ -ms-appearance: none;
1819
+ appearance: none;
1820
+ background: #f7f7f7;
1821
+ border-radius: 0.35em;
1822
+ border: solid 2px transparent;
1823
+ color: inherit;
1824
+ display: block;
1825
+ outline: 0;
1826
+ padding: 0 0.75em;
1827
+ text-decoration: none;
1828
+ width: 100%;
1829
+ }
1830
+
1831
+ input[type="text"]:invalid,
1832
+ input[type="password"]:invalid,
1833
+ input[type="email"]:invalid,
1834
+ select:invalid,
1835
+ textarea:invalid {
1836
+ box-shadow: none;
1837
+ }
1838
+
1839
+ input[type="text"]:focus,
1840
+ input[type="password"]:focus,
1841
+ input[type="email"]:focus,
1842
+ select:focus,
1843
+ textarea:focus {
1844
+ border-color: #49bf9d;
1845
+ }
1846
+
1847
+ select {
1848
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%23dfdfdf' /%3E%3C/svg%3E");
1849
+ background-size: 1.25rem;
1850
+ background-repeat: no-repeat;
1851
+ background-position: calc(100% - 1rem) center;
1852
+ height: 2.75em;
1853
+ padding-right: 2.75em;
1854
+ text-overflow: ellipsis;
1855
+ }
1856
+
1857
+ select option {
1858
+ color: #787878;
1859
+ background: #fff;
1860
+ }
1861
+
1862
+ select:focus::-ms-value {
1863
+ background-color: transparent;
1864
+ }
1865
+
1866
+ select::-ms-expand {
1867
+ display: none;
1868
+ }
1869
+
1870
+ input[type="text"],
1871
+ input[type="password"],
1872
+ input[type="email"],
1873
+ select {
1874
+ height: 2.75em;
1875
+ }
1876
+
1877
+ textarea {
1878
+ padding: 0.75em;
1879
+ }
1880
+
1881
+ input[type="checkbox"],
1882
+ input[type="radio"] {
1883
+ -moz-appearance: none;
1884
+ -webkit-appearance: none;
1885
+ -ms-appearance: none;
1886
+ appearance: none;
1887
+ display: block;
1888
+ float: left;
1889
+ margin-right: -2em;
1890
+ opacity: 0;
1891
+ width: 1em;
1892
+ z-index: -1;
1893
+ }
1894
+
1895
+ input[type="checkbox"] + label,
1896
+ input[type="radio"] + label {
1897
+ text-decoration: none;
1898
+ color: #a2a2a2;
1899
+ cursor: pointer;
1900
+ display: inline-block;
1901
+ font-size: 1em;
1902
+ font-weight: 400;
1903
+ padding-left: 2.4em;
1904
+ padding-right: 0.75em;
1905
+ position: relative;
1906
+ }
1907
+
1908
+ input[type="checkbox"] + label:before,
1909
+ input[type="radio"] + label:before {
1910
+ -moz-osx-font-smoothing: grayscale;
1911
+ -webkit-font-smoothing: antialiased;
1912
+ display: inline-block;
1913
+ font-style: normal;
1914
+ font-variant: normal;
1915
+ text-rendering: auto;
1916
+ line-height: 1;
1917
+ text-transform: none !important;
1918
+ font-family: 'Font Awesome 5 Free';
1919
+ font-weight: 900;
1920
+ }
1921
+
1922
+ input[type="checkbox"] + label:before,
1923
+ input[type="radio"] + label:before {
1924
+ background: #f7f7f7;
1925
+ border-radius: 0.35em;
1926
+ border: solid 2px transparent;
1927
+ content: '';
1928
+ display: inline-block;
1929
+ font-size: 0.8em;
1930
+ height: 2.0625em;
1931
+ left: 0;
1932
+ line-height: 1.85625em;
1933
+ position: absolute;
1934
+ text-align: center;
1935
+ top: 0;
1936
+ width: 2.0625em;
1937
+ }
1938
+
1939
+ input[type="checkbox"]:checked + label:before,
1940
+ input[type="radio"]:checked + label:before {
1941
+ background: #787878;
1942
+ border-color: #787878;
1943
+ color: #fff;
1944
+ content: '\f00c';
1945
+ }
1946
+
1947
+ input[type="checkbox"]:focus + label:before,
1948
+ input[type="radio"]:focus + label:before {
1949
+ border-color: #49bf9d;
1950
+ }
1951
+
1952
+ input[type="checkbox"] + label:before {
1953
+ border-radius: 0.35em;
1954
+ }
1955
+
1956
+ input[type="radio"] + label:before {
1957
+ border-radius: 100%;
1958
+ }
1959
+
1960
+ ::-webkit-input-placeholder {
1961
+ color: #b2b2b2 !important;
1962
+ opacity: 1.0;
1963
+ }
1964
+
1965
+ :-moz-placeholder {
1966
+ color: #b2b2b2 !important;
1967
+ opacity: 1.0;
1968
+ }
1969
+
1970
+ ::-moz-placeholder {
1971
+ color: #b2b2b2 !important;
1972
+ opacity: 1.0;
1973
+ }
1974
+
1975
+ :-ms-input-placeholder {
1976
+ color: #b2b2b2 !important;
1977
+ opacity: 1.0;
1978
+ }
1979
+
1980
+ /* Box */
1981
+
1982
+ .box {
1983
+ border-radius: 0.35em;
1984
+ border: solid 2px #efefef;
1985
+ margin-bottom: 2em;
1986
+ padding: 1.5em;
1987
+ }
1988
+
1989
+ .box > :last-child,
1990
+ .box > :last-child > :last-child,
1991
+ .box > :last-child > :last-child > :last-child {
1992
+ margin-bottom: 0;
1993
+ }
1994
+
1995
+ .box.alt {
1996
+ border: 0;
1997
+ border-radius: 0;
1998
+ padding: 0;
1999
+ }
2000
+
2001
+ /* Icon */
2002
+
2003
+ .icon {
2004
+ text-decoration: none;
2005
+ border-bottom: none;
2006
+ position: relative;
2007
+ }
2008
+
2009
+ .icon:before {
2010
+ -moz-osx-font-smoothing: grayscale;
2011
+ -webkit-font-smoothing: antialiased;
2012
+ display: inline-block;
2013
+ font-style: normal;
2014
+ font-variant: normal;
2015
+ text-rendering: auto;
2016
+ line-height: 1;
2017
+ text-transform: none !important;
2018
+ font-family: 'Font Awesome 5 Free';
2019
+ font-weight: 400;
2020
+ }
2021
+
2022
+ .icon > .label {
2023
+ display: none;
2024
+ }
2025
+
2026
+ .icon:before {
2027
+ line-height: inherit;
2028
+ }
2029
+
2030
+ .icon.solid:before {
2031
+ font-weight: 900;
2032
+ }
2033
+
2034
+ .icon.brands:before {
2035
+ font-family: 'Font Awesome 5 Brands';
2036
+ }
2037
+
2038
+ /* Image */
2039
+
2040
+ .image {
2041
+ border-radius: 0.35em;
2042
+ border: 0;
2043
+ display: inline-block;
2044
+ position: relative;
2045
+ }
2046
+
2047
+ .image:before {
2048
+ -moz-transition: opacity 0.2s ease-in-out;
2049
+ -webkit-transition: opacity 0.2s ease-in-out;
2050
+ -ms-transition: opacity 0.2s ease-in-out;
2051
+ transition: opacity 0.2s ease-in-out;
2052
+ background: url("images/overlay.png");
2053
+ border-radius: 0.35em;
2054
+ content: '';
2055
+ display: block;
2056
+ height: 100%;
2057
+ left: 0;
2058
+ opacity: 0.5;
2059
+ position: absolute;
2060
+ top: 0;
2061
+ width: 100%;
2062
+ }
2063
+
2064
+ .image.thumb {
2065
+ text-align: center;
2066
+ }
2067
+
2068
+ .image.thumb:after {
2069
+ -moz-transition: opacity 0.2s ease-in-out;
2070
+ -webkit-transition: opacity 0.2s ease-in-out;
2071
+ -ms-transition: opacity 0.2s ease-in-out;
2072
+ transition: opacity 0.2s ease-in-out;
2073
+ border-radius: 0.35em;
2074
+ border: solid 3px rgba(255, 255, 255, 0.5);
2075
+ color: #fff;
2076
+ content: 'View';
2077
+ display: inline-block;
2078
+ font-size: 0.8em;
2079
+ font-weight: 400;
2080
+ left: 50%;
2081
+ line-height: 2.25em;
2082
+ margin: -1.25em 0 0 -3em;
2083
+ opacity: 0;
2084
+ padding: 0 1.5em;
2085
+ position: absolute;
2086
+ text-align: center;
2087
+ text-decoration: none;
2088
+ top: 50%;
2089
+ white-space: nowrap;
2090
+ }
2091
+
2092
+ .image.thumb:hover:after {
2093
+ opacity: 1.0;
2094
+ }
2095
+
2096
+ .image.thumb:hover:before {
2097
+ background: url("images/overlay.png"), url("images/overlay.png");
2098
+ opacity: 1.0;
2099
+ }
2100
+
2101
+ .image img {
2102
+ border-radius: 0.35em;
2103
+ display: block;
2104
+ }
2105
+
2106
+ .image.left {
2107
+ float: left;
2108
+ margin: 0 1.5em 1em 0;
2109
+ top: 0.25em;
2110
+ }
2111
+
2112
+ .image.right {
2113
+ float: right;
2114
+ margin: 0 0 1em 1.5em;
2115
+ top: 0.25em;
2116
+ }
2117
+
2118
+ .image.left, .image.right {
2119
+ max-width: 40%;
2120
+ }
2121
+
2122
+ .image.left img, .image.right img {
2123
+ width: 100%;
2124
+ }
2125
+
2126
+ .image.fit {
2127
+ display: block;
2128
+ margin: 0 0 2em 0;
2129
+ width: 100%;
2130
+ }
2131
+
2132
+ .image.fit img {
2133
+ width: 100%;
2134
+ }
2135
+
2136
+ .image.avatar {
2137
+ border-radius: 100%;
2138
+ }
2139
+
2140
+ .image.avatar:before {
2141
+ display: none;
2142
+ }
2143
+
2144
+ .image.avatar img {
2145
+ border-radius: 100%;
2146
+ width: 100%;
2147
+ }
2148
+
2149
+ /* List */
2150
+
2151
+ ol {
2152
+ list-style: decimal;
2153
+ margin: 0 0 2em 0;
2154
+ padding-left: 1.25em;
2155
+ }
2156
+
2157
+ ol li {
2158
+ padding-left: 0.25em;
2159
+ }
2160
+
2161
+ ul {
2162
+ list-style: disc;
2163
+ margin: 0 0 2em 0;
2164
+ padding-left: 1em;
2165
+ }
2166
+
2167
+ ul li {
2168
+ padding-left: 0.5em;
2169
+ }
2170
+
2171
+ ul.alt {
2172
+ list-style: none;
2173
+ padding-left: 0;
2174
+ }
2175
+
2176
+ ul.alt li {
2177
+ border-top: solid 2px #efefef;
2178
+ padding: 0.5em 0;
2179
+ }
2180
+
2181
+ ul.alt li:first-child {
2182
+ border-top: 0;
2183
+ padding-top: 0;
2184
+ }
2185
+
2186
+ dl {
2187
+ margin: 0 0 2em 0;
2188
+ }
2189
+
2190
+ /* Icons */
2191
+
2192
+ ul.icons {
2193
+ cursor: default;
2194
+ list-style: none;
2195
+ padding-left: 0;
2196
+ }
2197
+
2198
+ ul.icons li {
2199
+ display: inline-block;
2200
+ padding: 0 1em 0 0;
2201
+ }
2202
+
2203
+ ul.icons li:last-child {
2204
+ padding-right: 0;
2205
+ }
2206
+
2207
+ ul.icons li .icon:before {
2208
+ font-size: 1.5em;
2209
+ }
2210
+
2211
+ /* Labeled Icons */
2212
+
2213
+ ul.labeled-icons {
2214
+ list-style: none;
2215
+ padding: 0;
2216
+ }
2217
+
2218
+ ul.labeled-icons li {
2219
+ line-height: 1.75em;
2220
+ margin: 1.5em 0 0 0;
2221
+ padding-left: 2.25em;
2222
+ position: relative;
2223
+ }
2224
+
2225
+ ul.labeled-icons li:first-child {
2226
+ margin-top: 0;
2227
+ }
2228
+
2229
+ ul.labeled-icons li a {
2230
+ color: inherit;
2231
+ }
2232
+
2233
+ ul.labeled-icons li h3 {
2234
+ color: #b2b2b2;
2235
+ left: 0;
2236
+ position: absolute;
2237
+ text-align: center;
2238
+ top: 0;
2239
+ width: 1em;
2240
+ }
2241
+
2242
+ /* Actions */
2243
+
2244
+ ul.actions {
2245
+ display: -moz-flex;
2246
+ display: -webkit-flex;
2247
+ display: -ms-flex;
2248
+ display: flex;
2249
+ cursor: default;
2250
+ list-style: none;
2251
+ margin-left: -1em;
2252
+ padding-left: 0;
2253
+ }
2254
+
2255
+ ul.actions li {
2256
+ padding: 0 0 0 1em;
2257
+ vertical-align: middle;
2258
+ }
2259
+
2260
+ ul.actions.special {
2261
+ -moz-justify-content: center;
2262
+ -webkit-justify-content: center;
2263
+ -ms-justify-content: center;
2264
+ justify-content: center;
2265
+ width: 100%;
2266
+ margin-left: 0;
2267
+ }
2268
+
2269
+ ul.actions.special li:first-child {
2270
+ padding-left: 0;
2271
+ }
2272
+
2273
+ ul.actions.stacked {
2274
+ -moz-flex-direction: column;
2275
+ -webkit-flex-direction: column;
2276
+ -ms-flex-direction: column;
2277
+ flex-direction: column;
2278
+ margin-left: 0;
2279
+ }
2280
+
2281
+ ul.actions.stacked li {
2282
+ padding: 1.3em 0 0 0;
2283
+ }
2284
+
2285
+ ul.actions.stacked li:first-child {
2286
+ padding-top: 0;
2287
+ }
2288
+
2289
+ ul.actions.fit {
2290
+ width: calc(100% + 1em);
2291
+ }
2292
+
2293
+ ul.actions.fit li {
2294
+ -moz-flex-grow: 1;
2295
+ -webkit-flex-grow: 1;
2296
+ -ms-flex-grow: 1;
2297
+ flex-grow: 1;
2298
+ -moz-flex-shrink: 1;
2299
+ -webkit-flex-shrink: 1;
2300
+ -ms-flex-shrink: 1;
2301
+ flex-shrink: 1;
2302
+ width: 100%;
2303
+ }
2304
+
2305
+ ul.actions.fit li > * {
2306
+ width: 100%;
2307
+ }
2308
+
2309
+ ul.actions.fit.stacked {
2310
+ width: 100%;
2311
+ }
2312
+
2313
+ @media screen and (max-width: 480px) {
2314
+
2315
+ ul.actions:not(.fixed) {
2316
+ -moz-flex-direction: column;
2317
+ -webkit-flex-direction: column;
2318
+ -ms-flex-direction: column;
2319
+ flex-direction: column;
2320
+ margin-left: 0;
2321
+ width: 100% !important;
2322
+ }
2323
+
2324
+ ul.actions:not(.fixed) li {
2325
+ -moz-flex-grow: 1;
2326
+ -webkit-flex-grow: 1;
2327
+ -ms-flex-grow: 1;
2328
+ flex-grow: 1;
2329
+ -moz-flex-shrink: 1;
2330
+ -webkit-flex-shrink: 1;
2331
+ -ms-flex-shrink: 1;
2332
+ flex-shrink: 1;
2333
+ padding: 1em 0 0 0;
2334
+ text-align: center;
2335
+ width: 100%;
2336
+ }
2337
+
2338
+ ul.actions:not(.fixed) li > * {
2339
+ width: 100%;
2340
+ }
2341
+
2342
+ ul.actions:not(.fixed) li:first-child {
2343
+ padding-top: 0;
2344
+ }
2345
+
2346
+ ul.actions:not(.fixed) li input[type="submit"],
2347
+ ul.actions:not(.fixed) li input[type="reset"],
2348
+ ul.actions:not(.fixed) li input[type="button"],
2349
+ ul.actions:not(.fixed) li button,
2350
+ ul.actions:not(.fixed) li .button {
2351
+ width: 100%;
2352
+ }
2353
+
2354
+ ul.actions:not(.fixed) li input[type="submit"].icon:before,
2355
+ ul.actions:not(.fixed) li input[type="reset"].icon:before,
2356
+ ul.actions:not(.fixed) li input[type="button"].icon:before,
2357
+ ul.actions:not(.fixed) li button.icon:before,
2358
+ ul.actions:not(.fixed) li .button.icon:before {
2359
+ margin-left: -0.5em;
2360
+ }
2361
+
2362
+ }
2363
+
2364
+ /* Table */
2365
+
2366
+ .table-wrapper {
2367
+ -webkit-overflow-scrolling: touch;
2368
+ overflow-x: auto;
2369
+ }
2370
+
2371
+ table {
2372
+ margin: 0 0 2em 0;
2373
+ width: 100%;
2374
+ }
2375
+
2376
+ table tbody tr {
2377
+ border: solid 1px #efefef;
2378
+ border-left: 0;
2379
+ border-right: 0;
2380
+ }
2381
+
2382
+ table tbody tr:nth-child(2n + 1) {
2383
+ background-color: #f7f7f7;
2384
+ }
2385
+
2386
+ table td {
2387
+ padding: 0.75em 0.75em;
2388
+ }
2389
+
2390
+ table th {
2391
+ color: #787878;
2392
+ font-size: 0.9em;
2393
+ font-weight: 400;
2394
+ padding: 0 0.75em 0.75em 0.75em;
2395
+ text-align: left;
2396
+ }
2397
+
2398
+ table thead {
2399
+ border-bottom: solid 2px #efefef;
2400
+ }
2401
+
2402
+ table tfoot {
2403
+ border-top: solid 2px #efefef;
2404
+ }
2405
+
2406
+ table.alt {
2407
+ border-collapse: separate;
2408
+ }
2409
+
2410
+ table.alt tbody tr td {
2411
+ border: solid 2px #efefef;
2412
+ border-left-width: 0;
2413
+ border-top-width: 0;
2414
+ }
2415
+
2416
+ table.alt tbody tr td:first-child {
2417
+ border-left-width: 2px;
2418
+ }
2419
+
2420
+ table.alt tbody tr:first-child td {
2421
+ border-top-width: 2px;
2422
+ }
2423
+
2424
+ table.alt thead {
2425
+ border-bottom: 0;
2426
+ }
2427
+
2428
+ table.alt tfoot {
2429
+ border-top: 0;
2430
+ }
2431
+
2432
+ /* Button */
2433
+
2434
+ input[type="submit"],
2435
+ input[type="reset"],
2436
+ input[type="button"],
2437
+ .button {
2438
+ -moz-appearance: none;
2439
+ -webkit-appearance: none;
2440
+ -ms-appearance: none;
2441
+ appearance: none;
2442
+ -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
2443
+ -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
2444
+ -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
2445
+ transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
2446
+ background-color: transparent;
2447
+ border-radius: 0.35em;
2448
+ border: solid 3px #efefef;
2449
+ color: #787878 !important;
2450
+ cursor: pointer;
2451
+ display: inline-block;
2452
+ font-weight: 400;
2453
+ height: 3.15em;
2454
+ height: calc(2.75em + 6px);
2455
+ line-height: 2.75em;
2456
+ min-width: 10em;
2457
+ padding: 0 1.5em;
2458
+ text-align: center;
2459
+ text-decoration: none;
2460
+ white-space: nowrap;
2461
+ }
2462
+
2463
+ input[type="submit"]:hover,
2464
+ input[type="reset"]:hover,
2465
+ input[type="button"]:hover,
2466
+ .button:hover {
2467
+ border-color: #49bf9d;
2468
+ color: #49bf9d !important;
2469
+ }
2470
+
2471
+ input[type="submit"]:active,
2472
+ input[type="reset"]:active,
2473
+ input[type="button"]:active,
2474
+ .button:active {
2475
+ background-color: rgba(73, 191, 157, 0.1);
2476
+ border-color: #49bf9d;
2477
+ color: #49bf9d !important;
2478
+ }
2479
+
2480
+ input[type="submit"].icon,
2481
+ input[type="reset"].icon,
2482
+ input[type="button"].icon,
2483
+ .button.icon {
2484
+ padding-left: 1.35em;
2485
+ }
2486
+
2487
+ input[type="submit"].icon:before,
2488
+ input[type="reset"].icon:before,
2489
+ input[type="button"].icon:before,
2490
+ .button.icon:before {
2491
+ margin-right: 0.5em;
2492
+ }
2493
+
2494
+ input[type="submit"].fit,
2495
+ input[type="reset"].fit,
2496
+ input[type="button"].fit,
2497
+ .button.fit {
2498
+ min-width: 0;
2499
+ width: 100%;
2500
+ }
2501
+
2502
+ input[type="submit"].small,
2503
+ input[type="reset"].small,
2504
+ input[type="button"].small,
2505
+ .button.small {
2506
+ font-size: 0.8em;
2507
+ }
2508
+
2509
+ input[type="submit"].large,
2510
+ input[type="reset"].large,
2511
+ input[type="button"].large,
2512
+ .button.large {
2513
+ font-size: 1.35em;
2514
+ }
2515
+
2516
+ input[type="submit"].primary,
2517
+ input[type="reset"].primary,
2518
+ input[type="button"].primary,
2519
+ .button.primary {
2520
+ background-color: #49bf9d;
2521
+ border-color: #49bf9d;
2522
+ color: #ffffff !important;
2523
+ }
2524
+
2525
+ input[type="submit"].primary:hover,
2526
+ input[type="reset"].primary:hover,
2527
+ input[type="button"].primary:hover,
2528
+ .button.primary:hover {
2529
+ background-color: #5cc6a7;
2530
+ border-color: #5cc6a7;
2531
+ }
2532
+
2533
+ input[type="submit"].primary:active,
2534
+ input[type="reset"].primary:active,
2535
+ input[type="button"].primary:active,
2536
+ .button.primary:active {
2537
+ background-color: #3eb08f;
2538
+ border-color: #3eb08f;
2539
+ }
2540
+
2541
+ input[type="submit"].disabled, input[type="submit"]:disabled,
2542
+ input[type="reset"].disabled,
2543
+ input[type="reset"]:disabled,
2544
+ input[type="button"].disabled,
2545
+ input[type="button"]:disabled,
2546
+ .button.disabled,
2547
+ .button:disabled {
2548
+ background-color: #e7e7e7 !important;
2549
+ border-color: #e7e7e7 !important;
2550
+ color: #b2b2b2 !important;
2551
+ cursor: default;
2552
+ }
2553
+
2554
+ /* Work Item */
2555
+
2556
+ .work-item {
2557
+ margin: 0 0 2em 0;
2558
+ }
2559
+
2560
+ .work-item .image {
2561
+ margin: 0 0 1.5em 0;
2562
+ }
2563
+
2564
+ .work-item h3 {
2565
+ font-size: 1em;
2566
+ margin: 0 0 0.5em 0;
2567
+ }
2568
+
2569
+ .work-item p {
2570
+ font-size: 0.8em;
2571
+ line-height: 1.5em;
2572
+ margin: 0;
2573
+ }
2574
+
2575
+ /* Header */
2576
+
2577
+ #header {
2578
+ display: -moz-flex;
2579
+ display: -webkit-flex;
2580
+ display: -ms-flex;
2581
+ display: flex;
2582
+ -moz-flex-direction: column;
2583
+ -webkit-flex-direction: column;
2584
+ -ms-flex-direction: column;
2585
+ flex-direction: column;
2586
+ -moz-align-items: -moz-flex-end;
2587
+ -webkit-align-items: -webkit-flex-end;
2588
+ -ms-align-items: -ms-flex-end;
2589
+ align-items: flex-end;
2590
+ -moz-justify-content: space-between;
2591
+ -webkit-justify-content: space-between;
2592
+ -ms-justify-content: space-between;
2593
+ justify-content: space-between;
2594
+ background-color: #1f1815;
2595
+ background-attachment: scroll, scroll;
2596
+ background-image: url("images/overlay.png"), url("../../images/bg.jpg");
2597
+ background-position: top left, top left;
2598
+ background-repeat: repeat, no-repeat;
2599
+ background-size: auto, 150%;
2600
+ color: rgba(255, 255, 255, 0.5);
2601
+ height: 100%;
2602
+ left: 0;
2603
+ padding: 8em 4em;
2604
+ position: fixed;
2605
+ text-align: right;
2606
+ top: 0;
2607
+ width: 35%;
2608
+ }
2609
+
2610
+ #header > * {
2611
+ -moz-flex-shrink: 0;
2612
+ -webkit-flex-shrink: 0;
2613
+ -ms-flex-shrink: 0;
2614
+ flex-shrink: 0;
2615
+ width: 100%;
2616
+ }
2617
+
2618
+ #header > .inner {
2619
+ -moz-flex-grow: 1;
2620
+ -webkit-flex-grow: 1;
2621
+ -ms-flex-grow: 1;
2622
+ flex-grow: 1;
2623
+ margin: 0 0 2em 0;
2624
+ }
2625
+
2626
+ #header strong, #header b {
2627
+ color: #ffffff;
2628
+ }
2629
+
2630
+ #header h2, #header h3, #header h4, #header h5, #header h6 {
2631
+ color: #ffffff;
2632
+ }
2633
+
2634
+ #header h1 {
2635
+ color: rgba(255, 255, 255, 0.5);
2636
+ font-size: 1.35em;
2637
+ line-height: 1.75em;
2638
+ margin: 0;
2639
+ }
2640
+
2641
+ #header .image.avatar {
2642
+ margin: 0 0 1em 0;
2643
+ width: 6.25em;
2644
+ }
2645
+
2646
+ /* Footer */
2647
+
2648
+ #footer .icons {
2649
+ margin: 1em 0 0 0;
2650
+ }
2651
+
2652
+ #footer .icons a {
2653
+ color: rgba(255, 255, 255, 0.4);
2654
+ }
2655
+
2656
+ #footer .copyright {
2657
+ color: rgba(255, 255, 255, 0.4);
2658
+ font-size: 0.8em;
2659
+ list-style: none;
2660
+ margin: 1em 0 0 0;
2661
+ padding: 0;
2662
+ }
2663
+
2664
+ #footer .copyright li {
2665
+ border-left: solid 1px rgba(255, 255, 255, 0.25);
2666
+ display: inline-block;
2667
+ line-height: 1em;
2668
+ margin-left: 0.75em;
2669
+ padding-left: 0.75em;
2670
+ }
2671
+
2672
+ #footer .copyright li:first-child {
2673
+ border-left: 0;
2674
+ margin-left: 0;
2675
+ padding-left: 0;
2676
+ }
2677
+
2678
+ #footer .copyright li a {
2679
+ color: inherit;
2680
+ }
2681
+
2682
+ /* Main */
2683
+
2684
+ #main {
2685
+ margin-left: 35%;
2686
+ max-width: 54em;
2687
+ padding: 8em 4em 4em 4em;
2688
+ width: calc(100% - 35%);
2689
+ }
2690
+
2691
+ #main > section {
2692
+ border-top: solid 2px #efefef;
2693
+ margin: 4em 0 0 0;
2694
+ padding: 4em 0 0 0;
2695
+ }
2696
+
2697
+ #main > section:first-child {
2698
+ border-top: 0;
2699
+ margin-top: 0;
2700
+ padding-top: 0;
2701
+ }
2702
+
2703
+ /* Poptrox */
2704
+
2705
+ @-moz-keyframes spin {
2706
+ 0% {
2707
+ -moz-transform: rotate(0deg);
2708
+ -webkit-transform: rotate(0deg);
2709
+ -ms-transform: rotate(0deg);
2710
+ transform: rotate(0deg);
2711
+ }
2712
+
2713
+ 100% {
2714
+ -moz-transform: rotate(360deg);
2715
+ -webkit-transform: rotate(360deg);
2716
+ -ms-transform: rotate(360deg);
2717
+ transform: rotate(360deg);
2718
+ }
2719
+ }
2720
+
2721
+ @-webkit-keyframes spin {
2722
+ 0% {
2723
+ -moz-transform: rotate(0deg);
2724
+ -webkit-transform: rotate(0deg);
2725
+ -ms-transform: rotate(0deg);
2726
+ transform: rotate(0deg);
2727
+ }
2728
+
2729
+ 100% {
2730
+ -moz-transform: rotate(360deg);
2731
+ -webkit-transform: rotate(360deg);
2732
+ -ms-transform: rotate(360deg);
2733
+ transform: rotate(360deg);
2734
+ }
2735
+ }
2736
+
2737
+ @-ms-keyframes spin {
2738
+ 0% {
2739
+ -moz-transform: rotate(0deg);
2740
+ -webkit-transform: rotate(0deg);
2741
+ -ms-transform: rotate(0deg);
2742
+ transform: rotate(0deg);
2743
+ }
2744
+
2745
+ 100% {
2746
+ -moz-transform: rotate(360deg);
2747
+ -webkit-transform: rotate(360deg);
2748
+ -ms-transform: rotate(360deg);
2749
+ transform: rotate(360deg);
2750
+ }
2751
+ }
2752
+
2753
+ @keyframes spin {
2754
+ 0% {
2755
+ -moz-transform: rotate(0deg);
2756
+ -webkit-transform: rotate(0deg);
2757
+ -ms-transform: rotate(0deg);
2758
+ transform: rotate(0deg);
2759
+ }
2760
+
2761
+ 100% {
2762
+ -moz-transform: rotate(360deg);
2763
+ -webkit-transform: rotate(360deg);
2764
+ -ms-transform: rotate(360deg);
2765
+ transform: rotate(360deg);
2766
+ }
2767
+ }
2768
+
2769
+ .poptrox-popup {
2770
+ -moz-box-sizing: content-box;
2771
+ -webkit-box-sizing: content-box;
2772
+ -ms-box-sizing: content-box;
2773
+ box-sizing: content-box;
2774
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
2775
+ background: #fff;
2776
+ border-radius: 0.35em;
2777
+ box-shadow: 0 0.1em 0.15em 0 rgba(0, 0, 0, 0.15);
2778
+ overflow: hidden;
2779
+ padding-bottom: 3em;
2780
+ }
2781
+
2782
+ .poptrox-popup .loader {
2783
+ text-decoration: none;
2784
+ -moz-animation: spin 1s linear infinite;
2785
+ -webkit-animation: spin 1s linear infinite;
2786
+ -ms-animation: spin 1s linear infinite;
2787
+ animation: spin 1s linear infinite;
2788
+ font-size: 1.5em;
2789
+ height: 1em;
2790
+ left: 50%;
2791
+ line-height: 1em;
2792
+ margin: -0.5em 0 0 -0.5em;
2793
+ position: absolute;
2794
+ top: 50%;
2795
+ width: 1em;
2796
+ }
2797
+
2798
+ .poptrox-popup .loader:before {
2799
+ -moz-osx-font-smoothing: grayscale;
2800
+ -webkit-font-smoothing: antialiased;
2801
+ display: inline-block;
2802
+ font-style: normal;
2803
+ font-variant: normal;
2804
+ text-rendering: auto;
2805
+ line-height: 1;
2806
+ text-transform: none !important;
2807
+ font-family: 'Font Awesome 5 Free';
2808
+ font-weight: 900;
2809
+ }
2810
+
2811
+ .poptrox-popup .loader:before {
2812
+ content: '\f1ce';
2813
+ }
2814
+
2815
+ .poptrox-popup .caption {
2816
+ background: #fff;
2817
+ bottom: 0;
2818
+ cursor: default;
2819
+ font-size: 0.9em;
2820
+ height: 3em;
2821
+ left: 0;
2822
+ line-height: 2.8em;
2823
+ position: absolute;
2824
+ text-align: center;
2825
+ width: 100%;
2826
+ z-index: 1;
2827
+ }
2828
+
2829
+ .poptrox-popup .nav-next,
2830
+ .poptrox-popup .nav-previous {
2831
+ text-decoration: none;
2832
+ -moz-transition: opacity 0.2s ease-in-out;
2833
+ -webkit-transition: opacity 0.2s ease-in-out;
2834
+ -ms-transition: opacity 0.2s ease-in-out;
2835
+ transition: opacity 0.2s ease-in-out;
2836
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
2837
+ background: rgba(0, 0, 0, 0.01);
2838
+ cursor: pointer;
2839
+ height: 100%;
2840
+ opacity: 0;
2841
+ position: absolute;
2842
+ top: 0;
2843
+ width: 50%;
2844
+ }
2845
+
2846
+ .poptrox-popup .nav-next:before,
2847
+ .poptrox-popup .nav-previous:before {
2848
+ -moz-osx-font-smoothing: grayscale;
2849
+ -webkit-font-smoothing: antialiased;
2850
+ display: inline-block;
2851
+ font-style: normal;
2852
+ font-variant: normal;
2853
+ text-rendering: auto;
2854
+ line-height: 1;
2855
+ text-transform: none !important;
2856
+ font-family: 'Font Awesome 5 Free';
2857
+ font-weight: 900;
2858
+ }
2859
+
2860
+ .poptrox-popup .nav-next:before,
2861
+ .poptrox-popup .nav-previous:before {
2862
+ color: #fff;
2863
+ font-size: 2.5em;
2864
+ height: 1em;
2865
+ line-height: 1em;
2866
+ margin-top: -0.75em;
2867
+ position: absolute;
2868
+ text-align: center;
2869
+ top: 50%;
2870
+ width: 1.5em;
2871
+ }
2872
+
2873
+ .poptrox-popup .nav-next {
2874
+ right: 0;
2875
+ }
2876
+
2877
+ .poptrox-popup .nav-next:before {
2878
+ content: '\f105';
2879
+ right: 0;
2880
+ }
2881
+
2882
+ .poptrox-popup .nav-previous {
2883
+ left: 0;
2884
+ }
2885
+
2886
+ .poptrox-popup .nav-previous:before {
2887
+ content: '\f104';
2888
+ left: 0;
2889
+ }
2890
+
2891
+ .poptrox-popup .closer {
2892
+ text-decoration: none;
2893
+ -moz-transition: opacity 0.2s ease-in-out;
2894
+ -webkit-transition: opacity 0.2s ease-in-out;
2895
+ -ms-transition: opacity 0.2s ease-in-out;
2896
+ transition: opacity 0.2s ease-in-out;
2897
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
2898
+ color: #fff;
2899
+ height: 4em;
2900
+ line-height: 4em;
2901
+ opacity: 0;
2902
+ position: absolute;
2903
+ right: 0;
2904
+ text-align: center;
2905
+ top: 0;
2906
+ width: 4em;
2907
+ z-index: 2;
2908
+ }
2909
+
2910
+ .poptrox-popup .closer:before {
2911
+ -moz-osx-font-smoothing: grayscale;
2912
+ -webkit-font-smoothing: antialiased;
2913
+ display: inline-block;
2914
+ font-style: normal;
2915
+ font-variant: normal;
2916
+ text-rendering: auto;
2917
+ line-height: 1;
2918
+ text-transform: none !important;
2919
+ font-family: 'Font Awesome 5 Free';
2920
+ font-weight: 900;
2921
+ }
2922
+
2923
+ .poptrox-popup .closer:before {
2924
+ -moz-box-sizing: content-box;
2925
+ -webkit-box-sizing: content-box;
2926
+ -ms-box-sizing: content-box;
2927
+ box-sizing: content-box;
2928
+ border-radius: 100%;
2929
+ border: solid 3px rgba(255, 255, 255, 0.5);
2930
+ content: '\f00d';
2931
+ display: block;
2932
+ font-size: 1em;
2933
+ height: 1.75em;
2934
+ left: 50%;
2935
+ line-height: 1.75em;
2936
+ margin: -0.875em 0 0 -0.875em;
2937
+ position: absolute;
2938
+ top: 50%;
2939
+ width: 1.75em;
2940
+ }
2941
+
2942
+ .poptrox-popup:hover .nav-next,
2943
+ .poptrox-popup:hover .nav-previous {
2944
+ opacity: 0.5;
2945
+ }
2946
+
2947
+ .poptrox-popup:hover .nav-next:hover,
2948
+ .poptrox-popup:hover .nav-previous:hover {
2949
+ opacity: 1.0;
2950
+ }
2951
+
2952
+ .poptrox-popup:hover .closer {
2953
+ opacity: 0.5;
2954
+ }
2955
+
2956
+ .poptrox-popup:hover .closer:hover {
2957
+ opacity: 1.0;
2958
+ }
2959
+
2960
+ /* Touch */
2961
+
2962
+ body.is-touch .image.thumb:before {
2963
+ opacity: 0.5 !important;
2964
+ }
2965
+
2966
+ body.is-touch .image.thumb:after {
2967
+ display: none !important;
2968
+ }
2969
+
2970
+ body.is-touch #header {
2971
+ background-attachment: scroll;
2972
+ background-size: auto, cover;
2973
+ }
2974
+
2975
+ body.is-touch .poptrox-popup .nav-next,
2976
+ body.is-touch .poptrox-popup .nav-previous,
2977
+ body.is-touch .poptrox-popup .closer {
2978
+ opacity: 1.0 !important;
2979
+ }
2980
+
2981
+ /* XLarge */
2982
+
2983
+ @media screen and (max-width: 1800px) {
2984
+
2985
+ /* Basic */
2986
+
2987
+ body, input, select, textarea {
2988
+ font-size: 12pt;
2989
+ }
2990
+
2991
+ }
2992
+
2993
+ /* Large */
2994
+
2995
+ @media screen and (max-width: 1280px) {
2996
+
2997
+ /* Header */
2998
+
2999
+ #header {
3000
+ padding: 6em 3em 3em 3em;
3001
+ width: 30%;
3002
+ }
3003
+
3004
+ #header h1 {
3005
+ font-size: 1.25em;
3006
+ }
3007
+
3008
+ #header h1 br {
3009
+ display: none;
3010
+ }
3011
+
3012
+ #header > .inner {
3013
+ margin-bottom: 0;
3014
+ }
3015
+
3016
+ /* Footer */
3017
+
3018
+ #footer .copyright li {
3019
+ border-left-width: 0;
3020
+ display: block;
3021
+ line-height: 2.25em;
3022
+ margin-left: 0;
3023
+ padding-left: 0;
3024
+ }
3025
+
3026
+ /* Main */
3027
+
3028
+ #main {
3029
+ margin-left: 30%;
3030
+ max-width: none;
3031
+ padding: 6em 3em 3em 3em;
3032
+ width: calc(100% - 30%);
3033
+ }
3034
+
3035
+ }
3036
+
3037
+ /* Medium */
3038
+
3039
+ @media screen and (max-width: 980px) {
3040
+
3041
+ /* Basic */
3042
+
3043
+ h1 br, h2 br, h3 br, h4 br, h5 br, h6 br {
3044
+ display: none;
3045
+ }
3046
+
3047
+ /* List */
3048
+
3049
+ ul.icons li .icon {
3050
+ font-size: 1.25em;
3051
+ }
3052
+
3053
+ /* Header */
3054
+
3055
+ #header {
3056
+ background-attachment: scroll;
3057
+ background-position: top left, center center;
3058
+ background-size: auto, cover;
3059
+ left: auto;
3060
+ padding: 6em 4em;
3061
+ position: relative;
3062
+ text-align: center;
3063
+ top: auto;
3064
+ width: 100%;
3065
+ display: block;
3066
+ }
3067
+
3068
+ #header h1 {
3069
+ font-size: 1.75em;
3070
+ }
3071
+
3072
+ #header h1 br {
3073
+ display: inline;
3074
+ }
3075
+
3076
+ /* Footer */
3077
+
3078
+ #footer {
3079
+ background-attachment: scroll;
3080
+ background-color: #1f1815;
3081
+ background-image: url("images/overlay.png"), url("../../images/bg.jpg");
3082
+ background-position: top left, bottom center;
3083
+ background-repeat: repeat, no-repeat;
3084
+ background-size: auto, cover;
3085
+ bottom: auto;
3086
+ left: auto;
3087
+ padding: 4em 4em 6em 4em;
3088
+ position: relative;
3089
+ text-align: center;
3090
+ width: 100%;
3091
+ }
3092
+
3093
+ #footer .icons {
3094
+ margin: 0 0 1em 0;
3095
+ }
3096
+
3097
+ #footer .copyright {
3098
+ margin: 0 0 1em 0;
3099
+ }
3100
+
3101
+ #footer .copyright li {
3102
+ border-left-width: 1px;
3103
+ display: inline-block;
3104
+ line-height: 1em;
3105
+ margin-left: 0.75em;
3106
+ padding-left: 0.75em;
3107
+ }
3108
+
3109
+ /* Main */
3110
+
3111
+ #main {
3112
+ margin: 0;
3113
+ padding: 6em 4em;
3114
+ width: 100%;
3115
+ }
3116
+
3117
+ }
3118
+
3119
+ /* Small */
3120
+
3121
+ @media screen and (max-width: 736px) {
3122
+
3123
+ /* Basic */
3124
+
3125
+ h1 {
3126
+ font-size: 1.5em;
3127
+ }
3128
+
3129
+ h2 {
3130
+ font-size: 1.2em;
3131
+ }
3132
+
3133
+ h3 {
3134
+ font-size: 1em;
3135
+ }
3136
+
3137
+ /* Section/Article */
3138
+
3139
+ section.special, article.special {
3140
+ text-align: center;
3141
+ }
3142
+
3143
+ header.major h2 {
3144
+ font-size: 1.35em;
3145
+ }
3146
+
3147
+ /* List */
3148
+
3149
+ ul.labeled-icons li {
3150
+ padding-left: 2em;
3151
+ }
3152
+
3153
+ ul.labeled-icons li h3 {
3154
+ line-height: 1.75em;
3155
+ }
3156
+
3157
+ /* Header */
3158
+
3159
+ #header {
3160
+ padding: 2.25em 1.5em;
3161
+ }
3162
+
3163
+ #header h1 {
3164
+ font-size: 1.35em;
3165
+ }
3166
+
3167
+ /* Footer */
3168
+
3169
+ #footer {
3170
+ padding: 2.25em 1.5em;
3171
+ }
3172
+
3173
+ /* Main */
3174
+
3175
+ #main {
3176
+ padding: 2.25em 1.5em 0.25em 1.5em;
3177
+ }
3178
+
3179
+ #main > section {
3180
+ margin: 2.25em 0 0 0;
3181
+ padding: 2.25em 0 0 0;
3182
+ }
3183
+
3184
+ /* Poptrox */
3185
+
3186
+ .poptrox-popup {
3187
+ border-radius: 0;
3188
+ }
3189
+
3190
+ .poptrox-popup .nav-next:before,
3191
+ .poptrox-popup .nav-previous:before {
3192
+ margin-top: -1em;
3193
+ }
3194
+
3195
+ }
3196
+
3197
+ /* XSmall */
3198
+
3199
+ @media screen and (max-width: 480px) {
3200
+
3201
+ /* Header */
3202
+
3203
+ #header {
3204
+ padding: 4.5em 1.5em;
3205
+ }
3206
+
3207
+ #header h1 br {
3208
+ display: none;
3209
+ }
3210
+
3211
+ /* Footer */
3212
+
3213
+ #footer .copyright li {
3214
+ border-left-width: 0;
3215
+ display: block;
3216
+ line-height: 2.25em;
3217
+ margin-left: 0;
3218
+ padding-left: 0;
3219
+ }
3220
+
3221
+ }