diff --git a/css/base.css b/css/base.css new file mode 100644 index 0000000..8ccb45b --- /dev/null +++ b/css/base.css @@ -0,0 +1,946 @@ +/* =================================================================== + * + * Sublime v1.0 Base Stylesheet + * 06-10-2018 + * ------------------------------------------------------------------ + * + * TOC: + * # imports + * # normalize + * # basic/base setup styles + * ## Media + * ## Typography resets + * ## links + * ## inputs + * # grid + * ## medium size devices + * ## tablets + * ## mobile devices + * ## small mobile devices + * # block grids + * ## medium size devices + * ## tablets + * ## mobile devices + * # MISC + * + * =================================================================== */ + + +/* =================================================================== + * # imports + * + * ------------------------------------------------------------------- */ +@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Nunito+Sans:300,400,400i,600,600i,700,700i"); +@import url("micons/micons.css"); +@import url("font-awesome/css/fontawesome-all.css"); + + +/* =================================================================== + * # normalize + * normalize.css v5.0.0 | MIT License | + * github.com/necolas/normalize.css + * + * ------------------------------------------------------------------- */ +html { + font-family: sans-serif; + line-height: 1.15; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; +} + +body { + margin: 0; +} + +article, +aside, +footer, +header, +nav, +section { + display: block; +} + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +figcaption, +figure, +main { + display: block; +} + +figure { + margin: 1em 40px; +} + +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} + +pre { + font-family: monospace, monospace; + font-size: 1em; +} + +a { + background-color: transparent; + -webkit-text-decoration-skip: objects; +} + +a:active, +a:hover { + outline-width: 0; +} + +abbr[title] { + border-bottom: none; + text-decoration: underline; + text-decoration: underline dotted; +} + +b, +strong { + font-weight: inherit; +} + +b, +strong { + font-weight: bolder; +} + +code, +kbd, +samp { + font-family: monospace, monospace; + font-size: 1em; +} + +dfn { + font-style: italic; +} + +mark { + background-color: #ff0; + color: #000; +} + +small { + font-size: 80%; +} + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +audio, +video { + display: inline-block; +} + +audio:not([controls]) { + display: none; + height: 0; +} + +img { + border-style: none; +} + +svg:not(:root) { + overflow: hidden; +} + +button, +input, +optgroup, +select, +textarea { + font-family: sans-serif; + font-size: 100%; + line-height: 1.15; + margin: 0; +} + +button, +input { + overflow: visible; +} + +button, +select { + text-transform: none; +} + +button, +html [type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +legend { + box-sizing: border-box; + color: inherit; + display: table; + max-width: 100%; + padding: 0; + white-space: normal; +} + +progress { + display: inline-block; + vertical-align: baseline; +} + +textarea { + overflow: auto; +} + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; + padding: 0; +} + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +[type="search"] { + -webkit-appearance: textfield; + outline-offset: -2px; +} + +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-file-upload-button { + -webkit-appearance: button; + font: inherit; +} + +details, +menu { + display: block; +} + +summary { + display: list-item; +} + +canvas { + display: inline-block; +} + +template { + display: none; +} + +[hidden] { + display: none; +} + + +/* =================================================================== + * # basic/base setup styles + * + * ------------------------------------------------------------------- */ +html { + font-size: 62.5%; + box-sizing: border-box; +} + +*, +*::before, +*::after { + box-sizing: inherit; +} + +body { + font-weight: normal; + line-height: 1; + word-wrap: break-word; + text-rendering: optimizeLegibility; + -webkit-overflow-scrolling: touch; + -webkit-text-size-adjust: none; +} + +body, +input, +button { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; +} + +/* ------------------------------------------------------------------- + * ## Media + * ------------------------------------------------------------------- */ +img, +video { + max-width: 100%; + height: auto; +} + +/* ------------------------------------------------------------------- + * ## Typography resets + * ------------------------------------------------------------------- */ +div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td { + margin: 0; + padding: 0; +} + +h1, h2, h3, h4, h5, h6 { + -webkit-font-smoothing: auto; + -webkit-font-smoothing: antialiased; + -webkit-font-variant-ligatures: common-ligatures; + -moz-font-variant-ligatures: common-ligatures; + font-variant-ligatures: common-ligatures; + text-rendering: optimizeLegibility; +} + +em, +i { + font-style: italic; + line-height: inherit; +} + +strong, +b { + font-weight: bold; + line-height: inherit; +} + +small { + font-size: 60%; + line-height: inherit; +} + +ol, +ul { + list-style: none; +} + +li { + display: block; +} + +/* ------------------------------------------------------------------- + * ## links + * ------------------------------------------------------------------- */ +a { + text-decoration: none; + line-height: inherit; +} + +a img { + border: none; +} + +/* ------------------------------------------------------------------- + * ## inputs + * ------------------------------------------------------------------- */ +fieldset { + margin: 0; + padding: 0; +} + +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea { + -webkit-appearance: none; + -moz-appearance: none; + -ms-appearance: none; + -o-appearance: none; + appearance: none; +} + + +/* =================================================================== + * # grid + * + * ------------------------------------------------------------------- */ +.row { + width: 89%; + max-width: 1200px; + margin: 0 auto; +} + +.row:after { + content: ""; + display: table; + clear: both; +} + +.row .row { + width: auto; + max-width: none; + margin-left: -20px; + margin-right: -20px; +} + +/* column blocks + * -------------------------------------- */ +[class*="col-"] { + float: left; + padding: 0 20px; +} + +[class*="col-"] + [class*="col-"].end { + float: right; +} + +.collapse > [class*="col-"], +[class*="col-"].collapse { + padding: 0; +} + +/* column width classes + * -------------------------------------- */ +.col-one { + width: 8.33333%; +} + +.col-two, +.col-1-6 { + width: 16.66667%; +} + +.col-three, +.col-1-4 { + width: 25%; +} + +.col-four, +.col-1-3 { + width: 33.33333%; +} + +.col-five { + width: 41.66667%; +} + +.col-six, +.col-1-2 { + width: 50%; +} + +.col-seven { + width: 58.33333%; +} + +.col-eight, +.col-2-3 { + width: 66.66667%; +} + +.col-nine, +.col-3-4 { + width: 75%; +} + +.col-ten, +.col-5-6 { + width: 83.33333%; +} + +.col-eleven { + width: 91.66667%; +} + +.col-twelve, +.col-full { + width: 100%; +} + +/* ------------------------------------------------------------------- + * ## medium size devices + * ------------------------------------------------------------------- */ +@media only screen and (max-width:1200px) { + .row .row { + margin-left: -15px; + margin-right: -15px; + } + + [class*="col-"] { + padding: 0 15px; + } + + .md-two, + .md-1-6 { + width: 16.66667%; + } + + .md-one { + width: 8.33333%; + } + + .md-three, + .md-1-4 { + width: 25%; + } + + .md-four, + .md-1-3 { + width: 33.33333%; + } + + .md-five { + width: 41.66667%; + } + + .md-six, + .md-1-2 { + width: 50%; + } + + .md-seven { + width: 58.33333%; + } + + .md-eight, + .md-2-3 { + width: 66.66667%; + } + + .md-nine, + .md-3-4 { + width: 75%; + } + + .md-ten, + .md-5-6 { + width: 83.33333%; + } + + .md-eleven { + width: 91.66667%; + } + + .md-twelve, + .md-full { + width: 100%; + } + +} + +/* ------------------------------------------------------------------- + * ## tablets + * ------------------------------------------------------------------- */ +@media only screen and (max-width:800px) { + .row { + width: 90%; + } + + .tab-1-4 { + width: 25%; + } + + .tab-1-3 { + width: 33.33333%; + } + + .tab-1-2 { + width: 50%; + } + + .tab-2-3 { + width: 66.66667%; + } + + .tab-3-4 { + width: 75%; + } + + .tab-full { + width: 100%; + } + + .hide-on-tablet { + display: none; + } + +} + +/* ------------------------------------------------------------------- + * ## mobile devices + * ------------------------------------------------------------------- */ +@media only screen and (max-width:600px) { + .row { + width: auto; + padding-left: 25px; + padding-right: 25px; + } + + .row .row { + margin-left: -10px; + margin-right: -10px; + padding-left: 0; + padding-right: 0; + } + + [class*="col-"] { + padding: 0 10px; + } + + .mob-1-4 { + width: 25%; + } + + .mob-1-3 { + width: 33.33333%; + } + + .mob-1-2 { + width: 50%; + } + + .mob-2-3 { + width: 66.66667%; + } + + .mob-3-4 { + width: 75%; + } + + .mob-full { + width: 100%; + } + + .hide-on-mobile { + display: none; + } + +} + +/* ------------------------------------------------------------------- + * ## small mobile devices + * ------------------------------------------------------------------- */ + +/* stack columns on small mobile devices + * ------------------------------------------------------------------- */ +@media only screen and (max-width:400px) { + .row .row { + margin-left: 0; + margin-right: 0; + } + + [class*="col-"]:not(.col-block) { + width: 100% !important; + float: none !important; + clear: both !important; + margin-left: 0; + margin-right: 0; + padding: 0; + } + + [class*="col-"] + [class*="col-"].end { + float: none; + } + + .stack .col-block { + width: 100% !important; + float: none !important; + clear: both !important; + margin-left: 0; + margin-right: 0; + } + +} + + +/* =================================================================== + * # block grids + * ------------------------------------------------------------------- */ + +/* Equally-sized columns define at row level + * ------------------------------------------------------------------- */ +[class*="block-"]:after { + content: ""; + display: table; + clear: both; +} + +.block-1-6 .col-block { + width: 16.66667%; +} + +.block-1-5 .col-block { + width: 20%; +} + +.block-1-4 .col-block { + width: 25%; +} + +.block-1-3 .col-block { + width: 33.33333%; +} + +.block-1-2 .col-block { + width: 50%; +} + +/** + * Clearing for block grid columns. Allow columns with + * different heights to align properly. + */ +.block-1-6 .col-block:nth-child(6n+1), +.block-1-5 .col-block:nth-child(5n+1), +.block-1-4 .col-block:nth-child(4n+1), +.block-1-3 .col-block:nth-child(3n+1), +.block-1-2 .col-block:nth-child(2n+1) { + clear: both; +} + +/* ------------------------------------------------------------------- + * ## medium size devices + * ------------------------------------------------------------------- */ +@media only screen and (max-width:1200px) { + .block-m-1-6 .col-block { + width: 16.66667%; + } + + .block-m-1-5 .col-block { + width: 20%; + } + + .block-m-1-4 .col-block { + width: 25%; + } + + .block-m-1-3 .col-block { + width: 33.33333%; + } + + .block-m-1-2 .col-block { + width: 50%; + } + + .block-m-full .col-block { + width: 100%; + clear: both; + } + + [class*="block-m-"] .col-block:nth-child(n) { + clear: none; + } + + .block-m-1-6 .col-block:nth-child(6n+1), + .block-m-1-5 .col-block:nth-child(5n+1), + .block-m-1-4 .col-block:nth-child(4n+1), + .block-m-1-3 .col-block:nth-child(3n+1), + .block-m-1-2 .col-block:nth-child(2n+1) { + clear: both; + } + +} + +/* ------------------------------------------------------------------- + * ## tablets + * ------------------------------------------------------------------- */ +@media only screen and (max-width:800px) { + .block-tab-1-6 .col-block { + width: 16.66667%; + } + + .block-tab-1-5 .col-block { + width: 20%; + } + + .block-tab-1-4 .col-block { + width: 25%; + } + + .block-tab-1-3 .col-block { + width: 33.33333%; + } + + .block-tab-1-2 .col-block { + width: 50%; + } + + .block-tab-full .col-block { + width: 100%; + clear: both; + } + + [class*="block-tab-"] .col-block:nth-child(n) { + clear: none; + } + + .block-tab-1-6 .col-block:nth-child(6n+1), + .block-tab-1-5 .col-block:nth-child(5n+1), + .block-tab-1-4 .col-block:nth-child(4n+1), + .block-tab-1-3 .col-block:nth-child(3n+1), + .block-tab-1-2 .col-block:nth-child(2n+1) { + clear: both; + } + +} + +/* ------------------------------------------------------------------- + * ## mobile devices + * ------------------------------------------------------------------- */ +@media only screen and (max-width:600px) { + .block-mob-1-6 .col-block { + width: 16.66667%; + } + + .block-mob-1-5 .col-block { + width: 20%; + } + + .block-mob-1-4 .col-block { + width: 25%; + } + + .block-mob-1-3 .col-block { + width: 33.33333%; + } + + .block-mob-1-2 .col-block { + width: 50%; + } + + .block-mob-full .col-block { + width: 100%; + clear: both; + } + + [class*="block-mob-"] .col-block:nth-child(n) { + clear: none; + } + + .block-mob-1-6 .col-block:nth-child(6n+1), + .block-mob-1-5 .col-block:nth-child(5n+1), + .block-mob-1-4 .col-block:nth-child(4n+1), + .block-mob-1-3 .col-block:nth-child(3n+1), + .block-mob-1-2 .col-block:nth-child(2n+1) { + clear: both; + } + +} + + +/* =================================================================== + * # MISC + * + * ------------------------------------------------------------------- */ +.group:after { + content: ""; + display: table; + clear: both; +} + +/* Misc Helper Styles + * -------------------------------------- */ +.is-hidden { + display: none; +} + +.is-invisible { + visibility: hidden; +} + +.antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.overflow-hidden { + overflow: hidden; +} + +.remove-bottom { + margin-bottom: 0; +} + +.half-bottom { + margin-bottom: 1.5rem !important; +} + +.add-bottom { + margin-bottom: 3rem !important; +} + +.no-border { + border: none; +} + +.full-width { + width: 100%; +} + +.text-center { + text-align: center; +} + +.text-left { + text-align: left; +} + +.text-right { + text-align: right; +} + +.pull-left { + float: left; +} + +.pull-right { + float: right; +} + +.align-center { + margin-left: auto; + margin-right: auto; + text-align: center; +} + +/*# sourceMappingURL=base.css.map */ diff --git a/css/font-awesome/css/fa-brands.css b/css/font-awesome/css/fa-brands.css new file mode 100644 index 0000000..3e94b08 --- /dev/null +++ b/css/font-awesome/css/fa-brands.css @@ -0,0 +1,13 @@ +/*! + * Font Awesome Free 5.0.7 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + 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'; } diff --git a/css/font-awesome/css/fa-brands.min.css b/css/font-awesome/css/fa-brands.min.css new file mode 100644 index 0000000..15046ce --- /dev/null +++ b/css/font-awesome/css/fa-brands.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.0.7 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:Font Awesome\ 5 Brands;font-style:normal;font-weight:400;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} \ No newline at end of file diff --git a/css/font-awesome/css/fa-regular.css b/css/font-awesome/css/fa-regular.css new file mode 100644 index 0000000..a78295a --- /dev/null +++ b/css/font-awesome/css/fa-regular.css @@ -0,0 +1,14 @@ +/*! + * Font Awesome Free 5.0.7 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + 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-family: 'Font Awesome 5 Free'; + font-weight: 400; } diff --git a/css/font-awesome/css/fa-regular.min.css b/css/font-awesome/css/fa-regular.min.css new file mode 100644 index 0000000..ccdec70 --- /dev/null +++ b/css/font-awesome/css/fa-regular.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.0.7 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:400;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-family:Font Awesome\ 5 Free;font-weight:400} \ No newline at end of file diff --git a/css/font-awesome/css/fa-solid.css b/css/font-awesome/css/fa-solid.css new file mode 100644 index 0000000..81f51cc --- /dev/null +++ b/css/font-awesome/css/fa-solid.css @@ -0,0 +1,15 @@ +/*! + * Font Awesome Free 5.0.7 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + 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, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; } diff --git a/css/font-awesome/css/fa-solid.min.css b/css/font-awesome/css/fa-solid.min.css new file mode 100644 index 0000000..b718a31 --- /dev/null +++ b/css/font-awesome/css/fa-solid.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.0.7 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:900;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,.fas{font-family:Font Awesome\ 5 Free;font-weight:900} \ No newline at end of file diff --git a/css/font-awesome/css/fontawesome-all.css b/css/font-awesome/css/fontawesome-all.css new file mode 100644 index 0000000..e32cbcd --- /dev/null +++ b/css/font-awesome/css/fontawesome-all.css @@ -0,0 +1,2726 @@ +/*! + * Font Awesome Free 5.0.7 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa, +.fas, +.far, +.fal, +.fab { + -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: 0.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: solid 0.08em #eee; + border-radius: .1em; + padding: .2em .25em .15em; } + +.fa-pull-left { + float: left; } + +.fa-pull-right { + float: right; } + +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: .3em; } + +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: .3em; } + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; } + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; } + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; } + +.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; } + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ +.fa-500px:before { + content: "\f26e"; } + +.fa-accessible-icon:before { + content: "\f368"; } + +.fa-accusoft:before { + content: "\f369"; } + +.fa-address-book:before { + content: "\f2b9"; } + +.fa-address-card:before { + content: "\f2bb"; } + +.fa-adjust:before { + content: "\f042"; } + +.fa-adn:before { + content: "\f170"; } + +.fa-adversal:before { + content: "\f36a"; } + +.fa-affiliatetheme:before { + content: "\f36b"; } + +.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-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-angrycreative:before { + content: "\f36e"; } + +.fa-angular:before { + content: "\f420"; } + +.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-pay:before { + content: "\f415"; } + +.fa-archive:before { + content: "\f187"; } + +.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-assistive-listening-systems:before { + content: "\f2a2"; } + +.fa-asterisk:before { + content: "\f069"; } + +.fa-asymmetrik:before { + content: "\f372"; } + +.fa-at:before { + content: "\f1fa"; } + +.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-aws:before { + content: "\f375"; } + +.fa-backward:before { + content: "\f04a"; } + +.fa-balance-scale:before { + content: "\f24e"; } + +.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-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-bicycle:before { + content: "\f206"; } + +.fa-bimobject:before { + content: "\f378"; } + +.fa-binoculars:before { + content: "\f1e5"; } + +.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-blind:before { + content: "\f29d"; } + +.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-book:before { + content: "\f02d"; } + +.fa-bookmark:before { + content: "\f02e"; } + +.fa-bowling-ball:before { + content: "\f436"; } + +.fa-box:before { + content: "\f466"; } + +.fa-boxes:before { + content: "\f468"; } + +.fa-braille:before { + content: "\f2a1"; } + +.fa-briefcase:before { + content: "\f0b1"; } + +.fa-btc:before { + content: "\f15a"; } + +.fa-bug:before { + content: "\f188"; } + +.fa-building:before { + content: "\f1ad"; } + +.fa-bullhorn:before { + content: "\f0a1"; } + +.fa-bullseye:before { + content: "\f140"; } + +.fa-buromobelexperte:before { + content: "\f37f"; } + +.fa-bus:before { + content: "\f207"; } + +.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-minus:before { + content: "\f272"; } + +.fa-calendar-plus:before { + content: "\f271"; } + +.fa-calendar-times:before { + content: "\f273"; } + +.fa-camera:before { + content: "\f030"; } + +.fa-camera-retro:before { + content: "\f083"; } + +.fa-car:before { + content: "\f1b9"; } + +.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-cart-arrow-down:before { + content: "\f218"; } + +.fa-cart-plus:before { + content: "\f217"; } + +.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-certificate:before { + content: "\f0a3"; } + +.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-square:before { + content: "\f14a"; } + +.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-circle:before { + content: "\f111"; } + +.fa-circle-notch:before { + content: "\f1ce"; } + +.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-upload-alt:before { + content: "\f382"; } + +.fa-cloudscale:before { + content: "\f383"; } + +.fa-cloudsmith:before { + content: "\f384"; } + +.fa-cloudversify:before { + content: "\f385"; } + +.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-columns:before { + content: "\f0db"; } + +.fa-comment:before { + content: "\f075"; } + +.fa-comment-alt:before { + content: "\f27a"; } + +.fa-comments:before { + content: "\f086"; } + +.fa-compass:before { + content: "\f14e"; } + +.fa-compress:before { + content: "\f066"; } + +.fa-connectdevelop:before { + content: "\f20e"; } + +.fa-contao:before { + content: "\f26d"; } + +.fa-copy:before { + content: "\f0c5"; } + +.fa-copyright:before { + content: "\f1f9"; } + +.fa-cpanel:before { + content: "\f388"; } + +.fa-creative-commons:before { + content: "\f25e"; } + +.fa-credit-card:before { + content: "\f09d"; } + +.fa-crop:before { + content: "\f125"; } + +.fa-crosshairs:before { + content: "\f05b"; } + +.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-dashcube:before { + content: "\f210"; } + +.fa-database:before { + content: "\f1c0"; } + +.fa-deaf:before { + content: "\f2a4"; } + +.fa-delicious:before { + content: "\f1a5"; } + +.fa-deploydog:before { + content: "\f38e"; } + +.fa-deskpro:before { + content: "\f38f"; } + +.fa-desktop:before { + content: "\f108"; } + +.fa-deviantart:before { + content: "\f1bd"; } + +.fa-digg:before { + content: "\f1a6"; } + +.fa-digital-ocean:before { + content: "\f391"; } + +.fa-discord:before { + content: "\f392"; } + +.fa-discourse:before { + content: "\f393"; } + +.fa-dna:before { + content: "\f471"; } + +.fa-dochub:before { + content: "\f394"; } + +.fa-docker:before { + content: "\f395"; } + +.fa-dollar-sign:before { + content: "\f155"; } + +.fa-dolly:before { + content: "\f472"; } + +.fa-dolly-flatbed:before { + content: "\f474"; } + +.fa-dot-circle:before { + content: "\f192"; } + +.fa-download:before { + content: "\f019"; } + +.fa-draft2digital:before { + content: "\f396"; } + +.fa-dribbble:before { + content: "\f17d"; } + +.fa-dribbble-square:before { + content: "\f397"; } + +.fa-dropbox:before { + content: "\f16b"; } + +.fa-drupal:before { + content: "\f1a9"; } + +.fa-dyalog:before { + content: "\f399"; } + +.fa-earlybirds:before { + content: "\f39a"; } + +.fa-edge:before { + content: "\f282"; } + +.fa-edit:before { + content: "\f044"; } + +.fa-eject:before { + content: "\f052"; } + +.fa-elementor:before { + content: "\f430"; } + +.fa-ellipsis-h:before { + content: "\f141"; } + +.fa-ellipsis-v:before { + content: "\f142"; } + +.fa-ember:before { + content: "\f423"; } + +.fa-empire:before { + content: "\f1d1"; } + +.fa-envelope:before { + content: "\f0e0"; } + +.fa-envelope-open:before { + content: "\f2b6"; } + +.fa-envelope-square:before { + content: "\f199"; } + +.fa-envira:before { + content: "\f299"; } + +.fa-eraser:before { + content: "\f12d"; } + +.fa-erlang:before { + content: "\f39d"; } + +.fa-ethereum:before { + content: "\f42e"; } + +.fa-etsy:before { + content: "\f2d7"; } + +.fa-euro-sign:before { + content: "\f153"; } + +.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-fast-backward:before { + content: "\f049"; } + +.fa-fast-forward:before { + content: "\f050"; } + +.fa-fax:before { + content: "\f1ac"; } + +.fa-female:before { + content: "\f182"; } + +.fa-fighter-jet:before { + content: "\f0fb"; } + +.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-excel:before { + content: "\f1c3"; } + +.fa-file-image:before { + content: "\f1c5"; } + +.fa-file-pdf:before { + content: "\f1c1"; } + +.fa-file-powerpoint:before { + content: "\f1c4"; } + +.fa-file-video:before { + content: "\f1c8"; } + +.fa-file-word:before { + content: "\f1c2"; } + +.fa-film:before { + content: "\f008"; } + +.fa-filter:before { + content: "\f0b0"; } + +.fa-fire:before { + content: "\f06d"; } + +.fa-fire-extinguisher:before { + content: "\f134"; } + +.fa-firefox:before { + content: "\f269"; } + +.fa-first-aid:before { + content: "\f479"; } + +.fa-first-order:before { + content: "\f2b0"; } + +.fa-firstdraft:before { + content: "\f3a1"; } + +.fa-flag:before { + content: "\f024"; } + +.fa-flag-checkered:before { + content: "\f11e"; } + +.fa-flask:before { + content: "\f0c3"; } + +.fa-flickr:before { + content: "\f16e"; } + +.fa-flipboard:before { + content: "\f44d"; } + +.fa-fly:before { + content: "\f417"; } + +.fa-folder:before { + content: "\f07b"; } + +.fa-folder-open:before { + content: "\f07c"; } + +.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-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-frown:before { + content: "\f119"; } + +.fa-futbol:before { + content: "\f1e3"; } + +.fa-gamepad:before { + content: "\f11b"; } + +.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-gift:before { + content: "\f06b"; } + +.fa-git:before { + content: "\f1d3"; } + +.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-martini:before { + content: "\f000"; } + +.fa-glide:before { + content: "\f2a5"; } + +.fa-glide-g:before { + content: "\f2a6"; } + +.fa-globe:before { + content: "\f0ac"; } + +.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-graduation-cap:before { + content: "\f19d"; } + +.fa-gratipay:before { + content: "\f184"; } + +.fa-grav:before { + content: "\f2d6"; } + +.fa-gripfire:before { + content: "\f3ac"; } + +.fa-grunt:before { + content: "\f3ad"; } + +.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-hand-lizard:before { + content: "\f258"; } + +.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-handshake:before { + content: "\f2b5"; } + +.fa-hashtag:before { + content: "\f292"; } + +.fa-hdd:before { + content: "\f0a0"; } + +.fa-heading:before { + content: "\f1dc"; } + +.fa-headphones:before { + content: "\f025"; } + +.fa-heart:before { + content: "\f004"; } + +.fa-heartbeat:before { + content: "\f21e"; } + +.fa-hips:before { + content: "\f452"; } + +.fa-hire-a-helper:before { + content: "\f3b0"; } + +.fa-history:before { + content: "\f1da"; } + +.fa-hockey-puck:before { + content: "\f453"; } + +.fa-home:before { + content: "\f015"; } + +.fa-hooli:before { + content: "\f427"; } + +.fa-hospital:before { + content: "\f0f8"; } + +.fa-hospital-symbol:before { + content: "\f47e"; } + +.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-houzz:before { + content: "\f27c"; } + +.fa-html5:before { + content: "\f13b"; } + +.fa-hubspot:before { + content: "\f3b2"; } + +.fa-i-cursor:before { + content: "\f246"; } + +.fa-id-badge:before { + content: "\f2c1"; } + +.fa-id-card:before { + content: "\f2c2"; } + +.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-info:before { + content: "\f129"; } + +.fa-info-circle:before { + content: "\f05a"; } + +.fa-instagram:before { + content: "\f16d"; } + +.fa-internet-explorer:before { + content: "\f26b"; } + +.fa-ioxhost:before { + content: "\f208"; } + +.fa-italic:before { + content: "\f033"; } + +.fa-itunes:before { + content: "\f3b4"; } + +.fa-itunes-note:before { + content: "\f3b5"; } + +.fa-jenkins:before { + content: "\f3b6"; } + +.fa-joget:before { + content: "\f3b7"; } + +.fa-joomla:before { + content: "\f1aa"; } + +.fa-js:before { + content: "\f3b8"; } + +.fa-js-square:before { + content: "\f3b9"; } + +.fa-jsfiddle:before { + content: "\f1cc"; } + +.fa-key:before { + content: "\f084"; } + +.fa-keyboard:before { + content: "\f11c"; } + +.fa-keycdn:before { + content: "\f3ba"; } + +.fa-kickstarter:before { + content: "\f3bb"; } + +.fa-kickstarter-k:before { + content: "\f3bc"; } + +.fa-korvue:before { + content: "\f42f"; } + +.fa-language:before { + content: "\f1ab"; } + +.fa-laptop:before { + content: "\f109"; } + +.fa-laravel:before { + content: "\f3bd"; } + +.fa-lastfm:before { + content: "\f202"; } + +.fa-lastfm-square:before { + content: "\f203"; } + +.fa-leaf:before { + content: "\f06c"; } + +.fa-leanpub:before { + content: "\f212"; } + +.fa-lemon:before { + content: "\f094"; } + +.fa-less:before { + content: "\f41d"; } + +.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-lyft:before { + content: "\f3c3"; } + +.fa-magento:before { + content: "\f3c4"; } + +.fa-magic:before { + content: "\f0d0"; } + +.fa-magnet:before { + content: "\f076"; } + +.fa-male:before { + content: "\f183"; } + +.fa-map:before { + content: "\f279"; } + +.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-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-maxcdn:before { + content: "\f136"; } + +.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-meh:before { + content: "\f11a"; } + +.fa-mercury:before { + content: "\f223"; } + +.fa-microchip:before { + content: "\f2db"; } + +.fa-microphone:before { + content: "\f130"; } + +.fa-microphone-slash:before { + content: "\f131"; } + +.fa-microsoft:before { + content: "\f3ca"; } + +.fa-minus:before { + content: "\f068"; } + +.fa-minus-circle:before { + content: "\f056"; } + +.fa-minus-square:before { + content: "\f146"; } + +.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-alt:before { + content: "\f3d1"; } + +.fa-moon:before { + content: "\f186"; } + +.fa-motorcycle:before { + content: "\f21c"; } + +.fa-mouse-pointer:before { + content: "\f245"; } + +.fa-music:before { + content: "\f001"; } + +.fa-napster:before { + content: "\f3d2"; } + +.fa-neuter:before { + content: "\f22c"; } + +.fa-newspaper:before { + content: "\f1ea"; } + +.fa-nintendo-switch:before { + content: "\f418"; } + +.fa-node:before { + content: "\f419"; } + +.fa-node-js:before { + content: "\f3d3"; } + +.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-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-outdent:before { + content: "\f03b"; } + +.fa-page4:before { + content: "\f3d7"; } + +.fa-pagelines:before { + content: "\f18c"; } + +.fa-paint-brush:before { + content: "\f1fc"; } + +.fa-palfed:before { + content: "\f3d8"; } + +.fa-pallet:before { + content: "\f482"; } + +.fa-paper-plane:before { + content: "\f1d8"; } + +.fa-paperclip:before { + content: "\f0c6"; } + +.fa-paragraph:before { + content: "\f1dd"; } + +.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-pen-square:before { + content: "\f14b"; } + +.fa-pencil-alt:before { + content: "\f303"; } + +.fa-percent:before { + content: "\f295"; } + +.fa-periscope:before { + content: "\f3da"; } + +.fa-phabricator:before { + content: "\f3db"; } + +.fa-phoenix-framework:before { + content: "\f3dc"; } + +.fa-phone:before { + content: "\f095"; } + +.fa-phone-square:before { + content: "\f098"; } + +.fa-phone-volume:before { + content: "\f2a0"; } + +.fa-php:before { + content: "\f457"; } + +.fa-pied-piper:before { + content: "\f2ae"; } + +.fa-pied-piper-alt:before { + content: "\f1a8"; } + +.fa-pied-piper-pp:before { + content: "\f1a7"; } + +.fa-pills:before { + content: "\f484"; } + +.fa-pinterest:before { + content: "\f0d2"; } + +.fa-pinterest-p:before { + content: "\f231"; } + +.fa-pinterest-square:before { + content: "\f0d3"; } + +.fa-plane:before { + content: "\f072"; } + +.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-pound-sign:before { + content: "\f154"; } + +.fa-power-off:before { + content: "\f011"; } + +.fa-print:before { + content: "\f02f"; } + +.fa-product-hunt:before { + content: "\f288"; } + +.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-random:before { + content: "\f074"; } + +.fa-ravelry:before { + content: "\f2d9"; } + +.fa-react:before { + content: "\f41b"; } + +.fa-rebel:before { + content: "\f1d0"; } + +.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-redo:before { + content: "\f01e"; } + +.fa-redo-alt:before { + content: "\f2f9"; } + +.fa-registered:before { + content: "\f25d"; } + +.fa-rendact:before { + content: "\f3e4"; } + +.fa-renren:before { + content: "\f18b"; } + +.fa-reply:before { + content: "\f3e5"; } + +.fa-reply-all:before { + content: "\f122"; } + +.fa-replyd:before { + content: "\f3e6"; } + +.fa-resolving:before { + content: "\f3e7"; } + +.fa-retweet:before { + content: "\f079"; } + +.fa-road:before { + content: "\f018"; } + +.fa-rocket:before { + content: "\f135"; } + +.fa-rocketchat:before { + content: "\f3e8"; } + +.fa-rockrms:before { + content: "\f3e9"; } + +.fa-rss:before { + content: "\f09e"; } + +.fa-rss-square:before { + content: "\f143"; } + +.fa-ruble-sign:before { + content: "\f158"; } + +.fa-rupee-sign:before { + content: "\f156"; } + +.fa-safari:before { + content: "\f267"; } + +.fa-sass:before { + content: "\f41e"; } + +.fa-save:before { + content: "\f0c7"; } + +.fa-schlix:before { + content: "\f3ea"; } + +.fa-scribd:before { + content: "\f28a"; } + +.fa-search:before { + content: "\f002"; } + +.fa-search-minus:before { + content: "\f010"; } + +.fa-search-plus:before { + content: "\f00e"; } + +.fa-searchengin:before { + content: "\f3eb"; } + +.fa-sellcast:before { + content: "\f2da"; } + +.fa-sellsy:before { + content: "\f213"; } + +.fa-server:before { + content: "\f233"; } + +.fa-servicestack:before { + content: "\f3ec"; } + +.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-shopping-bag:before { + content: "\f290"; } + +.fa-shopping-basket:before { + content: "\f291"; } + +.fa-shopping-cart:before { + content: "\f07a"; } + +.fa-shower:before { + content: "\f2cc"; } + +.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-simplybuilt:before { + content: "\f215"; } + +.fa-sistrix:before { + content: "\f3ee"; } + +.fa-sitemap:before { + content: "\f0e8"; } + +.fa-skyatlas:before { + content: "\f216"; } + +.fa-skype:before { + content: "\f17e"; } + +.fa-slack:before { + content: "\f198"; } + +.fa-slack-hash:before { + content: "\f3ef"; } + +.fa-sliders-h:before { + content: "\f1de"; } + +.fa-slideshare:before { + content: "\f1e7"; } + +.fa-smile:before { + content: "\f118"; } + +.fa-snapchat:before { + content: "\f2ab"; } + +.fa-snapchat-ghost:before { + content: "\f2ac"; } + +.fa-snapchat-square:before { + content: "\f2ad"; } + +.fa-snowflake:before { + content: "\f2dc"; } + +.fa-sort:before { + content: "\f0dc"; } + +.fa-sort-alpha-down:before { + content: "\f15d"; } + +.fa-sort-alpha-up:before { + content: "\f15e"; } + +.fa-sort-amount-down:before { + content: "\f160"; } + +.fa-sort-amount-up:before { + content: "\f161"; } + +.fa-sort-down:before { + content: "\f0dd"; } + +.fa-sort-numeric-down:before { + content: "\f162"; } + +.fa-sort-numeric-up:before { + content: "\f163"; } + +.fa-sort-up:before { + content: "\f0de"; } + +.fa-soundcloud:before { + content: "\f1be"; } + +.fa-space-shuttle:before { + content: "\f197"; } + +.fa-speakap:before { + content: "\f3f3"; } + +.fa-spinner:before { + content: "\f110"; } + +.fa-spotify:before { + content: "\f1bc"; } + +.fa-square:before { + content: "\f0c8"; } + +.fa-square-full:before { + content: "\f45c"; } + +.fa-stack-exchange:before { + content: "\f18d"; } + +.fa-stack-overflow:before { + content: "\f16c"; } + +.fa-star:before { + content: "\f005"; } + +.fa-star-half:before { + content: "\f089"; } + +.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-strava:before { + content: "\f428"; } + +.fa-street-view:before { + content: "\f21d"; } + +.fa-strikethrough:before { + content: "\f0cc"; } + +.fa-stripe:before { + content: "\f429"; } + +.fa-stripe-s:before { + content: "\f42a"; } + +.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-sun:before { + content: "\f185"; } + +.fa-superpowers:before { + content: "\f2dd"; } + +.fa-superscript:before { + content: "\f12b"; } + +.fa-supple:before { + content: "\f3f9"; } + +.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-tachometer-alt:before { + content: "\f3fd"; } + +.fa-tag:before { + content: "\f02b"; } + +.fa-tags:before { + content: "\f02c"; } + +.fa-tasks:before { + content: "\f0ae"; } + +.fa-taxi:before { + content: "\f1ba"; } + +.fa-telegram:before { + content: "\f2c6"; } + +.fa-telegram-plane:before { + content: "\f3fe"; } + +.fa-tencent-weibo:before { + content: "\f1d5"; } + +.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-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-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-toggle-off:before { + content: "\f204"; } + +.fa-toggle-on:before { + content: "\f205"; } + +.fa-trademark:before { + content: "\f25c"; } + +.fa-train:before { + content: "\f238"; } + +.fa-transgender:before { + content: "\f224"; } + +.fa-transgender-alt:before { + content: "\f225"; } + +.fa-trash:before { + content: "\f1f8"; } + +.fa-trash-alt:before { + content: "\f2ed"; } + +.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-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-uikit:before { + content: "\f403"; } + +.fa-umbrella:before { + content: "\f0e9"; } + +.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-usb:before { + content: "\f287"; } + +.fa-user:before { + content: "\f007"; } + +.fa-user-circle:before { + content: "\f2bd"; } + +.fa-user-md:before { + content: "\f0f0"; } + +.fa-user-plus:before { + content: "\f234"; } + +.fa-user-secret:before { + content: "\f21b"; } + +.fa-user-times:before { + content: "\f235"; } + +.fa-users:before { + content: "\f0c0"; } + +.fa-ussunnah:before { + content: "\f407"; } + +.fa-utensil-spoon:before { + content: "\f2e5"; } + +.fa-utensils:before { + content: "\f2e7"; } + +.fa-vaadin:before { + content: "\f408"; } + +.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-viber:before { + content: "\f409"; } + +.fa-video:before { + content: "\f03d"; } + +.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-volleyball-ball:before { + content: "\f45f"; } + +.fa-volume-down:before { + content: "\f027"; } + +.fa-volume-off:before { + content: "\f026"; } + +.fa-volume-up:before { + content: "\f028"; } + +.fa-vuejs:before { + content: "\f41f"; } + +.fa-warehouse:before { + content: "\f494"; } + +.fa-weibo:before { + content: "\f18a"; } + +.fa-weight:before { + content: "\f496"; } + +.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-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-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-wrench:before { + content: "\f0ad"; } + +.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-yandex:before { + content: "\f413"; } + +.fa-yandex-international:before { + content: "\f414"; } + +.fa-yelp:before { + content: "\f1e9"; } + +.fa-yen-sign:before { + content: "\f157"; } + +.fa-yoast:before { + content: "\f2b1"; } + +.fa-youtube:before { + content: "\f167"; } + +.fa-youtube-square:before { + content: "\f431"; } + +.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; + 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; + 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-family: 'Font Awesome 5 Free'; + font-weight: 400; } +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + 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, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; } diff --git a/css/font-awesome/css/fontawesome-all.min.css b/css/font-awesome/css/fontawesome-all.min.css new file mode 100644 index 0000000..0bc2ee8 --- /dev/null +++ b/css/font-awesome/css/fontawesome-all.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.0.7 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.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{-webkit-animation:a 2s infinite linear;animation:a 2s infinite linear}.fa-pulse{-webkit-animation:a 1s infinite steps(8);animation:a 1s infinite steps(8)}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.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-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.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-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-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.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-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.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-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.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-aws:before{content:"\f375"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.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-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-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.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-blind:before{content:"\f29d"}.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-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-briefcase:before{content:"\f0b1"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.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-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-car:before{content:"\f1b9"}.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-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.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-certificate:before{content:"\f0a3"}.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-square:before{content:"\f14a"}.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-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.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-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.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-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comments:before{content:"\f086"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crosshairs:before{content:"\f05b"}.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-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-dot-circle:before{content:"\f192"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drupal:before{content:"\f1a9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.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-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.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-excel:before{content:"\f1c3"}.fa-file-image:before{content:"\f1c5"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-firstdraft:before{content:"\f3a1"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.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-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-frown:before{content:"\f119"}.fa-futbol:before{content:"\f1e3"}.fa-gamepad:before{content:"\f11b"}.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-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.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-martini:before{content:"\f000"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.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-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.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-hand-lizard:before{content:"\f258"}.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-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-symbol:before{content:"\f47e"}.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-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.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-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-key:before{content:"\f084"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-korvue:before{content:"\f42f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.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-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-male:before{content:"\f183"}.fa-map:before{content:"\f279"}.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-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-maxcdn:before{content:"\f136"}.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-meh:before{content:"\f11a"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.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-alt:before{content:"\f3d1"}.fa-moon:before{content:"\f186"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.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-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-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-paragraph:before{content:"\f1dd"}.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-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-percent:before{content:"\f295"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phone:before{content:"\f095"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-plane:before{content:"\f072"}.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-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-print:before{content:"\f02f"}.fa-product-hunt:before{content:"\f288"}.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-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-rebel:before{content:"\f1d0"}.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-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-road:before{content:"\f018"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-rupee-sign:before{content:"\f156"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.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-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shower:before{content:"\f2cc"}.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-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-spotify:before{content:"\f1bc"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-star:before{content:"\f005"}.fa-star-half:before{content:"\f089"}.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-strava:before{content:"\f428"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.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-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.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-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.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-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-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-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-trademark:before{content:"\f25c"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.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-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-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.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-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-circle:before{content:"\f2bd"}.fa-user-md:before{content:"\f0f0"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.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-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.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-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-warehouse:before{content:"\f494"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.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-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-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-wrench:before{content:"\f0ad"}.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-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.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:400;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;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;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} \ No newline at end of file diff --git a/css/font-awesome/css/fontawesome.css b/css/font-awesome/css/fontawesome.css new file mode 100644 index 0000000..460706e --- /dev/null +++ b/css/font-awesome/css/fontawesome.css @@ -0,0 +1,2696 @@ +/*! + * Font Awesome Free 5.0.7 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa, +.fas, +.far, +.fal, +.fab { + -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: 0.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: solid 0.08em #eee; + border-radius: .1em; + padding: .2em .25em .15em; } + +.fa-pull-left { + float: left; } + +.fa-pull-right { + float: right; } + +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: .3em; } + +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: .3em; } + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; } + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; } + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; } + +.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; } + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ +.fa-500px:before { + content: "\f26e"; } + +.fa-accessible-icon:before { + content: "\f368"; } + +.fa-accusoft:before { + content: "\f369"; } + +.fa-address-book:before { + content: "\f2b9"; } + +.fa-address-card:before { + content: "\f2bb"; } + +.fa-adjust:before { + content: "\f042"; } + +.fa-adn:before { + content: "\f170"; } + +.fa-adversal:before { + content: "\f36a"; } + +.fa-affiliatetheme:before { + content: "\f36b"; } + +.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-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-angrycreative:before { + content: "\f36e"; } + +.fa-angular:before { + content: "\f420"; } + +.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-pay:before { + content: "\f415"; } + +.fa-archive:before { + content: "\f187"; } + +.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-assistive-listening-systems:before { + content: "\f2a2"; } + +.fa-asterisk:before { + content: "\f069"; } + +.fa-asymmetrik:before { + content: "\f372"; } + +.fa-at:before { + content: "\f1fa"; } + +.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-aws:before { + content: "\f375"; } + +.fa-backward:before { + content: "\f04a"; } + +.fa-balance-scale:before { + content: "\f24e"; } + +.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-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-bicycle:before { + content: "\f206"; } + +.fa-bimobject:before { + content: "\f378"; } + +.fa-binoculars:before { + content: "\f1e5"; } + +.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-blind:before { + content: "\f29d"; } + +.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-book:before { + content: "\f02d"; } + +.fa-bookmark:before { + content: "\f02e"; } + +.fa-bowling-ball:before { + content: "\f436"; } + +.fa-box:before { + content: "\f466"; } + +.fa-boxes:before { + content: "\f468"; } + +.fa-braille:before { + content: "\f2a1"; } + +.fa-briefcase:before { + content: "\f0b1"; } + +.fa-btc:before { + content: "\f15a"; } + +.fa-bug:before { + content: "\f188"; } + +.fa-building:before { + content: "\f1ad"; } + +.fa-bullhorn:before { + content: "\f0a1"; } + +.fa-bullseye:before { + content: "\f140"; } + +.fa-buromobelexperte:before { + content: "\f37f"; } + +.fa-bus:before { + content: "\f207"; } + +.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-minus:before { + content: "\f272"; } + +.fa-calendar-plus:before { + content: "\f271"; } + +.fa-calendar-times:before { + content: "\f273"; } + +.fa-camera:before { + content: "\f030"; } + +.fa-camera-retro:before { + content: "\f083"; } + +.fa-car:before { + content: "\f1b9"; } + +.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-cart-arrow-down:before { + content: "\f218"; } + +.fa-cart-plus:before { + content: "\f217"; } + +.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-certificate:before { + content: "\f0a3"; } + +.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-square:before { + content: "\f14a"; } + +.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-circle:before { + content: "\f111"; } + +.fa-circle-notch:before { + content: "\f1ce"; } + +.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-upload-alt:before { + content: "\f382"; } + +.fa-cloudscale:before { + content: "\f383"; } + +.fa-cloudsmith:before { + content: "\f384"; } + +.fa-cloudversify:before { + content: "\f385"; } + +.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-columns:before { + content: "\f0db"; } + +.fa-comment:before { + content: "\f075"; } + +.fa-comment-alt:before { + content: "\f27a"; } + +.fa-comments:before { + content: "\f086"; } + +.fa-compass:before { + content: "\f14e"; } + +.fa-compress:before { + content: "\f066"; } + +.fa-connectdevelop:before { + content: "\f20e"; } + +.fa-contao:before { + content: "\f26d"; } + +.fa-copy:before { + content: "\f0c5"; } + +.fa-copyright:before { + content: "\f1f9"; } + +.fa-cpanel:before { + content: "\f388"; } + +.fa-creative-commons:before { + content: "\f25e"; } + +.fa-credit-card:before { + content: "\f09d"; } + +.fa-crop:before { + content: "\f125"; } + +.fa-crosshairs:before { + content: "\f05b"; } + +.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-dashcube:before { + content: "\f210"; } + +.fa-database:before { + content: "\f1c0"; } + +.fa-deaf:before { + content: "\f2a4"; } + +.fa-delicious:before { + content: "\f1a5"; } + +.fa-deploydog:before { + content: "\f38e"; } + +.fa-deskpro:before { + content: "\f38f"; } + +.fa-desktop:before { + content: "\f108"; } + +.fa-deviantart:before { + content: "\f1bd"; } + +.fa-digg:before { + content: "\f1a6"; } + +.fa-digital-ocean:before { + content: "\f391"; } + +.fa-discord:before { + content: "\f392"; } + +.fa-discourse:before { + content: "\f393"; } + +.fa-dna:before { + content: "\f471"; } + +.fa-dochub:before { + content: "\f394"; } + +.fa-docker:before { + content: "\f395"; } + +.fa-dollar-sign:before { + content: "\f155"; } + +.fa-dolly:before { + content: "\f472"; } + +.fa-dolly-flatbed:before { + content: "\f474"; } + +.fa-dot-circle:before { + content: "\f192"; } + +.fa-download:before { + content: "\f019"; } + +.fa-draft2digital:before { + content: "\f396"; } + +.fa-dribbble:before { + content: "\f17d"; } + +.fa-dribbble-square:before { + content: "\f397"; } + +.fa-dropbox:before { + content: "\f16b"; } + +.fa-drupal:before { + content: "\f1a9"; } + +.fa-dyalog:before { + content: "\f399"; } + +.fa-earlybirds:before { + content: "\f39a"; } + +.fa-edge:before { + content: "\f282"; } + +.fa-edit:before { + content: "\f044"; } + +.fa-eject:before { + content: "\f052"; } + +.fa-elementor:before { + content: "\f430"; } + +.fa-ellipsis-h:before { + content: "\f141"; } + +.fa-ellipsis-v:before { + content: "\f142"; } + +.fa-ember:before { + content: "\f423"; } + +.fa-empire:before { + content: "\f1d1"; } + +.fa-envelope:before { + content: "\f0e0"; } + +.fa-envelope-open:before { + content: "\f2b6"; } + +.fa-envelope-square:before { + content: "\f199"; } + +.fa-envira:before { + content: "\f299"; } + +.fa-eraser:before { + content: "\f12d"; } + +.fa-erlang:before { + content: "\f39d"; } + +.fa-ethereum:before { + content: "\f42e"; } + +.fa-etsy:before { + content: "\f2d7"; } + +.fa-euro-sign:before { + content: "\f153"; } + +.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-fast-backward:before { + content: "\f049"; } + +.fa-fast-forward:before { + content: "\f050"; } + +.fa-fax:before { + content: "\f1ac"; } + +.fa-female:before { + content: "\f182"; } + +.fa-fighter-jet:before { + content: "\f0fb"; } + +.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-excel:before { + content: "\f1c3"; } + +.fa-file-image:before { + content: "\f1c5"; } + +.fa-file-pdf:before { + content: "\f1c1"; } + +.fa-file-powerpoint:before { + content: "\f1c4"; } + +.fa-file-video:before { + content: "\f1c8"; } + +.fa-file-word:before { + content: "\f1c2"; } + +.fa-film:before { + content: "\f008"; } + +.fa-filter:before { + content: "\f0b0"; } + +.fa-fire:before { + content: "\f06d"; } + +.fa-fire-extinguisher:before { + content: "\f134"; } + +.fa-firefox:before { + content: "\f269"; } + +.fa-first-aid:before { + content: "\f479"; } + +.fa-first-order:before { + content: "\f2b0"; } + +.fa-firstdraft:before { + content: "\f3a1"; } + +.fa-flag:before { + content: "\f024"; } + +.fa-flag-checkered:before { + content: "\f11e"; } + +.fa-flask:before { + content: "\f0c3"; } + +.fa-flickr:before { + content: "\f16e"; } + +.fa-flipboard:before { + content: "\f44d"; } + +.fa-fly:before { + content: "\f417"; } + +.fa-folder:before { + content: "\f07b"; } + +.fa-folder-open:before { + content: "\f07c"; } + +.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-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-frown:before { + content: "\f119"; } + +.fa-futbol:before { + content: "\f1e3"; } + +.fa-gamepad:before { + content: "\f11b"; } + +.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-gift:before { + content: "\f06b"; } + +.fa-git:before { + content: "\f1d3"; } + +.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-martini:before { + content: "\f000"; } + +.fa-glide:before { + content: "\f2a5"; } + +.fa-glide-g:before { + content: "\f2a6"; } + +.fa-globe:before { + content: "\f0ac"; } + +.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-graduation-cap:before { + content: "\f19d"; } + +.fa-gratipay:before { + content: "\f184"; } + +.fa-grav:before { + content: "\f2d6"; } + +.fa-gripfire:before { + content: "\f3ac"; } + +.fa-grunt:before { + content: "\f3ad"; } + +.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-hand-lizard:before { + content: "\f258"; } + +.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-handshake:before { + content: "\f2b5"; } + +.fa-hashtag:before { + content: "\f292"; } + +.fa-hdd:before { + content: "\f0a0"; } + +.fa-heading:before { + content: "\f1dc"; } + +.fa-headphones:before { + content: "\f025"; } + +.fa-heart:before { + content: "\f004"; } + +.fa-heartbeat:before { + content: "\f21e"; } + +.fa-hips:before { + content: "\f452"; } + +.fa-hire-a-helper:before { + content: "\f3b0"; } + +.fa-history:before { + content: "\f1da"; } + +.fa-hockey-puck:before { + content: "\f453"; } + +.fa-home:before { + content: "\f015"; } + +.fa-hooli:before { + content: "\f427"; } + +.fa-hospital:before { + content: "\f0f8"; } + +.fa-hospital-symbol:before { + content: "\f47e"; } + +.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-houzz:before { + content: "\f27c"; } + +.fa-html5:before { + content: "\f13b"; } + +.fa-hubspot:before { + content: "\f3b2"; } + +.fa-i-cursor:before { + content: "\f246"; } + +.fa-id-badge:before { + content: "\f2c1"; } + +.fa-id-card:before { + content: "\f2c2"; } + +.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-info:before { + content: "\f129"; } + +.fa-info-circle:before { + content: "\f05a"; } + +.fa-instagram:before { + content: "\f16d"; } + +.fa-internet-explorer:before { + content: "\f26b"; } + +.fa-ioxhost:before { + content: "\f208"; } + +.fa-italic:before { + content: "\f033"; } + +.fa-itunes:before { + content: "\f3b4"; } + +.fa-itunes-note:before { + content: "\f3b5"; } + +.fa-jenkins:before { + content: "\f3b6"; } + +.fa-joget:before { + content: "\f3b7"; } + +.fa-joomla:before { + content: "\f1aa"; } + +.fa-js:before { + content: "\f3b8"; } + +.fa-js-square:before { + content: "\f3b9"; } + +.fa-jsfiddle:before { + content: "\f1cc"; } + +.fa-key:before { + content: "\f084"; } + +.fa-keyboard:before { + content: "\f11c"; } + +.fa-keycdn:before { + content: "\f3ba"; } + +.fa-kickstarter:before { + content: "\f3bb"; } + +.fa-kickstarter-k:before { + content: "\f3bc"; } + +.fa-korvue:before { + content: "\f42f"; } + +.fa-language:before { + content: "\f1ab"; } + +.fa-laptop:before { + content: "\f109"; } + +.fa-laravel:before { + content: "\f3bd"; } + +.fa-lastfm:before { + content: "\f202"; } + +.fa-lastfm-square:before { + content: "\f203"; } + +.fa-leaf:before { + content: "\f06c"; } + +.fa-leanpub:before { + content: "\f212"; } + +.fa-lemon:before { + content: "\f094"; } + +.fa-less:before { + content: "\f41d"; } + +.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-lyft:before { + content: "\f3c3"; } + +.fa-magento:before { + content: "\f3c4"; } + +.fa-magic:before { + content: "\f0d0"; } + +.fa-magnet:before { + content: "\f076"; } + +.fa-male:before { + content: "\f183"; } + +.fa-map:before { + content: "\f279"; } + +.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-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-maxcdn:before { + content: "\f136"; } + +.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-meh:before { + content: "\f11a"; } + +.fa-mercury:before { + content: "\f223"; } + +.fa-microchip:before { + content: "\f2db"; } + +.fa-microphone:before { + content: "\f130"; } + +.fa-microphone-slash:before { + content: "\f131"; } + +.fa-microsoft:before { + content: "\f3ca"; } + +.fa-minus:before { + content: "\f068"; } + +.fa-minus-circle:before { + content: "\f056"; } + +.fa-minus-square:before { + content: "\f146"; } + +.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-alt:before { + content: "\f3d1"; } + +.fa-moon:before { + content: "\f186"; } + +.fa-motorcycle:before { + content: "\f21c"; } + +.fa-mouse-pointer:before { + content: "\f245"; } + +.fa-music:before { + content: "\f001"; } + +.fa-napster:before { + content: "\f3d2"; } + +.fa-neuter:before { + content: "\f22c"; } + +.fa-newspaper:before { + content: "\f1ea"; } + +.fa-nintendo-switch:before { + content: "\f418"; } + +.fa-node:before { + content: "\f419"; } + +.fa-node-js:before { + content: "\f3d3"; } + +.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-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-outdent:before { + content: "\f03b"; } + +.fa-page4:before { + content: "\f3d7"; } + +.fa-pagelines:before { + content: "\f18c"; } + +.fa-paint-brush:before { + content: "\f1fc"; } + +.fa-palfed:before { + content: "\f3d8"; } + +.fa-pallet:before { + content: "\f482"; } + +.fa-paper-plane:before { + content: "\f1d8"; } + +.fa-paperclip:before { + content: "\f0c6"; } + +.fa-paragraph:before { + content: "\f1dd"; } + +.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-pen-square:before { + content: "\f14b"; } + +.fa-pencil-alt:before { + content: "\f303"; } + +.fa-percent:before { + content: "\f295"; } + +.fa-periscope:before { + content: "\f3da"; } + +.fa-phabricator:before { + content: "\f3db"; } + +.fa-phoenix-framework:before { + content: "\f3dc"; } + +.fa-phone:before { + content: "\f095"; } + +.fa-phone-square:before { + content: "\f098"; } + +.fa-phone-volume:before { + content: "\f2a0"; } + +.fa-php:before { + content: "\f457"; } + +.fa-pied-piper:before { + content: "\f2ae"; } + +.fa-pied-piper-alt:before { + content: "\f1a8"; } + +.fa-pied-piper-pp:before { + content: "\f1a7"; } + +.fa-pills:before { + content: "\f484"; } + +.fa-pinterest:before { + content: "\f0d2"; } + +.fa-pinterest-p:before { + content: "\f231"; } + +.fa-pinterest-square:before { + content: "\f0d3"; } + +.fa-plane:before { + content: "\f072"; } + +.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-pound-sign:before { + content: "\f154"; } + +.fa-power-off:before { + content: "\f011"; } + +.fa-print:before { + content: "\f02f"; } + +.fa-product-hunt:before { + content: "\f288"; } + +.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-random:before { + content: "\f074"; } + +.fa-ravelry:before { + content: "\f2d9"; } + +.fa-react:before { + content: "\f41b"; } + +.fa-rebel:before { + content: "\f1d0"; } + +.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-redo:before { + content: "\f01e"; } + +.fa-redo-alt:before { + content: "\f2f9"; } + +.fa-registered:before { + content: "\f25d"; } + +.fa-rendact:before { + content: "\f3e4"; } + +.fa-renren:before { + content: "\f18b"; } + +.fa-reply:before { + content: "\f3e5"; } + +.fa-reply-all:before { + content: "\f122"; } + +.fa-replyd:before { + content: "\f3e6"; } + +.fa-resolving:before { + content: "\f3e7"; } + +.fa-retweet:before { + content: "\f079"; } + +.fa-road:before { + content: "\f018"; } + +.fa-rocket:before { + content: "\f135"; } + +.fa-rocketchat:before { + content: "\f3e8"; } + +.fa-rockrms:before { + content: "\f3e9"; } + +.fa-rss:before { + content: "\f09e"; } + +.fa-rss-square:before { + content: "\f143"; } + +.fa-ruble-sign:before { + content: "\f158"; } + +.fa-rupee-sign:before { + content: "\f156"; } + +.fa-safari:before { + content: "\f267"; } + +.fa-sass:before { + content: "\f41e"; } + +.fa-save:before { + content: "\f0c7"; } + +.fa-schlix:before { + content: "\f3ea"; } + +.fa-scribd:before { + content: "\f28a"; } + +.fa-search:before { + content: "\f002"; } + +.fa-search-minus:before { + content: "\f010"; } + +.fa-search-plus:before { + content: "\f00e"; } + +.fa-searchengin:before { + content: "\f3eb"; } + +.fa-sellcast:before { + content: "\f2da"; } + +.fa-sellsy:before { + content: "\f213"; } + +.fa-server:before { + content: "\f233"; } + +.fa-servicestack:before { + content: "\f3ec"; } + +.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-shopping-bag:before { + content: "\f290"; } + +.fa-shopping-basket:before { + content: "\f291"; } + +.fa-shopping-cart:before { + content: "\f07a"; } + +.fa-shower:before { + content: "\f2cc"; } + +.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-simplybuilt:before { + content: "\f215"; } + +.fa-sistrix:before { + content: "\f3ee"; } + +.fa-sitemap:before { + content: "\f0e8"; } + +.fa-skyatlas:before { + content: "\f216"; } + +.fa-skype:before { + content: "\f17e"; } + +.fa-slack:before { + content: "\f198"; } + +.fa-slack-hash:before { + content: "\f3ef"; } + +.fa-sliders-h:before { + content: "\f1de"; } + +.fa-slideshare:before { + content: "\f1e7"; } + +.fa-smile:before { + content: "\f118"; } + +.fa-snapchat:before { + content: "\f2ab"; } + +.fa-snapchat-ghost:before { + content: "\f2ac"; } + +.fa-snapchat-square:before { + content: "\f2ad"; } + +.fa-snowflake:before { + content: "\f2dc"; } + +.fa-sort:before { + content: "\f0dc"; } + +.fa-sort-alpha-down:before { + content: "\f15d"; } + +.fa-sort-alpha-up:before { + content: "\f15e"; } + +.fa-sort-amount-down:before { + content: "\f160"; } + +.fa-sort-amount-up:before { + content: "\f161"; } + +.fa-sort-down:before { + content: "\f0dd"; } + +.fa-sort-numeric-down:before { + content: "\f162"; } + +.fa-sort-numeric-up:before { + content: "\f163"; } + +.fa-sort-up:before { + content: "\f0de"; } + +.fa-soundcloud:before { + content: "\f1be"; } + +.fa-space-shuttle:before { + content: "\f197"; } + +.fa-speakap:before { + content: "\f3f3"; } + +.fa-spinner:before { + content: "\f110"; } + +.fa-spotify:before { + content: "\f1bc"; } + +.fa-square:before { + content: "\f0c8"; } + +.fa-square-full:before { + content: "\f45c"; } + +.fa-stack-exchange:before { + content: "\f18d"; } + +.fa-stack-overflow:before { + content: "\f16c"; } + +.fa-star:before { + content: "\f005"; } + +.fa-star-half:before { + content: "\f089"; } + +.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-strava:before { + content: "\f428"; } + +.fa-street-view:before { + content: "\f21d"; } + +.fa-strikethrough:before { + content: "\f0cc"; } + +.fa-stripe:before { + content: "\f429"; } + +.fa-stripe-s:before { + content: "\f42a"; } + +.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-sun:before { + content: "\f185"; } + +.fa-superpowers:before { + content: "\f2dd"; } + +.fa-superscript:before { + content: "\f12b"; } + +.fa-supple:before { + content: "\f3f9"; } + +.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-tachometer-alt:before { + content: "\f3fd"; } + +.fa-tag:before { + content: "\f02b"; } + +.fa-tags:before { + content: "\f02c"; } + +.fa-tasks:before { + content: "\f0ae"; } + +.fa-taxi:before { + content: "\f1ba"; } + +.fa-telegram:before { + content: "\f2c6"; } + +.fa-telegram-plane:before { + content: "\f3fe"; } + +.fa-tencent-weibo:before { + content: "\f1d5"; } + +.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-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-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-toggle-off:before { + content: "\f204"; } + +.fa-toggle-on:before { + content: "\f205"; } + +.fa-trademark:before { + content: "\f25c"; } + +.fa-train:before { + content: "\f238"; } + +.fa-transgender:before { + content: "\f224"; } + +.fa-transgender-alt:before { + content: "\f225"; } + +.fa-trash:before { + content: "\f1f8"; } + +.fa-trash-alt:before { + content: "\f2ed"; } + +.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-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-uikit:before { + content: "\f403"; } + +.fa-umbrella:before { + content: "\f0e9"; } + +.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-usb:before { + content: "\f287"; } + +.fa-user:before { + content: "\f007"; } + +.fa-user-circle:before { + content: "\f2bd"; } + +.fa-user-md:before { + content: "\f0f0"; } + +.fa-user-plus:before { + content: "\f234"; } + +.fa-user-secret:before { + content: "\f21b"; } + +.fa-user-times:before { + content: "\f235"; } + +.fa-users:before { + content: "\f0c0"; } + +.fa-ussunnah:before { + content: "\f407"; } + +.fa-utensil-spoon:before { + content: "\f2e5"; } + +.fa-utensils:before { + content: "\f2e7"; } + +.fa-vaadin:before { + content: "\f408"; } + +.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-viber:before { + content: "\f409"; } + +.fa-video:before { + content: "\f03d"; } + +.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-volleyball-ball:before { + content: "\f45f"; } + +.fa-volume-down:before { + content: "\f027"; } + +.fa-volume-off:before { + content: "\f026"; } + +.fa-volume-up:before { + content: "\f028"; } + +.fa-vuejs:before { + content: "\f41f"; } + +.fa-warehouse:before { + content: "\f494"; } + +.fa-weibo:before { + content: "\f18a"; } + +.fa-weight:before { + content: "\f496"; } + +.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-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-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-wrench:before { + content: "\f0ad"; } + +.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-yandex:before { + content: "\f413"; } + +.fa-yandex-international:before { + content: "\f414"; } + +.fa-yelp:before { + content: "\f1e9"; } + +.fa-yen-sign:before { + content: "\f157"; } + +.fa-yoast:before { + content: "\f2b1"; } + +.fa-youtube:before { + content: "\f167"; } + +.fa-youtube-square:before { + content: "\f431"; } + +.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; } diff --git a/css/font-awesome/css/fontawesome.min.css b/css/font-awesome/css/fontawesome.min.css new file mode 100644 index 0000000..67ae218 --- /dev/null +++ b/css/font-awesome/css/fontawesome.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.0.7 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.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{-webkit-animation:a 2s infinite linear;animation:a 2s infinite linear}.fa-pulse{-webkit-animation:a 1s infinite steps(8);animation:a 1s infinite steps(8)}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.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-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.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-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-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.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-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.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-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.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-aws:before{content:"\f375"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.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-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-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.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-blind:before{content:"\f29d"}.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-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-briefcase:before{content:"\f0b1"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.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-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-car:before{content:"\f1b9"}.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-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.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-certificate:before{content:"\f0a3"}.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-square:before{content:"\f14a"}.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-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.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-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.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-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comments:before{content:"\f086"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crosshairs:before{content:"\f05b"}.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-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-dot-circle:before{content:"\f192"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drupal:before{content:"\f1a9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.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-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.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-excel:before{content:"\f1c3"}.fa-file-image:before{content:"\f1c5"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-firstdraft:before{content:"\f3a1"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.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-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-frown:before{content:"\f119"}.fa-futbol:before{content:"\f1e3"}.fa-gamepad:before{content:"\f11b"}.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-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.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-martini:before{content:"\f000"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.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-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.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-hand-lizard:before{content:"\f258"}.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-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-symbol:before{content:"\f47e"}.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-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.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-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-key:before{content:"\f084"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-korvue:before{content:"\f42f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.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-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-male:before{content:"\f183"}.fa-map:before{content:"\f279"}.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-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-maxcdn:before{content:"\f136"}.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-meh:before{content:"\f11a"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.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-alt:before{content:"\f3d1"}.fa-moon:before{content:"\f186"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.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-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-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-paragraph:before{content:"\f1dd"}.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-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-percent:before{content:"\f295"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phone:before{content:"\f095"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-plane:before{content:"\f072"}.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-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-print:before{content:"\f02f"}.fa-product-hunt:before{content:"\f288"}.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-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-rebel:before{content:"\f1d0"}.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-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-road:before{content:"\f018"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-rupee-sign:before{content:"\f156"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.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-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shower:before{content:"\f2cc"}.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-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-spotify:before{content:"\f1bc"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-star:before{content:"\f005"}.fa-star-half:before{content:"\f089"}.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-strava:before{content:"\f428"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.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-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.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-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.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-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-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-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-trademark:before{content:"\f25c"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.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-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-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.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-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-circle:before{content:"\f2bd"}.fa-user-md:before{content:"\f0f0"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.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-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.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-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-warehouse:before{content:"\f494"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.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-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-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-wrench:before{content:"\f0ad"}.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-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.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} \ No newline at end of file diff --git a/css/font-awesome/webfonts/fa-brands-400.eot b/css/font-awesome/webfonts/fa-brands-400.eot new file mode 100644 index 0000000..fa56790 Binary files /dev/null and b/css/font-awesome/webfonts/fa-brands-400.eot differ diff --git a/css/font-awesome/webfonts/fa-brands-400.svg b/css/font-awesome/webfonts/fa-brands-400.svg new file mode 100644 index 0000000..2235f3e --- /dev/null +++ b/css/font-awesome/webfonts/fa-brands-400.svg @@ -0,0 +1,1008 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/css/font-awesome/webfonts/fa-brands-400.ttf b/css/font-awesome/webfonts/fa-brands-400.ttf new file mode 100644 index 0000000..6bef897 Binary files /dev/null and b/css/font-awesome/webfonts/fa-brands-400.ttf differ diff --git a/css/font-awesome/webfonts/fa-brands-400.woff b/css/font-awesome/webfonts/fa-brands-400.woff new file mode 100644 index 0000000..2b5d946 Binary files /dev/null and b/css/font-awesome/webfonts/fa-brands-400.woff differ diff --git a/css/font-awesome/webfonts/fa-brands-400.woff2 b/css/font-awesome/webfonts/fa-brands-400.woff2 new file mode 100644 index 0000000..7008b03 Binary files /dev/null and b/css/font-awesome/webfonts/fa-brands-400.woff2 differ diff --git a/css/font-awesome/webfonts/fa-regular-400.eot b/css/font-awesome/webfonts/fa-regular-400.eot new file mode 100644 index 0000000..e7e4726 Binary files /dev/null and b/css/font-awesome/webfonts/fa-regular-400.eot differ diff --git a/css/font-awesome/webfonts/fa-regular-400.svg b/css/font-awesome/webfonts/fa-regular-400.svg new file mode 100644 index 0000000..7dbd736 --- /dev/null +++ b/css/font-awesome/webfonts/fa-regular-400.svg @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/css/font-awesome/webfonts/fa-regular-400.ttf b/css/font-awesome/webfonts/fa-regular-400.ttf new file mode 100644 index 0000000..d61aedd Binary files /dev/null and b/css/font-awesome/webfonts/fa-regular-400.ttf differ diff --git a/css/font-awesome/webfonts/fa-regular-400.woff b/css/font-awesome/webfonts/fa-regular-400.woff new file mode 100644 index 0000000..8153f4f Binary files /dev/null and b/css/font-awesome/webfonts/fa-regular-400.woff differ diff --git a/css/font-awesome/webfonts/fa-regular-400.woff2 b/css/font-awesome/webfonts/fa-regular-400.woff2 new file mode 100644 index 0000000..44b010a Binary files /dev/null and b/css/font-awesome/webfonts/fa-regular-400.woff2 differ diff --git a/css/font-awesome/webfonts/fa-solid-900.eot b/css/font-awesome/webfonts/fa-solid-900.eot new file mode 100644 index 0000000..af7eea4 Binary files /dev/null and b/css/font-awesome/webfonts/fa-solid-900.eot differ diff --git a/css/font-awesome/webfonts/fa-solid-900.svg b/css/font-awesome/webfonts/fa-solid-900.svg new file mode 100644 index 0000000..41d8bee --- /dev/null +++ b/css/font-awesome/webfonts/fa-solid-900.svg @@ -0,0 +1,1518 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/css/font-awesome/webfonts/fa-solid-900.ttf b/css/font-awesome/webfonts/fa-solid-900.ttf new file mode 100644 index 0000000..5f00b17 Binary files /dev/null and b/css/font-awesome/webfonts/fa-solid-900.ttf differ diff --git a/css/font-awesome/webfonts/fa-solid-900.woff b/css/font-awesome/webfonts/fa-solid-900.woff new file mode 100644 index 0000000..0f0fa09 Binary files /dev/null and b/css/font-awesome/webfonts/fa-solid-900.woff differ diff --git a/css/font-awesome/webfonts/fa-solid-900.woff2 b/css/font-awesome/webfonts/fa-solid-900.woff2 new file mode 100644 index 0000000..64840a6 Binary files /dev/null and b/css/font-awesome/webfonts/fa-solid-900.woff2 differ diff --git a/css/main.css b/css/main.css new file mode 100644 index 0000000..7874758 --- /dev/null +++ b/css/main.css @@ -0,0 +1,3939 @@ +/* =================================================================== + * + * Sublime v1.0 Main Stylesheet + * 06-10-2018 + * ------------------------------------------------------------------ + * + * TOC: + * # base style overrides + * ## links + * # typography & general theme styles + * ## Lists + * ## responsive video container + * ## floated image + * ## tables + * ## Spacing + * # preloader + * # forms + * ## Style Placeholder Text + * ## Change Autocomplete styles + * # buttons + * # additional components + * ## alert box + * ## additional typo styles + * ## skillbars + * # reusable and common theme styles + * ## display headings + * ## section header + * ## grid overlay + * # header styles + * ## header logo + * ## main navigation + * ## mobile menu toggle + * # home + * ## home content + * ## home video link + * ## home buttons + * ## home scroll + * ## home social + * ## home animations + * # about + * ## about process + * # services + * ## services list + * # works + * ## bricks/masonry + * # clients + * # testimonials + * # contact + * ## contact social + * # footer + * ## copyright + * ## go top + * + * =================================================================== */ + + +/* =================================================================== + * # base style overrides + * + * ------------------------------------------------------------------- */ +html { + font-size: 10px; +} + +@media only screen and (max-width:400px) { + html { + font-size: 9.411764705882353px; + } + +} + +html, +body { + height: 100%; +} + +body { + background: #121212; + font-family: "Nunito Sans", sans-serif; + font-size: 1.7rem; + font-style: normal; + font-weight: normal; + line-height: 1.941; + color: rgba(255, 255, 255, 0.3); + margin: 0; + padding: 0; +} + +/* ------------------------------------------------------------------- + * ## links + * ------------------------------------------------------------------- */ +a { + color: #793ea5; + -webkit-transition: all 0.3s ease-in-out; + transition: all 0.3s ease-in-out; +} + +a:hover, +a:focus, +a:active { + color: #FFFFFF; +} + +a:hover, +a:active { + outline: 0; +} + + +/* =================================================================== + * # typography & general theme styles + * + * ------------------------------------------------------------------- */ +h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { + font-family: "Montserrat", sans-serif; + font-weight: 600; + color: #FFFFFF; + text-rendering: optimizeLegibility; +} + +h1, .h1, h2, .h2, h3, .h3, h4, .h4 { + margin-top: 6rem; + margin-bottom: 1.8rem; +} + +@media only screen and (max-width:600px) { + h1, .h1, h2, .h2, h3, .h3, h4, .h4 { + margin-top: 5.1rem; + } +} + +h5, .h5, h6, .h6 { + margin-top: 4.2rem; + margin-bottom: 1.5rem; +} + +@media only screen and (max-width:600px) { + h5, .h5, h6, .h6 { + margin-top: 3.6rem; + margin-bottom: 0.9rem; + } +} + +h1, .h1 { + font-size: 3.6rem; + line-height: 1.25; + letter-spacing: -.1rem; +} + +@media only screen and (max-width:600px) { + h1, .h1 { + font-size: 3.3rem; + letter-spacing: -.07rem; + } +} + +h2, .h2 { + font-size: 3rem; + line-height: 1.3; +} + +h3, .h3 { + font-size: 2.4rem; + line-height: 1.25; +} + +h4, .h4 { + font-size: 2.1rem; + line-height: 1.286; +} + +h5, .h5 { + font-size: 1.8rem; + line-height: 1.333; +} + +h6, .h6 { + font-size: 1.6rem; + line-height: 1.3125; + text-transform: uppercase; + letter-spacing: .16rem; +} + +p img { + margin: 0; +} + +p.lead { + font-family: "Nunito Sans", sans-serif; + font-weight: 300; + font-size: 2.4rem; + line-height: 1.625; + margin-bottom: 3.6rem; + color: rgba(255, 255, 255, 0.2); +} + +@media only screen and (max-width:1200px) { + p.lead { + font-size: 2.2rem; + } + +} + +@media only screen and (max-width:1000px) { + p.lead { + font-size: 2.1rem; + } + +} + +@media only screen and (max-width:800px) { + p.lead { + font-size: 2rem; + } + +} + +em, +i, +strong, +b { + font-size: inherit; + line-height: inherit; +} + +em, +i { + font-family: "Nunito Sans", sans-serif; + font-style: italic; +} + +strong, +b { + font-family: "Nunito Sans", sans-serif; + font-weight: 700; +} + +small { + font-size: 1.2rem; + line-height: inherit; +} + +blockquote { + margin: 3.9rem 0; + padding-left: 4.5rem; + position: relative; +} + +blockquote:before { + content: "\201C"; + font-size: 10rem; + line-height: 0px; + margin: 0; + color: rgba(255, 255, 255, 0.15); + font-family: arial, sans-serif; + position: absolute; + top: 3.6rem; + left: 0; +} + +blockquote p { + font-family: "Nunito Sans", sans-serif; + padding: 0; + font-size: 2.1rem; + line-height: 1.857; + color: rgba(255, 255, 255, 0.7); +} + +blockquote cite { + display: block; + font-family: "Montserrat", sans-serif; + font-size: 1.4rem; + font-style: normal; + line-height: 1.5; +} + +blockquote cite:before { + content: "\2014 \0020"; +} + +blockquote cite a, +blockquote cite a:visited { + color: rgba(255, 255, 255, 0.3); + border: none; +} + +abbr { + font-family: "Nunito Sans", sans-serif; + font-weight: 700; + font-variant: small-caps; + text-transform: lowercase; + letter-spacing: .05rem; + color: rgba(255, 255, 255, 0.2); +} + +var, +kbd, +samp, +code, +pre { + font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace; +} + +pre { + padding: 2.4rem 3rem 3rem; + background: #F1F1F1; + overflow-x: auto; +} + +code { + font-size: 1.4rem; + margin: 0 .2rem; + padding: .3rem .6rem; + white-space: nowrap; + background: #1f1f1f; + border: 1px solid #252525; + color: rgba(255, 255, 255, 0.7); + border-radius: 3px; +} + +pre > code { + display: block; + white-space: pre; + line-height: 2; + padding: 0; + margin: 0; +} + +pre.prettyprint > code { + border: none; +} + +del { + text-decoration: line-through; +} + +abbr[title], +dfn[title] { + border-bottom: 1px dotted; + cursor: help; + text-decoration: none; +} + +mark { + background: #ffd900; + color: #000000; +} + +hr { + border: solid rgba(255, 255, 255, 0.05); + border-width: 1px 0 0; + clear: both; + margin: 2.4rem 0 1.5rem; + height: 0; +} + +/* ------------------------------------------------------------------- + * ## Lists + * ------------------------------------------------------------------- */ +ol { + list-style: decimal; +} + +ul { + list-style: disc; +} + +li { + display: list-item; +} + +ol, +ul { + margin-left: 1.7rem; +} + +ul li { + padding-left: .4rem; +} + +ul ul, +ul ol, +ol ol, +ol ul { + margin: .6rem 0 .6rem 1.7rem; +} + +ul.disc li { + display: list-item; + list-style: none; + padding: 0 0 0 .8rem; + position: relative; +} + +ul.disc li::before { + content: ""; + display: inline-block; + width: 8px; + height: 8px; + border-radius: 50%; + background: #793ea5; + position: absolute; + left: -17px; + top: 11px; + vertical-align: middle; +} + +dt { + margin: 0; + color: #793ea5; +} + +dd { + margin: 0 0 0 2rem; +} + +/* ------------------------------------------------------------------- + * ## responsive video container + * ------------------------------------------------------------------- */ +.video-container { + position: relative; + padding-bottom: 56.25%; + height: 0; + overflow: hidden; +} + +.video-container iframe, +.video-container object, +.video-container embed, +.video-container video { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +/* ------------------------------------------------------------------- + * ## floated image + * ------------------------------------------------------------------- */ +img.pull-right { + margin: 1.5rem 0 0 3rem; +} + +img.pull-left { + margin: 1.5rem 3rem 0 0; +} + +/* ------------------------------------------------------------------- + * ## tables + * ------------------------------------------------------------------- */ +table { + border-width: 0; + width: 100%; + max-width: 100%; + font-family: "Nunito Sans", sans-serif; + border-collapse: collapse; +} + +th, +td { + padding: 1.5rem 3rem; + text-align: left; + border-bottom: 1px solid rgba(255, 255, 255, 0.05); +} + +th { + color: #FFFFFF; + font-family: "Nunito Sans", sans-serif; + font-weight: 700; +} + +td { + line-height: 1.5; +} + +th:first-child, +td:first-child { + padding-left: 0; +} + +th:last-child, +td:last-child { + padding-right: 0; +} + +.table-responsive { + overflow-x: auto; + -webkit-overflow-scrolling: touch; +} + +/* ------------------------------------------------------------------- + * ## Spacing + * ------------------------------------------------------------------- */ +button, +.btn { + margin-bottom: 1.2rem; +} + +fieldset { + margin-bottom: 1.5rem; +} + +input, +textarea, +select, +pre, +blockquote, +figure, +table, +p, +ul, +ol, +dl, +form, +.video-container, +.ss-custom-select { + margin-bottom: 3rem; +} + + +/* =================================================================== + * # preloader - (_preloader-dots.scss) + * + * ------------------------------------------------------------------- */ +#preloader { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: #151515; + z-index: 800; + height: 100vh; + width: 100%; + overflow: hidden; +} + +.no-js #preloader, +.oldie #preloader { + display: none; +} + +#loader { + position: absolute; + left: 50%; + top: 50%; + width: 6px; + height: 6px; + padding: 0; + display: inline-block; + -webkit-transform: translate3d(-50%, -50%, 0); + -ms-transform: translate3d(-50%, -50%, 0); + transform: translate3d(-50%, -50%, 0); +} + +#loader > div { + content: ""; + background: #FFFFFF; + width: 6px; + height: 6px; + position: absolute; + top: 0; + left: 0; + border-radius: 50%; +} + +#loader > div:nth-of-type(1) { + left: 15px; +} + +#loader > div:nth-of-type(3) { + left: -15px; +} + +/* dots jump */ +.dots-jump > div { + -webkit-animation: dots-jump 1.2s infinite ease; + animation: dots-jump 1.2s infinite ease; + animation-delay: 0.2s; +} + +.dots-jump > div:nth-of-type(1) { + animation-delay: 0.4s; +} + +.dots-jump > div:nth-of-type(3) { + animation-delay: 0s; +} + +@-webkit-keyframes dots-jump { + 0% { + top: 0; + } + + 40% { + top: -6px; + } + + 80% { + top: 0; + } + +} + +@keyframes dots-jump { + 0% { + top: 0; + } + + 40% { + top: -6px; + } + + 80% { + top: 0; + } + +} + +/* dots fade */ +.dots-fade > div { + -webkit-animation: dots-fade 1.6s infinite ease; + animation: dots-fade 1.6s infinite ease; + animation-delay: 0.4s; +} + +.dots-fade > div:nth-of-type(1) { + animation-delay: 0.8s; +} + +.dots-fade > div:nth-of-type(3) { + animation-delay: 0s; +} + +@-webkit-keyframes dots-fade { + 0% { + opacity: 1; + } + + 40% { + opacity: 0.2; + } + + 80% { + opacity: 1; + } + +} + +@keyframes dots-fade { + 0% { + opacity: 1; + } + + 40% { + opacity: 0.2; + } + + 80% { + opacity: 1; + } + +} + +/* dots pulse */ +.dots-pulse > div { + -webkit-animation: dots-pulse 1.2s infinite ease; + animation: dots-pulse 1.2s infinite ease; + animation-delay: 0.2s; +} + +.dots-pulse > div:nth-of-type(1) { + animation-delay: 0.4s; +} + +.dots-pulse > div:nth-of-type(3) { + animation-delay: 0s; +} + +@-webkit-keyframes dots-pulse { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + + 40% { + -webkit-transform: scale(1.1); + transform: scale(1.3); + } + + 80% { + -webkit-transform: scale(1); + transform: scale(1); + } + +} + +@keyframes dots-pulse { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + + 40% { + -webkit-transform: scale(1.1); + transform: scale(1.3); + } + + 80% { + -webkit-transform: scale(1); + transform: scale(1); + } + +} + + +/* =================================================================== + * # forms + * + * ------------------------------------------------------------------- */ +fieldset { + border: none; +} + +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea, +select { + display: block; + height: 6rem; + padding: 1.5rem 2.4rem; + border: 0; + outline: none; + color: rgba(255, 255, 255, 0.7); + font-family: "Nunito Sans", sans-serif; + font-size: 1.5rem; + line-height: 3rem; + max-width: 100%; + background: rgba(255, 255, 255, 0.05); + -webkit-transition: all 0.3s ease-in-out; + transition: all 0.3s ease-in-out; +} + +.ss-custom-select { + position: relative; + padding: 0; +} + +.ss-custom-select select { + -webkit-appearance: none; + -moz-appearance: none; + -ms-appearance: none; + -o-appearance: none; + appearance: none; + text-indent: 0.01px; + text-overflow: ''; + margin: 0; + line-height: 3rem; + vertical-align: middle; +} + +.ss-custom-select select option { + padding-left: 2rem; + padding-right: 2rem; + color: #666666; + background: #FFFFFF; +} + +.ss-custom-select select::-ms-expand { + display: none; +} + +.ss-custom-select::after { + border-bottom: 2px solid rgba(255, 255, 255, 0.5); + border-right: 2px solid rgba(255, 255, 255, 0.5); + content: ''; + display: block; + height: 8px; + width: 8px; + margin-top: -7px; + pointer-events: none; + position: absolute; + right: 2.4rem; + top: 50%; + -webkit-transform-origin: 66% 66%; + -ms-transform-origin: 66% 66%; + transform-origin: 66% 66%; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-transition: all 0.15s ease-in-out; + transition: all 0.15s ease-in-out; +} + +/* IE9 and below */ +.oldie .cl-custom-select::after { + display: none; +} + +textarea { + min-height: 25rem; +} + +input[type="email"]:focus, +input[type="number"]:focus, +input[type="search"]:focus, +input[type="text"]:focus, +input[type="tel"]:focus, +input[type="url"]:focus, +input[type="password"]:focus, +textarea:focus, +select:focus { + color: #FFFFFF; +} + +label, +legend { + font-family: "Nunito Sans", sans-serif; + font-weight: 700; + font-size: 1.4rem; + margin-bottom: .9rem; + line-height: 1.714; + color: #FFFFFF; + display: block; +} + +input[type="checkbox"], +input[type="radio"] { + display: inline; +} + +label > .label-text { + display: inline-block; + margin-left: 1rem; + font-family: "Nunito Sans", sans-serif; + font-weight: normal; + line-height: inherit; +} + +label > input[type="checkbox"], +label > input[type="radio"] { + margin: 0; + position: relative; + top: .15rem; +} + +/* ------------------------------------------------------------------- + * ## Style Placeholder Text + * ------------------------------------------------------------------- */ +::-webkit-input-placeholder { + + /* WebKit, Blink, Edge */ + color: rgba(255, 255, 255, 0.4); +} + +:-moz-placeholder { + + /* Mozilla Firefox 4 to 18 */ + color: rgba(255, 255, 255, 0.4); + opacity: 1; +} + +::-moz-placeholder { + + /* Mozilla Firefox 19+ */ + color: rgba(255, 255, 255, 0.4); + opacity: 1; +} + +:-ms-input-placeholder { + + /* Internet Explorer 10-11 */ + color: rgba(255, 255, 255, 0.4); +} + +::-ms-input-placeholder { + + /* Microsoft Edge */ + color: rgba(255, 255, 255, 0.4); +} + +::placeholder { + + /* Most modern browsers support this now. */ + color: rgba(255, 255, 255, 0.4); +} + +.placeholder { + color: rgba(255, 255, 255, 0.4) !important; +} + +/* ------------------------------------------------------------------- + * ## Change Autocomplete styles in Chrome + * ------------------------------------------------------------------- */ +input:-webkit-autofill, +input:-webkit-autofill:hover, +input:-webkit-autofill:focus +input:-webkit-autofill, +textarea:-webkit-autofill, +textarea:-webkit-autofill:hover +textarea:-webkit-autofill:focus, +select:-webkit-autofill, +select:-webkit-autofill:hover, +select:-webkit-autofill:focus { + -webkit-text-fill-color: #793ea5; + transition: background-color 5000s ease-in-out 0s; +} + + +/* =================================================================== + * # buttons + * + * ------------------------------------------------------------------- */ +.btn, +button, +input[type="submit"], +input[type="reset"], +input[type="button"] { + display: inline-block; + font-family: "Nunito Sans", sans-serif; + font-weight: 700; + font-size: 1.2rem; + text-transform: uppercase; + letter-spacing: .4rem; + height: 5.4rem; + line-height: 5rem; + padding: 0 3rem; + margin: 0 .3rem 1.2rem 0; + color: #000000; + text-decoration: none; + text-align: center; + white-space: nowrap; + cursor: pointer; + -webkit-transition: all 0.3s ease-in-out; + transition: all 0.3s ease-in-out; + background-color: #c5c5c5; + border: .2rem solid #c5c5c5; +} + +.btn:hover, +button:hover, +input[type="submit"]:hover, +input[type="reset"]:hover, +input[type="button"]:hover, +.btn:focus, +button:focus, +input[type="submit"]:focus, +input[type="reset"]:focus, +input[type="button"]:focus { + background-color: #b8b8b8; + border-color: #b8b8b8; + color: #000000; + outline: 0; +} + +/* button primary + * ------------------------------------------------- */ +.btn.btn--primary, +button.btn--primary, +input[type="submit"].btn--primary, +input[type="reset"].btn--primary, +input[type="button"].btn--primary { + background: #793ea5; + border-color: #793ea5; + color: #FFFFFF; +} + +.btn.btn--primary:hover, +button.btn--primary:hover, +input[type="submit"].btn--primary:hover, +input[type="reset"].btn--primary:hover, +input[type="button"].btn--primary:hover, +.btn.btn--primary:focus, +button.btn--primary:focus, +input[type="submit"].btn--primary:focus, +input[type="reset"].btn--primary:focus, +input[type="button"].btn--primary:focus { + background: #6b3792; + border-color: #6b3792; +} + +/* button modifiers + * ------------------------------------------------- */ +.btn.full-width, +button.full-width { + width: 100%; + margin-right: 0; +} + +.btn--medium, +button.btn--medium { + height: 5.7rem !important; + line-height: 5.3rem !important; +} + +.btn--large, +button.btn--large { + height: 6rem !important; + line-height: 5.6rem !important; +} + +.btn--stroke, +button.btn--stroke { + background: transparent !important; + border: 0.2rem solid #FFFFFF; + color: #FFFFFF; +} + +.btn--stroke:hover, +button.btn--stroke:hover { + background: #FFFFFF !important; + border: 0.2rem solid #FFFFFF; + color: #000000; +} + +.btn--pill, +button.btn--pill { + padding-left: 3rem !important; + padding-right: 3rem !important; + border-radius: 1000px !important; +} + +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} + + +/* =================================================================== + * # additional components + * + * ------------------------------------------------------------------- */ + +/* ------------------------------------------------------------------- + * ## alert box - (_alert-box.scss) + * ------------------------------------------------------------------- */ +.alert-box { + padding: 2.1rem 4rem 2.1rem 3rem; + position: relative; + margin-bottom: 3rem; + border-radius: 3px; + font-family: "Nunito Sans", sans-serif; + font-weight: 600; + font-size: 1.5rem; + line-height: 1.6; +} + +.alert-box__close { + position: absolute; + right: 1.8rem; + top: 1.8rem; + cursor: pointer; +} + +.alert-box__close.fa { + font-size: 12px; +} + +.alert-box--error { + background-color: #ffd1d2; + color: #e65153; +} + +.alert-box--success { + background-color: #c8e675; + color: #758c36; +} + +.alert-box--info { + background-color: #d7ecfb; + color: #4a95cc; +} + +.alert-box--notice { + background-color: #fff099; + color: #bba31b; +} + +/* ------------------------------------------------------------------- + * ## additional typo styles - (_additional-typo.scss) + * ------------------------------------------------------------------- */ + +/* drop cap + * ----------------------------------------------- */ +.drop-cap:first-letter { + float: left; + margin: 0; + padding: 1.5rem .6rem 0 0; + font-family: "Nunito Sans", sans-serif; + font-weight: 700; + font-size: 8.4rem; + line-height: 6rem; + text-indent: 0; + background: transparent; + color: rgba(255, 255, 255, 0.7); +} + +/* line definition style + * ----------------------------------------------- */ +.lining dt, +.lining dd { + display: inline; + margin: 0; +} + +.lining dt + dt:before, +.lining dd + dt:before { + content: "\A"; + white-space: pre; +} + +.lining dd + dd:before { + content: ", "; +} + +.lining dd + dd:before { + content: ", "; +} + +.lining dd:before { + content: ": "; + margin-left: -0.2em; +} + +/* dictionary definition style + * ----------------------------------------------- */ +.dictionary-style dt { + display: inline; + counter-reset: definitions; +} + +.dictionary-style dt + dt:before { + content: ", "; + margin-left: -0.2em; +} + +.dictionary-style dd { + display: block; + counter-increment: definitions; +} + +.dictionary-style dd:before { + content: counter(definitions, decimal) ". "; +} + +/** + * Pull Quotes + * ----------- + * markup: + * + * + * + * --------------------------------------------------------------------- */ +.pull-quote { + position: relative; + padding: 2.1rem 3rem 2.1rem 0px; +} + +.pull-quote:before, +.pull-quote:after { + height: 1em; + position: absolute; + font-size: 10rem; + font-family: Arial, Sans-Serif; + color: rgba(255, 255, 255, 0.15); +} + +.pull-quote:before { + content: "\201C"; + top: -3.6rem; + left: 0; +} + +.pull-quote:after { + content: '\201D'; + bottom: 3.6rem; + right: 0; +} + +.pull-quote blockquote { + margin: 0; +} + +.pull-quote blockquote:before { + content: none; +} + +/** + * Stats Tab + * --------- + * markup: + * + * + * + * Extend this object into your markup. + * + * --------------------------------------------------------------------- */ +.stats-tabs { + padding: 0; + margin: 3rem 0; +} + +.stats-tabs li { + display: inline-block; + margin: 0 1.5rem 3rem 0; + padding: 0 1.5rem 0 0; + border-right: 1px solid rgba(255, 255, 255, 0.05); +} + +.stats-tabs li:last-child { + margin: 0; + padding: 0; + border: none; +} + +.stats-tabs li a { + display: inline-block; + font-size: 2.5rem; + font-family: "Nunito Sans", sans-serif; + font-weight: 700; + border: none; + color: #FFFFFF; +} + +.stats-tabs li a:hover { + color: #793ea5; +} + +.stats-tabs li a em { + display: block; + margin: .6rem 0 0 0; + font-family: "Nunito Sans", sans-serif; + font-size: 1.4rem; + font-weight: normal; + font-style: normal; +} + +/* ------------------------------------------------------------------- + * ## skillbars - (_skillbars.scss) + * ------------------------------------------------------------------- */ +.skill-bars { + list-style: none; + margin: 6rem 0 3rem; +} + +.skill-bars li { + height: .6rem; + background: rgba(255, 255, 255, 0.1); + width: 100%; + margin-bottom: 6.9rem; + padding: 0; + position: relative; +} + +.skill-bars li strong { + position: absolute; + left: 0; + top: -3rem; + font-family: "Nunito Sans", sans-serif; + font-weight: 700; + color: #FFFFFF; + text-transform: uppercase; + letter-spacing: .2rem; + font-size: 1.4rem; + line-height: 2.4rem; +} + +.skill-bars li .progress { + background: #793ea5; + position: relative; + height: 100%; +} + +.skill-bars li .progress span { + position: absolute; + right: 0; + top: -3.6rem; + display: block; + font-family: "Nunito Sans", sans-serif; + color: #FFFFFF; + font-size: 1.1rem; + line-height: 1; + background: #793ea5; + padding: .6rem .6rem; + border-radius: 3px; +} + +.skill-bars li .progress span::after { + position: absolute; + left: 50%; + bottom: -5px; + margin-left: -5px; + border-right: 5px solid transparent; + border-left: 5px solid transparent; + border-top: 5px solid #793ea5; + content: ""; +} + +.skill-bars li .percent5 { + width: 5%; +} + +.skill-bars li .percent10 { + width: 10%; +} + +.skill-bars li .percent15 { + width: 15%; +} + +.skill-bars li .percent20 { + width: 20%; +} + +.skill-bars li .percent25 { + width: 25%; +} + +.skill-bars li .percent30 { + width: 30%; +} + +.skill-bars li .percent35 { + width: 35%; +} + +.skill-bars li .percent40 { + width: 40%; +} + +.skill-bars li .percent45 { + width: 45%; +} + +.skill-bars li .percent50 { + width: 50%; +} + +.skill-bars li .percent55 { + width: 55%; +} + +.skill-bars li .percent60 { + width: 60%; +} + +.skill-bars li .percent65 { + width: 65%; +} + +.skill-bars li .percent70 { + width: 70%; +} + +.skill-bars li .percent75 { + width: 75%; +} + +.skill-bars li .percent80 { + width: 80%; +} + +.skill-bars li .percent85 { + width: 85%; +} + +.skill-bars li .percent90 { + width: 90%; +} + +.skill-bars li .percent95 { + width: 95%; +} + +.skill-bars li .percent100 { + width: 100%; +} + + +/* =================================================================== + * # reusable and common theme styles + * + * ------------------------------------------------------------------- */ +body.menu-is-open { + overflow: hidden; +} + +.wide { + max-width: 1400px; +} + +.narrow { + max-width: 1000px; +} + +.bit-narrow { + max-width: 1120px; +} + +.darker { + background-color: #0f0f0f; +} + +/* ------------------------------------------------------------------- + * ## display headings + * ------------------------------------------------------------------- */ +.display-1 { + font-family: "Montserrat", sans-serif; + font-weight: 600; + font-size: 4.6rem; + line-height: 1.5; + letter-spacing: -0.03rem; + margin-top: 0; + margin-bottom: 4.8rem; +} + +.subhead { + font-family: "Montserrat", sans-serif; + font-weight: 600; + font-size: 1.8rem; + line-height: 1.333; + text-transform: uppercase; + letter-spacing: .25rem; + color: #793ea5; + margin-top: 0; + margin-bottom: 3rem; + position: relative; +} + +.item-title { + font-size: 2.4rem; + line-height: 1.5; + margin-top: 0; + margin-bottom: 2.4rem; +} + +/* ------------------------------------------------------------------- + * ## section header + * ------------------------------------------------------------------- */ +.section-header.has-bottom-sep { + padding-bottom: 1.5rem; + position: relative; + text-align: center; +} + +.section-header.has-bottom-sep::before { + content: ""; + display: inline-block; + height: 1px; + width: 550px; + background-color: rgba(255, 255, 255, 0.05); + position: absolute; + bottom: 0; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + transform: translateX(-50%); +} + +/* ------------------------------------------------------------------- + * ## grid overlay + * ------------------------------------------------------------------- */ +.grid-overlay { + display: block; + content: ""; + position: absolute; + top: 0; + left: 50%; + bottom: 0; + right: 0; + max-width: 1200px; + width: 89%; + height: 100%; + opacity: .5; + border-right: 1px solid rgba(255, 255, 255, 0.1); + border-left: 1px solid rgba(255, 255, 255, 0.1); + -webkit-transform: translate3d(-50%, 0, 0); + -ms-transform: translate3d(-50%, 0, 0); + transform: translate3d(-50%, 0, 0); + z-index: 3; +} + +.grid-overlay > div, +.grid-overlay::before, +.grid-overlay::after { + background-color: rgba(255, 255, 255, 0.1); + position: absolute; + top: 0; + bottom: 0; + height: 100%; + width: 1px; +} + +.grid-overlay::before { + content: ""; + left: 25%; +} + +.grid-overlay::after { + content: ""; + right: 25%; +} + +.grid-overlay > div { + left: 50%; +} + +/* ------------------------------------------------------------------- + * responsive: + * reusable and common theme styles + * ------------------------------------------------------------------- */ +@media only screen and (max-width:1600px) { + .grid-overlay { + border-right: none !important; + border-left: none !important; + } + + .grid-overlay::before { + left: 22.5%; + } + + .grid-overlay::after { + right: 22.5%; + } + +} + +@media only screen and (max-width:1200px) { + .display-1 { + font-size: 4.5rem; + } + + .display-1 br { + display: none; + } + +} + +@media only screen and (max-width:1100px) { + .display-1 { + font-size: 4.2rem; + } + +} + +@media only screen and (max-width:1000px) { + .display-1 { + font-size: 4rem; + } + +} + +@media only screen and (max-width:800px) { + .display-1 { + font-size: 3.6rem; + margin-bottom: 4.5rem; + } + + .subhead { + font-size: 1.6rem; + } + + .section-header.has-bottom-sep::before { + width: 300px; + } + +} + +@media only screen and (max-width:700px) { + .display-1 { + font-size: 3.2rem; + } + + .subhead { + font-size: 1.5rem; + } + +} + +@media only screen and (max-width:600px) { + .display-1 { + font-size: 2.8rem; + margin-bottom: 4.2rem; + } + +} + +@media only screen and (max-width:500px) { + .display-1 { + font-size: 2.6rem; + } + + .section-header.has-bottom-sep::before { + width: 200px; + } + +} + +@media only screen and (max-width:400px) { + .display-1 { + font-size: 2.4rem; + } + + .subhead { + font-size: 1.4rem; + } + + .item-title { + font-size: 2.1rem; + } + + .grid-overlay > div, + .grid-overlay::before, + .grid-overlay::after { + display: none; + } + +} + + +/* =================================================================== + * # header styles + * + * ------------------------------------------------------------------- */ +.s-header { + z-index: 500; + width: 100%; + height: 78px; + background-color: transparent; + position: absolute; + top: 21px; +} + +/* ------------------------------------------------------------------- + * ## header logo + * ------------------------------------------------------------------- */ +.header-logo { + z-index: 501; + display: inline-block; + margin: 0; + padding: 0; + position: absolute; + left: 7.5rem; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); + -webkit-transition: all 0.3s ease-in-out; + transition: all 0.3s ease-in-out; +} + +.header-logo a { + display: block; + padding: 0; + outline: 0; + border: none; +} + +.header-logo img { + width: 155px; + height: 36px; +} + +/* ------------------------------------------------------------------- + * ## main navigation + * ------------------------------------------------------------------- */ +.header-nav { + z-index: 600; + font-size: 1.6rem; + line-height: 1.875; + padding: 3.6rem 3rem 3.6rem 6rem; + height: 100%; + width: 50%; + background: #0C0C0C; + color: rgba(255, 255, 255, 0.25); + overflow-y: auto; + overflow-x: hidden; + position: fixed; + right: 0; + top: 0; + -webkit-transition: all 0.5s cubic-bezier(0.7, 0.3, 0, 1); + transition: all 0.5s cubic-bezier(0.7, 0.3, 0, 1); + -webkit-transform: translateZ(0); + -webkit-backface-visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + -ms-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: hidden; +} + +.header-nav a, +.header-nav a:visited { + color: rgba(255, 255, 255, 0.5); +} + +.header-nav a:hover, +.header-nav a:focus, +.header-nav a:active { + color: white; +} + +.header-nav h3 { + display: inline-block; + font-family: "Montserrat", sans-serif; + font-weight: 700; + font-size: 12px; + line-height: 1.25; + text-transform: uppercase; + letter-spacing: .4rem; + margin-bottom: 7.2rem; + margin-top: 1.2rem; + padding-right: 140px; + color: #793ea5; + position: relative; +} + +.header-nav h3::after { + content: ""; + display: block; + height: 1px; + width: 110px; + background-color: #793ea5; + position: absolute; + top: 50%; + right: 0; +} + +.header-nav p { + margin-bottom: 2.7rem; +} + +.header-nav__content, +.header-nav h3 { + left: 100px; + opacity: 0; + visibility: hidden; + -webkit-transform: translateZ(0); + -webkit-backface-visibility: hidden; +} + +.header-nav__content { + position: relative; + max-width: 300px; +} + +.header-nav__list { + font-family: "Montserrat", sans-serif; + font-weight: 600; + font-size: 2.8rem; + line-height: 1.286; + margin: 0 0 4.2rem 0; + padding: 0; + list-style: none; + counter-reset: ctr; +} + +.header-nav__list li { + padding: .9rem 0; +} + +.header-nav__list a { + display: block; + color: #FFFFFF; + position: relative; +} + +.header-nav__list a::before { + display: block; + content: counter(ctr, decimal-leading-zero) "."; + counter-increment: ctr; + font-family: "Montserrat", sans-serif; + font-size: 11px; + color: rgba(255, 255, 255, 0.25); + -webkit-transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + position: relative; +} + +.header-nav__list a:hover::before { + color: #793ea5; +} + +.header-nav__list .current a::before { + color: #793ea5; +} + +.header-nav__social { + list-style: none; + display: inline-block; + font-size: 2.4rem; + margin: 0; +} + +.header-nav__social li { + display: inline-block; + margin-right: 12px; + padding-left: 0; +} + +.header-nav__social li a { + color: rgba(255, 255, 255, 0.15); +} + +.header-nav__social li a:hover, +.header-nav__social li a:focus { + color: white; +} + +.header-nav__social li:last-child { + margin: 0; +} + +.header-nav__close { + z-index: 601; + display: block; + height: 30px; + width: 30px; + position: absolute; + top: 39px; + right: 30px; + font: 0/0 a; + text-shadow: none; + color: transparent; +} + +.header-nav__close span::before, +.header-nav__close span::after { + content: ""; + display: block; + height: 2px; + width: 16px; + background-color: #FFFFFF; + position: absolute; + top: 50%; + left: 7px; + margin-top: -1px; +} + +.header-nav__close span::before { + -webkit-transform: rotate(-45deg); + -ms-transform: rotate(-45deg); + transform: rotate(-45deg); +} + +.header-nav__close span::after { + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); +} + +/* menu is open + * ----------------------------------------------- */ +.menu-is-open .header-nav { + -webkit-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + visibility: visible; + -webkit-overflow-scrolling: touch; +} + +.menu-is-open .header-nav .header-nav__content, +.menu-is-open .header-nav h3 { + opacity: 1; + visibility: visible; + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-duration: 1s; + transition-duration: 1s; + -webkit-transition-timing-function: ease-in-out; + transition-timing-function: ease-in-out; + -webkit-transition-delay: 0.5s; + transition-delay: 0.5s; + left: 0; +} + +/* ------------------------------------------------------------------- + * ## mobile menu toggle + * ------------------------------------------------------------------- */ +.header-menu-toggle { + width: 48px; + height: 45px; + line-height: 45px; + font-family: "Montserrat", sans-serif; + font-weight: 600; + font-size: 13px; + text-transform: uppercase; + letter-spacing: .5rem; + color: #FFFFFF; + -webkit-transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + position: fixed; + right: 8rem; + top: 30px; +} + +.header-menu-toggle.opaque { + background-color: #000000; +} + +.header-menu-icon { + display: block; + width: 26px; + height: 2px; + margin-top: -1px; + right: auto; + bottom: auto; + background-color: white; + position: absolute; + left: 11px; + top: 50%; +} + +.header-menu-icon::before, +.header-menu-icon::after { + content: ''; + width: 100%; + height: 100%; + background-color: inherit; + position: absolute; + left: 0; +} + +.header-menu-icon::before { + top: -9px; +} + +.header-menu-icon::after { + bottom: -9px; +} + +/* ------------------------------------------------------------------- + * responsive: + * header + * ------------------------------------------------------------------- */ +@media only screen and (max-width:1200px) { + .header-logo { + left: 60px; + } + + .header-menu-toggle { + right: 60px; + } + +} + +@media only screen and (max-width:900px) { + .header-nav h3 { + padding-right: 0; + } + + .header-nav h3::after { + display: none; + } + + .header-nav__content { + max-width: 280px; + } + + .header-nav__list { + font-size: 2.5rem; + } + + .header-nav__list li { + padding: .6rem 0; + } + +} + +@media only screen and (max-width:800px) { + .header-logo { + left: 40px; + } + + .header-nav { + width: calc(100% - 80px); + padding: 3.6rem 3rem 3.6rem 5rem; + } + + .header-menu-toggle { + right: 40px; + } + +} + +@media only screen and (max-width:600px) { + .s-header { + height: 90px; + top: 12px; + } + + .header-nav { + padding: 3.6rem 3rem 3.6rem 4rem; + } + + .header-menu-toggle { + top: 27px; + right: 25px; + } + +} + +@media only screen and (max-width:400px) { + .s-header { + top: 6px; + } + + .header-logo { + left: 30px; + } + + .header-logo img { + width: 150px; + height: 35px; + } + + .header-nav { + width: calc(100% - 40px); + } + + .header-nav h3 { + margin-bottom: 6rem; + } + + .header-nav__list { + font-size: 2.2rem; + } + + .header-menu-toggle { + top: 21px; + right: 20px; + } + + .header-nav__social { + font-size: 2.2rem; + } + +} + + +/* =================================================================== + * # home + * + * ------------------------------------------------------------------- */ +.s-home { + width: 100%; + height: 100vh; + min-height: 786px; + background-color: transparent; + position: relative; + display: table; +} + +.s-home::before { + display: block; + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: #111111; + opacity: .7; + z-index: 2; +} + +.s-home::after { + display: block; + content: ""; + width: 50%; + height: 100%; + background-color: rgba(0, 0, 0, 0.3); + opacity: .5; + z-index: 3; + position: absolute; + top: 0; + left: 50%; + bottom: 0; + right: 0; +} + +.s-home .grid-overlay > div { + display: none; +} + +.no-js .s-home { + background: #000000; +} + +/* ------------------------------------------------------------------- + * ## home content + * ------------------------------------------------------------------- */ +.home-content { + display: table-cell; + vertical-align: middle; + padding-top: 6.6rem; + width: 100%; + overflow: hidden; + position: relative; + z-index: 4; +} + +.home-content h1 { + font-family: "Montserrat", sans-serif; + font-weight: 700; + font-size: 18rem; + line-height: 1; + letter-spacing: -.02em; + color: #FFFFFF; + margin-top: 0; + margin-bottom: 0; +} + +.home-content h3 { + margin-top: 1.2rem; + font-family: "Nunito Sans", sans-serif; + font-weight: 300; + font-size: 3.8rem; + line-height: 1.342; + font-style: normal; + color: #9c9c9c; +} + +.home-content__main { + position: relative; + text-align: center; +} + +/* ------------------------------------------------------------------- + * ## home video link + * ------------------------------------------------------------------- */ +.home-content__video { + display: inline-block; + margin-top: 4.2rem; +} + +.home-content__video .video-link { + display: block; + text-align: center; + width: 20rem; + outline: none; + position: relative; +} + +.home-content__video .video-icon { + display: inline-block; + height: 9rem; + width: 9rem; + border-radius: 50%; + background-color: #793ea5; + background-image: url(../images/icons/icon-play.svg); + background-repeat: no-repeat; + background-position: 55% center; + background-size: 24px 27px; + -webkit-transition: background-color 0.3s ease-in-out; + transition: background-color 0.3s ease-in-out; +} + +.home-content__video .video-text { + display: inline-block; + text-align: center; + font-family: "Nunito Sans", sans-serif; + font-weight: 600; + font-size: 1.3rem; + line-height: 1; + color: #9c9c9c; + text-transform: uppercase; + letter-spacing: .5rem; + -webkit-transition: color 0.3s ease-in-out; + transition: color 0.3s ease-in-out; + position: relative; +} + +.home-content__video .video-link:hover .video-text { + color: white; +} + +.home-content__video .video-link:hover .video-icon { + background-color: #6b3792; +} + +/* ------------------------------------------------------------------- + * ## home buttons + * ------------------------------------------------------------------- */ +.home-content__button { + margin-top: 7.8rem; + position: relative; +} + +.home-content__button .btn { + width: 30rem; + height: 7.2rem !important; + line-height: 6.8rem !important; + margin-right: 0; + position: absolute; +} + +.home-content__button .btn:first-child { + right: 50%; + left: auto; +} + +.home-content__button .btn:last-child { + left: 50%; + right: auto; +} + +.home-content__button .btn:not(.btn--primary) { + background-color: #13161b; + border-color: #13161b; + color: #FFFFFF; +} + +.home-content__button .btn:not(.btn--primary):hover, +.home-content__button .btn:not(.btn--primary):focus { + background-color: #080a0c; + border-color: #080a0c; +} + +/* ------------------------------------------------------------------- + * ## home scroll + * ------------------------------------------------------------------- */ +.home-content__scroll { + position: absolute; + right: 9.5rem; + bottom: 5.4rem; + -webkit-transform: rotate(-90deg) translate3d(100%, 50%, 0); + -ms-transform: rotate(-90deg) translate3d(100%, 50%, 0); + transform: rotate(-90deg) translate3d(100%, 50%, 0); + -webkit-transform-origin: right bottom; + -ms-transform-origin: right bottom; + transform-origin: right bottom; +} + +.home-content__scroll .scroll-link { + font-family: "Nunito Sans", sans-serif; + font-weight: 600; + font-size: 1.2rem; + text-transform: uppercase; + letter-spacing: .35rem; + text-align: left; + color: #FFFFFF; + position: relative; + padding-right: 180px; +} + +.home-content__scroll .scroll-link:hover, +.home-content__scroll .scroll-link:focus { + color: #793ea5; +} + +.home-content__scroll::after { + content: ""; + display: block; + background-color: rgba(255, 255, 255, 0.08); + width: 150px; + height: 1px; + position: absolute; + right: 0; + top: 50%; +} + +/* ------------------------------------------------------------------- + * ## home social + * ------------------------------------------------------------------- */ +.home-social { + list-style: none; + font-family: "Nunito Sans", sans-serif; + margin: 0; + position: absolute; + bottom: 3.6rem; + left: 8rem; + z-index: 5; +} + +.home-social a { + color: white; + -webkit-transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; +} + +.home-social li { + position: relative; + padding: .6rem 0; +} + +.home-social li a { + display: block; + width: 30px; + height: 30px; + line-height: 30px; +} + +.home-social i, +.home-social span { + position: absolute; + -webkit-transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; +} + +.home-social i { + display: inline-block; + font-size: 15px; + text-align: center; + vertical-align: middle; + width: 30px; + height: 30px; + line-height: 30px; + top: 3px; + left: 0; +} + +.home-social span { + background-color: #000000; + color: #FFFFFF; + font-size: 1.2rem; + line-height: 30px; + top: 0; + left: 50px; + padding: 0 15px; + margin: 3px 0; + border-radius: 3px; + opacity: 0; + visibility: hidden; + -webkit-transform: scale(0); + -ms-transform: scale(0); + transform: scale(0); + -webkit-transform-origin: 0% 50%; + -ms-transform-origin: 0% 50%; + transform-origin: 0% 50%; +} + +.home-social span::after { + display: block; + content: ""; + width: 0; + height: 0; + border-top: 6px solid transparent; + border-bottom: 6px solid transparent; + border-right: 6px solid #000000; + position: absolute; + top: 50%; + left: -6px; + margin-top: -6px; +} + +.home-social li:hover span { + opacity: 1; + visibility: visible; + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); +} + +/* animate .home-content__main + * ------------------------------------------------------------------- */ +html.ss-preload .home-content__main { + opacity: 0; +} + +html.ss-loaded .home-content__main { + animation-duration: 2s; + -webkit-animation-name: fadeIn; + animation-name: fadeIn; +} + +html.no-csstransitions .home-content__main { + opacity: 1; +} + +/* ------------------------------------------------------------------- + * ## home animations + * ------------------------------------------------------------------- */ + +/* fade in */ +@-webkit-keyframes fadeIn { + from { + opacity: 0; + -webkit-transform: translate3d(0, 150%, 0); + -ms-transform: translate3d(0, 150%, 0); + transform: translate3d(0, 150%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + +} + +@keyframes fadeIn { + from { + opacity: 0; + -webkit-transform: translate3d(0, 150%, 0); + -ms-transform: translate3d(0, 150%, 0); + transform: translate3d(0, 150%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + +} + +/* fade out */ +@-webkit-keyframes fadeOut { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -150%, 0); + -ms-transform: translate3d(0, -150%, 0); + transform: translate3d(0, -150%, 0); + } + +} + +@keyframes fadeOut { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -150%, 0); + -ms-transform: translate3d(0, -150%, 0); + transform: translate3d(0, -150%, 0); + } + +} + +/* ------------------------------------------------------------------- + * responsive: + * home + * ------------------------------------------------------------------- */ +@media only screen and (max-width:1600px) { + .home-content h1 { + font-size: 17rem; + } + + .home-content h3 { + font-size: 3.7rem; + } + +} + +@media only screen and (max-width:1400px) { + .home-content h1 { + font-size: 16rem; + } + + .home-content h3 { + font-size: 3.6rem; + } + + .home-content__video .video-icon { + height: 8.4rem; + width: 8.4rem; + background-size: 22px 24px; + } + +} + +@media only screen and (max-width:1200px) { + .home-content { + padding-top: 4.5rem; + } + + .home-content h1 { + font-size: 14rem; + } + + .home-content h3 { + font-size: 3.2rem; + } + + .home-content__video { + height: 6.6rem; + line-height: 6.6rem; + vertical-align: middle; + } + + .home-content__video .video-link { + padding-left: 9rem; + width: auto; + } + + .home-content__video .video-icon { + height: 6.6rem; + width: 6.6rem; + background-size: 12px 13px; + position: absolute; + top: 0; + left: 0; + } + + .home-content__button { + margin-top: 7.2rem; + } + + .home-content__button .btn { + font-size: 11px; + width: 28rem; + height: 6.6rem !important; + line-height: 6.2rem !important; + } + + .home-content__scroll { + right: 7rem; + } + + .home-content__scroll .scroll-link { + font-size: 1.1rem; + } + + .home-social { + left: 5.5rem; + } + +} + +@media only screen and (max-width:1000px) { + .home-content h1 { + font-size: 13rem; + } + + .home-content h3 { + font-size: 3rem; + } + + .home-content__button .btn { + width: 24rem; + } + + .home-content__scroll { + right: 6rem; + } + + .home-social { + left: 4.5rem; + } + +} + +@media only screen and (max-width:900px) { + .home-content h1 { + font-size: 12rem; + } + + .home-content h3 { + font-size: 2.7rem; + } + + .home-social { + display: none; + } + +} + +@media only screen and (max-width:800px) { + .home-content h1 { + font-size: 11.4rem; + } + + .home-content h3 { + font-size: 2.6rem; + } + + .home-content__video { + margin-top: 3.6rem; + } + + .home-content__video .video-link { + padding-left: 8rem; + } + + .home-content__video .video-icon { + height: 6rem; + width: 6rem; + } + + .home-content__video .video-text { + top: -6px; + font-size: 1.2rem; + line-height: 6rem; + } + + .home-content__button { + margin-top: 6.6rem; + } + + .home-content__button .btn { + width: 22rem; + } + +} + +@media only screen and (max-width:700px) { + .home-content h1 { + font-size: 10.2rem; + } + + .home-content h3 { + font-size: 2.4rem; + } + + .home-content__scroll { + right: 5rem; + bottom: 4.8rem; + } + + .home-content__scroll::after { + display: none; + } + +} + +@media only screen and (max-width:600px) { + .home-content { + padding-top: 6rem; + } + + .home-content h1 { + font-size: 9rem; + } + + .home-content h3 { + font-size: 2.1rem; + } + + .home-content__main { + padding: 0 35px; + } + + .home-content__video { + margin-top: 3rem; + } + + .home-content__button { + margin-top: 4.8rem; + } + + .home-content__button .btn { + position: static; + display: block; + height: 6rem !important; + line-height: 5.6rem !important; + width: 100%; + max-width: 32rem; + margin-left: auto; + margin-right: auto; + } + +} + +@media only screen and (max-width:500px) { + .home-content h1 { + font-size: 7.5rem; + } + + .home-content h3 { + font-size: 1.8rem; + } + +} + +@media only screen and (max-width:400px) { + .s-home { + min-height: 630px; + } + + .home-content h1 { + font-size: 6.5rem; + } + + .home-content__main { + padding: 0 25px; + } + + .home-content__video .video-link { + padding-left: 7.5rem; + } + + .home-content__video .video-icon { + height: 5.4rem; + width: 5.4rem; + } + + .home-content__video .video-text { + line-height: 5.4rem; + font-size: 1.1rem; + } + + .home-content__button { + margin-top: 3.6rem; + } + +} + +@media only screen and (max-width:350px) { + .home-content h1 { + font-size: 6.2rem; + } + +} + + +/* =================================================================== + * # about + * + * ------------------------------------------------------------------- */ +.s-about { + padding-top: 18rem; + padding-bottom: 18rem; + background-color: #121212; + position: relative; +} + +/* ------------------------------------------------------------------- + * ## about process + * ------------------------------------------------------------------- */ +.process { + margin-top: 6.6rem; + counter-reset: ctr; +} + +.process h4 { + padding-left: 7rem; + margin-bottom: 2.1rem; + position: relative; +} + +.process h4::before { + content: counter(ctr); + counter-increment: ctr; + display: block; + font-family: "Montserrat", sans-serif; + font-size: 2.1rem; + font-weight: 700; + text-align: center; + color: #FFFFFF; + background-color: #793ea5; + height: 48px; + width: 48px; + line-height: 48px; + border-radius: 50%; + position: absolute; + left: 0; + top: -5px; +} + +.item-process { + position: relative; + min-height: 24.6rem; + margin-bottom: 3rem; +} + +.item-process:nth-child(2n+1) { + padding-right: 30px; +} + +.item-process:nth-child(2n+2) { + padding-left: 30px; +} + +/* ------------------------------------------------------------------- + * responsive: + * about + * ------------------------------------------------------------------- */ +@media only screen and (max-width:1000px) { + .item-process:nth-child(2n+1) { + padding-right: 25px; + } + + .item-process:nth-child(2n+2) { + padding-left: 25px; + } + +} + +@media only screen and (max-width:1000px) { + .s-about { + padding-top: 15rem; + padding-bottom: 15rem; + } + + .item-process:nth-child(n) { + padding: 0 15px; + min-height: 0; + } + +} + +@media only screen and (max-width:600px) { + .s-about { + padding-top: 12rem; + padding-bottom: 12rem; + } + + .process h4 { + padding-left: 6rem; + } + + .process h4::before { + font-size: 1.8rem; + height: 42px; + width: 42px; + line-height: 42px; + top: -4px; + } + + .item-process:nth-child(n) { + padding: 0 10px; + } + +} + +@media only screen and (max-width:400px) { + .process h4 { + padding-left: 5.8rem; + } + + .process h4::before { + font-size: 1.6rem; + height: 39px; + width: 39px; + line-height: 39px; + top: -5px; + } + + .item-process:nth-child(n) { + padding: 0; + margin-bottom: 1.5rem; + } + +} + + +/* =================================================================== + * # services + * + * ------------------------------------------------------------------- */ +.s-services { + padding-top: 18rem; + padding-bottom: 18rem; + position: relative; +} + +/* ------------------------------------------------------------------- + * ## services list + * ------------------------------------------------------------------- */ +.services { + margin-top: 9rem; +} + +.item-service { + margin-bottom: .9rem; +} + +.item-service h3 { + margin-top: 0; +} + +.item-service:nth-child(2n+1) { + padding-right: 50px; +} + +.item-service:nth-child(2n+2) { + padding-left: 50px; +} + +.item-service__text { + margin-left: 7.2rem; +} + +.item-service__icon { + float: left; + color: #793ea5; + font-size: 4.5rem; + margin-top: -1.8rem; +} + +/* ------------------------------------------------------------------- + * responsive: + * services + * ------------------------------------------------------------------- */ +@media only screen and (max-width:1200px) { + .services { + max-width: 1000px; + } + + .services .item-service:nth-child(2n+1) { + padding-right: 30px; + } + + .services .item-service:nth-child(2n+2) { + padding-left: 30px; + } + +} + +@media only screen and (max-width:1000px) { + .s-services { + padding-top: 15rem; + padding-bottom: 15rem; + } + + .services .item-service:nth-child(2n+1) { + padding-right: 20px; + } + + .services .item-service:nth-child(2n+2) { + padding-left: 20px; + } + + .item-service__text { + margin-left: 0; + } + + .item-service__icon { + float: none; + margin-top: 0; + font-size: 4.2rem; + } + +} + +@media only screen and (max-width:800px) { + .services { + margin-top: 4.2rem; + } + + .services .item-service:nth-child(n) { + padding-right: 15px; + padding-left: 15px; + max-width: 700px; + } + + .services .service-icon { + font-size: 4.2rem; + float: none; + margin-top: 0; + } + +} + +@media only screen and (max-width:600px) { + .s-services { + padding-top: 12rem; + } + + .services .item-service:nth-child(n) { + padding-right: 10px; + padding-left: 10px; + } + +} + +@media only screen and (max-width:400px) { + .services .item-service:nth-child(n) { + padding-right: 0; + padding-left: 0; + margin-bottom: 0; + } + +} + + +/* =================================================================== + * # works + * + * ------------------------------------------------------------------- */ +.s-works { + padding-top: 18rem; + padding-bottom: 18rem; + position: relative; +} + +.s-works::before { + content: ""; + display: block; + content: ""; + position: absolute; + top: 0; + left: 50%; + bottom: 0; + right: 0; + width: 50%; + height: 100%; + opacity: .3; + background-color: rgba(0, 0, 0, 0.9); + background-image: url(../images/pattern.jpg); + background-size: 760px 380px; +} + +/* ------------------------------------------------------------------- + * ## bricks/masonry + * ------------------------------------------------------------------- */ +.masonry-wrap { + margin-top: 7.2rem; + max-width: 1100px; + position: relative; +} + +.masonry-wrap:after { + content: ""; + display: table; + clear: both; +} + +.masonry:after { + content: ""; + display: table; + clear: both; +} + +.masonry .grid-sizer, +.masonry__brick { + width: 50%; +} + +.masonry__brick { + float: left; + padding: 0; +} + +.item-folio { + position: relative; + overflow: hidden; +} + +.item-folio__thumb img { + vertical-align: bottom; + -webkit-transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; +} + +.item-folio__thumb a { + display: block; +} + +.item-folio__thumb a::before { + display: block; + background-color: rgba(0, 0, 0, 0.8); + content: ""; + opacity: 0; + visibility: hidden; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + -webkit-transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + z-index: 1; +} + +.item-folio__thumb a::after { + content: "..."; + font-family: georgia, serif; + font-size: 2.7rem; + display: block; + height: 30px; + width: 30px; + line-height: 30px; + margin-left: -15px; + margin-top: -15px; + position: absolute; + left: 50%; + top: 50%; + text-align: center; + color: rgba(255, 255, 255, 0.8); + opacity: 0; + visibility: hidden; + -webkit-transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; + -webkit-transform: scale(0.5); + -ms-transform: scale(0.5); + transform: scale(0.5); + z-index: 1; +} + +.item-folio__text { + position: absolute; + left: 0; + bottom: 3.6rem; + padding: 0 3.3rem; + z-index: 2; + opacity: 0; + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + -ms-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + -webkit-transition: all 0.3s ease-in-out; + transition: all 0.3s ease-in-out; +} + +.item-folio__title { + font-family: "Nunito Sans", sans-serif; + font-size: 1.4rem; + font-weight: 700; + line-height: 1.286; + color: #FFFFFF; + text-transform: uppercase; + letter-spacing: .2rem; + margin: 0 0 .3rem 0; +} + +.item-folio__cat { + color: rgba(255, 255, 255, 0.5); + font-family: "Nunito Sans", sans-serif; + font-size: 1.4rem; + font-weight: 300; + line-height: 1.714; + margin-bottom: 0; +} + +.item-folio__caption { + display: none; +} + +.item-folio__project-link { + display: block; + color: #FFFFFF; + box-shadow: 0 0 0 1px #FFFFFF; + border-radius: 50%; + height: 4.2rem; + width: 4.2rem; + text-align: center; + z-index: 500; + position: absolute; + top: 3rem; + left: 3rem; + opacity: 0; + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + -ms-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); +} + +.item-folio__project-link i { + font-size: 1.8rem; + line-height: 4.2rem; +} + +.item-folio__project-link::before { + display: block; + content: ""; + height: 3rem; + width: 1px; + background-color: rgba(255, 255, 255, 0.1); + position: absolute; + top: -3rem; + left: 50%; +} + +.item-folio__project-link:hover, +.item-folio__project-link:focus, +.item-folio__project-link:active { + background-color: #FFFFFF; + color: #000000; +} + +/* on hover + * ----------------------------------------------- */ +.item-folio:hover .item-folio__thumb a::before { + opacity: 1; + visibility: visible; +} + +.item-folio:hover .item-folio__thumb a::after { + opacity: 1; + visibility: visible; + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); +} + +.item-folio:hover .item-folio__thumb img { + -webkit-transform: scale(1.05); + -ms-transform: scale(1.05); + transform: scale(1.05); +} + +.item-folio:hover .item-folio__project-link, +.item-folio:hover .item-folio__text { + opacity: 1; + visibility: visible; + -webkit-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +/* ------------------------------------------------------------------- + * responsive: + * works + * ------------------------------------------------------------------- */ +@media only screen and (max-width:1000px) { + .s-works { + padding-top: 15rem; + padding-bottom: 15rem; + } + +} + +@media only screen and (max-width:800px) { + .item-folio__title, + .item-folio__cat { + font-size: 1.3rem; + } + +} + +@media only screen and (max-width:600px) { + .s-works { + padding-top: 12rem; + } + + .masonry-wrap { + padding: 0 35px; + } + + .masonry__brick { + float: none; + width: 100%; + } + + .item-folio__title, + .item-folio__cat { + font-size: 1.4rem; + } + +} + +@media only screen and (max-width:400px) { + .masonry-wrap { + padding: 0 25px; + } + +} + + +/* =================================================================== + * # clients + * + * ------------------------------------------------------------------- */ +.s-clients { + padding-top: 16.2rem; + padding-bottom: 15rem; + position: relative; +} + +.s-clients .grid-overlay { + border-right: 1px solid rgba(255, 255, 255, 0.05); + border-left: 1px solid rgba(255, 255, 255, 0.05); +} + +.s-clients .grid-overlay > div, +.s-clients .grid-overlay::before, +.s-clients .grid-overlay::after { + background-color: rgba(255, 255, 255, 0.05); +} + +.section-header, +.clients-wrap, +.clients { + z-index: 3; +} + +.clients-wrap { + margin-top: 6rem; +} + +.clients { + list-style: none; + text-align: center; + margin-left: 0; + font-weight: 700; + font-size: 4.5rem; + position: relative; +} + +.clients a { + color: rgba(255, 255, 255, 0.15); +} + +.clients a:hover, +.clients a:focus { + color: #793ea5; +} + +.clients li { + display: inline-block; + padding: 0 1.5rem; +} + +/* ------------------------------------------------------------------- + * responsive: + * clients + * ------------------------------------------------------------------- */ +@media only screen and (max-width:1000px) { + .s-clients { + padding-top: 15rem; + } + + .clients { + font-size: 4.2rem; + } + +} + +@media only screen and (max-width:900px) { + .clients { + font-size: 4rem; + } + +} + +@media only screen and (max-width:800px) { + .clients-wrap { + margin-top: 3.6rem; + } + + .clients { + font-size: 3.4rem; + } + +} + +@media only screen and (max-width:600px) { + .s-clients { + padding-top: 12rem; + padding-bottom: 10.2rem; + } + + .clients { + font-size: 3rem; + } + +} + +@media only screen and (max-width:500px) { + .clients-wrap { + margin-top: 1.5rem; + } + + .clients { + font-size: 2.4rem; + } + + .clients li { + padding: 0 1rem; + } + +} + +@media only screen and (max-width:400px) { + .clients { + font-size: 2.1rem; + } + + .clients li { + padding: 0 .6rem; + } + +} + + +/* =================================================================== + * # testimonials + * + * ------------------------------------------------------------------- */ +.s-testimonials { + padding-top: 16.2rem; + padding-bottom: 21rem; + text-align: center; + position: relative; + background-image: url(../images/hero-bg.jpg); + background-repeat: no-repeat; + background-position: center center; + background-size: cover; +} + +.s-testimonials::before { + display: block; + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + opacity: .9; + background-color: #111111; +} + +.testimonials__icon { + height: 4.5rem; + width: 4.5rem; + background-color: transparent; + background-image: url(../images/icons/icon-quote.svg); + background-position: center center; + background-repeat: no-repeat; + background-size: contain; + position: absolute; + top: 15rem; + left: 50%; + margin-left: -2.25rem; +} + +.testimonials__slider { + font-size: 3.6rem; + font-weight: 400; + line-height: 1.636; + margin-top: 7.2rem; + color: #FFFFFF; + position: relative; +} + +.testimonials__slider .slick-slide { + outline: none; +} + +.testimonials__slider .slick-dots { + display: block; + list-style: none; + width: 100%; + padding: 0; + margin: 3rem 0 0 0; + text-align: center; + position: absolute; + top: 100%; + left: 0; +} + +.testimonials__slider .slick-dots li { + display: inline-block; + width: 27px; + height: 27px; + margin: 0; + padding: 9px; + cursor: pointer; +} + +.testimonials__slider .slick-dots li button { + display: block; + width: 10px; + height: 10px; + line-height: 10px; + border-radius: 50%; + background: white; + border: none; + padding: 0; + margin: 0; + cursor: pointer; + font: 0/0 a; + text-shadow: none; + color: transparent; +} + +.testimonials__slider .slick-dots li button:hover, +.testimonials__slider .slick-dots li button:focus { + outline: none; +} + +.testimonials__slider .slick-dots li.slick-active button, +.testimonials__slider .slick-dots li:hover button { + background: transparent; + box-shadow: 0 0 0 2px #FFFFFF; +} + +.testimonials__author { + margin-top: 0; + font-family: "Nunito Sans", sans-serif; + font-size: 1.5rem; + font-weight: 800; + line-height: 1.6; + text-transform: uppercase; + letter-spacing: .3rem; + color: #793ea5; +} + +.testimonials__author span { + display: block; + font-family: "Nunito Sans", sans-serif; + font-weight: 400; + font-size: 1.5rem; + line-height: 1.6; + color: rgba(255, 255, 255, 0.5); + text-transform: none; + letter-spacing: 0; +} + +/* ------------------------------------------------------------------- + * responsive: + * testimonials + * ------------------------------------------------------------------- */ +@media only screen and (max-width:1200px) { + .testimonials__slider { + font-size: 3.3rem; + } + +} + +@media only screen and (max-width:1000px) { + .s-testimonials { + padding-top: 15rem; + padding-bottom: 19.2rem; + } + +} + +@media only screen and (max-width:900px) { + .testimonials__icon { + height: 3.9rem; + width: 3.9rem; + margin-left: -1.95rem; + } + + .testimonials__slider { + font-size: 3rem; + } + +} + +@media only screen and (max-width:800px) { + .testimonials__icon { + height: 3.6rem; + width: 3.6rem; + margin-left: -1.8rem; + } + + .testimonials__slider { + font-size: 2.7rem; + } + +} + +@media only screen and (max-width:600px) { + .s-testimonials { + padding-top: 7.8rem; + padding-bottom: 15rem; + } + + .testimonials__icon { + height: 3.3rem; + width: 3.3rem; + margin-left: -1.65rem; + top: 9rem; + } + + .testimonials__slider { + font-size: 2.5rem; + } + + .testimonials__author { + font-size: 1.4rem; + } + + .testimonials__author span { + font-size: 1.4rem; + } + +} + +@media only screen and (max-width:400px) { + .testimonials__slider { + font-size: 2.1rem; + } + +} + +@media only screen and (max-width:350px) { + .testimonials__slider { + font-size: 1.9rem; + } + +} + + +/* =================================================================== + * # contact + * + * ------------------------------------------------------------------- */ +.s-contact { + padding-top: 16.2rem; + padding-bottom: 21rem; + background-color: #5e3080; + color: rgba(255, 255, 255, 0.6); + text-align: center; + position: relative; +} + +.s-contact a { + color: #FFFFFF; +} + +.s-contact .grid-overlay { + border-right: 1px solid rgba(255, 255, 255, 0.12); + border-left: 1px solid rgba(255, 255, 255, 0.12); + z-index: 2; +} + +.s-contact .grid-overlay > div, +.s-contact .grid-overlay::before, +.s-contact .grid-overlay::after { + background-color: rgba(255, 255, 255, 0.12); +} + +.s-contact .subhead { + color: #2a1538; +} + +.s-contact .section-header, +.s-contact .contact-main { + z-index: 3; + position: relative; +} + +.contact-main { + font-size: 3.3rem; + line-height: 1.636; + margin-top: 9rem; +} + +.contact-main [class*="contact-"] { + margin-bottom: 0; +} + +.contact-main .contact-email { + margin-bottom: 3.6rem; +} + +.contact-email a { + font-size: 9rem; + font-weight: 700; + line-height: 1.2; + color: #FFFFFF; + border-bottom: 3px solid rgba(0, 0, 0, 0.2); +} + +.contact-email a:hover, +.contact-email a:focus { + border-bottom: 3px solid rgba(255, 255, 255, 0.2); +} + +/* ------------------------------------------------------------------- + * ## contact social + * ------------------------------------------------------------------- */ +.contact-social { + list-style: none; + display: inline-block; + margin: 4.2rem 0 0 0; + font-size: 4.2rem; +} + +.contact-social li { + margin-right: 15px; + padding-left: 0; + display: inline-block; +} + +.contact-social li a { + color: white; + border: none !important; +} + +.contact-social li a:hover, +.contact-social li a:focus { + color: #FFFFFF; +} + +.contact-social li:last-child { + margin: 0; +} + +/* ------------------------------------------------------------------- + * responsive: + * contact + * ------------------------------------------------------------------- */ +@media only screen and (max-width:1200px) { + .contact-main { + font-size: 3.1rem; + } + + .contact-email a { + font-size: 7.6rem; + } + +} + +@media only screen and (max-width:1000px) { + .s-contact { + padding-top: 15rem; + padding-bottom: 19.8rem; + } + + .contact-main { + font-size: 3rem; + } + + .contact-email a { + font-size: 7.2rem; + } + +} + +@media only screen and (max-width:900px) { + .contact-main { + font-size: 2.8rem; + } + + .contact-email a { + font-size: 6.2rem; + } + + .contact-social { + font-size: 4rem; + } + +} + +@media only screen and (max-width:800px) { + .contact-main { + font-size: 2.6rem; + } + + .contact-email a { + font-size: 5.5rem; + } + + .contact-social { + font-size: 3.5rem; + } + +} + +@media only screen and (max-width:700px) { + .contact-main { + font-size: 2.4rem; + } + + .contact-email a { + font-size: 3.8rem; + } + + .contact-social { + font-size: 3.2rem; + } + +} + +@media only screen and (max-width:600px) { + .s-contact { + padding-top: 12rem; + padding-bottom: 13.2rem; + } + + .contact-main { + font-size: 2.1rem; + margin-top: 7.2rem; + } + + .contact-social { + font-size: 3rem; + } + +} + +@media only screen and (max-width:500px) { + .contact-main { + font-size: 1.8rem; + } + + .contact-email a { + font-size: 3rem; + } + +} + +@media only screen and (max-width:400px) { + .contact-main { + font-size: 1.6rem; + margin-top: 4.5rem; + } + + .contact-email a { + font-size: 2.5rem; + } + + .contact-social { + margin: 3rem 0 0 0; + font-size: 2.4rem; + } + +} + +/* =================================================================== + * # footer + * + * ------------------------------------------------------------------- */ +footer { + padding-top: 9rem; + padding-bottom: 6rem; + color: rgba(255, 255, 255, 0.6); + background-color: #5e3080; + border-top: 1px solid rgba(255, 255, 255, 0.1); + text-align: center; + position: relative; +} + +footer a { + color: #FFFFFF; +} + +/* ------------------------------------------------------------------- + * ## copyright + * ------------------------------------------------------------------- */ +.ss-copyright span { + font-size: 16px; + display: inline-block; +} + +.ss-copyright span::after { + content: "·"; + display: inline-block; + padding: 0 1rem 0 1.2rem; + color: white; +} + +.ss-copyright span:last-child::after { + display: none; +} + +.ss-go-top a { + color: #FFFFFF; + background-color: #351b48; + text-align: center; + font-family: "Montserrat", sans-serif; + font-weight: 700; + font-size: 13px; + text-transform: uppercase; + letter-spacing: .3rem; + height: 75px; + line-height: 75px; + padding: 0 4rem 0 7rem; + position: absolute; + left: 50%; + top: -37.5px; + -webkit-transform: translate3d(-50%, 0, 0); + -ms-transform: translate3d(-50%, 0, 0); + transform: translate3d(-50%, 0, 0); + z-index: 2; +} + +/* ------------------------------------------------------------------- + * ## go top + * ------------------------------------------------------------------- */ +.ss-go-top a::before { + content: ""; + display: block; + height: 16px; + width: 12px; + background-image: url(../images/icons/icon-up.svg); + background-repeat: no-repeat; + background-position: center center; + background-size: contain; + position: absolute; + top: 50%; + left: 3.5rem; + margin-top: -9px; +} + +.ss-go-top a:hover, +.ss-go-top a:focus { + background-color: #2d173d; +} + +/* ------------------------------------------------------------------- + * responsive: + * footer + * ------------------------------------------------------------------- */ +@media only screen and (max-width:600px) { + .ss-copyright span { + display: block; + } + + .ss-copyright span::after { + display: none; + } + + .ss-go-top a { + font-size: 10px; + height: 70px; + line-height: 70px; + top: -35px; + padding: 0 3rem; + } + + .ss-go-top a::before { + display: none; + } + +} + +@media only screen and (max-width:400px) { + .cl-copyright span { + font-size: 15px; + } + + .ss-go-top a { + height: 65px; + line-height: 65px; + top: -32.5px; + padding: 0 3rem; + padding: 0 2rem; + } + +} + +/*# sourceMappingURL=main.css.map */ diff --git a/css/micons/fonts/icomoon.eot b/css/micons/fonts/icomoon.eot new file mode 100644 index 0000000..94390db Binary files /dev/null and b/css/micons/fonts/icomoon.eot differ diff --git a/css/micons/fonts/icomoon.svg b/css/micons/fonts/icomoon.svg new file mode 100644 index 0000000..d5bc4d3 --- /dev/null +++ b/css/micons/fonts/icomoon.svg @@ -0,0 +1,241 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/css/micons/fonts/icomoon.ttf b/css/micons/fonts/icomoon.ttf new file mode 100644 index 0000000..086e951 Binary files /dev/null and b/css/micons/fonts/icomoon.ttf differ diff --git a/css/micons/fonts/icomoon.woff b/css/micons/fonts/icomoon.woff new file mode 100644 index 0000000..8f32119 Binary files /dev/null and b/css/micons/fonts/icomoon.woff differ diff --git a/css/micons/micons.css b/css/micons/micons.css new file mode 100644 index 0000000..a912b84 --- /dev/null +++ b/css/micons/micons.css @@ -0,0 +1,720 @@ +@font-face { + font-family: 'icomoon'; + src: url('fonts/icomoon.eot?jo2z5t'); + src: url('fonts/icomoon.eot?jo2z5t#iefix') format('embedded-opentype'), + url('fonts/icomoon.ttf?jo2z5t') format('truetype'), + url('fonts/icomoon.woff?jo2z5t') format('woff'), + url('fonts/icomoon.svg?jo2z5t#icomoon') format('svg'); + font-weight: normal; + font-style: normal; +} + +[class^="icon-"], [class*=" icon-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'icomoon' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.icon-align-center:before { + content: "\e900"; +} +.icon-align-justify:before { + content: "\e901"; +} +.icon-align-left:before { + content: "\e902"; +} +.icon-align-right:before { + content: "\e903"; +} +.icon-alt:before { + content: "\e904"; +} +.icon-arrow-right:before { + content: "\e905"; +} +.icon-arrow-up:before { + content: "\e906"; +} +.icon-artboard:before { + content: "\e907"; +} +.icon-at:before { + content: "\e908"; +} +.icon-attachment:before { + content: "\e909"; +} +.icon-backward:before { + content: "\e90a"; +} +.icon-badge:before { + content: "\e90b"; +} +.icon-bank-note:before { + content: "\e90c"; +} +.icon-bar-chart:before { + content: "\e90d"; +} +.icon-basket-ball:before { + content: "\e90e"; +} +.icon-battery-high:before { + content: "\e90f"; +} +.icon-battery-low:before { + content: "\e910"; +} +.icon-bed:before { + content: "\e911"; +} +.icon-bell:before { + content: "\e912"; +} +.icon-bin:before { + content: "\e913"; +} +.icon-block:before { + content: "\e914"; +} +.icon-bluetooth:before { + content: "\e915"; +} +.icon-book:before { + content: "\e916"; +} +.icon-box:before { + content: "\e917"; +} +.icon-brightness:before { + content: "\e918"; +} +.icon-brush:before { + content: "\e919"; +} +.icon-bucket:before { + content: "\e91a"; +} +.icon-building:before { + content: "\e91b"; +} +.icon-calendar:before { + content: "\e91c"; +} +.icon-camera:before { + content: "\e91d"; +} +.icon-car:before { + content: "\e91e"; +} +.icon-card:before { + content: "\e91f"; +} +.icon-chat:before { + content: "\e920"; +} +.icon-circle-bottom-left:before { + content: "\e921"; +} +.icon-circle-bottom-right:before { + content: "\e922"; +} +.icon-circle-down:before { + content: "\e923"; +} +.icon-circle-left:before { + content: "\e924"; +} +.icon-circle-right:before { + content: "\e925"; +} +.icon-circle-top-left:before { + content: "\e926"; +} +.icon-circle-top-right:before { + content: "\e927"; +} +.icon-circle-up:before { + content: "\e928"; +} +.icon-clock:before { + content: "\e929"; +} +.icon-cloud:before { + content: "\e92a"; +} +.icon-cmd:before { + content: "\e92b"; +} +.icon-collapse:before { + content: "\e92c"; +} +.icon-comment:before { + content: "\e92d"; +} +.icon-contrast:before { + content: "\e92e"; +} +.icon-corner-arrow:before { + content: "\e92f"; +} +.icon-cube:before { + content: "\e930"; +} +.icon-cup:before { + content: "\e931"; +} +.icon-cursor:before { + content: "\e932"; +} +.icon-desktop:before { + content: "\e933"; +} +.icon-disk:before { + content: "\e934"; +} +.icon-dollar:before { + content: "\e935"; +} +.icon-download:before { + content: "\e936"; +} +.icon-drawer:before { + content: "\e937"; +} +.icon-drop:before { + content: "\e938"; +} +.icon-earth:before { + content: "\e939"; +} +.icon-edit:before { + content: "\e93a"; +} +.icon-education:before { + content: "\e93b"; +} +.icon-eject:before { + content: "\e93c"; +} +.icon-euro:before { + content: "\e93d"; +} +.icon-expand:before { + content: "\e93e"; +} +.icon-external:before { + content: "\e93f"; +} +.icon-eye:before { + content: "\e940"; +} +.icon-factory:before { + content: "\e941"; +} +.icon-fast-forward:before { + content: "\e942"; +} +.icon-file:before { + content: "\e943"; +} +.icon-file-add:before { + content: "\e944"; +} +.icon-file-remove:before { + content: "\e945"; +} +.icon-files:before { + content: "\e946"; +} +.icon-filter:before { + content: "\e947"; +} +.icon-fire:before { + content: "\e948"; +} +.icon-first-aid:before { + content: "\e949"; +} +.icon-flag:before { + content: "\e94a"; +} +.icon-floppy:before { + content: "\e94b"; +} +.icon-folder:before { + content: "\e94c"; +} +.icon-folder-add:before { + content: "\e94d"; +} +.icon-folder-remove:before { + content: "\e94e"; +} +.icon-fork-knife:before { + content: "\e94f"; +} +.icon-form:before { + content: "\e950"; +} +.icon-frame:before { + content: "\e951"; +} +.icon-full-screen:before { + content: "\e952"; +} +.icon-gift:before { + content: "\e953"; +} +.icon-glass:before { + content: "\e954"; +} +.icon-glasses:before { + content: "\e955"; +} +.icon-grid:before { + content: "\e956"; +} +.icon-group:before { + content: "\e957"; +} +.icon-headset:before { + content: "\e958"; +} +.icon-heart:before { + content: "\e959"; +} +.icon-hide-sdebar-vert:before { + content: "\e95a"; +} +.icon-hide-sidebar-horiz:before { + content: "\e95b"; +} +.icon-home:before { + content: "\e95c"; +} +.icon-id:before { + content: "\e95d"; +} +.icon-image:before { + content: "\e95e"; +} +.icon-info:before { + content: "\e95f"; +} +.icon-invoice:before { + content: "\e960"; +} +.icon-juice:before { + content: "\e961"; +} +.icon-key:before { + content: "\e962"; +} +.icon-lamp:before { + content: "\e963"; +} +.icon-layers:before { + content: "\e964"; +} +.icon-leaf:before { + content: "\e965"; +} +.icon-left:before { + content: "\e966"; +} +.icon-left-right:before { + content: "\e967"; +} +.icon-lego-block:before { + content: "\e968"; +} +.icon-life-buoy:before { + content: "\e969"; +} +.icon-light-bulb:before { + content: "\e96a"; +} +.icon-link:before { + content: "\e96b"; +} +.icon-list:before { + content: "\e96c"; +} +.icon-loading:before { + content: "\e96d"; +} +.icon-logout:before { + content: "\e96e"; +} +.icon-mail:before { + content: "\e96f"; +} +.icon-mail-open:before { + content: "\e970"; +} +.icon-map:before { + content: "\e971"; +} +.icon-margin:before { + content: "\e972"; +} +.icon-megaphone:before { + content: "\e973"; +} +.icon-meh:before { + content: "\e974"; +} +.icon-menu-circle:before { + content: "\e975"; +} +.icon-menu-circle-dots:before { + content: "\e976"; +} +.icon-menu-dots:before { + content: "\e977"; +} +.icon-menu-lines:before { + content: "\e978"; +} +.icon-microphone:before { + content: "\e979"; +} +.icon-minus:before { + content: "\e97a"; +} +.icon-mobile:before { + content: "\e97b"; +} +.icon-mouse:before { + content: "\e97c"; +} +.icon-move:before { + content: "\e97d"; +} +.icon-move-diagonal:before { + content: "\e97e"; +} +.icon-move-horizontal:before { + content: "\e97f"; +} +.icon-move-vertical:before { + content: "\e980"; +} +.icon-mug:before { + content: "\e981"; +} +.icon-music:before { + content: "\e982"; +} +.icon-network:before { + content: "\e983"; +} +.icon-new-file:before { + content: "\e984"; +} +.icon-newspaper:before { + content: "\e985"; +} +.icon-next:before { + content: "\e986"; +} +.icon-no:before { + content: "\e987"; +} +.icon-notes:before { + content: "\e988"; +} +.icon-objects:before { + content: "\e989"; +} +.icon-padding:before { + content: "\e98a"; +} +.icon-padlock:before { + content: "\e98b"; +} +.icon-padlock-open:before { + content: "\e98c"; +} +.icon-paint-brush:before { + content: "\e98d"; +} +.icon-paper-plane:before { + content: "\e98e"; +} +.icon-pause:before { + content: "\e98f"; +} +.icon-pen:before { + content: "\e990"; +} +.icon-pencil:before { + content: "\e991"; +} +.icon-pencil-ruler:before { + content: "\e992"; +} +.icon-phone:before { + content: "\e993"; +} +.icon-pie-chart:before { + content: "\e994"; +} +.icon-pin:before { + content: "\e995"; +} +.icon-pin-2:before { + content: "\e996"; +} +.icon-pin-point:before { + content: "\e997"; +} +.icon-play:before { + content: "\e998"; +} +.icon-plug:before { + content: "\e999"; +} +.icon-plus:before { + content: "\e99a"; +} +.icon-pound:before { + content: "\e99b"; +} +.icon-power-on:before { + content: "\e99c"; +} +.icon-previous:before { + content: "\e99d"; +} +.icon-printer:before { + content: "\e99e"; +} +.icon-projector:before { + content: "\e99f"; +} +.icon-question:before { + content: "\e9a0"; +} +.icon-quote:before { + content: "\e9a1"; +} +.icon-record:before { + content: "\e9a2"; +} +.icon-recycle:before { + content: "\e9a3"; +} +.icon-redo:before { + content: "\e9a4"; +} +.icon-refresh:before { + content: "\e9a5"; +} +.icon-rotate-clock:before { + content: "\e9a6"; +} +.icon-rotate-counter:before { + content: "\e9a7"; +} +.icon-sad:before { + content: "\e9a8"; +} +.icon-scales:before { + content: "\e9a9"; +} +.icon-search:before { + content: "\e9aa"; +} +.icon-selection:before { + content: "\e9ab"; +} +.icon-settings:before { + content: "\e9ac"; +} +.icon-shapes:before { + content: "\e9ad"; +} +.icon-share:before { + content: "\e9ae"; +} +.icon-shield:before { + content: "\e9af"; +} +.icon-shopping-cart:before { + content: "\e9b0"; +} +.icon-show-sidebar-horiz:before { + content: "\e9b1"; +} +.icon-show-sidebar-vert:before { + content: "\e9b2"; +} +.icon-shuffle:before { + content: "\e9b3"; +} +.icon-sign:before { + content: "\e9b4"; +} +.icon-signal:before { + content: "\e9b5"; +} +.icon-skull:before { + content: "\e9b6"; +} +.icon-sliders:before { + content: "\e9b7"; +} +.icon-small-screen:before { + content: "\e9b8"; +} +.icon-smile:before { + content: "\e9b9"; +} +.icon-soap:before { + content: "\e9ba"; +} +.icon-speed-o-meter:before { + content: "\e9bb"; +} +.icon-star:before { + content: "\e9bc"; +} +.icon-stop:before { + content: "\e9bd"; +} +.icon-styling-tools:before { + content: "\e9be"; +} +.icon-suitcase:before { + content: "\e9bf"; +} +.icon-syringe:before { + content: "\e9c0"; +} +.icon-table:before { + content: "\e9c1"; +} +.icon-tag:before { + content: "\e9c2"; +} +.icon-target:before { + content: "\e9c3"; +} +.icon-terminal:before { + content: "\e9c4"; +} +.icon-text:before { + content: "\e9c5"; +} +.icon-thumbs-down:before { + content: "\e9c6"; +} +.icon-thumbs-up:before { + content: "\e9c7"; +} +.icon-thunderbolt:before { + content: "\e9c8"; +} +.icon-tie:before { + content: "\e9c9"; +} +.icon-toggles:before { + content: "\e9ca"; +} +.icon-trophy:before { + content: "\e9cb"; +} +.icon-truck:before { + content: "\e9cc"; +} +.icon-tube:before { + content: "\e9cd"; +} +.icon-tv:before { + content: "\e9ce"; +} +.icon-umbrella:before { + content: "\e9cf"; +} +.icon-undo:before { + content: "\e9d0"; +} +.icon-up:before { + content: "\e9d1"; +} +.icon-update:before { + content: "\e9d2"; +} +.icon-up-down:before { + content: "\e9d3"; +} +.icon-upload:before { + content: "\e9d4"; +} +.icon-user:before { + content: "\e9d5"; +} +.icon-user-add:before { + content: "\e9d6"; +} +.icon-user-remove:before { + content: "\e9d7"; +} +.icon-users:before { + content: "\e9d8"; +} +.icon-video:before { + content: "\e9d9"; +} +.icon-video-camera:before { + content: "\e9da"; +} +.icon-volume-down:before { + content: "\e9db"; +} +.icon-volume-mute:before { + content: "\e9dc"; +} +.icon-volume-up:before { + content: "\e9dd"; +} +.icon-wallet:before { + content: "\e9de"; +} +.icon-wand:before { + content: "\e9df"; +} +.icon-warning:before { + content: "\e9e0"; +} +.icon-wi-fi:before { + content: "\e9e1"; +} +.icon-window:before { + content: "\e9e2"; +} +.icon-wrench:before { + content: "\e9e3"; +} +.icon-yes:before { + content: "\e9e4"; +} +.icon-zoom-in:before { + content: "\e9e5"; +} +.icon-zoom-out:before { + content: "\e9e6"; +} + diff --git a/css/vendor.css b/css/vendor.css new file mode 100644 index 0000000..2faffe1 --- /dev/null +++ b/css/vendor.css @@ -0,0 +1,2358 @@ +/* =================================================================== + * + * Sublime v1.0 Vendor/Third Party CSS + * 06-10-2018 + * ------------------------------------------------------------------ + * + * TOC: + * # animate on scroll + * # slick slider + * # lity + * # PhotoSwipe main CSS + * # PhotoSwipe Skin + * + * =================================================================== */ + + +/* =================================================================== + * # animate on scroll + * https://michalsnik.github.io/aos/ + * ------------------------------------------------------------------- */ +[data-aos][data-aos][data-aos-duration='50'], +body[data-aos-duration='50'] [data-aos] { + transition-duration: 50ms; +} + +[data-aos][data-aos][data-aos-delay='50'], +body[data-aos-delay='50'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='50'].aos-animate, +body[data-aos-delay='50'] [data-aos].aos-animate { + transition-delay: 50ms; +} + +[data-aos][data-aos][data-aos-duration='100'], +body[data-aos-duration='100'] [data-aos] { + transition-duration: .1s; +} + +[data-aos][data-aos][data-aos-delay='100'], +body[data-aos-delay='100'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='100'].aos-animate, +body[data-aos-delay='100'] [data-aos].aos-animate { + transition-delay: .1s; +} + +[data-aos][data-aos][data-aos-duration='150'], +body[data-aos-duration='150'] [data-aos] { + transition-duration: .15s; +} + +[data-aos][data-aos][data-aos-delay='150'], +body[data-aos-delay='150'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='150'].aos-animate, +body[data-aos-delay='150'] [data-aos].aos-animate { + transition-delay: .15s; +} + +[data-aos][data-aos][data-aos-duration='200'], +body[data-aos-duration='200'] [data-aos] { + transition-duration: .2s; +} + +[data-aos][data-aos][data-aos-delay='200'], +body[data-aos-delay='200'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='200'].aos-animate, +body[data-aos-delay='200'] [data-aos].aos-animate { + transition-delay: .2s; +} + +[data-aos][data-aos][data-aos-duration='250'], +body[data-aos-duration='250'] [data-aos] { + transition-duration: .25s; +} + +[data-aos][data-aos][data-aos-delay='250'], +body[data-aos-delay='250'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='250'].aos-animate, +body[data-aos-delay='250'] [data-aos].aos-animate { + transition-delay: .25s; +} + +[data-aos][data-aos][data-aos-duration='300'], +body[data-aos-duration='300'] [data-aos] { + transition-duration: .3s; +} + +[data-aos][data-aos][data-aos-delay='300'], +body[data-aos-delay='300'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='300'].aos-animate, +body[data-aos-delay='300'] [data-aos].aos-animate { + transition-delay: .3s; +} + +[data-aos][data-aos][data-aos-duration='350'], +body[data-aos-duration='350'] [data-aos] { + transition-duration: .35s; +} + +[data-aos][data-aos][data-aos-delay='350'], +body[data-aos-delay='350'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='350'].aos-animate, +body[data-aos-delay='350'] [data-aos].aos-animate { + transition-delay: .35s; +} + +[data-aos][data-aos][data-aos-duration='400'], +body[data-aos-duration='400'] [data-aos] { + transition-duration: .4s; +} + +[data-aos][data-aos][data-aos-delay='400'], +body[data-aos-delay='400'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='400'].aos-animate, +body[data-aos-delay='400'] [data-aos].aos-animate { + transition-delay: .4s; +} + +[data-aos][data-aos][data-aos-duration='450'], +body[data-aos-duration='450'] [data-aos] { + transition-duration: .45s; +} + +[data-aos][data-aos][data-aos-delay='450'], +body[data-aos-delay='450'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='450'].aos-animate, +body[data-aos-delay='450'] [data-aos].aos-animate { + transition-delay: .45s; +} + +[data-aos][data-aos][data-aos-duration='500'], +body[data-aos-duration='500'] [data-aos] { + transition-duration: .5s; +} + +[data-aos][data-aos][data-aos-delay='500'], +body[data-aos-delay='500'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='500'].aos-animate, +body[data-aos-delay='500'] [data-aos].aos-animate { + transition-delay: .5s; +} + +[data-aos][data-aos][data-aos-duration='550'], +body[data-aos-duration='550'] [data-aos] { + transition-duration: .55s; +} + +[data-aos][data-aos][data-aos-delay='550'], +body[data-aos-delay='550'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='550'].aos-animate, +body[data-aos-delay='550'] [data-aos].aos-animate { + transition-delay: .55s; +} + +[data-aos][data-aos][data-aos-duration='600'], +body[data-aos-duration='600'] [data-aos] { + transition-duration: .6s; +} + +[data-aos][data-aos][data-aos-delay='600'], +body[data-aos-delay='600'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='600'].aos-animate, +body[data-aos-delay='600'] [data-aos].aos-animate { + transition-delay: .6s; +} + +[data-aos][data-aos][data-aos-duration='650'], +body[data-aos-duration='650'] [data-aos] { + transition-duration: .65s; +} + +[data-aos][data-aos][data-aos-delay='650'], +body[data-aos-delay='650'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='650'].aos-animate, +body[data-aos-delay='650'] [data-aos].aos-animate { + transition-delay: .65s; +} + +[data-aos][data-aos][data-aos-duration='700'], +body[data-aos-duration='700'] [data-aos] { + transition-duration: .7s; +} + +[data-aos][data-aos][data-aos-delay='700'], +body[data-aos-delay='700'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='700'].aos-animate, +body[data-aos-delay='700'] [data-aos].aos-animate { + transition-delay: .7s; +} + +[data-aos][data-aos][data-aos-duration='750'], +body[data-aos-duration='750'] [data-aos] { + transition-duration: .75s; +} + +[data-aos][data-aos][data-aos-delay='750'], +body[data-aos-delay='750'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='750'].aos-animate, +body[data-aos-delay='750'] [data-aos].aos-animate { + transition-delay: .75s; +} + +[data-aos][data-aos][data-aos-duration='800'], +body[data-aos-duration='800'] [data-aos] { + transition-duration: .8s; +} + +[data-aos][data-aos][data-aos-delay='800'], +body[data-aos-delay='800'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='800'].aos-animate, +body[data-aos-delay='800'] [data-aos].aos-animate { + transition-delay: .8s; +} + +[data-aos][data-aos][data-aos-duration='850'], +body[data-aos-duration='850'] [data-aos] { + transition-duration: .85s; +} + +[data-aos][data-aos][data-aos-delay='850'], +body[data-aos-delay='850'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='850'].aos-animate, +body[data-aos-delay='850'] [data-aos].aos-animate { + transition-delay: .85s; +} + +[data-aos][data-aos][data-aos-duration='900'], +body[data-aos-duration='900'] [data-aos] { + transition-duration: .9s; +} + +[data-aos][data-aos][data-aos-delay='900'], +body[data-aos-delay='900'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='900'].aos-animate, +body[data-aos-delay='900'] [data-aos].aos-animate { + transition-delay: .9s; +} + +[data-aos][data-aos][data-aos-duration='950'], +body[data-aos-duration='950'] [data-aos] { + transition-duration: .95s; +} + +[data-aos][data-aos][data-aos-delay='950'], +body[data-aos-delay='950'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='950'].aos-animate, +body[data-aos-delay='950'] [data-aos].aos-animate { + transition-delay: .95s; +} + +[data-aos][data-aos][data-aos-duration='1000'], +body[data-aos-duration='1000'] [data-aos] { + transition-duration: 1s; +} + +[data-aos][data-aos][data-aos-delay='1000'], +body[data-aos-delay='1000'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1000'].aos-animate, +body[data-aos-delay='1000'] [data-aos].aos-animate { + transition-delay: 1s; +} + +[data-aos][data-aos][data-aos-duration='1050'], +body[data-aos-duration='1050'] [data-aos] { + transition-duration: 1.05s; +} + +[data-aos][data-aos][data-aos-delay='1050'], +body[data-aos-delay='1050'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1050'].aos-animate, +body[data-aos-delay='1050'] [data-aos].aos-animate { + transition-delay: 1.05s; +} + +[data-aos][data-aos][data-aos-duration='1100'], +body[data-aos-duration='1100'] [data-aos] { + transition-duration: 1.1s; +} + +[data-aos][data-aos][data-aos-delay='1100'], +body[data-aos-delay='1100'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1100'].aos-animate, +body[data-aos-delay='1100'] [data-aos].aos-animate { + transition-delay: 1.1s; +} + +[data-aos][data-aos][data-aos-duration='1150'], +body[data-aos-duration='1150'] [data-aos] { + transition-duration: 1.15s; +} + +[data-aos][data-aos][data-aos-delay='1150'], +body[data-aos-delay='1150'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1150'].aos-animate, +body[data-aos-delay='1150'] [data-aos].aos-animate { + transition-delay: 1.15s; +} + +[data-aos][data-aos][data-aos-duration='1200'], +body[data-aos-duration='1200'] [data-aos] { + transition-duration: 1.2s; +} + +[data-aos][data-aos][data-aos-delay='1200'], +body[data-aos-delay='1200'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1200'].aos-animate, +body[data-aos-delay='1200'] [data-aos].aos-animate { + transition-delay: 1.2s; +} + +[data-aos][data-aos][data-aos-duration='1250'], +body[data-aos-duration='1250'] [data-aos] { + transition-duration: 1.25s; +} + +[data-aos][data-aos][data-aos-delay='1250'], +body[data-aos-delay='1250'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1250'].aos-animate, +body[data-aos-delay='1250'] [data-aos].aos-animate { + transition-delay: 1.25s; +} + +[data-aos][data-aos][data-aos-duration='1300'], +body[data-aos-duration='1300'] [data-aos] { + transition-duration: 1.3s; +} + +[data-aos][data-aos][data-aos-delay='1300'], +body[data-aos-delay='1300'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1300'].aos-animate, +body[data-aos-delay='1300'] [data-aos].aos-animate { + transition-delay: 1.3s; +} + +[data-aos][data-aos][data-aos-duration='1350'], +body[data-aos-duration='1350'] [data-aos] { + transition-duration: 1.35s; +} + +[data-aos][data-aos][data-aos-delay='1350'], +body[data-aos-delay='1350'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1350'].aos-animate, +body[data-aos-delay='1350'] [data-aos].aos-animate { + transition-delay: 1.35s; +} + +[data-aos][data-aos][data-aos-duration='1400'], +body[data-aos-duration='1400'] [data-aos] { + transition-duration: 1.4s; +} + +[data-aos][data-aos][data-aos-delay='1400'], +body[data-aos-delay='1400'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1400'].aos-animate, +body[data-aos-delay='1400'] [data-aos].aos-animate { + transition-delay: 1.4s; +} + +[data-aos][data-aos][data-aos-duration='1450'], +body[data-aos-duration='1450'] [data-aos] { + transition-duration: 1.45s; +} + +[data-aos][data-aos][data-aos-delay='1450'], +body[data-aos-delay='1450'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1450'].aos-animate, +body[data-aos-delay='1450'] [data-aos].aos-animate { + transition-delay: 1.45s; +} + +[data-aos][data-aos][data-aos-duration='1500'], +body[data-aos-duration='1500'] [data-aos] { + transition-duration: 1.5s; +} + +[data-aos][data-aos][data-aos-delay='1500'], +body[data-aos-delay='1500'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1500'].aos-animate, +body[data-aos-delay='1500'] [data-aos].aos-animate { + transition-delay: 1.5s; +} + +[data-aos][data-aos][data-aos-duration='1550'], +body[data-aos-duration='1550'] [data-aos] { + transition-duration: 1.55s; +} + +[data-aos][data-aos][data-aos-delay='1550'], +body[data-aos-delay='1550'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1550'].aos-animate, +body[data-aos-delay='1550'] [data-aos].aos-animate { + transition-delay: 1.55s; +} + +[data-aos][data-aos][data-aos-duration='1600'], +body[data-aos-duration='1600'] [data-aos] { + transition-duration: 1.6s; +} + +[data-aos][data-aos][data-aos-delay='1600'], +body[data-aos-delay='1600'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1600'].aos-animate, +body[data-aos-delay='1600'] [data-aos].aos-animate { + transition-delay: 1.6s; +} + +[data-aos][data-aos][data-aos-duration='1650'], +body[data-aos-duration='1650'] [data-aos] { + transition-duration: 1.65s; +} + +[data-aos][data-aos][data-aos-delay='1650'], +body[data-aos-delay='1650'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1650'].aos-animate, +body[data-aos-delay='1650'] [data-aos].aos-animate { + transition-delay: 1.65s; +} + +[data-aos][data-aos][data-aos-duration='1700'], +body[data-aos-duration='1700'] [data-aos] { + transition-duration: 1.7s; +} + +[data-aos][data-aos][data-aos-delay='1700'], +body[data-aos-delay='1700'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1700'].aos-animate, +body[data-aos-delay='1700'] [data-aos].aos-animate { + transition-delay: 1.7s; +} + +[data-aos][data-aos][data-aos-duration='1750'], +body[data-aos-duration='1750'] [data-aos] { + transition-duration: 1.75s; +} + +[data-aos][data-aos][data-aos-delay='1750'], +body[data-aos-delay='1750'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1750'].aos-animate, +body[data-aos-delay='1750'] [data-aos].aos-animate { + transition-delay: 1.75s; +} + +[data-aos][data-aos][data-aos-duration='1800'], +body[data-aos-duration='1800'] [data-aos] { + transition-duration: 1.8s; +} + +[data-aos][data-aos][data-aos-delay='1800'], +body[data-aos-delay='1800'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1800'].aos-animate, +body[data-aos-delay='1800'] [data-aos].aos-animate { + transition-delay: 1.8s; +} + +[data-aos][data-aos][data-aos-duration='1850'], +body[data-aos-duration='1850'] [data-aos] { + transition-duration: 1.85s; +} + +[data-aos][data-aos][data-aos-delay='1850'], +body[data-aos-delay='1850'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1850'].aos-animate, +body[data-aos-delay='1850'] [data-aos].aos-animate { + transition-delay: 1.85s; +} + +[data-aos][data-aos][data-aos-duration='1900'], +body[data-aos-duration='1900'] [data-aos] { + transition-duration: 1.9s; +} + +[data-aos][data-aos][data-aos-delay='1900'], +body[data-aos-delay='1900'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1900'].aos-animate, +body[data-aos-delay='1900'] [data-aos].aos-animate { + transition-delay: 1.9s; +} + +[data-aos][data-aos][data-aos-duration='1950'], +body[data-aos-duration='1950'] [data-aos] { + transition-duration: 1.95s; +} + +[data-aos][data-aos][data-aos-delay='1950'], +body[data-aos-delay='1950'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='1950'].aos-animate, +body[data-aos-delay='1950'] [data-aos].aos-animate { + transition-delay: 1.95s; +} + +[data-aos][data-aos][data-aos-duration='2000'], +body[data-aos-duration='2000'] [data-aos] { + transition-duration: 2s; +} + +[data-aos][data-aos][data-aos-delay='2000'], +body[data-aos-delay='2000'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2000'].aos-animate, +body[data-aos-delay='2000'] [data-aos].aos-animate { + transition-delay: 2s; +} + +[data-aos][data-aos][data-aos-duration='2050'], +body[data-aos-duration='2050'] [data-aos] { + transition-duration: 2.05s; +} + +[data-aos][data-aos][data-aos-delay='2050'], +body[data-aos-delay='2050'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2050'].aos-animate, +body[data-aos-delay='2050'] [data-aos].aos-animate { + transition-delay: 2.05s; +} + +[data-aos][data-aos][data-aos-duration='2100'], +body[data-aos-duration='2100'] [data-aos] { + transition-duration: 2.1s; +} + +[data-aos][data-aos][data-aos-delay='2100'], +body[data-aos-delay='2100'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2100'].aos-animate, +body[data-aos-delay='2100'] [data-aos].aos-animate { + transition-delay: 2.1s; +} + +[data-aos][data-aos][data-aos-duration='2150'], +body[data-aos-duration='2150'] [data-aos] { + transition-duration: 2.15s; +} + +[data-aos][data-aos][data-aos-delay='2150'], +body[data-aos-delay='2150'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2150'].aos-animate, +body[data-aos-delay='2150'] [data-aos].aos-animate { + transition-delay: 2.15s; +} + +[data-aos][data-aos][data-aos-duration='2200'], +body[data-aos-duration='2200'] [data-aos] { + transition-duration: 2.2s; +} + +[data-aos][data-aos][data-aos-delay='2200'], +body[data-aos-delay='2200'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2200'].aos-animate, +body[data-aos-delay='2200'] [data-aos].aos-animate { + transition-delay: 2.2s; +} + +[data-aos][data-aos][data-aos-duration='2250'], +body[data-aos-duration='2250'] [data-aos] { + transition-duration: 2.25s; +} + +[data-aos][data-aos][data-aos-delay='2250'], +body[data-aos-delay='2250'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2250'].aos-animate, +body[data-aos-delay='2250'] [data-aos].aos-animate { + transition-delay: 2.25s; +} + +[data-aos][data-aos][data-aos-duration='2300'], +body[data-aos-duration='2300'] [data-aos] { + transition-duration: 2.3s; +} + +[data-aos][data-aos][data-aos-delay='2300'], +body[data-aos-delay='2300'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2300'].aos-animate, +body[data-aos-delay='2300'] [data-aos].aos-animate { + transition-delay: 2.3s; +} + +[data-aos][data-aos][data-aos-duration='2350'], +body[data-aos-duration='2350'] [data-aos] { + transition-duration: 2.35s; +} + +[data-aos][data-aos][data-aos-delay='2350'], +body[data-aos-delay='2350'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2350'].aos-animate, +body[data-aos-delay='2350'] [data-aos].aos-animate { + transition-delay: 2.35s; +} + +[data-aos][data-aos][data-aos-duration='2400'], +body[data-aos-duration='2400'] [data-aos] { + transition-duration: 2.4s; +} + +[data-aos][data-aos][data-aos-delay='2400'], +body[data-aos-delay='2400'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2400'].aos-animate, +body[data-aos-delay='2400'] [data-aos].aos-animate { + transition-delay: 2.4s; +} + +[data-aos][data-aos][data-aos-duration='2450'], +body[data-aos-duration='2450'] [data-aos] { + transition-duration: 2.45s; +} + +[data-aos][data-aos][data-aos-delay='2450'], +body[data-aos-delay='2450'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2450'].aos-animate, +body[data-aos-delay='2450'] [data-aos].aos-animate { + transition-delay: 2.45s; +} + +[data-aos][data-aos][data-aos-duration='2500'], +body[data-aos-duration='2500'] [data-aos] { + transition-duration: 2.5s; +} + +[data-aos][data-aos][data-aos-delay='2500'], +body[data-aos-delay='2500'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2500'].aos-animate, +body[data-aos-delay='2500'] [data-aos].aos-animate { + transition-delay: 2.5s; +} + +[data-aos][data-aos][data-aos-duration='2550'], +body[data-aos-duration='2550'] [data-aos] { + transition-duration: 2.55s; +} + +[data-aos][data-aos][data-aos-delay='2550'], +body[data-aos-delay='2550'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2550'].aos-animate, +body[data-aos-delay='2550'] [data-aos].aos-animate { + transition-delay: 2.55s; +} + +[data-aos][data-aos][data-aos-duration='2600'], +body[data-aos-duration='2600'] [data-aos] { + transition-duration: 2.6s; +} + +[data-aos][data-aos][data-aos-delay='2600'], +body[data-aos-delay='2600'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2600'].aos-animate, +body[data-aos-delay='2600'] [data-aos].aos-animate { + transition-delay: 2.6s; +} + +[data-aos][data-aos][data-aos-duration='2650'], +body[data-aos-duration='2650'] [data-aos] { + transition-duration: 2.65s; +} + +[data-aos][data-aos][data-aos-delay='2650'], +body[data-aos-delay='2650'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2650'].aos-animate, +body[data-aos-delay='2650'] [data-aos].aos-animate { + transition-delay: 2.65s; +} + +[data-aos][data-aos][data-aos-duration='2700'], +body[data-aos-duration='2700'] [data-aos] { + transition-duration: 2.7s; +} + +[data-aos][data-aos][data-aos-delay='2700'], +body[data-aos-delay='2700'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2700'].aos-animate, +body[data-aos-delay='2700'] [data-aos].aos-animate { + transition-delay: 2.7s; +} + +[data-aos][data-aos][data-aos-duration='2750'], +body[data-aos-duration='2750'] [data-aos] { + transition-duration: 2.75s; +} + +[data-aos][data-aos][data-aos-delay='2750'], +body[data-aos-delay='2750'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2750'].aos-animate, +body[data-aos-delay='2750'] [data-aos].aos-animate { + transition-delay: 2.75s; +} + +[data-aos][data-aos][data-aos-duration='2800'], +body[data-aos-duration='2800'] [data-aos] { + transition-duration: 2.8s; +} + +[data-aos][data-aos][data-aos-delay='2800'], +body[data-aos-delay='2800'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2800'].aos-animate, +body[data-aos-delay='2800'] [data-aos].aos-animate { + transition-delay: 2.8s; +} + +[data-aos][data-aos][data-aos-duration='2850'], +body[data-aos-duration='2850'] [data-aos] { + transition-duration: 2.85s; +} + +[data-aos][data-aos][data-aos-delay='2850'], +body[data-aos-delay='2850'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2850'].aos-animate, +body[data-aos-delay='2850'] [data-aos].aos-animate { + transition-delay: 2.85s; +} + +[data-aos][data-aos][data-aos-duration='2900'], +body[data-aos-duration='2900'] [data-aos] { + transition-duration: 2.9s; +} + +[data-aos][data-aos][data-aos-delay='2900'], +body[data-aos-delay='2900'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2900'].aos-animate, +body[data-aos-delay='2900'] [data-aos].aos-animate { + transition-delay: 2.9s; +} + +[data-aos][data-aos][data-aos-duration='2950'], +body[data-aos-duration='2950'] [data-aos] { + transition-duration: 2.95s; +} + +[data-aos][data-aos][data-aos-delay='2950'], +body[data-aos-delay='2950'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='2950'].aos-animate, +body[data-aos-delay='2950'] [data-aos].aos-animate { + transition-delay: 2.95s; +} + +[data-aos][data-aos][data-aos-duration='3000'], +body[data-aos-duration='3000'] [data-aos] { + transition-duration: 3s; +} + +[data-aos][data-aos][data-aos-delay='3000'], +body[data-aos-delay='3000'] [data-aos] { + transition-delay: 0; +} + +[data-aos][data-aos][data-aos-delay='3000'].aos-animate, +body[data-aos-delay='3000'] [data-aos].aos-animate { + transition-delay: 3s; +} + +[data-aos][data-aos][data-aos-easing=linear], +body[data-aos-easing=linear] [data-aos] { + transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75); +} + +[data-aos][data-aos][data-aos-easing=ease], +body[data-aos-easing=ease] [data-aos] { + transition-timing-function: ease; +} + +[data-aos][data-aos][data-aos-easing=ease-in], +body[data-aos-easing=ease-in] [data-aos] { + transition-timing-function: ease-in; +} + +[data-aos][data-aos][data-aos-easing=ease-out], +body[data-aos-easing=ease-out] [data-aos] { + transition-timing-function: ease-out; +} + +[data-aos][data-aos][data-aos-easing=ease-in-out], +body[data-aos-easing=ease-in-out] [data-aos] { + transition-timing-function: ease-in-out; +} + +[data-aos][data-aos][data-aos-easing=ease-in-back], +body[data-aos-easing=ease-in-back] [data-aos] { + transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045); +} + +[data-aos][data-aos][data-aos-easing=ease-out-back], +body[data-aos-easing=ease-out-back] [data-aos] { + transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); +} + +[data-aos][data-aos][data-aos-easing=ease-in-out-back], +body[data-aos-easing=ease-in-out-back] [data-aos] { + transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); +} + +[data-aos][data-aos][data-aos-easing=ease-in-sine], +body[data-aos-easing=ease-in-sine] [data-aos] { + transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); +} + +[data-aos][data-aos][data-aos-easing=ease-out-sine], +body[data-aos-easing=ease-out-sine] [data-aos] { + transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); +} + +[data-aos][data-aos][data-aos-easing=ease-in-out-sine], +body[data-aos-easing=ease-in-out-sine] [data-aos] { + transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95); +} + +[data-aos][data-aos][data-aos-easing=ease-in-quad], +body[data-aos-easing=ease-in-quad] [data-aos] { + transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); +} + +[data-aos][data-aos][data-aos-easing=ease-out-quad], +body[data-aos-easing=ease-out-quad] [data-aos] { + transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); +} + +[data-aos][data-aos][data-aos-easing=ease-in-out-quad], +body[data-aos-easing=ease-in-out-quad] [data-aos] { + transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); +} + +[data-aos][data-aos][data-aos-easing=ease-in-cubic], +body[data-aos-easing=ease-in-cubic] [data-aos] { + transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); +} + +[data-aos][data-aos][data-aos-easing=ease-out-cubic], +body[data-aos-easing=ease-out-cubic] [data-aos] { + transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); +} + +[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], +body[data-aos-easing=ease-in-out-cubic] [data-aos] { + transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); +} + +[data-aos][data-aos][data-aos-easing=ease-in-quart], +body[data-aos-easing=ease-in-quart] [data-aos] { + transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); +} + +[data-aos][data-aos][data-aos-easing=ease-out-quart], +body[data-aos-easing=ease-out-quart] [data-aos] { + transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); +} + +[data-aos][data-aos][data-aos-easing=ease-in-out-quart], +body[data-aos-easing=ease-in-out-quart] [data-aos] { + transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); +} + +[data-aos^=fade][data-aos^=fade] { + opacity: 0; + transition-property: opacity, transform; +} + +[data-aos^=fade][data-aos^=fade].aos-animate { + opacity: 1; + transform: translate(0); +} + +[data-aos=fade-up] { + transform: translateY(100px); +} + +[data-aos=fade-down] { + transform: translateY(-100px); +} + +[data-aos=fade-right] { + transform: translate(-100px); +} + +[data-aos=fade-left] { + transform: translate(100px); +} + +[data-aos=fade-up-right] { + transform: translate(-100px, 100px); +} + +[data-aos=fade-up-left] { + transform: translate(100px, 100px); +} + +[data-aos=fade-down-right] { + transform: translate(-100px, -100px); +} + +[data-aos=fade-down-left] { + transform: translate(100px, -100px); +} + +[data-aos^=zoom][data-aos^=zoom] { + opacity: 0; + transition-property: opacity, transform; +} + +[data-aos^=zoom][data-aos^=zoom].aos-animate { + opacity: 1; + transform: translate(0) scale(1); +} + +[data-aos=zoom-in] { + transform: scale(0.6); +} + +[data-aos=zoom-in-up] { + transform: translateY(100px) scale(0.6); +} + +[data-aos=zoom-in-down] { + transform: translateY(-100px) scale(0.6); +} + +[data-aos=zoom-in-right] { + transform: translate(-100px) scale(0.6); +} + +[data-aos=zoom-in-left] { + transform: translate(100px) scale(0.6); +} + +[data-aos=zoom-out] { + transform: scale(1.2); +} + +[data-aos=zoom-out-up] { + transform: translateY(100px) scale(1.2); +} + +[data-aos=zoom-out-down] { + transform: translateY(-100px) scale(1.2); +} + +[data-aos=zoom-out-right] { + transform: translate(-100px) scale(1.2); +} + +[data-aos=zoom-out-left] { + transform: translate(100px) scale(1.2); +} + +[data-aos^=slide][data-aos^=slide] { + transition-property: transform; +} + +[data-aos^=slide][data-aos^=slide].aos-animate { + transform: translate(0); +} + +[data-aos=slide-up] { + transform: translateY(100%); +} + +[data-aos=slide-down] { + transform: translateY(-100%); +} + +[data-aos=slide-right] { + transform: translateX(-100%); +} + +[data-aos=slide-left] { + transform: translateX(100%); +} + +[data-aos^=flip][data-aos^=flip] { + backface-visibility: hidden; + transition-property: transform; +} + +[data-aos=flip-left] { + transform: perspective(2500px) rotateY(-100deg); +} + +[data-aos=flip-left].aos-animate { + transform: perspective(2500px) rotateY(0); +} + +[data-aos=flip-right] { + transform: perspective(2500px) rotateY(100deg); +} + +[data-aos=flip-right].aos-animate { + transform: perspective(2500px) rotateY(0); +} + +[data-aos=flip-up] { + transform: perspective(2500px) rotateX(-100deg); +} + +[data-aos=flip-up].aos-animate { + transform: perspective(2500px) rotateX(0); +} + +[data-aos=flip-down] { + transform: perspective(2500px) rotateX(100deg); +} + +[data-aos=flip-down].aos-animate { + transform: perspective(2500px) rotateX(0); +} + +/*# sourceMappingURL=aos.css.map*/ + + +/* =================================================================== + * # slick slider + * http://kenwheeler.github.io/slick/ + * ------------------------------------------------------------------- */ +.slick-slider { + position: relative; + display: block; + box-sizing: border-box; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -ms-touch-action: pan-y; + touch-action: pan-y; + -webkit-tap-highlight-color: transparent; +} + +.slick-list { + position: relative; + overflow: hidden; + display: block; + margin: 0; + padding: 0; +} + +.slick-list:focus { + outline: none; +} + +.slick-list.dragging { + cursor: pointer; + cursor: hand; +} + +.slick-slider .slick-track, +.slick-slider .slick-list { + -webkit-transform: translate3d(0, 0, 0); + -moz-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + -o-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +.slick-track { + position: relative; + left: 0; + top: 0; + display: block; +} + +.slick-track:before, +.slick-track:after { + content: ""; + display: table; +} + +.slick-track:after { + clear: both; +} + +.slick-loading .slick-track { + visibility: hidden; +} + +.slick-slide { + float: left; + height: 100%; + min-height: 1px; + display: none; +} + +[dir="rtl"] .slick-slide { + float: right; +} + +.slick-slide img { + display: block; +} + +.slick-slide.slick-loading img { + display: none; +} + +.slick-slide.dragging img { + pointer-events: none; +} + +.slick-initialized .slick-slide { + display: block; +} + +.slick-loading .slick-slide { + visibility: hidden; +} + +.slick-vertical .slick-slide { + display: block; + height: auto; + border: 1px solid transparent; +} + +.slick-arrow.slick-hidden { + display: none; +} + + +/* =================================================================== + * # lity - v1.6.6 - 2016-04-22 + * http://sorgalla.com/lity/ + * Copyright (c) 2016 Jan Sorgalla; Licensed MIT + * ------------------------------------------------------------------- */ +.lity { + z-index: 9990; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + white-space: nowrap; + background: #151515; + background: #151515; + outline: none !important; + opacity: 0; + -webkit-transition: opacity 0.3s ease; + -o-transition: opacity 0.3s ease; + transition: opacity 0.3s ease; +} + +.lity.lity-opened { + opacity: 1; +} + +.lity.lity-closed { + opacity: 0; +} + +.lity * { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +.lity-wrap { + z-index: 9990; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + text-align: center; + outline: none !important; +} + +.lity-wrap:before { + content: ''; + display: inline-block; + height: 100%; + vertical-align: middle; + margin-right: -0.25em; +} + +.lity-loader { + z-index: 9991; + color: #333; + position: absolute; + top: 50%; + margin-top: -0.8em; + width: 100%; + text-align: center; + font-size: 14px; + font-family: Arial, Helvetica, sans-serif; + opacity: 0; + -webkit-transition: opacity 0.3s ease; + -o-transition: opacity 0.3s ease; + transition: opacity 0.3s ease; +} + +.lity-loading .lity-loader { + opacity: 1; +} + +.lity-container { + z-index: 9992; + position: relative; + text-align: left; + vertical-align: middle; + display: inline-block; + white-space: normal; + max-width: 100%; + max-height: 100%; + outline: none !important; +} + +.lity-content { + z-index: 9993; + width: 100%; + -webkit-transform: scale(1); + -ms-transform: scale(1); + -o-transform: scale(1); + transform: scale(1); + -webkit-transition: -webkit-transform 0.3s ease; + -o-transition: -o-transform 0.3s ease; + transition: transform 0.3s ease; +} + +.lity-loading .lity-content, +.lity-closed .lity-content { + -webkit-transform: scale(0.8); + -ms-transform: scale(0.8); + -o-transform: scale(0.8); + transform: scale(0.8); +} + +.lity-content:after { + content: ''; + position: absolute; + left: 0; + top: 0; + bottom: 0; + display: block; + right: 0; + width: auto; + height: auto; + z-index: -1; +} + +.lity-close { + z-index: 9994; + width: 42px; + height: 42px; + position: fixed; + text-align: center !important; + right: 20px; + top: 20px; + -webkit-appearance: none; + cursor: pointer; + text-decoration: none; + text-align: center; + padding: 0; + margin: 0; + color: white; + font-style: normal; + font-size: 30px; + font-family: Arial, sans-serif; + line-height: 42px; + border: 0; + background: transparent; + outline: none; + -webkit-box-shadow: none; + box-shadow: none; + font: 0/0 a; + text-shadow: none; + color: transparent; + border-radius: 50%; +} + +.lity-close::before, +.lity-close::after { + display: block; + content: ""; + height: 20px; + width: 2px; + background-color: white; + position: absolute; + top: 11px; + left: 20px; +} + +.lity-close::before { + -webkit-transform: rotate(-45deg); + -ms-transform: rotate(-45deg); + transform: rotate(-45deg); +} + +.lity-close::after { + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); +} + +.lity-close::-moz-focus-inner { + border: 0; + padding: 0; +} + +.lity-close:hover, +.lity-close:focus, +.lity-close:active, +.lity-close:visited { + text-decoration: none; + text-align: center; + padding: 0; + color: #fff; + font-style: normal; + font-size: 30px; + font-family: Arial, sans-serif; + line-height: 36px; + border: 0; + background: transparent; + outline: none; + -webkit-box-shadow: none; + box-shadow: none; + font: 0/0 a; + text-shadow: none; + color: transparent; +} + +.lity-close:hover::before, +.lity-close:hover::after, +.lity-close:focus::before, +.lity-close:focus::after, +.lity-close:active::before, +.lity-close:active::after, +.lity-close:visited::before, +.lity-close:visited::after { + background-color: #793ea5; +} + +/* Image */ +.lity-image img { + max-width: 100%; + display: block; + line-height: 0; + border: 0; +} + +/* iFrame */ +.lity-iframe .lity-container { + width: 100%; + max-width: 964px; +} + +.lity-iframe-container { + width: 100%; + height: 0; + padding-top: 56.25%; + overflow: auto; + pointer-events: auto; + -webkit-transform: translateZ(0); + transform: translateZ(0); + -webkit-overflow-scrolling: touch; +} + +.lity-iframe-container iframe { + position: absolute; + display: block; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: #000; +} + +.lity-hide { + display: none; +} + + +/* =================================================================== + * # PhotoSwipe main CSS by Dmitry Semenov + * photoswipe.com | MIT license + * ------------------------------------------------------------------- */ + +/* + Styles for basic PhotoSwipe functionality (sliding area, open/close transitions) +*/ + +/* pswp = photoswipe */ +.pswp { + display: none; + position: absolute; + width: 100%; + height: 100%; + left: 0; + top: 0; + overflow: hidden; + -ms-touch-action: none; + touch-action: none; + z-index: 1500; + -webkit-text-size-adjust: 100%; /* create separate layer, to avoid paint on window.onscroll in webkit/blink */ + -webkit-backface-visibility: hidden; + outline: none; +} + +.pswp * { + -webkit-box-sizing: border-box; + box-sizing: border-box; +} + +.pswp img { + max-width: none; +} + +/* style is added when JS option showHideOpacity is set to true */ +.pswp--animate_opacity { + + /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */ + opacity: 0.001; + will-change: opacity; /* for open/close transition */ + -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); + transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); +} + +.pswp--open { + display: block; +} + +.pswp--zoom-allowed .pswp__img { + + /* autoprefixer: off */ + cursor: -webkit-zoom-in; + cursor: -moz-zoom-in; + cursor: zoom-in; +} + +.pswp--zoomed-in .pswp__img { + + /* autoprefixer: off */ + cursor: -webkit-grab; + cursor: -moz-grab; + cursor: grab; +} + +.pswp--dragging .pswp__img { + + /* autoprefixer: off */ + cursor: -webkit-grabbing; + cursor: -moz-grabbing; + cursor: grabbing; +} + +/* + Background is added as a separate element. + As animating opacity is much faster than animating rgba() background-color. +*/ +.pswp__bg { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + background: #000; + opacity: 0; + -webkit-transform: translateZ(0); + transform: translateZ(0); + -webkit-backface-visibility: hidden; + will-change: opacity; +} + +.pswp__scroll-wrap { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + overflow: hidden; +} + +.pswp__container, +.pswp__zoom-wrap { + -ms-touch-action: none; + touch-action: none; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; +} + +/* Prevent selection and tap highlights */ +.pswp__container, +.pswp__img { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-tap-highlight-color: transparent; + -webkit-touch-callout: none; +} + +.pswp__zoom-wrap { + position: absolute; + width: 100%; + -webkit-transform-origin: left top; + -ms-transform-origin: left top; + transform-origin: left top; /* for open/close transition */ + -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1); + transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); +} + +.pswp__bg { + will-change: opacity; /* for open/close transition */ + -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); + transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); +} + +.pswp--animated-in .pswp__bg, +.pswp--animated-in .pswp__zoom-wrap { + -webkit-transition: none; + transition: none; +} + +.pswp__container, +.pswp__zoom-wrap { + -webkit-backface-visibility: hidden; +} + +.pswp__item { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + overflow: hidden; +} + +.pswp__img { + position: absolute; + width: auto; + height: auto; + top: 0; + left: 0; +} + +/* + stretched thumbnail or div placeholder element (see below) + style is added to avoid flickering in webkit/blink when layers overlap +*/ +.pswp__img--placeholder { + -webkit-backface-visibility: hidden; +} + +/* + div element that matches size of large image + large image loads on top of it +*/ +.pswp__img--placeholder--blank { + background: #222; +} + +.pswp--ie .pswp__img { + width: 100% !important; + height: auto !important; + left: 0; + top: 0; +} + +/* + Error message appears when image is not loaded + (JS option errorMsg controls markup) +*/ +.pswp__error-msg { + position: absolute; + left: 0; + top: 50%; + width: 100%; + text-align: center; + font-size: 14px; + line-height: 16px; + margin-top: -8px; + color: #CCC; +} + +.pswp__error-msg a { + color: #CCC; + text-decoration: underline; +} + + +/* =================================================================== + * # PhotoSwipe Skin + * + * ------------------------------------------------------------------- */ + +/* + Contents: + + 1. Buttons + 2. Share modal and links + 3. Index indicator ("1 of X" counter) + 4. Caption + 5. Loading indicator + 6. Additional styles (root element, top bar, idle state, hidden state, etc.) +*/ + +/* ------------------------------------------------------------------- + * ## 1. buttons + * ------------------------------------------------------------------- */ + +/* +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/js/jquery-3.2.1.min.js b/js/jquery-3.2.1.min.js new file mode 100644 index 0000000..644d35e --- /dev/null +++ b/js/jquery-3.2.1.min.js @@ -0,0 +1,4 @@ +/*! jQuery v3.2.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(a,b){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){"use strict";var c=[],d=a.document,e=Object.getPrototypeOf,f=c.slice,g=c.concat,h=c.push,i=c.indexOf,j={},k=j.toString,l=j.hasOwnProperty,m=l.toString,n=m.call(Object),o={};function p(a,b){b=b||d;var c=b.createElement("script");c.text=a,b.head.appendChild(c).parentNode.removeChild(c)}var q="3.2.1",r=function(a,b){return new r.fn.init(a,b)},s=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,t=/^-ms-/,u=/-([a-z])/g,v=function(a,b){return b.toUpperCase()};r.fn=r.prototype={jquery:q,constructor:r,length:0,toArray:function(){return f.call(this)},get:function(a){return null==a?f.call(this):a<0?this[a+this.length]:this[a]},pushStack:function(a){var b=r.merge(this.constructor(),a);return b.prevObject=this,b},each:function(a){return r.each(this,a)},map:function(a){return this.pushStack(r.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(f.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c0&&b-1 in a)}var x=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=function(a,b){for(var c=0,d=a.length;c+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(N),U=new RegExp("^"+L+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+N),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),aa=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ba=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ca=function(a,b){return b?"\0"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},da=function(){m()},ea=ta(function(a){return a.disabled===!0&&("form"in a||"label"in a)},{dir:"parentNode",next:"legend"});try{G.apply(D=H.call(v.childNodes),v.childNodes),D[v.childNodes.length].nodeType}catch(fa){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s=b&&b.ownerDocument,w=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==w&&9!==w&&11!==w)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==w&&(l=Z.exec(a)))if(f=l[1]){if(9===w){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(s&&(j=s.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(l[2])return G.apply(d,b.getElementsByTagName(a)),d;if((f=l[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==w)s=b,r=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(ba,ca):b.setAttribute("id",k=u),o=g(a),h=o.length;while(h--)o[h]="#"+k+" "+sa(o[h]);r=o.join(","),s=$.test(a)&&qa(b.parentNode)||b}if(r)try{return G.apply(d,s.querySelectorAll(r)),d}catch(x){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(P,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("fieldset");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return function(b){return"form"in b?b.parentNode&&b.disabled===!1?"label"in b?"label"in b.parentNode?b.parentNode.disabled===a:b.disabled===a:b.isDisabled===a||b.isDisabled!==!a&&ea(b)===a:b.disabled===a:"label"in b&&b.disabled===a}}function pa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function qa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),v!==n&&(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(n.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){return a.getAttribute("id")===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}}):(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c,d,e,f=b.getElementById(a);if(f){if(c=f.getAttributeNode("id"),c&&c.value===a)return[f];e=b.getElementsByName(a),d=0;while(f=e[d++])if(c=f.getAttributeNode("id"),c&&c.value===a)return[f]}return[]}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if("undefined"!=typeof b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Y.test(n.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){a.innerHTML="";var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+K+"*[*^$|!~]?="),2!==a.querySelectorAll(":enabled").length&&q.push(":enabled",":disabled"),o.appendChild(a).disabled=!0,2!==a.querySelectorAll(":disabled").length&&q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Y.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"*"),s.call(a,"[s!='']:x"),r.push("!=",N)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Y.test(o.compareDocumentPosition),t=b||Y.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?I(k,a)-I(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?I(k,a)-I(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?la(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(S,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.escape=function(a){return(a+"").replace(ba,ca)},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(_,aa),a[3]=(a[3]||a[4]||a[5]||"").replace(_,aa),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return V.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&T.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(_,aa).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(O," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(P,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(_,aa),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return U.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(_,aa).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:oa(!1),disabled:oa(!0),checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:pa(function(){return[0]}),last:pa(function(a,b){return[b-1]}),eq:pa(function(a,b,c){return[c<0?c+b:c]}),even:pa(function(a,b){for(var c=0;c=0;)a.push(d);return a}),gt:pa(function(a,b,c){for(var d=c<0?c+b:c;++d1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function va(a,b,c){for(var d=0,e=b.length;d-1&&(f[j]=!(g[j]=l))}}else r=wa(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ya(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ta(function(a){return a===b},h,!0),l=ta(function(a){return I(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i1&&ua(m),i>1&&sa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(P,"$1"),c,i0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=E.call(i));u=wa(u)}G.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ga.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=ya(b[c]),f[u]?d.push(f):e.push(f);f=A(a,za(e,d)),f.selector=a}return f},i=ga.select=function(a,b,c,e){var f,i,j,k,l,m="function"==typeof a&&a,n=!e&&g(a=m.selector||a);if(c=c||[],1===n.length){if(i=n[0]=n[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&9===b.nodeType&&p&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(_,aa),b)||[])[0],!b)return c;m&&(b=b.parentNode),a=a.slice(i.shift().value.length)}f=V.needsContext.test(a)?0:i.length;while(f--){if(j=i[f],d.relative[k=j.type])break;if((l=d.find[k])&&(e=l(j.matches[0].replace(_,aa),$.test(i[0].type)&&qa(b.parentNode)||b))){if(i.splice(f,1),a=e.length&&sa(i),!a)return G.apply(c,e),c;break}}}return(m||h(a,n))(e,b,!p,c,!b||$.test(a)&&qa(b.parentNode)||b),c},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("fieldset"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(J,function(a,b,c){var d;if(!c)return a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);r.find=x,r.expr=x.selectors,r.expr[":"]=r.expr.pseudos,r.uniqueSort=r.unique=x.uniqueSort,r.text=x.getText,r.isXMLDoc=x.isXML,r.contains=x.contains,r.escapeSelector=x.escape;var y=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&r(a).is(c))break;d.push(a)}return d},z=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},A=r.expr.match.needsContext;function B(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()}var C=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,D=/^.[^:#\[\.,]*$/;function E(a,b,c){return r.isFunction(b)?r.grep(a,function(a,d){return!!b.call(a,d,a)!==c}):b.nodeType?r.grep(a,function(a){return a===b!==c}):"string"!=typeof b?r.grep(a,function(a){return i.call(b,a)>-1!==c}):D.test(b)?r.filter(b,a,c):(b=r.filter(b,a),r.grep(a,function(a){return i.call(b,a)>-1!==c&&1===a.nodeType}))}r.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?r.find.matchesSelector(d,a)?[d]:[]:r.find.matches(a,r.grep(b,function(a){return 1===a.nodeType}))},r.fn.extend({find:function(a){var b,c,d=this.length,e=this;if("string"!=typeof a)return this.pushStack(r(a).filter(function(){for(b=0;b1?r.uniqueSort(c):c},filter:function(a){return this.pushStack(E(this,a||[],!1))},not:function(a){return this.pushStack(E(this,a||[],!0))},is:function(a){return!!E(this,"string"==typeof a&&A.test(a)?r(a):a||[],!1).length}});var F,G=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,H=r.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||F,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:G.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof r?b[0]:b,r.merge(this,r.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),C.test(e[1])&&r.isPlainObject(b))for(e in b)r.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&(this[0]=f,this.length=1),this}return a.nodeType?(this[0]=a,this.length=1,this):r.isFunction(a)?void 0!==c.ready?c.ready(a):a(r):r.makeArray(a,this)};H.prototype=r.fn,F=r(d);var I=/^(?:parents|prev(?:Until|All))/,J={children:!0,contents:!0,next:!0,prev:!0};r.fn.extend({has:function(a){var b=r(a,this),c=b.length;return this.filter(function(){for(var a=0;a-1:1===c.nodeType&&r.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?r.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?i.call(r(a),this[0]):i.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(r.uniqueSort(r.merge(this.get(),r(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function K(a,b){while((a=a[b])&&1!==a.nodeType);return a}r.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return y(a,"parentNode")},parentsUntil:function(a,b,c){return y(a,"parentNode",c)},next:function(a){return K(a,"nextSibling")},prev:function(a){return K(a,"previousSibling")},nextAll:function(a){return y(a,"nextSibling")},prevAll:function(a){return y(a,"previousSibling")},nextUntil:function(a,b,c){return y(a,"nextSibling",c)},prevUntil:function(a,b,c){return y(a,"previousSibling",c)},siblings:function(a){return z((a.parentNode||{}).firstChild,a)},children:function(a){return z(a.firstChild)},contents:function(a){return B(a,"iframe")?a.contentDocument:(B(a,"template")&&(a=a.content||a),r.merge([],a.childNodes))}},function(a,b){r.fn[a]=function(c,d){var e=r.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=r.filter(d,e)),this.length>1&&(J[a]||r.uniqueSort(e),I.test(a)&&e.reverse()),this.pushStack(e)}});var L=/[^\x20\t\r\n\f]+/g;function M(a){var b={};return r.each(a.match(L)||[],function(a,c){b[c]=!0}),b}r.Callbacks=function(a){a="string"==typeof a?M(a):r.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=e||a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?r.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||b||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j};function N(a){return a}function O(a){throw a}function P(a,b,c,d){var e;try{a&&r.isFunction(e=a.promise)?e.call(a).done(b).fail(c):a&&r.isFunction(e=a.then)?e.call(a,b,c):b.apply(void 0,[a].slice(d))}catch(a){c.apply(void 0,[a])}}r.extend({Deferred:function(b){var c=[["notify","progress",r.Callbacks("memory"),r.Callbacks("memory"),2],["resolve","done",r.Callbacks("once memory"),r.Callbacks("once memory"),0,"resolved"],["reject","fail",r.Callbacks("once memory"),r.Callbacks("once memory"),1,"rejected"]],d="pending",e={state:function(){return d},always:function(){return f.done(arguments).fail(arguments),this},"catch":function(a){return e.then(null,a)},pipe:function(){var a=arguments;return r.Deferred(function(b){r.each(c,function(c,d){var e=r.isFunction(a[d[4]])&&a[d[4]];f[d[1]](function(){var a=e&&e.apply(this,arguments);a&&r.isFunction(a.promise)?a.promise().progress(b.notify).done(b.resolve).fail(b.reject):b[d[0]+"With"](this,e?[a]:arguments)})}),a=null}).promise()},then:function(b,d,e){var f=0;function g(b,c,d,e){return function(){var h=this,i=arguments,j=function(){var a,j;if(!(b=f&&(d!==O&&(h=void 0,i=[a]),c.rejectWith(h,i))}};b?k():(r.Deferred.getStackHook&&(k.stackTrace=r.Deferred.getStackHook()),a.setTimeout(k))}}return r.Deferred(function(a){c[0][3].add(g(0,a,r.isFunction(e)?e:N,a.notifyWith)),c[1][3].add(g(0,a,r.isFunction(b)?b:N)),c[2][3].add(g(0,a,r.isFunction(d)?d:O))}).promise()},promise:function(a){return null!=a?r.extend(a,e):e}},f={};return r.each(c,function(a,b){var g=b[2],h=b[5];e[b[1]]=g.add,h&&g.add(function(){d=h},c[3-a][2].disable,c[0][2].lock),g.add(b[3].fire),f[b[0]]=function(){return f[b[0]+"With"](this===f?void 0:this,arguments),this},f[b[0]+"With"]=g.fireWith}),e.promise(f),b&&b.call(f,f),f},when:function(a){var b=arguments.length,c=b,d=Array(c),e=f.call(arguments),g=r.Deferred(),h=function(a){return function(c){d[a]=this,e[a]=arguments.length>1?f.call(arguments):c,--b||g.resolveWith(d,e)}};if(b<=1&&(P(a,g.done(h(c)).resolve,g.reject,!b),"pending"===g.state()||r.isFunction(e[c]&&e[c].then)))return g.then();while(c--)P(e[c],h(c),g.reject);return g.promise()}});var Q=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;r.Deferred.exceptionHook=function(b,c){a.console&&a.console.warn&&b&&Q.test(b.name)&&a.console.warn("jQuery.Deferred exception: "+b.message,b.stack,c)},r.readyException=function(b){a.setTimeout(function(){throw b})};var R=r.Deferred();r.fn.ready=function(a){return R.then(a)["catch"](function(a){r.readyException(a)}),this},r.extend({isReady:!1,readyWait:1,ready:function(a){(a===!0?--r.readyWait:r.isReady)||(r.isReady=!0,a!==!0&&--r.readyWait>0||R.resolveWith(d,[r]))}}),r.ready.then=R.then;function S(){d.removeEventListener("DOMContentLoaded",S), +a.removeEventListener("load",S),r.ready()}"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(r.ready):(d.addEventListener("DOMContentLoaded",S),a.addEventListener("load",S));var T=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===r.type(c)){e=!0;for(h in c)T(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,r.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(r(a),c)})),b))for(;h1,null,!0)},removeData:function(a){return this.each(function(){X.remove(this,a)})}}),r.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=W.get(a,b),c&&(!d||Array.isArray(c)?d=W.access(a,b,r.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=r.queue(a,b),d=c.length,e=c.shift(),f=r._queueHooks(a,b),g=function(){r.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return W.get(a,c)||W.access(a,c,{empty:r.Callbacks("once memory").add(function(){W.remove(a,[b+"queue",c])})})}}),r.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length\x20\t\r\n\f]+)/i,la=/^$|\/(?:java|ecma)script/i,ma={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ma.optgroup=ma.option,ma.tbody=ma.tfoot=ma.colgroup=ma.caption=ma.thead,ma.th=ma.td;function na(a,b){var c;return c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[],void 0===b||b&&B(a,b)?r.merge([a],c):c}function oa(a,b){for(var c=0,d=a.length;c-1)e&&e.push(f);else if(j=r.contains(f.ownerDocument,f),g=na(l.appendChild(f),"script"),j&&oa(g),c){k=0;while(f=g[k++])la.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),o.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",o.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var ra=d.documentElement,sa=/^key/,ta=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ua=/^([^.]*)(?:\.(.+)|)/;function va(){return!0}function wa(){return!1}function xa(){try{return d.activeElement}catch(a){}}function ya(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ya(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=wa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return r().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=r.guid++)),a.each(function(){r.event.add(this,b,e,d,c)})}r.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=W.get(a);if(q){c.handler&&(f=c,c=f.handler,e=f.selector),e&&r.find.matchesSelector(ra,e),c.guid||(c.guid=r.guid++),(i=q.events)||(i=q.events={}),(g=q.handle)||(g=q.handle=function(b){return"undefined"!=typeof r&&r.event.triggered!==b.type?r.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(L)||[""],j=b.length;while(j--)h=ua.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n&&(l=r.event.special[n]||{},n=(e?l.delegateType:l.bindType)||n,l=r.event.special[n]||{},k=r.extend({type:n,origType:p,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&r.expr.match.needsContext.test(e),namespace:o.join(".")},f),(m=i[n])||(m=i[n]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,o,g)!==!1||a.addEventListener&&a.addEventListener(n,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),r.event.global[n]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=W.hasData(a)&&W.get(a);if(q&&(i=q.events)){b=(b||"").match(L)||[""],j=b.length;while(j--)if(h=ua.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n){l=r.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=i[n]||[],h=h[2]&&new RegExp("(^|\\.)"+o.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&p!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,o,q.handle)!==!1||r.removeEvent(a,n,q.handle),delete i[n])}else for(n in i)r.event.remove(a,n+b[j],c,d,!0);r.isEmptyObject(i)&&W.remove(a,"handle events")}},dispatch:function(a){var b=r.event.fix(a),c,d,e,f,g,h,i=new Array(arguments.length),j=(W.get(this,"events")||{})[b.type]||[],k=r.event.special[b.type]||{};for(i[0]=b,c=1;c=1))for(;j!==this;j=j.parentNode||this)if(1===j.nodeType&&("click"!==a.type||j.disabled!==!0)){for(f=[],g={},c=0;c-1:r.find(e,this,null,[j]).length),g[e]&&f.push(d);f.length&&h.push({elem:j,handlers:f})}return j=this,i\x20\t\r\n\f]*)[^>]*)\/>/gi,Aa=/\s*$/g;function Ea(a,b){return B(a,"table")&&B(11!==b.nodeType?b:b.firstChild,"tr")?r(">tbody",a)[0]||a:a}function Fa(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function Ga(a){var b=Ca.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ha(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(W.hasData(a)&&(f=W.access(a),g=W.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;c1&&"string"==typeof q&&!o.checkClone&&Ba.test(q))return a.each(function(e){var f=a.eq(e);s&&(b[0]=q.call(this,e,f.html())),Ja(f,b,c,d)});if(m&&(e=qa(b,a[0].ownerDocument,!1,a,d),f=e.firstChild,1===e.childNodes.length&&(e=f),f||d)){for(h=r.map(na(e,"script"),Fa),i=h.length;l")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=r.contains(a.ownerDocument,a);if(!(o.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||r.isXMLDoc(a)))for(g=na(h),f=na(a),d=0,e=f.length;d0&&oa(g,!i&&na(a,"script")),h},cleanData:function(a){for(var b,c,d,e=r.event.special,f=0;void 0!==(c=a[f]);f++)if(U(c)){if(b=c[W.expando]){if(b.events)for(d in b.events)e[d]?r.event.remove(c,d):r.removeEvent(c,d,b.handle);c[W.expando]=void 0}c[X.expando]&&(c[X.expando]=void 0)}}}),r.fn.extend({detach:function(a){return Ka(this,a,!0)},remove:function(a){return Ka(this,a)},text:function(a){return T(this,function(a){return void 0===a?r.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return Ja(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ea(this,a);b.appendChild(a)}})},prepend:function(){return Ja(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ea(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ja(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ja(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(r.cleanData(na(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null!=a&&a,b=null==b?a:b,this.map(function(){return r.clone(this,a,b)})},html:function(a){return T(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!Aa.test(a)&&!ma[(ka.exec(a)||["",""])[1].toLowerCase()]){a=r.htmlPrefilter(a);try{for(;c1)}});function _a(a,b,c,d,e){return new _a.prototype.init(a,b,c,d,e)}r.Tween=_a,_a.prototype={constructor:_a,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||r.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(r.cssNumber[c]?"":"px")},cur:function(){var a=_a.propHooks[this.prop];return a&&a.get?a.get(this):_a.propHooks._default.get(this)},run:function(a){var b,c=_a.propHooks[this.prop];return this.options.duration?this.pos=b=r.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):_a.propHooks._default.set(this),this}},_a.prototype.init.prototype=_a.prototype,_a.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=r.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){r.fx.step[a.prop]?r.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[r.cssProps[a.prop]]&&!r.cssHooks[a.prop]?a.elem[a.prop]=a.now:r.style(a.elem,a.prop,a.now+a.unit)}}},_a.propHooks.scrollTop=_a.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},r.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},r.fx=_a.prototype.init,r.fx.step={};var ab,bb,cb=/^(?:toggle|show|hide)$/,db=/queueHooks$/;function eb(){bb&&(d.hidden===!1&&a.requestAnimationFrame?a.requestAnimationFrame(eb):a.setTimeout(eb,r.fx.interval),r.fx.tick())}function fb(){return a.setTimeout(function(){ab=void 0}),ab=r.now()}function gb(a,b){var c,d=0,e={height:a};for(b=b?1:0;d<4;d+=2-b)c=ca[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function hb(a,b,c){for(var d,e=(kb.tweeners[b]||[]).concat(kb.tweeners["*"]),f=0,g=e.length;f1)},removeAttr:function(a){return this.each(function(){r.removeAttr(this,a)})}}),r.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?r.prop(a,b,c):(1===f&&r.isXMLDoc(a)||(e=r.attrHooks[b.toLowerCase()]||(r.expr.match.bool.test(b)?lb:void 0)),void 0!==c?null===c?void r.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=r.find.attr(a,b), +null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!o.radioValue&&"radio"===b&&B(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d=0,e=b&&b.match(L);if(e&&1===a.nodeType)while(c=e[d++])a.removeAttribute(c)}}),lb={set:function(a,b,c){return b===!1?r.removeAttr(a,c):a.setAttribute(c,c),c}},r.each(r.expr.match.bool.source.match(/\w+/g),function(a,b){var c=mb[b]||r.find.attr;mb[b]=function(a,b,d){var e,f,g=b.toLowerCase();return d||(f=mb[g],mb[g]=e,e=null!=c(a,b,d)?g:null,mb[g]=f),e}});var nb=/^(?:input|select|textarea|button)$/i,ob=/^(?:a|area)$/i;r.fn.extend({prop:function(a,b){return T(this,r.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[r.propFix[a]||a]})}}),r.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&r.isXMLDoc(a)||(b=r.propFix[b]||b,e=r.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=r.find.attr(a,"tabindex");return b?parseInt(b,10):nb.test(a.nodeName)||ob.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),o.optSelected||(r.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),r.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){r.propFix[this.toLowerCase()]=this});function pb(a){var b=a.match(L)||[];return b.join(" ")}function qb(a){return a.getAttribute&&a.getAttribute("class")||""}r.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).addClass(a.call(this,b,qb(this)))});if("string"==typeof a&&a){b=a.match(L)||[];while(c=this[i++])if(e=qb(c),d=1===c.nodeType&&" "+pb(e)+" "){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=pb(d),e!==h&&c.setAttribute("class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).removeClass(a.call(this,b,qb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(L)||[];while(c=this[i++])if(e=qb(c),d=1===c.nodeType&&" "+pb(e)+" "){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=pb(d),e!==h&&c.setAttribute("class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):r.isFunction(a)?this.each(function(c){r(this).toggleClass(a.call(this,c,qb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=r(this),f=a.match(L)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=qb(this),b&&W.set(this,"__className__",b),this.setAttribute&&this.setAttribute("class",b||a===!1?"":W.get(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+pb(qb(c))+" ").indexOf(b)>-1)return!0;return!1}});var rb=/\r/g;r.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=r.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,r(this).val()):a,null==e?e="":"number"==typeof e?e+="":Array.isArray(e)&&(e=r.map(e,function(a){return null==a?"":a+""})),b=r.valHooks[this.type]||r.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=r.valHooks[e.type]||r.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(rb,""):null==c?"":c)}}}),r.extend({valHooks:{option:{get:function(a){var b=r.find.attr(a,"value");return null!=b?b:pb(r.text(a))}},select:{get:function(a){var b,c,d,e=a.options,f=a.selectedIndex,g="select-one"===a.type,h=g?null:[],i=g?f+1:e.length;for(d=f<0?i:g?f:0;d-1)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),r.each(["radio","checkbox"],function(){r.valHooks[this]={set:function(a,b){if(Array.isArray(b))return a.checked=r.inArray(r(a).val(),b)>-1}},o.checkOn||(r.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var sb=/^(?:focusinfocus|focusoutblur)$/;r.extend(r.event,{trigger:function(b,c,e,f){var g,h,i,j,k,m,n,o=[e||d],p=l.call(b,"type")?b.type:b,q=l.call(b,"namespace")?b.namespace.split("."):[];if(h=i=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!sb.test(p+r.event.triggered)&&(p.indexOf(".")>-1&&(q=p.split("."),p=q.shift(),q.sort()),k=p.indexOf(":")<0&&"on"+p,b=b[r.expando]?b:new r.Event(p,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=q.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:r.makeArray(c,[b]),n=r.event.special[p]||{},f||!n.trigger||n.trigger.apply(e,c)!==!1)){if(!f&&!n.noBubble&&!r.isWindow(e)){for(j=n.delegateType||p,sb.test(j+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),i=h;i===(e.ownerDocument||d)&&o.push(i.defaultView||i.parentWindow||a)}g=0;while((h=o[g++])&&!b.isPropagationStopped())b.type=g>1?j:n.bindType||p,m=(W.get(h,"events")||{})[b.type]&&W.get(h,"handle"),m&&m.apply(h,c),m=k&&h[k],m&&m.apply&&U(h)&&(b.result=m.apply(h,c),b.result===!1&&b.preventDefault());return b.type=p,f||b.isDefaultPrevented()||n._default&&n._default.apply(o.pop(),c)!==!1||!U(e)||k&&r.isFunction(e[p])&&!r.isWindow(e)&&(i=e[k],i&&(e[k]=null),r.event.triggered=p,e[p](),r.event.triggered=void 0,i&&(e[k]=i)),b.result}},simulate:function(a,b,c){var d=r.extend(new r.Event,c,{type:a,isSimulated:!0});r.event.trigger(d,null,b)}}),r.fn.extend({trigger:function(a,b){return this.each(function(){r.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];if(c)return r.event.trigger(a,b,c,!0)}}),r.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(a,b){r.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),r.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),o.focusin="onfocusin"in a,o.focusin||r.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){r.event.simulate(b,a.target,r.event.fix(a))};r.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=W.access(d,b);e||d.addEventListener(a,c,!0),W.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=W.access(d,b)-1;e?W.access(d,b,e):(d.removeEventListener(a,c,!0),W.remove(d,b))}}});var tb=a.location,ub=r.now(),vb=/\?/;r.parseXML=function(b){var c;if(!b||"string"!=typeof b)return null;try{c=(new a.DOMParser).parseFromString(b,"text/xml")}catch(d){c=void 0}return c&&!c.getElementsByTagName("parsererror").length||r.error("Invalid XML: "+b),c};var wb=/\[\]$/,xb=/\r?\n/g,yb=/^(?:submit|button|image|reset|file)$/i,zb=/^(?:input|select|textarea|keygen)/i;function Ab(a,b,c,d){var e;if(Array.isArray(b))r.each(b,function(b,e){c||wb.test(a)?d(a,e):Ab(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==r.type(b))d(a,b);else for(e in b)Ab(a+"["+e+"]",b[e],c,d)}r.param=function(a,b){var c,d=[],e=function(a,b){var c=r.isFunction(b)?b():b;d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(null==c?"":c)};if(Array.isArray(a)||a.jquery&&!r.isPlainObject(a))r.each(a,function(){e(this.name,this.value)});else for(c in a)Ab(c,a[c],b,e);return d.join("&")},r.fn.extend({serialize:function(){return r.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=r.prop(this,"elements");return a?r.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!r(this).is(":disabled")&&zb.test(this.nodeName)&&!yb.test(a)&&(this.checked||!ja.test(a))}).map(function(a,b){var c=r(this).val();return null==c?null:Array.isArray(c)?r.map(c,function(a){return{name:b.name,value:a.replace(xb,"\r\n")}}):{name:b.name,value:c.replace(xb,"\r\n")}}).get()}});var Bb=/%20/g,Cb=/#.*$/,Db=/([?&])_=[^&]*/,Eb=/^(.*?):[ \t]*([^\r\n]*)$/gm,Fb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Gb=/^(?:GET|HEAD)$/,Hb=/^\/\//,Ib={},Jb={},Kb="*/".concat("*"),Lb=d.createElement("a");Lb.href=tb.href;function Mb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(L)||[];if(r.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Nb(a,b,c,d){var e={},f=a===Jb;function g(h){var i;return e[h]=!0,r.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Ob(a,b){var c,d,e=r.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&r.extend(!0,a,d),a}function Pb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}if(f)return f!==i[0]&&i.unshift(f),c[f]}function Qb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}r.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:tb.href,type:"GET",isLocal:Fb.test(tb.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Kb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":r.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Ob(Ob(a,r.ajaxSettings),b):Ob(r.ajaxSettings,a)},ajaxPrefilter:Mb(Ib),ajaxTransport:Mb(Jb),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var e,f,g,h,i,j,k,l,m,n,o=r.ajaxSetup({},c),p=o.context||o,q=o.context&&(p.nodeType||p.jquery)?r(p):r.event,s=r.Deferred(),t=r.Callbacks("once memory"),u=o.statusCode||{},v={},w={},x="canceled",y={readyState:0,getResponseHeader:function(a){var b;if(k){if(!h){h={};while(b=Eb.exec(g))h[b[1].toLowerCase()]=b[2]}b=h[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return k?g:null},setRequestHeader:function(a,b){return null==k&&(a=w[a.toLowerCase()]=w[a.toLowerCase()]||a,v[a]=b),this},overrideMimeType:function(a){return null==k&&(o.mimeType=a),this},statusCode:function(a){var b;if(a)if(k)y.always(a[y.status]);else for(b in a)u[b]=[u[b],a[b]];return this},abort:function(a){var b=a||x;return e&&e.abort(b),A(0,b),this}};if(s.promise(y),o.url=((b||o.url||tb.href)+"").replace(Hb,tb.protocol+"//"),o.type=c.method||c.type||o.method||o.type,o.dataTypes=(o.dataType||"*").toLowerCase().match(L)||[""],null==o.crossDomain){j=d.createElement("a");try{j.href=o.url,j.href=j.href,o.crossDomain=Lb.protocol+"//"+Lb.host!=j.protocol+"//"+j.host}catch(z){o.crossDomain=!0}}if(o.data&&o.processData&&"string"!=typeof o.data&&(o.data=r.param(o.data,o.traditional)),Nb(Ib,o,c,y),k)return y;l=r.event&&o.global,l&&0===r.active++&&r.event.trigger("ajaxStart"),o.type=o.type.toUpperCase(),o.hasContent=!Gb.test(o.type),f=o.url.replace(Cb,""),o.hasContent?o.data&&o.processData&&0===(o.contentType||"").indexOf("application/x-www-form-urlencoded")&&(o.data=o.data.replace(Bb,"+")):(n=o.url.slice(f.length),o.data&&(f+=(vb.test(f)?"&":"?")+o.data,delete o.data),o.cache===!1&&(f=f.replace(Db,"$1"),n=(vb.test(f)?"&":"?")+"_="+ub++ +n),o.url=f+n),o.ifModified&&(r.lastModified[f]&&y.setRequestHeader("If-Modified-Since",r.lastModified[f]),r.etag[f]&&y.setRequestHeader("If-None-Match",r.etag[f])),(o.data&&o.hasContent&&o.contentType!==!1||c.contentType)&&y.setRequestHeader("Content-Type",o.contentType),y.setRequestHeader("Accept",o.dataTypes[0]&&o.accepts[o.dataTypes[0]]?o.accepts[o.dataTypes[0]]+("*"!==o.dataTypes[0]?", "+Kb+"; q=0.01":""):o.accepts["*"]);for(m in o.headers)y.setRequestHeader(m,o.headers[m]);if(o.beforeSend&&(o.beforeSend.call(p,y,o)===!1||k))return y.abort();if(x="abort",t.add(o.complete),y.done(o.success),y.fail(o.error),e=Nb(Jb,o,c,y)){if(y.readyState=1,l&&q.trigger("ajaxSend",[y,o]),k)return y;o.async&&o.timeout>0&&(i=a.setTimeout(function(){y.abort("timeout")},o.timeout));try{k=!1,e.send(v,A)}catch(z){if(k)throw z;A(-1,z)}}else A(-1,"No Transport");function A(b,c,d,h){var j,m,n,v,w,x=c;k||(k=!0,i&&a.clearTimeout(i),e=void 0,g=h||"",y.readyState=b>0?4:0,j=b>=200&&b<300||304===b,d&&(v=Pb(o,y,d)),v=Qb(o,v,y,j),j?(o.ifModified&&(w=y.getResponseHeader("Last-Modified"),w&&(r.lastModified[f]=w),w=y.getResponseHeader("etag"),w&&(r.etag[f]=w)),204===b||"HEAD"===o.type?x="nocontent":304===b?x="notmodified":(x=v.state,m=v.data,n=v.error,j=!n)):(n=x,!b&&x||(x="error",b<0&&(b=0))),y.status=b,y.statusText=(c||x)+"",j?s.resolveWith(p,[m,x,y]):s.rejectWith(p,[y,x,n]),y.statusCode(u),u=void 0,l&&q.trigger(j?"ajaxSuccess":"ajaxError",[y,o,j?m:n]),t.fireWith(p,[y,x]),l&&(q.trigger("ajaxComplete",[y,o]),--r.active||r.event.trigger("ajaxStop")))}return y},getJSON:function(a,b,c){return r.get(a,b,c,"json")},getScript:function(a,b){return r.get(a,void 0,b,"script")}}),r.each(["get","post"],function(a,b){r[b]=function(a,c,d,e){return r.isFunction(c)&&(e=e||d,d=c,c=void 0),r.ajax(r.extend({url:a,type:b,dataType:e,data:c,success:d},r.isPlainObject(a)&&a))}}),r._evalUrl=function(a){return r.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},r.fn.extend({wrapAll:function(a){var b;return this[0]&&(r.isFunction(a)&&(a=a.call(this[0])),b=r(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this},wrapInner:function(a){return r.isFunction(a)?this.each(function(b){r(this).wrapInner(a.call(this,b))}):this.each(function(){var b=r(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=r.isFunction(a);return this.each(function(c){r(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(a){return this.parent(a).not("body").each(function(){r(this).replaceWith(this.childNodes)}),this}}),r.expr.pseudos.hidden=function(a){return!r.expr.pseudos.visible(a)},r.expr.pseudos.visible=function(a){return!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length)},r.ajaxSettings.xhr=function(){try{return new a.XMLHttpRequest}catch(b){}};var Rb={0:200,1223:204},Sb=r.ajaxSettings.xhr();o.cors=!!Sb&&"withCredentials"in Sb,o.ajax=Sb=!!Sb,r.ajaxTransport(function(b){var c,d;if(o.cors||Sb&&!b.crossDomain)return{send:function(e,f){var g,h=b.xhr();if(h.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(g in b.xhrFields)h[g]=b.xhrFields[g];b.mimeType&&h.overrideMimeType&&h.overrideMimeType(b.mimeType),b.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest");for(g in e)h.setRequestHeader(g,e[g]);c=function(a){return function(){c&&(c=d=h.onload=h.onerror=h.onabort=h.onreadystatechange=null,"abort"===a?h.abort():"error"===a?"number"!=typeof h.status?f(0,"error"):f(h.status,h.statusText):f(Rb[h.status]||h.status,h.statusText,"text"!==(h.responseType||"text")||"string"!=typeof h.responseText?{binary:h.response}:{text:h.responseText},h.getAllResponseHeaders()))}},h.onload=c(),d=h.onerror=c("error"),void 0!==h.onabort?h.onabort=d:h.onreadystatechange=function(){4===h.readyState&&a.setTimeout(function(){c&&d()})},c=c("abort");try{h.send(b.hasContent&&b.data||null)}catch(i){if(c)throw i}},abort:function(){c&&c()}}}),r.ajaxPrefilter(function(a){a.crossDomain&&(a.contents.script=!1)}),r.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return r.globalEval(a),a}}}),r.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),r.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(e,f){b=r("