@charset "UTF-8";
/* -------------------------------------------
    ____           __          __
   /  _/___  _____/ /_  ______/ /__  _____
   / // __ \/ ___/ / / / / __  / _ \/ ___/
 _/ // / / / /__/ / /_/ / /_/ /  __(__  )
/___/_/ /_/\___/_/\__,_/\__,_/\___/____/

------------------------------------------- */
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(#fff, bottomright, 3deg, topleft, 3deg);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* Pretty radio and checkboxes
* Usage: @include pretty-checkradio(label);
* Source: https://stackoverflow.com/questions/12743837/can-i-use-variables-for-selectors
*/
@import url("https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700&display=swap");
h1, h2, h3, h4, h5, h6 {
  font-family: "Brygada Bold";
}

* {
  box-sizing: border-box;
  outline: none;
}
*:before, *:after {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  height: 100%;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

img {
  width: 100%;
  display: block;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.group:after {
  content: "";
  display: table;
  clear: both;
}

/*!
 * Font Awesome Pro 5.9.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial 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: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.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: 0.08em solid #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.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: 0.3em;
}

.fa.fa-pull-right, .fab.fa-pull-right, .fal.fa-pull-right, .far.fa-pull-right, .fas.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scaleX(-1);
}

.fa-flip-vertical {
  transform: scaleY(-1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical, .fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1);
}

:root .fa-flip-both, :root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270 {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x, .fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-500px:before {
  content: "\f26e";
}

.fa-abacus:before {
  content: "\f640";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acorn:before {
  content: "\f6ae";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adobe:before {
  content: "\f778";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-alarm-clock:before {
  content: "\f34e";
}

.fa-alarm-exclamation:before {
  content: "\f843";
}

.fa-alarm-plus:before {
  content: "\f844";
}

.fa-alarm-snooze:before {
  content: "\f845";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-alicorn:before {
  content: "\f6b0";
}

.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-align-slash:before {
  content: "\f846";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-analytics:before {
  content: "\f643";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angel:before {
  content: "\f779";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-crate:before {
  content: "\f6b1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-alt-down:before {
  content: "\f354";
}

.fa-arrow-alt-from-bottom:before {
  content: "\f346";
}

.fa-arrow-alt-from-left:before {
  content: "\f347";
}

.fa-arrow-alt-from-right:before {
  content: "\f348";
}

.fa-arrow-alt-from-top:before {
  content: "\f349";
}

.fa-arrow-alt-left:before {
  content: "\f355";
}

.fa-arrow-alt-right:before {
  content: "\f356";
}

.fa-arrow-alt-square-down:before {
  content: "\f350";
}

.fa-arrow-alt-square-left:before {
  content: "\f351";
}

.fa-arrow-alt-square-right:before {
  content: "\f352";
}

.fa-arrow-alt-square-up:before {
  content: "\f353";
}

.fa-arrow-alt-to-bottom:before {
  content: "\f34a";
}

.fa-arrow-alt-to-left:before {
  content: "\f34b";
}

.fa-arrow-alt-to-right:before {
  content: "\f34c";
}

.fa-arrow-alt-to-top:before {
  content: "\f34d";
}

.fa-arrow-alt-up:before {
  content: "\f357";
}

.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-from-bottom:before {
  content: "\f342";
}

.fa-arrow-from-left:before {
  content: "\f343";
}

.fa-arrow-from-right:before {
  content: "\f344";
}

.fa-arrow-from-top:before {
  content: "\f345";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-square-down:before {
  content: "\f339";
}

.fa-arrow-square-left:before {
  content: "\f33a";
}

.fa-arrow-square-right:before {
  content: "\f33b";
}

.fa-arrow-square-up:before {
  content: "\f33c";
}

.fa-arrow-to-bottom:before {
  content: "\f33d";
}

.fa-arrow-to-left:before {
  content: "\f33e";
}

.fa-arrow-to-right:before {
  content: "\f340";
}

.fa-arrow-to-top:before {
  content: "\f341";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-atom-alt:before {
  content: "\f5d3";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-axe:before {
  content: "\f6b2";
}

.fa-axe-battle:before {
  content: "\f6b3";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backpack:before {
  content: "\f5d4";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-badge:before {
  content: "\f335";
}

.fa-badge-check:before {
  content: "\f336";
}

.fa-badge-dollar:before {
  content: "\f645";
}

.fa-badge-percent:before {
  content: "\f646";
}

.fa-badger-honey:before {
  content: "\f6b4";
}

.fa-bags-shopping:before {
  content: "\f847";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ball-pile:before {
  content: "\f77e";
}

.fa-ballot:before {
  content: "\f732";
}

.fa-ballot-check:before {
  content: "\f733";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-barcode-alt:before {
  content: "\f463";
}

.fa-barcode-read:before {
  content: "\f464";
}

.fa-barcode-scan:before {
  content: "\f465";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball:before {
  content: "\f432";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-basketball-hoop:before {
  content: "\f435";
}

.fa-bat:before {
  content: "\f6b5";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-bolt:before {
  content: "\f376";
}

.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-slash:before {
  content: "\f377";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-exclamation:before {
  content: "\f848";
}

.fa-bell-plus:before {
  content: "\f849";
}

.fa-bell-school:before {
  content: "\f5d5";
}

.fa-bell-school-slash:before {
  content: "\f5d6";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bells:before {
  content: "\f77f";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-biking-mountain:before {
  content: "\f84b";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blanket:before {
  content: "\f498";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bone-break:before {
  content: "\f5d8";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-alt:before {
  content: "\f5d9";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-heart:before {
  content: "\f499";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-book-spells:before {
  content: "\f6b8";
}

.fa-book-user:before {
  content: "\f7e7";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-books:before {
  content: "\f5db";
}

.fa-books-medical:before {
  content: "\f7e8";
}

.fa-boot:before {
  content: "\f782";
}

.fa-booth-curtain:before {
  content: "\f734";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-bottom:before {
  content: "\f84d";
}

.fa-border-inner:before {
  content: "\f84e";
}

.fa-border-left:before {
  content: "\f84f";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-outer:before {
  content: "\f851";
}

.fa-border-right:before {
  content: "\f852";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-border-style-alt:before {
  content: "\f854";
}

.fa-border-top:before {
  content: "\f855";
}

.fa-bow-arrow:before {
  content: "\f6b9";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-bowling-pins:before {
  content: "\f437";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-alt:before {
  content: "\f49a";
}

.fa-box-ballot:before {
  content: "\f735";
}

.fa-box-check:before {
  content: "\f467";
}

.fa-box-fragile:before {
  content: "\f49b";
}

.fa-box-full:before {
  content: "\f49c";
}

.fa-box-heart:before {
  content: "\f49d";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-up:before {
  content: "\f49f";
}

.fa-box-usd:before {
  content: "\f4a0";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-boxes-alt:before {
  content: "\f4a1";
}

.fa-boxing-glove:before {
  content: "\f438";
}

.fa-brackets:before {
  content: "\f7e9";
}

.fa-brackets-curly:before {
  content: "\f7ea";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-loaf:before {
  content: "\f7eb";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-bring-forward:before {
  content: "\f856";
}

.fa-bring-front:before {
  content: "\f857";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-browser:before {
  content: "\f37e";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-bullseye-arrow:before {
  content: "\f648";
}

.fa-bullseye-pointer:before {
  content: "\f649";
}

.fa-burger-soda:before {
  content: "\f858";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-burrito:before {
  content: "\f7ed";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-bus-school:before {
  content: "\f5dd";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-cabinet-filing:before {
  content: "\f64b";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calculator-alt:before {
  content: "\f64c";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-edit:before {
  content: "\f333";
}

.fa-calendar-exclamation:before {
  content: "\f334";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-star:before {
  content: "\f736";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-alt:before {
  content: "\f332";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campfire:before {
  content: "\f6ba";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candle-holder:before {
  content: "\f6bc";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-candy-corn:before {
  content: "\f6bd";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-building:before {
  content: "\f859";
}

.fa-car-bump:before {
  content: "\f5e0";
}

.fa-car-bus:before {
  content: "\f85a";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-garage:before {
  content: "\f5e2";
}

.fa-car-mechanic:before {
  content: "\f5e3";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-car-tilt:before {
  content: "\f5e5";
}

.fa-car-wash:before {
  content: "\f5e6";
}

.fa-caret-circle-down:before {
  content: "\f32d";
}

.fa-caret-circle-left:before {
  content: "\f32e";
}

.fa-caret-circle-right:before {
  content: "\f330";
}

.fa-caret-circle-up:before {
  content: "\f331";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cars:before {
  content: "\f85b";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cauldron:before {
  content: "\f6bf";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chair-office:before {
  content: "\f6c1";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-line-down:before {
  content: "\f64d";
}

.fa-chart-network:before {
  content: "\f78a";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-chart-pie-alt:before {
  content: "\f64e";
}

.fa-chart-scatter:before {
  content: "\f7ee";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-cheese-swiss:before {
  content: "\f7f0";
}

.fa-cheeseburger:before {
  content: "\f7f1";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-bishop-alt:before {
  content: "\f43b";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-clock:before {
  content: "\f43d";
}

.fa-chess-clock-alt:before {
  content: "\f43e";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-king-alt:before {
  content: "\f440";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-knight-alt:before {
  content: "\f442";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-pawn-alt:before {
  content: "\f444";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-queen-alt:before {
  content: "\f446";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chess-rook-alt:before {
  content: "\f448";
}

.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-double-down:before {
  content: "\f322";
}

.fa-chevron-double-left:before {
  content: "\f323";
}

.fa-chevron-double-right:before {
  content: "\f324";
}

.fa-chevron-double-up:before {
  content: "\f325";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-square-down:before {
  content: "\f329";
}

.fa-chevron-square-left:before {
  content: "\f32a";
}

.fa-chevron-square-right:before {
  content: "\f32b";
}

.fa-chevron-square-up:before {
  content: "\f32c";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chimney:before {
  content: "\f78b";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-claw-marks:before {
  content: "\f6c2";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clipboard-list-check:before {
  content: "\f737";
}

.fa-clipboard-prescription:before {
  content: "\f5e8";
}

.fa-clipboard-user:before {
  content: "\f7f3";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-drizzle:before {
  content: "\f738";
}

.fa-cloud-hail:before {
  content: "\f739";
}

.fa-cloud-hail-mixed:before {
  content: "\f73a";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-rainbow:before {
  content: "\f73e";
}

.fa-cloud-showers:before {
  content: "\f73f";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sleet:before {
  content: "\f741";
}

.fa-cloud-snow:before {
  content: "\f742";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-clouds:before {
  content: "\f744";
}

.fa-clouds-moon:before {
  content: "\f745";
}

.fa-clouds-sun:before {
  content: "\f746";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-club:before {
  content: "\f327";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-code-commit:before {
  content: "\f386";
}

.fa-code-merge:before {
  content: "\f387";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-coffee-togo:before {
  content: "\f6c5";
}

.fa-coffin:before {
  content: "\f6c6";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coin:before {
  content: "\f85c";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-alt-check:before {
  content: "\f4a2";
}

.fa-comment-alt-dollar:before {
  content: "\f650";
}

.fa-comment-alt-dots:before {
  content: "\f4a3";
}

.fa-comment-alt-edit:before {
  content: "\f4a4";
}

.fa-comment-alt-exclamation:before {
  content: "\f4a5";
}

.fa-comment-alt-lines:before {
  content: "\f4a6";
}

.fa-comment-alt-medical:before {
  content: "\f7f4";
}

.fa-comment-alt-minus:before {
  content: "\f4a7";
}

.fa-comment-alt-plus:before {
  content: "\f4a8";
}

.fa-comment-alt-slash:before {
  content: "\f4a9";
}

.fa-comment-alt-smile:before {
  content: "\f4aa";
}

.fa-comment-alt-times:before {
  content: "\f4ab";
}

.fa-comment-check:before {
  content: "\f4ac";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-edit:before {
  content: "\f4ae";
}

.fa-comment-exclamation:before {
  content: "\f4af";
}

.fa-comment-lines:before {
  content: "\f4b0";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-minus:before {
  content: "\f4b1";
}

.fa-comment-plus:before {
  content: "\f4b2";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comment-smile:before {
  content: "\f4b4";
}

.fa-comment-times:before {
  content: "\f4b5";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-alt:before {
  content: "\f4b6";
}

.fa-comments-alt-dollar:before {
  content: "\f652";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compass-slash:before {
  content: "\f5e9";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-compress-wide:before {
  content: "\f326";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-construction:before {
  content: "\f85d";
}

.fa-container-storage:before {
  content: "\f4b7";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-conveyor-belt:before {
  content: "\f46e";
}

.fa-conveyor-belt-alt:before {
  content: "\f46f";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-corn:before {
  content: "\f6c7";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cow:before {
  content: "\f6c8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-credit-card-blank:before {
  content: "\f389";
}

.fa-credit-card-front:before {
  content: "\f38a";
}

.fa-cricket:before {
  content: "\f449";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-croissant:before {
  content: "\f7f6";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-crutches:before {
  content: "\f7f8";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-curling:before {
  content: "\f44a";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dagger:before {
  content: "\f6cb";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-debug:before {
  content: "\f7f9";
}

.fa-deer:before {
  content: "\f78e";
}

.fa-deer-rudolph:before {
  content: "\f78f";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-desktop-alt:before {
  content: "\f390";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dewpoint:before {
  content: "\f748";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d10:before {
  content: "\f6cd";
}

.fa-dice-d12:before {
  content: "\f6ce";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d4:before {
  content: "\f6d0";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-d8:before {
  content: "\f6d2";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digging:before {
  content: "\f85e";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-diploma:before {
  content: "\f5ea";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-do-not-enter:before {
  content: "\f5ec";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dog-leashed:before {
  content: "\f6d4";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-empty:before {
  content: "\f473";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-dolly-flatbed-alt:before {
  content: "\f475";
}

.fa-dolly-flatbed-empty:before {
  content: "\f476";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-circle:before {
  content: "\f5ed";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-draw-square:before {
  content: "\f5ef";
}

.fa-dreidel:before {
  content: "\f792";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-drone:before {
  content: "\f85f";
}

.fa-drone-alt:before {
  content: "\f860";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick:before {
  content: "\f6d6";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dryer:before {
  content: "\f861";
}

.fa-dryer-alt:before {
  content: "\f862";
}

.fa-duck:before {
  content: "\f6d8";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-ear:before {
  content: "\f5f0";
}

.fa-ear-muffs:before {
  content: "\f795";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-eclipse:before {
  content: "\f749";
}

.fa-eclipse-alt:before {
  content: "\f74a";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-egg-fried:before {
  content: "\f7fc";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-elephant:before {
  content: "\f6da";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-h-alt:before {
  content: "\f39b";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ellipsis-v-alt:before {
  content: "\f39c";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-empty-set:before {
  content: "\f656";
}

.fa-engine-warning:before {
  content: "\f5f2";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-dollar:before {
  content: "\f657";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-square:before {
  content: "\f321";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows:before {
  content: "\f31d";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expand-wide:before {
  content: "\f320";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-evil:before {
  content: "\f6db";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-farm:before {
  content: "\f864";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-field-hockey:before {
  content: "\f44c";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-certificate:before {
  content: "\f5f3";
}

.fa-file-chart-line:before {
  content: "\f659";
}

.fa-file-chart-pie:before {
  content: "\f65a";
}

.fa-file-check:before {
  content: "\f316";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-edit:before {
  content: "\f31c";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-exclamation:before {
  content: "\f31a";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-minus:before {
  content: "\f318";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-plus:before {
  content: "\f319";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-search:before {
  content: "\f865";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-spreadsheet:before {
  content: "\f65b";
}

.fa-file-times:before {
  content: "\f317";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-user:before {
  content: "\f65c";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-files-medical:before {
  content: "\f7fd";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-film-alt:before {
  content: "\f3a0";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-fire-smoke:before {
  content: "\f74b";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-fireplace:before {
  content: "\f79a";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fish-cooked:before {
  content: "\f7fe";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-alt:before {
  content: "\f74c";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flame:before {
  content: "\f6df";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flask-poison:before {
  content: "\f6e0";
}

.fa-flask-potion:before {
  content: "\f6e1";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flower:before {
  content: "\f7ff";
}

.fa-flower-daffodil:before {
  content: "\f800";
}

.fa-flower-tulip:before {
  content: "\f801";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-fog:before {
  content: "\f74e";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-folder-times:before {
  content: "\f65f";
}

.fa-folder-tree:before {
  content: "\f802";
}

.fa-folders:before {
  content: "\f660";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-font-case:before {
  content: "\f866";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-football-helmet:before {
  content: "\f44f";
}

.fa-forklift:before {
  content: "\f47a";
}

.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-fragile:before {
  content: "\f4bb";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-french-fries:before {
  content: "\f803";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frosty-head:before {
  content: "\f79b";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-function:before {
  content: "\f661";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-game-board:before {
  content: "\f867";
}

.fa-game-board-alt:before {
  content: "\f868";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gas-pump-slash:before {
  content: "\f5f4";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gift-card:before {
  content: "\f663";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-gingerbread-man:before {
  content: "\f79d";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass:before {
  content: "\f804";
}

.fa-glass-champagne:before {
  content: "\f79e";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-citrus:before {
  content: "\f869";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glass-whiskey-rocks:before {
  content: "\f7a1";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glasses-alt:before {
  content: "\f5f5";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-globe-snow:before {
  content: "\f7a3";
}

.fa-globe-stand:before {
  content: "\f5f6";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-golf-club:before {
  content: "\f451";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-h1:before {
  content: "\f313";
}

.fa-h2:before {
  content: "\f314";
}

.fa-h3:before {
  content: "\f315";
}

.fa-h4:before {
  content: "\f86a";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hammer-war:before {
  content: "\f6e4";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-heart:before {
  content: "\f4bc";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-box:before {
  content: "\f47b";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-magic:before {
  content: "\f6e5";
}

.fa-hand-holding-seedling:before {
  content: "\f4bf";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-receiving:before {
  content: "\f47c";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-heart:before {
  content: "\f4c3";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-usd:before {
  content: "\f4c5";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt:before {
  content: "\f4c6";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-chef:before {
  content: "\f86b";
}

.fa-hat-santa:before {
  content: "\f7a7";
}

.fa-hat-winter:before {
  content: "\f7a8";
}

.fa-hat-witch:before {
  content: "\f6e7";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-haykal:before {
  content: "\f666";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side:before {
  content: "\f6e9";
}

.fa-head-side-brain:before {
  content: "\f808";
}

.fa-head-side-medical:before {
  content: "\f809";
}

.fa-head-vr:before {
  content: "\f6ea";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heart-circle:before {
  content: "\f4c7";
}

.fa-heart-rate:before {
  content: "\f5f8";
}

.fa-heart-square:before {
  content: "\f4c8";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-helmet-battle:before {
  content: "\f6eb";
}

.fa-hexagon:before {
  content: "\f312";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-mask:before {
  content: "\f6ee";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-hockey-sticks:before {
  content: "\f454";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-home-alt:before {
  content: "\f80a";
}

.fa-home-heart:before {
  content: "\f4c9";
}

.fa-home-lg:before {
  content: "\f80b";
}

.fa-home-lg-alt:before {
  content: "\f80c";
}

.fa-hood-cloak:before {
  content: "\f6ef";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-horizontal-rule:before {
  content: "\f86c";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hospitals:before {
  content: "\f80e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-flood:before {
  content: "\f74f";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-humidity:before {
  content: "\f750";
}

.fa-hurricane:before {
  content: "\f751";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-ice-skate:before {
  content: "\f7ac";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-icons-alt:before {
  content: "\f86e";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-inbox-in:before {
  content: "\f310";
}

.fa-inbox-out:before {
  content: "\f311";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-industry-alt:before {
  content: "\f3b3";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-info-square:before {
  content: "\f30f";
}

.fa-inhaler:before {
  content: "\f5f9";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-integral:before {
  content: "\f667";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-intersection:before {
  content: "\f668";
}

.fa-inventory:before {
  content: "\f480";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-island-tropical:before {
  content: "\f811";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-jack-o-lantern:before {
  content: "\f30e";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-kerning:before {
  content: "\f86f";
}

.fa-key:before {
  content: "\f084";
}

.fa-key-skeleton:before {
  content: "\f6f3";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-keynote:before {
  content: "\f66c";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kidneys:before {
  content: "\f5fb";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kite:before {
  content: "\f6f4";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-knife-kitchen:before {
  content: "\f6f5";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-lambda:before {
  content: "\f66e";
}

.fa-lamp:before {
  content: "\f4ca";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-landmark-alt:before {
  content: "\f752";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-layer-minus:before {
  content: "\f5fe";
}

.fa-layer-plus:before {
  content: "\f5ff";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leaf-heart:before {
  content: "\f4cb";
}

.fa-leaf-maple:before {
  content: "\f6f6";
}

.fa-leaf-oak:before {
  content: "\f6f7";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-lightbulb-dollar:before {
  content: "\f670";
}

.fa-lightbulb-exclamation:before {
  content: "\f671";
}

.fa-lightbulb-on:before {
  content: "\f672";
}

.fa-lightbulb-slash:before {
  content: "\f673";
}

.fa-lights-holiday:before {
  content: "\f7b2";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-line-columns:before {
  content: "\f870";
}

.fa-line-height:before {
  content: "\f871";
}

.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-lips:before {
  content: "\f600";
}

.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:before {
  content: "\f601";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-location-circle:before {
  content: "\f602";
}

.fa-location-slash:before {
  content: "\f603";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-alt:before {
  content: "\f30d";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-lock-open-alt:before {
  content: "\f3c2";
}

.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-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-loveseat:before {
  content: "\f4cc";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luchador:before {
  content: "\f455";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-mace:before {
  content: "\f6f8";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailbox:before {
  content: "\f813";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-mandolin:before {
  content: "\f6f9";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-marker-alt-slash:before {
  content: "\f605";
}

.fa-map-marker-check:before {
  content: "\f606";
}

.fa-map-marker-edit:before {
  content: "\f607";
}

.fa-map-marker-exclamation:before {
  content: "\f608";
}

.fa-map-marker-minus:before {
  content: "\f609";
}

.fa-map-marker-plus:before {
  content: "\f60a";
}

.fa-map-marker-question:before {
  content: "\f60b";
}

.fa-map-marker-slash:before {
  content: "\f60c";
}

.fa-map-marker-smile:before {
  content: "\f60d";
}

.fa-map-marker-times:before {
  content: "\f60e";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-meat:before {
  content: "\f814";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaphone:before {
  content: "\f675";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-mind-share:before {
  content: "\f677";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-hexagon:before {
  content: "\f307";
}

.fa-minus-octagon:before {
  content: "\f308";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mistletoe:before {
  content: "\f7b4";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-mobile-android:before {
  content: "\f3ce";
}

.fa-mobile-android-alt:before {
  content: "\f3cf";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-money-check-edit:before {
  content: "\f872";
}

.fa-money-check-edit-alt:before {
  content: "\f873";
}

.fa-monitor-heart-rate:before {
  content: "\f611";
}

.fa-monkey:before {
  content: "\f6fb";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-moon-cloud:before {
  content: "\f754";
}

.fa-moon-stars:before {
  content: "\f755";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mountains:before {
  content: "\f6fd";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug:before {
  content: "\f874";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-mug-marshmallows:before {
  content: "\f7b7";
}

.fa-mug-tea:before {
  content: "\f875";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-narwhal:before {
  content: "\f6fe";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octagon:before {
  content: "\f306";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-oil-temp:before {
  content: "\f614";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-omega:before {
  content: "\f67a";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-ornament:before {
  content: "\f7b8";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-overline:before {
  content: "\f876";
}

.fa-page-break:before {
  content: "\f877";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-brush-alt:before {
  content: "\f5a9";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-pallet-alt:before {
  content: "\f483";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-paragraph-rtl:before {
  content: "\f878";
}

.fa-parking:before {
  content: "\f540";
}

.fa-parking-circle:before {
  content: "\f615";
}

.fa-parking-circle-slash:before {
  content: "\f616";
}

.fa-parking-slash:before {
  content: "\f617";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paw-alt:before {
  content: "\f701";
}

.fa-paw-claws:before {
  content: "\f702";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pegasus:before {
  content: "\f703";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-paintbrush:before {
  content: "\f618";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-pennant:before {
  content: "\f456";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-person-carry:before {
  content: "\f4cf";
}

.fa-person-dolly:before {
  content: "\f4d0";
}

.fa-person-dolly-empty:before {
  content: "\f4d1";
}

.fa-person-sign:before {
  content: "\f757";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-laptop:before {
  content: "\f87a";
}

.fa-phone-office:before {
  content: "\f67d";
}

.fa-phone-plus:before {
  content: "\f4d2";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pi:before {
  content: "\f67e";
}

.fa-pie:before {
  content: "\f705";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pig:before {
  content: "\f706";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza:before {
  content: "\f817";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-alt:before {
  content: "\f3de";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-hexagon:before {
  content: "\f300";
}

.fa-plus-octagon:before {
  content: "\f301";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-podium:before {
  content: "\f680";
}

.fa-podium-star:before {
  content: "\f758";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poll-people:before {
  content: "\f759";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-popcorn:before {
  content: "\f819";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-presentation:before {
  content: "\f685";
}

.fa-print:before {
  content: "\f02f";
}

.fa-print-search:before {
  content: "\f81a";
}

.fa-print-slash:before {
  content: "\f686";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pumpkin:before {
  content: "\f707";
}

.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-question-square:before {
  content: "\f2fd";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-rabbit:before {
  content: "\f708";
}

.fa-rabbit-fast:before {
  content: "\f709";
}

.fa-racquet:before {
  content: "\f45a";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-raindrops:before {
  content: "\f75c";
}

.fa-ram:before {
  content: "\f70a";
}

.fa-ramp-loading:before {
  content: "\f4d4";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-rectangle-landscape:before {
  content: "\f2fa";
}

.fa-rectangle-portrait:before {
  content: "\f2fb";
}

.fa-rectangle-wide:before {
  content: "\f2fc";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-repeat:before {
  content: "\f363";
}

.fa-repeat-1:before {
  content: "\f365";
}

.fa-repeat-1-alt:before {
  content: "\f366";
}

.fa-repeat-alt:before {
  content: "\f364";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-retweet-alt:before {
  content: "\f361";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-rings-wedding:before {
  content: "\f81b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-route-highway:before {
  content: "\f61a";
}

.fa-route-interstate:before {
  content: "\f61b";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-triangle:before {
  content: "\f61c";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rv:before {
  content: "\f7be";
}

.fa-sack:before {
  content: "\f81c";
}

.fa-sack-dollar:before {
  content: "\f81d";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salad:before {
  content: "\f81e";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sandwich:before {
  content: "\f81f";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-sausage:before {
  content: "\f820";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-scalpel:before {
  content: "\f61d";
}

.fa-scalpel-path:before {
  content: "\f61e";
}

.fa-scanner:before {
  content: "\f488";
}

.fa-scanner-keyboard:before {
  content: "\f489";
}

.fa-scanner-touchscreen:before {
  content: "\f48a";
}

.fa-scarecrow:before {
  content: "\f70d";
}

.fa-scarf:before {
  content: "\f7c1";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-scroll-old:before {
  content: "\f70f";
}

.fa-scrubber:before {
  content: "\f2f8";
}

.fa-scythe:before {
  content: "\f710";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-send-back:before {
  content: "\f87e";
}

.fa-send-backward:before {
  content: "\f87f";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-all:before {
  content: "\f367";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-sheep:before {
  content: "\f711";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield:before {
  content: "\f132";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-check:before {
  content: "\f2f7";
}

.fa-shield-cross:before {
  content: "\f712";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shipping-timed:before {
  content: "\f48c";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shish-kebab:before {
  content: "\f821";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shovel:before {
  content: "\f713";
}

.fa-shovel-snow:before {
  content: "\f7c3";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shredder:before {
  content: "\f68a";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-shuttlecock:before {
  content: "\f45b";
}

.fa-sickle:before {
  content: "\f822";
}

.fa-sigma:before {
  content: "\f68b";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signal-1:before {
  content: "\f68c";
}

.fa-signal-2:before {
  content: "\f68d";
}

.fa-signal-3:before {
  content: "\f68e";
}

.fa-signal-4:before {
  content: "\f68f";
}

.fa-signal-alt:before {
  content: "\f690";
}

.fa-signal-alt-1:before {
  content: "\f691";
}

.fa-signal-alt-2:before {
  content: "\f692";
}

.fa-signal-alt-3:before {
  content: "\f693";
}

.fa-signal-alt-slash:before {
  content: "\f694";
}

.fa-signal-slash:before {
  content: "\f695";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-skeleton:before {
  content: "\f620";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-ski-jump:before {
  content: "\f7c7";
}

.fa-ski-lift:before {
  content: "\f7c8";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sledding:before {
  content: "\f7cb";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-sliders-h-square:before {
  content: "\f3f0";
}

.fa-sliders-v:before {
  content: "\f3f1";
}

.fa-sliders-v-square:before {
  content: "\f3f2";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-plus:before {
  content: "\f5b9";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoke:before {
  content: "\f760";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snake:before {
  content: "\f716";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snooze:before {
  content: "\f880";
}

.fa-snow-blowing:before {
  content: "\f761";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowflakes:before {
  content: "\f7cf";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowmobile:before {
  content: "\f7d1";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-alt:before {
  content: "\f883";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-shapes-down:before {
  content: "\f888";
}

.fa-sort-shapes-down-alt:before {
  content: "\f889";
}

.fa-sort-shapes-up:before {
  content: "\f88a";
}

.fa-sort-shapes-up-alt:before {
  content: "\f88b";
}

.fa-sort-size-down:before {
  content: "\f88c";
}

.fa-sort-size-down-alt:before {
  content: "\f88d";
}

.fa-sort-size-up:before {
  content: "\f88e";
}

.fa-sort-size-up-alt:before {
  content: "\f88f";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-soup:before {
  content: "\f823";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-spade:before {
  content: "\f2f4";
}

.fa-sparkles:before {
  content: "\f890";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spider-black-widow:before {
  content: "\f718";
}

.fa-spider-web:before {
  content: "\f719";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-spinner-third:before {
  content: "\f3f4";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root:before {
  content: "\f697";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-squirrel:before {
  content: "\f71a";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-staff:before {
  content: "\f71b";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-christmas:before {
  content: "\f7d4";
}

.fa-star-exclamation:before {
  content: "\f2f3";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-stars:before {
  content: "\f762";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steak:before {
  content: "\f824";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-steering-wheel:before {
  content: "\f622";
}

.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-stocking:before {
  content: "\f7d5";
}

.fa-stomach:before {
  content: "\f623";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-stretcher:before {
  content: "\f825";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-sun-cloud:before {
  content: "\f763";
}

.fa-sun-dust:before {
  content: "\f764";
}

.fa-sun-haze:before {
  content: "\f765";
}

.fa-sunglasses:before {
  content: "\f892";
}

.fa-sunrise:before {
  content: "\f766";
}

.fa-sunset:before {
  content: "\f767";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-sword:before {
  content: "\f71c";
}

.fa-swords:before {
  content: "\f71d";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablet-android:before {
  content: "\f3fb";
}

.fa-tablet-android-alt:before {
  content: "\f3fc";
}

.fa-tablet-rugged:before {
  content: "\f48f";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer:before {
  content: "\f0e4";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tachometer-alt-average:before {
  content: "\f624";
}

.fa-tachometer-alt-fast:before {
  content: "\f625";
}

.fa-tachometer-alt-fastest:before {
  content: "\f626";
}

.fa-tachometer-alt-slow:before {
  content: "\f627";
}

.fa-tachometer-alt-slowest:before {
  content: "\f628";
}

.fa-tachometer-average:before {
  content: "\f629";
}

.fa-tachometer-fast:before {
  content: "\f62a";
}

.fa-tachometer-fastest:before {
  content: "\f62b";
}

.fa-tachometer-slow:before {
  content: "\f62c";
}

.fa-tachometer-slowest:before {
  content: "\f62d";
}

.fa-taco:before {
  content: "\f826";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tally:before {
  content: "\f69c";
}

.fa-tanakh:before {
  content: "\f827";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-tasks-alt:before {
  content: "\f828";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-frigid:before {
  content: "\f768";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-hot:before {
  content: "\f76a";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-tennis-ball:before {
  content: "\f45e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text:before {
  content: "\f893";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-size:before {
  content: "\f894";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-theta:before {
  content: "\f69e";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-thunderstorm:before {
  content: "\f76c";
}

.fa-thunderstorm-moon:before {
  content: "\f76d";
}

.fa-thunderstorm-sun:before {
  content: "\f76e";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tilde:before {
  content: "\f69f";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-times-hexagon:before {
  content: "\f2ee";
}

.fa-times-octagon:before {
  content: "\f2f0";
}

.fa-times-square:before {
  content: "\f2d3";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tire:before {
  content: "\f631";
}

.fa-tire-flat:before {
  content: "\f632";
}

.fa-tire-pressure-warning:before {
  content: "\f633";
}

.fa-tire-rugged:before {
  content: "\f634";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-alt:before {
  content: "\f71f";
}

.fa-tombstone:before {
  content: "\f720";
}

.fa-tombstone-alt:before {
  content: "\f721";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-toothbrush:before {
  content: "\f635";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tornado:before {
  content: "\f76f";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-cone:before {
  content: "\f636";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-traffic-light-go:before {
  content: "\f638";
}

.fa-traffic-light-slow:before {
  content: "\f639";
}

.fa-traffic-light-stop:before {
  content: "\f63a";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-trash-undo:before {
  content: "\f895";
}

.fa-trash-undo-alt:before {
  content: "\f896";
}

.fa-treasure-chest:before {
  content: "\f723";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-tree-alt:before {
  content: "\f400";
}

.fa-tree-christmas:before {
  content: "\f7db";
}

.fa-tree-decorated:before {
  content: "\f7dc";
}

.fa-tree-large:before {
  content: "\f7dd";
}

.fa-tree-palm:before {
  content: "\f82b";
}

.fa-trees:before {
  content: "\f724";
}

.fa-trello:before {
  content: "\f181";
}

.fa-triangle:before {
  content: "\f2ec";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-trophy-alt:before {
  content: "\f2eb";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-container:before {
  content: "\f4dc";
}

.fa-truck-couch:before {
  content: "\f4dd";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-truck-plow:before {
  content: "\f7de";
}

.fa-truck-ramp:before {
  content: "\f4e0";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-turkey:before {
  content: "\f725";
}

.fa-turtle:before {
  content: "\f726";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-tv-retro:before {
  content: "\f401";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-unicorn:before {
  content: "\f727";
}

.fa-union:before {
  content: "\f6a2";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-usd-circle:before {
  content: "\f2e8";
}

.fa-usd-square:before {
  content: "\f2e9";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-chart:before {
  content: "\f6a3";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-crown:before {
  content: "\f6a4";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-hard-hat:before {
  content: "\f82c";
}

.fa-user-headset:before {
  content: "\f82d";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-md-chat:before {
  content: "\f82e";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-class:before {
  content: "\f63d";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-crown:before {
  content: "\f6a5";
}

.fa-users-medical:before {
  content: "\f830";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-fork:before {
  content: "\f2e3";
}

.fa-utensil-knife:before {
  content: "\f2e4";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-utensils-alt:before {
  content: "\f2e6";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-value-absolute:before {
  content: "\f6a6";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-plus:before {
  content: "\f4e1";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volcano:before {
  content: "\f770";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume:before {
  content: "\f6a8";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-slash:before {
  content: "\f2e2";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-nay:before {
  content: "\f771";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walker:before {
  content: "\f831";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-wand:before {
  content: "\f72a";
}

.fa-wand-magic:before {
  content: "\f72b";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-warehouse-alt:before {
  content: "\f495";
}

.fa-washer:before {
  content: "\f898";
}

.fa-watch:before {
  content: "\f2e1";
}

.fa-watch-fitness:before {
  content: "\f63e";
}

.fa-water:before {
  content: "\f773";
}

.fa-water-lower:before {
  content: "\f774";
}

.fa-water-rise:before {
  content: "\f775";
}

.fa-wave-sine:before {
  content: "\f899";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-wave-triangle:before {
  content: "\f89a";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-webcam:before {
  content: "\f832";
}

.fa-webcam-slash:before {
  content: "\f833";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whale:before {
  content: "\f72c";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheat:before {
  content: "\f72d";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whistle:before {
  content: "\f460";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wifi-1:before {
  content: "\f6aa";
}

.fa-wifi-2:before {
  content: "\f6ab";
}

.fa-wifi-slash:before {
  content: "\f6ac";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-wind-turbine:before {
  content: "\f89b";
}

.fa-wind-warning:before {
  content: "\f776";
}

.fa-window:before {
  content: "\f40e";
}

.fa-window-alt:before {
  content: "\f40f";
}

.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-windsock:before {
  content: "\f777";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wreath:before {
  content: "\f7e2";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Pro 5.9.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial 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: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.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: 0.08em solid #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.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: 0.3em;
}

.fa.fa-pull-right, .fab.fa-pull-right, .fal.fa-pull-right, .far.fa-pull-right, .fas.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scaleX(-1);
}

.fa-flip-vertical {
  transform: scaleY(-1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical, .fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1);
}

:root .fa-flip-both, :root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270 {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x, .fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-500px:before {
  content: "\f26e";
}

.fa-abacus:before {
  content: "\f640";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acorn:before {
  content: "\f6ae";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adobe:before {
  content: "\f778";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-alarm-clock:before {
  content: "\f34e";
}

.fa-alarm-exclamation:before {
  content: "\f843";
}

.fa-alarm-plus:before {
  content: "\f844";
}

.fa-alarm-snooze:before {
  content: "\f845";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-alicorn:before {
  content: "\f6b0";
}

.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-align-slash:before {
  content: "\f846";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-analytics:before {
  content: "\f643";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angel:before {
  content: "\f779";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-crate:before {
  content: "\f6b1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-alt-down:before {
  content: "\f354";
}

.fa-arrow-alt-from-bottom:before {
  content: "\f346";
}

.fa-arrow-alt-from-left:before {
  content: "\f347";
}

.fa-arrow-alt-from-right:before {
  content: "\f348";
}

.fa-arrow-alt-from-top:before {
  content: "\f349";
}

.fa-arrow-alt-left:before {
  content: "\f355";
}

.fa-arrow-alt-right:before {
  content: "\f356";
}

.fa-arrow-alt-square-down:before {
  content: "\f350";
}

.fa-arrow-alt-square-left:before {
  content: "\f351";
}

.fa-arrow-alt-square-right:before {
  content: "\f352";
}

.fa-arrow-alt-square-up:before {
  content: "\f353";
}

.fa-arrow-alt-to-bottom:before {
  content: "\f34a";
}

.fa-arrow-alt-to-left:before {
  content: "\f34b";
}

.fa-arrow-alt-to-right:before {
  content: "\f34c";
}

.fa-arrow-alt-to-top:before {
  content: "\f34d";
}

.fa-arrow-alt-up:before {
  content: "\f357";
}

.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-from-bottom:before {
  content: "\f342";
}

.fa-arrow-from-left:before {
  content: "\f343";
}

.fa-arrow-from-right:before {
  content: "\f344";
}

.fa-arrow-from-top:before {
  content: "\f345";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-square-down:before {
  content: "\f339";
}

.fa-arrow-square-left:before {
  content: "\f33a";
}

.fa-arrow-square-right:before {
  content: "\f33b";
}

.fa-arrow-square-up:before {
  content: "\f33c";
}

.fa-arrow-to-bottom:before {
  content: "\f33d";
}

.fa-arrow-to-left:before {
  content: "\f33e";
}

.fa-arrow-to-right:before {
  content: "\f340";
}

.fa-arrow-to-top:before {
  content: "\f341";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-atom-alt:before {
  content: "\f5d3";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-axe:before {
  content: "\f6b2";
}

.fa-axe-battle:before {
  content: "\f6b3";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backpack:before {
  content: "\f5d4";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-badge:before {
  content: "\f335";
}

.fa-badge-check:before {
  content: "\f336";
}

.fa-badge-dollar:before {
  content: "\f645";
}

.fa-badge-percent:before {
  content: "\f646";
}

.fa-badger-honey:before {
  content: "\f6b4";
}

.fa-bags-shopping:before {
  content: "\f847";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ball-pile:before {
  content: "\f77e";
}

.fa-ballot:before {
  content: "\f732";
}

.fa-ballot-check:before {
  content: "\f733";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-barcode-alt:before {
  content: "\f463";
}

.fa-barcode-read:before {
  content: "\f464";
}

.fa-barcode-scan:before {
  content: "\f465";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball:before {
  content: "\f432";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-basketball-hoop:before {
  content: "\f435";
}

.fa-bat:before {
  content: "\f6b5";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-bolt:before {
  content: "\f376";
}

.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-slash:before {
  content: "\f377";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-exclamation:before {
  content: "\f848";
}

.fa-bell-plus:before {
  content: "\f849";
}

.fa-bell-school:before {
  content: "\f5d5";
}

.fa-bell-school-slash:before {
  content: "\f5d6";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bells:before {
  content: "\f77f";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-biking-mountain:before {
  content: "\f84b";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blanket:before {
  content: "\f498";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bone-break:before {
  content: "\f5d8";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-alt:before {
  content: "\f5d9";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-heart:before {
  content: "\f499";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-book-spells:before {
  content: "\f6b8";
}

.fa-book-user:before {
  content: "\f7e7";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-books:before {
  content: "\f5db";
}

.fa-books-medical:before {
  content: "\f7e8";
}

.fa-boot:before {
  content: "\f782";
}

.fa-booth-curtain:before {
  content: "\f734";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-bottom:before {
  content: "\f84d";
}

.fa-border-inner:before {
  content: "\f84e";
}

.fa-border-left:before {
  content: "\f84f";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-outer:before {
  content: "\f851";
}

.fa-border-right:before {
  content: "\f852";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-border-style-alt:before {
  content: "\f854";
}

.fa-border-top:before {
  content: "\f855";
}

.fa-bow-arrow:before {
  content: "\f6b9";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-bowling-pins:before {
  content: "\f437";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-alt:before {
  content: "\f49a";
}

.fa-box-ballot:before {
  content: "\f735";
}

.fa-box-check:before {
  content: "\f467";
}

.fa-box-fragile:before {
  content: "\f49b";
}

.fa-box-full:before {
  content: "\f49c";
}

.fa-box-heart:before {
  content: "\f49d";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-up:before {
  content: "\f49f";
}

.fa-box-usd:before {
  content: "\f4a0";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-boxes-alt:before {
  content: "\f4a1";
}

.fa-boxing-glove:before {
  content: "\f438";
}

.fa-brackets:before {
  content: "\f7e9";
}

.fa-brackets-curly:before {
  content: "\f7ea";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-loaf:before {
  content: "\f7eb";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-bring-forward:before {
  content: "\f856";
}

.fa-bring-front:before {
  content: "\f857";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-browser:before {
  content: "\f37e";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-bullseye-arrow:before {
  content: "\f648";
}

.fa-bullseye-pointer:before {
  content: "\f649";
}

.fa-burger-soda:before {
  content: "\f858";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-burrito:before {
  content: "\f7ed";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-bus-school:before {
  content: "\f5dd";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-cabinet-filing:before {
  content: "\f64b";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calculator-alt:before {
  content: "\f64c";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-edit:before {
  content: "\f333";
}

.fa-calendar-exclamation:before {
  content: "\f334";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-star:before {
  content: "\f736";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-alt:before {
  content: "\f332";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campfire:before {
  content: "\f6ba";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candle-holder:before {
  content: "\f6bc";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-candy-corn:before {
  content: "\f6bd";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-building:before {
  content: "\f859";
}

.fa-car-bump:before {
  content: "\f5e0";
}

.fa-car-bus:before {
  content: "\f85a";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-garage:before {
  content: "\f5e2";
}

.fa-car-mechanic:before {
  content: "\f5e3";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-car-tilt:before {
  content: "\f5e5";
}

.fa-car-wash:before {
  content: "\f5e6";
}

.fa-caret-circle-down:before {
  content: "\f32d";
}

.fa-caret-circle-left:before {
  content: "\f32e";
}

.fa-caret-circle-right:before {
  content: "\f330";
}

.fa-caret-circle-up:before {
  content: "\f331";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cars:before {
  content: "\f85b";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cauldron:before {
  content: "\f6bf";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chair-office:before {
  content: "\f6c1";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-line-down:before {
  content: "\f64d";
}

.fa-chart-network:before {
  content: "\f78a";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-chart-pie-alt:before {
  content: "\f64e";
}

.fa-chart-scatter:before {
  content: "\f7ee";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-cheese-swiss:before {
  content: "\f7f0";
}

.fa-cheeseburger:before {
  content: "\f7f1";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-bishop-alt:before {
  content: "\f43b";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-clock:before {
  content: "\f43d";
}

.fa-chess-clock-alt:before {
  content: "\f43e";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-king-alt:before {
  content: "\f440";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-knight-alt:before {
  content: "\f442";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-pawn-alt:before {
  content: "\f444";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-queen-alt:before {
  content: "\f446";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chess-rook-alt:before {
  content: "\f448";
}

.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-double-down:before {
  content: "\f322";
}

.fa-chevron-double-left:before {
  content: "\f323";
}

.fa-chevron-double-right:before {
  content: "\f324";
}

.fa-chevron-double-up:before {
  content: "\f325";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-square-down:before {
  content: "\f329";
}

.fa-chevron-square-left:before {
  content: "\f32a";
}

.fa-chevron-square-right:before {
  content: "\f32b";
}

.fa-chevron-square-up:before {
  content: "\f32c";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chimney:before {
  content: "\f78b";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-claw-marks:before {
  content: "\f6c2";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clipboard-list-check:before {
  content: "\f737";
}

.fa-clipboard-prescription:before {
  content: "\f5e8";
}

.fa-clipboard-user:before {
  content: "\f7f3";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-drizzle:before {
  content: "\f738";
}

.fa-cloud-hail:before {
  content: "\f739";
}

.fa-cloud-hail-mixed:before {
  content: "\f73a";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-rainbow:before {
  content: "\f73e";
}

.fa-cloud-showers:before {
  content: "\f73f";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sleet:before {
  content: "\f741";
}

.fa-cloud-snow:before {
  content: "\f742";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-clouds:before {
  content: "\f744";
}

.fa-clouds-moon:before {
  content: "\f745";
}

.fa-clouds-sun:before {
  content: "\f746";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-club:before {
  content: "\f327";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-code-commit:before {
  content: "\f386";
}

.fa-code-merge:before {
  content: "\f387";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-coffee-togo:before {
  content: "\f6c5";
}

.fa-coffin:before {
  content: "\f6c6";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coin:before {
  content: "\f85c";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-alt-check:before {
  content: "\f4a2";
}

.fa-comment-alt-dollar:before {
  content: "\f650";
}

.fa-comment-alt-dots:before {
  content: "\f4a3";
}

.fa-comment-alt-edit:before {
  content: "\f4a4";
}

.fa-comment-alt-exclamation:before {
  content: "\f4a5";
}

.fa-comment-alt-lines:before {
  content: "\f4a6";
}

.fa-comment-alt-medical:before {
  content: "\f7f4";
}

.fa-comment-alt-minus:before {
  content: "\f4a7";
}

.fa-comment-alt-plus:before {
  content: "\f4a8";
}

.fa-comment-alt-slash:before {
  content: "\f4a9";
}

.fa-comment-alt-smile:before {
  content: "\f4aa";
}

.fa-comment-alt-times:before {
  content: "\f4ab";
}

.fa-comment-check:before {
  content: "\f4ac";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-edit:before {
  content: "\f4ae";
}

.fa-comment-exclamation:before {
  content: "\f4af";
}

.fa-comment-lines:before {
  content: "\f4b0";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-minus:before {
  content: "\f4b1";
}

.fa-comment-plus:before {
  content: "\f4b2";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comment-smile:before {
  content: "\f4b4";
}

.fa-comment-times:before {
  content: "\f4b5";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-alt:before {
  content: "\f4b6";
}

.fa-comments-alt-dollar:before {
  content: "\f652";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compass-slash:before {
  content: "\f5e9";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-compress-wide:before {
  content: "\f326";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-construction:before {
  content: "\f85d";
}

.fa-container-storage:before {
  content: "\f4b7";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-conveyor-belt:before {
  content: "\f46e";
}

.fa-conveyor-belt-alt:before {
  content: "\f46f";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-corn:before {
  content: "\f6c7";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cow:before {
  content: "\f6c8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-credit-card-blank:before {
  content: "\f389";
}

.fa-credit-card-front:before {
  content: "\f38a";
}

.fa-cricket:before {
  content: "\f449";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-croissant:before {
  content: "\f7f6";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-crutches:before {
  content: "\f7f8";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-curling:before {
  content: "\f44a";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dagger:before {
  content: "\f6cb";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-debug:before {
  content: "\f7f9";
}

.fa-deer:before {
  content: "\f78e";
}

.fa-deer-rudolph:before {
  content: "\f78f";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-desktop-alt:before {
  content: "\f390";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dewpoint:before {
  content: "\f748";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d10:before {
  content: "\f6cd";
}

.fa-dice-d12:before {
  content: "\f6ce";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d4:before {
  content: "\f6d0";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-d8:before {
  content: "\f6d2";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digging:before {
  content: "\f85e";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-diploma:before {
  content: "\f5ea";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-do-not-enter:before {
  content: "\f5ec";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dog-leashed:before {
  content: "\f6d4";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-empty:before {
  content: "\f473";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-dolly-flatbed-alt:before {
  content: "\f475";
}

.fa-dolly-flatbed-empty:before {
  content: "\f476";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-circle:before {
  content: "\f5ed";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-draw-square:before {
  content: "\f5ef";
}

.fa-dreidel:before {
  content: "\f792";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-drone:before {
  content: "\f85f";
}

.fa-drone-alt:before {
  content: "\f860";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick:before {
  content: "\f6d6";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dryer:before {
  content: "\f861";
}

.fa-dryer-alt:before {
  content: "\f862";
}

.fa-duck:before {
  content: "\f6d8";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-ear:before {
  content: "\f5f0";
}

.fa-ear-muffs:before {
  content: "\f795";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-eclipse:before {
  content: "\f749";
}

.fa-eclipse-alt:before {
  content: "\f74a";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-egg-fried:before {
  content: "\f7fc";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-elephant:before {
  content: "\f6da";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-h-alt:before {
  content: "\f39b";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ellipsis-v-alt:before {
  content: "\f39c";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-empty-set:before {
  content: "\f656";
}

.fa-engine-warning:before {
  content: "\f5f2";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-dollar:before {
  content: "\f657";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-square:before {
  content: "\f321";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows:before {
  content: "\f31d";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expand-wide:before {
  content: "\f320";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-evil:before {
  content: "\f6db";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-farm:before {
  content: "\f864";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-field-hockey:before {
  content: "\f44c";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-certificate:before {
  content: "\f5f3";
}

.fa-file-chart-line:before {
  content: "\f659";
}

.fa-file-chart-pie:before {
  content: "\f65a";
}

.fa-file-check:before {
  content: "\f316";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-edit:before {
  content: "\f31c";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-exclamation:before {
  content: "\f31a";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-minus:before {
  content: "\f318";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-plus:before {
  content: "\f319";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-search:before {
  content: "\f865";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-spreadsheet:before {
  content: "\f65b";
}

.fa-file-times:before {
  content: "\f317";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-user:before {
  content: "\f65c";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-files-medical:before {
  content: "\f7fd";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-film-alt:before {
  content: "\f3a0";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-fire-smoke:before {
  content: "\f74b";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-fireplace:before {
  content: "\f79a";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fish-cooked:before {
  content: "\f7fe";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-alt:before {
  content: "\f74c";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flame:before {
  content: "\f6df";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flask-poison:before {
  content: "\f6e0";
}

.fa-flask-potion:before {
  content: "\f6e1";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flower:before {
  content: "\f7ff";
}

.fa-flower-daffodil:before {
  content: "\f800";
}

.fa-flower-tulip:before {
  content: "\f801";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-fog:before {
  content: "\f74e";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-folder-times:before {
  content: "\f65f";
}

.fa-folder-tree:before {
  content: "\f802";
}

.fa-folders:before {
  content: "\f660";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-font-case:before {
  content: "\f866";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-football-helmet:before {
  content: "\f44f";
}

.fa-forklift:before {
  content: "\f47a";
}

.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-fragile:before {
  content: "\f4bb";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-french-fries:before {
  content: "\f803";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frosty-head:before {
  content: "\f79b";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-function:before {
  content: "\f661";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-game-board:before {
  content: "\f867";
}

.fa-game-board-alt:before {
  content: "\f868";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gas-pump-slash:before {
  content: "\f5f4";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gift-card:before {
  content: "\f663";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-gingerbread-man:before {
  content: "\f79d";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass:before {
  content: "\f804";
}

.fa-glass-champagne:before {
  content: "\f79e";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-citrus:before {
  content: "\f869";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glass-whiskey-rocks:before {
  content: "\f7a1";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glasses-alt:before {
  content: "\f5f5";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-globe-snow:before {
  content: "\f7a3";
}

.fa-globe-stand:before {
  content: "\f5f6";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-golf-club:before {
  content: "\f451";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-h1:before {
  content: "\f313";
}

.fa-h2:before {
  content: "\f314";
}

.fa-h3:before {
  content: "\f315";
}

.fa-h4:before {
  content: "\f86a";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hammer-war:before {
  content: "\f6e4";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-heart:before {
  content: "\f4bc";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-box:before {
  content: "\f47b";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-magic:before {
  content: "\f6e5";
}

.fa-hand-holding-seedling:before {
  content: "\f4bf";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-receiving:before {
  content: "\f47c";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-heart:before {
  content: "\f4c3";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-usd:before {
  content: "\f4c5";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt:before {
  content: "\f4c6";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-chef:before {
  content: "\f86b";
}

.fa-hat-santa:before {
  content: "\f7a7";
}

.fa-hat-winter:before {
  content: "\f7a8";
}

.fa-hat-witch:before {
  content: "\f6e7";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-haykal:before {
  content: "\f666";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side:before {
  content: "\f6e9";
}

.fa-head-side-brain:before {
  content: "\f808";
}

.fa-head-side-medical:before {
  content: "\f809";
}

.fa-head-vr:before {
  content: "\f6ea";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heart-circle:before {
  content: "\f4c7";
}

.fa-heart-rate:before {
  content: "\f5f8";
}

.fa-heart-square:before {
  content: "\f4c8";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-helmet-battle:before {
  content: "\f6eb";
}

.fa-hexagon:before {
  content: "\f312";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-mask:before {
  content: "\f6ee";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-hockey-sticks:before {
  content: "\f454";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-home-alt:before {
  content: "\f80a";
}

.fa-home-heart:before {
  content: "\f4c9";
}

.fa-home-lg:before {
  content: "\f80b";
}

.fa-home-lg-alt:before {
  content: "\f80c";
}

.fa-hood-cloak:before {
  content: "\f6ef";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-horizontal-rule:before {
  content: "\f86c";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hospitals:before {
  content: "\f80e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-flood:before {
  content: "\f74f";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-humidity:before {
  content: "\f750";
}

.fa-hurricane:before {
  content: "\f751";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-ice-skate:before {
  content: "\f7ac";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-icons-alt:before {
  content: "\f86e";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-inbox-in:before {
  content: "\f310";
}

.fa-inbox-out:before {
  content: "\f311";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-industry-alt:before {
  content: "\f3b3";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-info-square:before {
  content: "\f30f";
}

.fa-inhaler:before {
  content: "\f5f9";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-integral:before {
  content: "\f667";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-intersection:before {
  content: "\f668";
}

.fa-inventory:before {
  content: "\f480";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-island-tropical:before {
  content: "\f811";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-jack-o-lantern:before {
  content: "\f30e";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-kerning:before {
  content: "\f86f";
}

.fa-key:before {
  content: "\f084";
}

.fa-key-skeleton:before {
  content: "\f6f3";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-keynote:before {
  content: "\f66c";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kidneys:before {
  content: "\f5fb";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kite:before {
  content: "\f6f4";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-knife-kitchen:before {
  content: "\f6f5";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-lambda:before {
  content: "\f66e";
}

.fa-lamp:before {
  content: "\f4ca";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-landmark-alt:before {
  content: "\f752";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-layer-minus:before {
  content: "\f5fe";
}

.fa-layer-plus:before {
  content: "\f5ff";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leaf-heart:before {
  content: "\f4cb";
}

.fa-leaf-maple:before {
  content: "\f6f6";
}

.fa-leaf-oak:before {
  content: "\f6f7";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-lightbulb-dollar:before {
  content: "\f670";
}

.fa-lightbulb-exclamation:before {
  content: "\f671";
}

.fa-lightbulb-on:before {
  content: "\f672";
}

.fa-lightbulb-slash:before {
  content: "\f673";
}

.fa-lights-holiday:before {
  content: "\f7b2";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-line-columns:before {
  content: "\f870";
}

.fa-line-height:before {
  content: "\f871";
}

.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-lips:before {
  content: "\f600";
}

.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:before {
  content: "\f601";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-location-circle:before {
  content: "\f602";
}

.fa-location-slash:before {
  content: "\f603";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-alt:before {
  content: "\f30d";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-lock-open-alt:before {
  content: "\f3c2";
}

.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-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-loveseat:before {
  content: "\f4cc";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luchador:before {
  content: "\f455";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-mace:before {
  content: "\f6f8";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailbox:before {
  content: "\f813";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-mandolin:before {
  content: "\f6f9";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-marker-alt-slash:before {
  content: "\f605";
}

.fa-map-marker-check:before {
  content: "\f606";
}

.fa-map-marker-edit:before {
  content: "\f607";
}

.fa-map-marker-exclamation:before {
  content: "\f608";
}

.fa-map-marker-minus:before {
  content: "\f609";
}

.fa-map-marker-plus:before {
  content: "\f60a";
}

.fa-map-marker-question:before {
  content: "\f60b";
}

.fa-map-marker-slash:before {
  content: "\f60c";
}

.fa-map-marker-smile:before {
  content: "\f60d";
}

.fa-map-marker-times:before {
  content: "\f60e";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-meat:before {
  content: "\f814";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaphone:before {
  content: "\f675";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-mind-share:before {
  content: "\f677";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-hexagon:before {
  content: "\f307";
}

.fa-minus-octagon:before {
  content: "\f308";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mistletoe:before {
  content: "\f7b4";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-mobile-android:before {
  content: "\f3ce";
}

.fa-mobile-android-alt:before {
  content: "\f3cf";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-money-check-edit:before {
  content: "\f872";
}

.fa-money-check-edit-alt:before {
  content: "\f873";
}

.fa-monitor-heart-rate:before {
  content: "\f611";
}

.fa-monkey:before {
  content: "\f6fb";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-moon-cloud:before {
  content: "\f754";
}

.fa-moon-stars:before {
  content: "\f755";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mountains:before {
  content: "\f6fd";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug:before {
  content: "\f874";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-mug-marshmallows:before {
  content: "\f7b7";
}

.fa-mug-tea:before {
  content: "\f875";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-narwhal:before {
  content: "\f6fe";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octagon:before {
  content: "\f306";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-oil-temp:before {
  content: "\f614";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-omega:before {
  content: "\f67a";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-ornament:before {
  content: "\f7b8";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-overline:before {
  content: "\f876";
}

.fa-page-break:before {
  content: "\f877";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-brush-alt:before {
  content: "\f5a9";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-pallet-alt:before {
  content: "\f483";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-paragraph-rtl:before {
  content: "\f878";
}

.fa-parking:before {
  content: "\f540";
}

.fa-parking-circle:before {
  content: "\f615";
}

.fa-parking-circle-slash:before {
  content: "\f616";
}

.fa-parking-slash:before {
  content: "\f617";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paw-alt:before {
  content: "\f701";
}

.fa-paw-claws:before {
  content: "\f702";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pegasus:before {
  content: "\f703";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-paintbrush:before {
  content: "\f618";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-pennant:before {
  content: "\f456";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-person-carry:before {
  content: "\f4cf";
}

.fa-person-dolly:before {
  content: "\f4d0";
}

.fa-person-dolly-empty:before {
  content: "\f4d1";
}

.fa-person-sign:before {
  content: "\f757";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-laptop:before {
  content: "\f87a";
}

.fa-phone-office:before {
  content: "\f67d";
}

.fa-phone-plus:before {
  content: "\f4d2";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pi:before {
  content: "\f67e";
}

.fa-pie:before {
  content: "\f705";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pig:before {
  content: "\f706";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza:before {
  content: "\f817";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-alt:before {
  content: "\f3de";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-hexagon:before {
  content: "\f300";
}

.fa-plus-octagon:before {
  content: "\f301";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-podium:before {
  content: "\f680";
}

.fa-podium-star:before {
  content: "\f758";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poll-people:before {
  content: "\f759";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-popcorn:before {
  content: "\f819";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-presentation:before {
  content: "\f685";
}

.fa-print:before {
  content: "\f02f";
}

.fa-print-search:before {
  content: "\f81a";
}

.fa-print-slash:before {
  content: "\f686";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pumpkin:before {
  content: "\f707";
}

.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-question-square:before {
  content: "\f2fd";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-rabbit:before {
  content: "\f708";
}

.fa-rabbit-fast:before {
  content: "\f709";
}

.fa-racquet:before {
  content: "\f45a";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-raindrops:before {
  content: "\f75c";
}

.fa-ram:before {
  content: "\f70a";
}

.fa-ramp-loading:before {
  content: "\f4d4";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-rectangle-landscape:before {
  content: "\f2fa";
}

.fa-rectangle-portrait:before {
  content: "\f2fb";
}

.fa-rectangle-wide:before {
  content: "\f2fc";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-repeat:before {
  content: "\f363";
}

.fa-repeat-1:before {
  content: "\f365";
}

.fa-repeat-1-alt:before {
  content: "\f366";
}

.fa-repeat-alt:before {
  content: "\f364";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-retweet-alt:before {
  content: "\f361";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-rings-wedding:before {
  content: "\f81b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-route-highway:before {
  content: "\f61a";
}

.fa-route-interstate:before {
  content: "\f61b";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-triangle:before {
  content: "\f61c";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rv:before {
  content: "\f7be";
}

.fa-sack:before {
  content: "\f81c";
}

.fa-sack-dollar:before {
  content: "\f81d";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salad:before {
  content: "\f81e";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sandwich:before {
  content: "\f81f";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-sausage:before {
  content: "\f820";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-scalpel:before {
  content: "\f61d";
}

.fa-scalpel-path:before {
  content: "\f61e";
}

.fa-scanner:before {
  content: "\f488";
}

.fa-scanner-keyboard:before {
  content: "\f489";
}

.fa-scanner-touchscreen:before {
  content: "\f48a";
}

.fa-scarecrow:before {
  content: "\f70d";
}

.fa-scarf:before {
  content: "\f7c1";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-scroll-old:before {
  content: "\f70f";
}

.fa-scrubber:before {
  content: "\f2f8";
}

.fa-scythe:before {
  content: "\f710";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-send-back:before {
  content: "\f87e";
}

.fa-send-backward:before {
  content: "\f87f";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-all:before {
  content: "\f367";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-sheep:before {
  content: "\f711";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield:before {
  content: "\f132";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-check:before {
  content: "\f2f7";
}

.fa-shield-cross:before {
  content: "\f712";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shipping-timed:before {
  content: "\f48c";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shish-kebab:before {
  content: "\f821";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shovel:before {
  content: "\f713";
}

.fa-shovel-snow:before {
  content: "\f7c3";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shredder:before {
  content: "\f68a";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-shuttlecock:before {
  content: "\f45b";
}

.fa-sickle:before {
  content: "\f822";
}

.fa-sigma:before {
  content: "\f68b";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signal-1:before {
  content: "\f68c";
}

.fa-signal-2:before {
  content: "\f68d";
}

.fa-signal-3:before {
  content: "\f68e";
}

.fa-signal-4:before {
  content: "\f68f";
}

.fa-signal-alt:before {
  content: "\f690";
}

.fa-signal-alt-1:before {
  content: "\f691";
}

.fa-signal-alt-2:before {
  content: "\f692";
}

.fa-signal-alt-3:before {
  content: "\f693";
}

.fa-signal-alt-slash:before {
  content: "\f694";
}

.fa-signal-slash:before {
  content: "\f695";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-skeleton:before {
  content: "\f620";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-ski-jump:before {
  content: "\f7c7";
}

.fa-ski-lift:before {
  content: "\f7c8";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sledding:before {
  content: "\f7cb";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-sliders-h-square:before {
  content: "\f3f0";
}

.fa-sliders-v:before {
  content: "\f3f1";
}

.fa-sliders-v-square:before {
  content: "\f3f2";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-plus:before {
  content: "\f5b9";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoke:before {
  content: "\f760";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snake:before {
  content: "\f716";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snooze:before {
  content: "\f880";
}

.fa-snow-blowing:before {
  content: "\f761";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowflakes:before {
  content: "\f7cf";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowmobile:before {
  content: "\f7d1";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-alt:before {
  content: "\f883";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-shapes-down:before {
  content: "\f888";
}

.fa-sort-shapes-down-alt:before {
  content: "\f889";
}

.fa-sort-shapes-up:before {
  content: "\f88a";
}

.fa-sort-shapes-up-alt:before {
  content: "\f88b";
}

.fa-sort-size-down:before {
  content: "\f88c";
}

.fa-sort-size-down-alt:before {
  content: "\f88d";
}

.fa-sort-size-up:before {
  content: "\f88e";
}

.fa-sort-size-up-alt:before {
  content: "\f88f";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-soup:before {
  content: "\f823";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-spade:before {
  content: "\f2f4";
}

.fa-sparkles:before {
  content: "\f890";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spider-black-widow:before {
  content: "\f718";
}

.fa-spider-web:before {
  content: "\f719";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-spinner-third:before {
  content: "\f3f4";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root:before {
  content: "\f697";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-squirrel:before {
  content: "\f71a";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-staff:before {
  content: "\f71b";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-christmas:before {
  content: "\f7d4";
}

.fa-star-exclamation:before {
  content: "\f2f3";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-stars:before {
  content: "\f762";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steak:before {
  content: "\f824";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-steering-wheel:before {
  content: "\f622";
}

.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-stocking:before {
  content: "\f7d5";
}

.fa-stomach:before {
  content: "\f623";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-stretcher:before {
  content: "\f825";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-sun-cloud:before {
  content: "\f763";
}

.fa-sun-dust:before {
  content: "\f764";
}

.fa-sun-haze:before {
  content: "\f765";
}

.fa-sunglasses:before {
  content: "\f892";
}

.fa-sunrise:before {
  content: "\f766";
}

.fa-sunset:before {
  content: "\f767";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-sword:before {
  content: "\f71c";
}

.fa-swords:before {
  content: "\f71d";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablet-android:before {
  content: "\f3fb";
}

.fa-tablet-android-alt:before {
  content: "\f3fc";
}

.fa-tablet-rugged:before {
  content: "\f48f";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer:before {
  content: "\f0e4";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tachometer-alt-average:before {
  content: "\f624";
}

.fa-tachometer-alt-fast:before {
  content: "\f625";
}

.fa-tachometer-alt-fastest:before {
  content: "\f626";
}

.fa-tachometer-alt-slow:before {
  content: "\f627";
}

.fa-tachometer-alt-slowest:before {
  content: "\f628";
}

.fa-tachometer-average:before {
  content: "\f629";
}

.fa-tachometer-fast:before {
  content: "\f62a";
}

.fa-tachometer-fastest:before {
  content: "\f62b";
}

.fa-tachometer-slow:before {
  content: "\f62c";
}

.fa-tachometer-slowest:before {
  content: "\f62d";
}

.fa-taco:before {
  content: "\f826";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tally:before {
  content: "\f69c";
}

.fa-tanakh:before {
  content: "\f827";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-tasks-alt:before {
  content: "\f828";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-frigid:before {
  content: "\f768";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-hot:before {
  content: "\f76a";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-tennis-ball:before {
  content: "\f45e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text:before {
  content: "\f893";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-size:before {
  content: "\f894";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-theta:before {
  content: "\f69e";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-thunderstorm:before {
  content: "\f76c";
}

.fa-thunderstorm-moon:before {
  content: "\f76d";
}

.fa-thunderstorm-sun:before {
  content: "\f76e";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tilde:before {
  content: "\f69f";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-times-hexagon:before {
  content: "\f2ee";
}

.fa-times-octagon:before {
  content: "\f2f0";
}

.fa-times-square:before {
  content: "\f2d3";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tire:before {
  content: "\f631";
}

.fa-tire-flat:before {
  content: "\f632";
}

.fa-tire-pressure-warning:before {
  content: "\f633";
}

.fa-tire-rugged:before {
  content: "\f634";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-alt:before {
  content: "\f71f";
}

.fa-tombstone:before {
  content: "\f720";
}

.fa-tombstone-alt:before {
  content: "\f721";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-toothbrush:before {
  content: "\f635";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tornado:before {
  content: "\f76f";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-cone:before {
  content: "\f636";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-traffic-light-go:before {
  content: "\f638";
}

.fa-traffic-light-slow:before {
  content: "\f639";
}

.fa-traffic-light-stop:before {
  content: "\f63a";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-trash-undo:before {
  content: "\f895";
}

.fa-trash-undo-alt:before {
  content: "\f896";
}

.fa-treasure-chest:before {
  content: "\f723";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-tree-alt:before {
  content: "\f400";
}

.fa-tree-christmas:before {
  content: "\f7db";
}

.fa-tree-decorated:before {
  content: "\f7dc";
}

.fa-tree-large:before {
  content: "\f7dd";
}

.fa-tree-palm:before {
  content: "\f82b";
}

.fa-trees:before {
  content: "\f724";
}

.fa-trello:before {
  content: "\f181";
}

.fa-triangle:before {
  content: "\f2ec";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-trophy-alt:before {
  content: "\f2eb";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-container:before {
  content: "\f4dc";
}

.fa-truck-couch:before {
  content: "\f4dd";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-truck-plow:before {
  content: "\f7de";
}

.fa-truck-ramp:before {
  content: "\f4e0";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-turkey:before {
  content: "\f725";
}

.fa-turtle:before {
  content: "\f726";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-tv-retro:before {
  content: "\f401";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-unicorn:before {
  content: "\f727";
}

.fa-union:before {
  content: "\f6a2";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-usd-circle:before {
  content: "\f2e8";
}

.fa-usd-square:before {
  content: "\f2e9";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-chart:before {
  content: "\f6a3";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-crown:before {
  content: "\f6a4";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-hard-hat:before {
  content: "\f82c";
}

.fa-user-headset:before {
  content: "\f82d";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-md-chat:before {
  content: "\f82e";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-class:before {
  content: "\f63d";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-crown:before {
  content: "\f6a5";
}

.fa-users-medical:before {
  content: "\f830";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-fork:before {
  content: "\f2e3";
}

.fa-utensil-knife:before {
  content: "\f2e4";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-utensils-alt:before {
  content: "\f2e6";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-value-absolute:before {
  content: "\f6a6";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-plus:before {
  content: "\f4e1";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volcano:before {
  content: "\f770";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume:before {
  content: "\f6a8";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-slash:before {
  content: "\f2e2";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-nay:before {
  content: "\f771";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walker:before {
  content: "\f831";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-wand:before {
  content: "\f72a";
}

.fa-wand-magic:before {
  content: "\f72b";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-warehouse-alt:before {
  content: "\f495";
}

.fa-washer:before {
  content: "\f898";
}

.fa-watch:before {
  content: "\f2e1";
}

.fa-watch-fitness:before {
  content: "\f63e";
}

.fa-water:before {
  content: "\f773";
}

.fa-water-lower:before {
  content: "\f774";
}

.fa-water-rise:before {
  content: "\f775";
}

.fa-wave-sine:before {
  content: "\f899";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-wave-triangle:before {
  content: "\f89a";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-webcam:before {
  content: "\f832";
}

.fa-webcam-slash:before {
  content: "\f833";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whale:before {
  content: "\f72c";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheat:before {
  content: "\f72d";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whistle:before {
  content: "\f460";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wifi-1:before {
  content: "\f6aa";
}

.fa-wifi-2:before {
  content: "\f6ab";
}

.fa-wifi-slash:before {
  content: "\f6ac";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-wind-turbine:before {
  content: "\f89b";
}

.fa-wind-warning:before {
  content: "\f776";
}

.fa-window:before {
  content: "\f40e";
}

.fa-window-alt:before {
  content: "\f40f";
}

.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-windsock:before {
  content: "\f777";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wreath:before {
  content: "\f7e2";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url(fonts/fa/fa-brands-400.eot);
  src: url(fonts/fa/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(fonts/fa/fa-brands-400.woff2) format("woff2"), url(fonts/fa/fa-brands-400.woff) format("woff"), url(fonts/fa/fa-brands-400.ttf) format("truetype"), url(fonts/fa/fa-brands-400.svg#fontawesome) format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: auto;
  src: url(fonts/fa/fa-light-300.eot);
  src: url(fonts/fa/fa-light-300.eot?#iefix) format("embedded-opentype"), url(fonts/fa/fa-light-300.woff2) format("woff2"), url(fonts/fa/fa-light-300.woff) format("woff"), url(fonts/fa/fa-light-300.ttf) format("truetype"), url(fonts/fa/fa-light-300.svg#fontawesome) format("svg");
}
.fal {
  font-weight: 300;
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url(fonts/fa/fa-regular-400.eot);
  src: url(fonts/fa/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(fonts/fa/fa-regular-400.woff2) format("woff2"), url(fonts/fa/fa-regular-400.woff) format("woff"), url(fonts/fa/fa-regular-400.ttf) format("truetype"), url(fonts/fa/fa-regular-400.svg#fontawesome) format("svg");
}
.fal, .far {
  font-family: "Font Awesome 5 Pro";
}

.far {
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url(fonts/fa/fa-solid-900.eot);
  src: url(fonts/fa/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(fonts/fa/fa-solid-900.woff2) format("woff2"), url(fonts/fa/fa-solid-900.woff) format("woff"), url(fonts/fa/fa-solid-900.ttf) format("truetype"), url(fonts/fa/fa-solid-900.svg#fontawesome) format("svg");
}
.fa, .fas {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

@font-face {
  font-family: "Helvetica Neue Regular";
  src: url("fonts/helvetica/HelveticaNeue-Regular.woff2") format("woff2"), url("fonts/helvetica/HelveticaNeue-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue Medium";
  src: url("helveticaneue_medium-webfont.woff2") format("woff2"), url("helveticaneue_medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue Bold";
  src: url("fonts/helvetica/HelveticaNeue-Bold.woff2") format("woff2"), url("fonts/helvetica/HelveticaNeue-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Brygada Bold";
  src: url("fonts/brygada/Brygada-Bold.woff2") format("woff2"), url("fonts/brygada/Brygada-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Museo 300";
  src: url("fonts/museo/MuseoSansRounded300.woff2") format("woff2"), url("fonts/museo/MuseoSansRounded300.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Museo 700";
  src: url("fonts/museo/MuseoSansRounded700.woff2") format("woff2"), url("fonts/museo/MuseoSansRounded700.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*!
  Ionicons, v2.0.0
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/
@font-face {
  font-family: "Ionicons";
  src: url("fonts/ionicons/ionicons.eot?v=2.0.0");
  src: url("fonts/ionicons/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("fonts/ionicons/ionicons.ttf?v=2.0.0") format("truetype"), url("fonts/ionicons/ionicons.woff?v=2.0.0") format("woff"), url("fonts/ionicons/ionicons.svg?v=2.0.0#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
.ion, .ionicons, .ion-alert:before, .ion-alert-circled:before, .ion-android-add:before, .ion-android-add-circle:before, .ion-android-alarm-clock:before, .ion-android-alert:before, .ion-android-apps:before, .ion-android-archive:before, .ion-android-arrow-back:before, .ion-android-arrow-down:before, .ion-android-arrow-dropdown:before, .ion-android-arrow-dropdown-circle:before, .ion-android-arrow-dropleft:before, .ion-android-arrow-dropleft-circle:before, .ion-android-arrow-dropright:before, .ion-android-arrow-dropright-circle:before, .ion-android-arrow-dropup:before, .ion-android-arrow-dropup-circle:before, .ion-android-arrow-forward:before, .ion-android-arrow-up:before, .ion-android-attach:before, .ion-android-bar:before, .ion-android-bicycle:before, .ion-android-boat:before, .ion-android-bookmark:before, .ion-android-bulb:before, .ion-android-bus:before, .ion-android-calendar:before, .ion-android-call:before, .ion-android-camera:before, .ion-android-cancel:before, .ion-android-car:before, .ion-android-cart:before, .ion-android-chat:before, .ion-android-checkbox:before, .ion-android-checkbox-blank:before, .ion-android-checkbox-outline:before, .ion-android-checkbox-outline-blank:before, .ion-android-checkmark-circle:before, .ion-android-clipboard:before, .ion-android-close:before, .ion-android-cloud:before, .ion-android-cloud-circle:before, .ion-android-cloud-done:before, .ion-android-cloud-outline:before, .ion-android-color-palette:before, .ion-android-compass:before, .ion-android-contact:before, .ion-android-contacts:before, .ion-android-contract:before, .ion-android-create:before, .ion-android-delete:before, .ion-android-desktop:before, .ion-android-document:before, .ion-android-done:before, .ion-android-done-all:before, .ion-android-download:before, .ion-android-drafts:before, .ion-android-exit:before, .ion-android-expand:before, .ion-android-favorite:before, .ion-android-favorite-outline:before, .ion-android-film:before, .ion-android-folder:before, .ion-android-folder-open:before, .ion-android-funnel:before, .ion-android-globe:before, .ion-android-hand:before, .ion-android-hangout:before, .ion-android-happy:before, .ion-android-home:before, .ion-android-image:before, .ion-android-laptop:before, .ion-android-list:before, .ion-android-locate:before, .ion-android-lock:before, .ion-android-mail:before, .ion-android-map:before, .ion-android-menu:before, .ion-android-microphone:before, .ion-android-microphone-off:before, .ion-android-more-horizontal:before, .ion-android-more-vertical:before, .ion-android-navigate:before, .ion-android-notifications:before, .ion-android-notifications-none:before, .ion-android-notifications-off:before, .ion-android-open:before, .ion-android-options:before, .ion-android-people:before, .ion-android-person:before, .ion-android-person-add:before, .ion-android-phone-landscape:before, .ion-android-phone-portrait:before, .ion-android-pin:before, .ion-android-plane:before, .ion-android-playstore:before, .ion-android-print:before, .ion-android-radio-button-off:before, .ion-android-radio-button-on:before, .ion-android-refresh:before, .ion-android-remove:before, .ion-android-remove-circle:before, .ion-android-restaurant:before, .ion-android-sad:before, .ion-android-search:before, .ion-android-send:before, .ion-android-settings:before, .ion-android-share:before, .ion-android-share-alt:before, .ion-android-star:before, .ion-android-star-half:before, .ion-android-star-outline:before, .ion-android-stopwatch:before, .ion-android-subway:before, .ion-android-sunny:before, .ion-android-sync:before, .ion-android-textsms:before, .ion-android-time:before, .ion-android-train:before, .ion-android-unlock:before, .ion-android-upload:before, .ion-android-volume-down:before, .ion-android-volume-mute:before, .ion-android-volume-off:before, .ion-android-volume-up:before, .ion-android-walk:before, .ion-android-warning:before, .ion-android-watch:before, .ion-android-wifi:before, .ion-aperture:before, .ion-archive:before, .ion-arrow-down-a:before, .ion-arrow-down-b:before, .ion-arrow-down-c:before, .ion-arrow-expand:before, .ion-arrow-graph-down-left:before, .ion-arrow-graph-down-right:before, .ion-arrow-graph-up-left:before, .ion-arrow-graph-up-right:before, .ion-arrow-left-a:before, .ion-arrow-left-b:before, .ion-arrow-left-c:before, .ion-arrow-move:before, .ion-arrow-resize:before, .ion-arrow-return-left:before, .ion-arrow-return-right:before, .ion-arrow-right-a:before, .ion-arrow-right-b:before, .ion-arrow-right-c:before, .ion-arrow-shrink:before, .ion-arrow-swap:before, .ion-arrow-up-a:before, .ion-arrow-up-b:before, .ion-arrow-up-c:before, .ion-asterisk:before, .ion-at:before, .ion-backspace:before, .ion-backspace-outline:before, .ion-bag:before, .ion-battery-charging:before, .ion-battery-empty:before, .ion-battery-full:before, .ion-battery-half:before, .ion-battery-low:before, .ion-beaker:before, .ion-beer:before, .ion-bluetooth:before, .ion-bonfire:before, .ion-bookmark:before, .ion-bowtie:before, .ion-briefcase:before, .ion-bug:before, .ion-calculator:before, .ion-calendar:before, .ion-camera:before, .ion-card:before, .ion-cash:before, .ion-chatbox:before, .ion-chatbox-working:before, .ion-chatboxes:before, .ion-chatbubble:before, .ion-chatbubble-working:before, .ion-chatbubbles:before, .ion-checkmark:before, .ion-checkmark-circled:before, .ion-checkmark-round:before, .ion-chevron-down:before, .ion-chevron-left:before, .ion-chevron-right:before, .ion-chevron-up:before, .ion-clipboard:before, .ion-clock:before, .ion-close:before, .ion-close-circled:before, .ion-close-round:before, .ion-closed-captioning:before, .ion-cloud:before, .ion-code:before, .ion-code-download:before, .ion-code-working:before, .ion-coffee:before, .ion-compass:before, .ion-compose:before, .ion-connection-bars:before, .ion-contrast:before, .ion-crop:before, .ion-cube:before, .ion-disc:before, .ion-document:before, .ion-document-text:before, .ion-drag:before, .ion-earth:before, .ion-easel:before, .ion-edit:before, .ion-egg:before, .ion-eject:before, .ion-email:before, .ion-email-unread:before, .ion-erlenmeyer-flask:before, .ion-erlenmeyer-flask-bubbles:before, .ion-eye:before, .ion-eye-disabled:before, .ion-female:before, .ion-filing:before, .ion-film-marker:before, .ion-fireball:before, .ion-flag:before, .ion-flame:before, .ion-flash:before, .ion-flash-off:before, .ion-folder:before, .ion-fork:before, .ion-fork-repo:before, .ion-forward:before, .ion-funnel:before, .ion-gear-a:before, .ion-gear-b:before, .ion-grid:before, .ion-hammer:before, .ion-happy:before, .ion-happy-outline:before, .ion-headphone:before, .ion-heart:before, .ion-heart-broken:before, .ion-help:before, .ion-help-buoy:before, .ion-help-circled:before, .ion-home:before, .ion-icecream:before, .ion-image:before, .ion-images:before, .ion-information:before, .ion-information-circled:before, .ion-ionic:before, .ion-ios-alarm:before, .ion-ios-alarm-outline:before, .ion-ios-albums:before, .ion-ios-albums-outline:before, .ion-ios-americanfootball:before, .ion-ios-americanfootball-outline:before, .ion-ios-analytics:before, .ion-ios-analytics-outline:before, .ion-ios-arrow-back:before, .ion-ios-arrow-down:before, .ion-ios-arrow-forward:before, .ion-ios-arrow-left:before, .ion-ios-arrow-right:before, .ion-ios-arrow-thin-down:before, .ion-ios-arrow-thin-left:before, .ion-ios-arrow-thin-right:before, .ion-ios-arrow-thin-up:before, .ion-ios-arrow-up:before, .ion-ios-at:before, .ion-ios-at-outline:before, .ion-ios-barcode:before, .ion-ios-barcode-outline:before, .ion-ios-baseball:before, .ion-ios-baseball-outline:before, .ion-ios-basketball:before, .ion-ios-basketball-outline:before, .ion-ios-bell:before, .ion-ios-bell-outline:before, .ion-ios-body:before, .ion-ios-body-outline:before, .ion-ios-bolt:before, .ion-ios-bolt-outline:before, .ion-ios-book:before, .ion-ios-book-outline:before, .ion-ios-bookmarks:before, .ion-ios-bookmarks-outline:before, .ion-ios-box:before, .ion-ios-box-outline:before, .ion-ios-briefcase:before, .ion-ios-briefcase-outline:before, .ion-ios-browsers:before, .ion-ios-browsers-outline:before, .ion-ios-calculator:before, .ion-ios-calculator-outline:before, .ion-ios-calendar:before, .ion-ios-calendar-outline:before, .ion-ios-camera:before, .ion-ios-camera-outline:before, .ion-ios-cart:before, .ion-ios-cart-outline:before, .ion-ios-chatboxes:before, .ion-ios-chatboxes-outline:before, .ion-ios-chatbubble:before, .ion-ios-chatbubble-outline:before, .ion-ios-checkmark:before, .ion-ios-checkmark-empty:before, .ion-ios-checkmark-outline:before, .ion-ios-circle-filled:before, .ion-ios-circle-outline:before, .ion-ios-clock:before, .ion-ios-clock-outline:before, .ion-ios-close:before, .ion-ios-close-empty:before, .ion-ios-close-outline:before, .ion-ios-cloud:before, .ion-ios-cloud-download:before, .ion-ios-cloud-download-outline:before, .ion-ios-cloud-outline:before, .ion-ios-cloud-upload:before, .ion-ios-cloud-upload-outline:before, .ion-ios-cloudy:before, .ion-ios-cloudy-night:before, .ion-ios-cloudy-night-outline:before, .ion-ios-cloudy-outline:before, .ion-ios-cog:before, .ion-ios-cog-outline:before, .ion-ios-color-filter:before, .ion-ios-color-filter-outline:before, .ion-ios-color-wand:before, .ion-ios-color-wand-outline:before, .ion-ios-compose:before, .ion-ios-compose-outline:before, .ion-ios-contact:before, .ion-ios-contact-outline:before, .ion-ios-copy:before, .ion-ios-copy-outline:before, .ion-ios-crop:before, .ion-ios-crop-strong:before, .ion-ios-download:before, .ion-ios-download-outline:before, .ion-ios-drag:before, .ion-ios-email:before, .ion-ios-email-outline:before, .ion-ios-eye:before, .ion-ios-eye-outline:before, .ion-ios-fastforward:before, .ion-ios-fastforward-outline:before, .ion-ios-filing:before, .ion-ios-filing-outline:before, .ion-ios-film:before, .ion-ios-film-outline:before, .ion-ios-flag:before, .ion-ios-flag-outline:before, .ion-ios-flame:before, .ion-ios-flame-outline:before, .ion-ios-flask:before, .ion-ios-flask-outline:before, .ion-ios-flower:before, .ion-ios-flower-outline:before, .ion-ios-folder:before, .ion-ios-folder-outline:before, .ion-ios-football:before, .ion-ios-football-outline:before, .ion-ios-game-controller-a:before, .ion-ios-game-controller-a-outline:before, .ion-ios-game-controller-b:before, .ion-ios-game-controller-b-outline:before, .ion-ios-gear:before, .ion-ios-gear-outline:before, .ion-ios-glasses:before, .ion-ios-glasses-outline:before, .ion-ios-grid-view:before, .ion-ios-grid-view-outline:before, .ion-ios-heart:before, .ion-ios-heart-outline:before, .ion-ios-help:before, .ion-ios-help-empty:before, .ion-ios-help-outline:before, .ion-ios-home:before, .ion-ios-home-outline:before, .ion-ios-infinite:before, .ion-ios-infinite-outline:before, .ion-ios-information:before, .ion-ios-information-empty:before, .ion-ios-information-outline:before, .ion-ios-ionic-outline:before, .ion-ios-keypad:before, .ion-ios-keypad-outline:before, .ion-ios-lightbulb:before, .ion-ios-lightbulb-outline:before, .ion-ios-list:before, .ion-ios-list-outline:before, .ion-ios-location:before, .ion-ios-location-outline:before, .ion-ios-locked:before, .ion-ios-locked-outline:before, .ion-ios-loop:before, .ion-ios-loop-strong:before, .ion-ios-medical:before, .ion-ios-medical-outline:before, .ion-ios-medkit:before, .ion-ios-medkit-outline:before, .ion-ios-mic:before, .ion-ios-mic-off:before, .ion-ios-mic-outline:before, .ion-ios-minus:before, .ion-ios-minus-empty:before, .ion-ios-minus-outline:before, .ion-ios-monitor:before, .ion-ios-monitor-outline:before, .ion-ios-moon:before, .ion-ios-moon-outline:before, .ion-ios-more:before, .ion-ios-more-outline:before, .ion-ios-musical-note:before, .ion-ios-musical-notes:before, .ion-ios-navigate:before, .ion-ios-navigate-outline:before, .ion-ios-nutrition:before, .ion-ios-nutrition-outline:before, .ion-ios-paper:before, .ion-ios-paper-outline:before, .ion-ios-paperplane:before, .ion-ios-paperplane-outline:before, .ion-ios-partlysunny:before, .ion-ios-partlysunny-outline:before, .ion-ios-pause:before, .ion-ios-pause-outline:before, .ion-ios-paw:before, .ion-ios-paw-outline:before, .ion-ios-people:before, .ion-ios-people-outline:before, .ion-ios-person:before, .ion-ios-person-outline:before, .ion-ios-personadd:before, .ion-ios-personadd-outline:before, .ion-ios-photos:before, .ion-ios-photos-outline:before, .ion-ios-pie:before, .ion-ios-pie-outline:before, .ion-ios-pint:before, .ion-ios-pint-outline:before, .ion-ios-play:before, .ion-ios-play-outline:before, .ion-ios-plus:before, .ion-ios-plus-empty:before, .ion-ios-plus-outline:before, .ion-ios-pricetag:before, .ion-ios-pricetag-outline:before, .ion-ios-pricetags:before, .ion-ios-pricetags-outline:before, .ion-ios-printer:before, .ion-ios-printer-outline:before, .ion-ios-pulse:before, .ion-ios-pulse-strong:before, .ion-ios-rainy:before, .ion-ios-rainy-outline:before, .ion-ios-recording:before, .ion-ios-recording-outline:before, .ion-ios-redo:before, .ion-ios-redo-outline:before, .ion-ios-refresh:before, .ion-ios-refresh-empty:before, .ion-ios-refresh-outline:before, .ion-ios-reload:before, .ion-ios-reverse-camera:before, .ion-ios-reverse-camera-outline:before, .ion-ios-rewind:before, .ion-ios-rewind-outline:before, .ion-ios-rose:before, .ion-ios-rose-outline:before, .ion-ios-search:before, .ion-ios-search-strong:before, .ion-ios-settings:before, .ion-ios-settings-strong:before, .ion-ios-shuffle:before, .ion-ios-shuffle-strong:before, .ion-ios-skipbackward:before, .ion-ios-skipbackward-outline:before, .ion-ios-skipforward:before, .ion-ios-skipforward-outline:before, .ion-ios-snowy:before, .ion-ios-speedometer:before, .ion-ios-speedometer-outline:before, .ion-ios-star:before, .ion-ios-star-half:before, .ion-ios-star-outline:before, .ion-ios-stopwatch:before, .ion-ios-stopwatch-outline:before, .ion-ios-sunny:before, .ion-ios-sunny-outline:before, .ion-ios-telephone:before, .ion-ios-telephone-outline:before, .ion-ios-tennisball:before, .ion-ios-tennisball-outline:before, .ion-ios-thunderstorm:before, .ion-ios-thunderstorm-outline:before, .ion-ios-time:before, .ion-ios-time-outline:before, .ion-ios-timer:before, .ion-ios-timer-outline:before, .ion-ios-toggle:before, .ion-ios-toggle-outline:before, .ion-ios-trash:before, .ion-ios-trash-outline:before, .ion-ios-undo:before, .ion-ios-undo-outline:before, .ion-ios-unlocked:before, .ion-ios-unlocked-outline:before, .ion-ios-upload:before, .ion-ios-upload-outline:before, .ion-ios-videocam:before, .ion-ios-videocam-outline:before, .ion-ios-volume-high:before, .ion-ios-volume-low:before, .ion-ios-wineglass:before, .ion-ios-wineglass-outline:before, .ion-ios-world:before, .ion-ios-world-outline:before, .ion-ipad:before, .ion-iphone:before, .ion-ipod:before, .ion-jet:before, .ion-key:before, .ion-knife:before, .ion-laptop:before, .ion-leaf:before, .ion-levels:before, .ion-lightbulb:before, .ion-link:before, .ion-load-a:before, .ion-load-b:before, .ion-load-c:before, .ion-load-d:before, .ion-location:before, .ion-lock-combination:before, .ion-locked:before, .ion-log-in:before, .ion-log-out:before, .ion-loop:before, .ion-magnet:before, .ion-male:before, .ion-man:before, .ion-map:before, .ion-medkit:before, .ion-merge:before, .ion-mic-a:before, .ion-mic-b:before, .ion-mic-c:before, .ion-minus:before, .ion-minus-circled:before, .ion-minus-round:before, .ion-model-s:before, .ion-monitor:before, .ion-more:before, .ion-mouse:before, .ion-music-note:before, .ion-navicon:before, .ion-navicon-round:before, .ion-navigate:before, .ion-network:before, .ion-no-smoking:before, .ion-nuclear:before, .ion-outlet:before, .ion-paintbrush:before, .ion-paintbucket:before, .ion-paper-airplane:before, .ion-paperclip:before, .ion-pause:before, .ion-person:before, .ion-person-add:before, .ion-person-stalker:before, .ion-pie-graph:before, .ion-pin:before, .ion-pinpoint:before, .ion-pizza:before, .ion-plane:before, .ion-planet:before, .ion-play:before, .ion-playstation:before, .ion-plus:before, .ion-plus-circled:before, .ion-plus-round:before, .ion-podium:before, .ion-pound:before, .ion-power:before, .ion-pricetag:before, .ion-pricetags:before, .ion-printer:before, .ion-pull-request:before, .ion-qr-scanner:before, .ion-quote:before, .ion-radio-waves:before, .ion-record:before, .ion-refresh:before, .ion-reply:before, .ion-reply-all:before, .ion-ribbon-a:before, .ion-ribbon-b:before, .ion-sad:before, .ion-sad-outline:before, .ion-scissors:before, .ion-search:before, .ion-settings:before, .ion-share:before, .ion-shuffle:before, .ion-skip-backward:before, .ion-skip-forward:before, .ion-social-android:before, .ion-social-android-outline:before, .ion-social-angular:before, .ion-social-angular-outline:before, .ion-social-apple:before, .ion-social-apple-outline:before, .ion-social-bitcoin:before, .ion-social-bitcoin-outline:before, .ion-social-buffer:before, .ion-social-buffer-outline:before, .ion-social-chrome:before, .ion-social-chrome-outline:before, .ion-social-codepen:before, .ion-social-codepen-outline:before, .ion-social-css3:before, .ion-social-css3-outline:before, .ion-social-designernews:before, .ion-social-designernews-outline:before, .ion-social-dribbble:before, .ion-social-dribbble-outline:before, .ion-social-dropbox:before, .ion-social-dropbox-outline:before, .ion-social-euro:before, .ion-social-euro-outline:before, .ion-social-facebook:before, .ion-social-facebook-outline:before, .ion-social-foursquare:before, .ion-social-foursquare-outline:before, .ion-social-freebsd-devil:before, .ion-social-github:before, .ion-social-github-outline:before, .ion-social-google:before, .ion-social-google-outline:before, .ion-social-googleplus:before, .ion-social-googleplus-outline:before, .ion-social-hackernews:before, .ion-social-hackernews-outline:before, .ion-social-html5:before, .ion-social-html5-outline:before, .ion-social-instagram:before, .ion-social-instagram-outline:before, .ion-social-javascript:before, .ion-social-javascript-outline:before, .ion-social-linkedin:before, .ion-social-linkedin-outline:before, .ion-social-markdown:before, .ion-social-nodejs:before, .ion-social-octocat:before, .ion-social-pinterest:before, .ion-social-pinterest-outline:before, .ion-social-python:before, .ion-social-reddit:before, .ion-social-reddit-outline:before, .ion-social-rss:before, .ion-social-rss-outline:before, .ion-social-sass:before, .ion-social-skype:before, .ion-social-skype-outline:before, .ion-social-snapchat:before, .ion-social-snapchat-outline:before, .ion-social-tumblr:before, .ion-social-tumblr-outline:before, .ion-social-tux:before, .ion-social-twitch:before, .ion-social-twitch-outline:before, .ion-social-twitter:before, .ion-social-twitter-outline:before, .ion-social-usd:before, .ion-social-usd-outline:before, .ion-social-vimeo:before, .ion-social-vimeo-outline:before, .ion-social-whatsapp:before, .ion-social-whatsapp-outline:before, .ion-social-windows:before, .ion-social-windows-outline:before, .ion-social-wordpress:before, .ion-social-wordpress-outline:before, .ion-social-yahoo:before, .ion-social-yahoo-outline:before, .ion-social-yen:before, .ion-social-yen-outline:before, .ion-social-youtube:before, .ion-social-youtube-outline:before, .ion-soup-can:before, .ion-soup-can-outline:before, .ion-speakerphone:before, .ion-speedometer:before, .ion-spoon:before, .ion-star:before, .ion-stats-bars:before, .ion-steam:before, .ion-stop:before, .ion-thermometer:before, .ion-thumbsdown:before, .ion-thumbsup:before, .ion-toggle:before, .ion-toggle-filled:before, .ion-transgender:before, .ion-trash-a:before, .ion-trash-b:before, .ion-trophy:before, .ion-tshirt:before, .ion-tshirt-outline:before, .ion-umbrella:before, .ion-university:before, .ion-unlocked:before, .ion-upload:before, .ion-usb:before, .ion-videocamera:before, .ion-volume-high:before, .ion-volume-low:before, .ion-volume-medium:before, .ion-volume-mute:before, .ion-wand:before, .ion-waterdrop:before, .ion-wifi:before, .ion-wineglass:before, .ion-woman:before, .ion-wrench:before, .ion-xbox:before {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ion-alert:before {
  content: "\f101";
}

.ion-alert-circled:before {
  content: "\f100";
}

.ion-android-add:before {
  content: "\f2c7";
}

.ion-android-add-circle:before {
  content: "\f359";
}

.ion-android-alarm-clock:before {
  content: "\f35a";
}

.ion-android-alert:before {
  content: "\f35b";
}

.ion-android-apps:before {
  content: "\f35c";
}

.ion-android-archive:before {
  content: "\f2c9";
}

.ion-android-arrow-back:before {
  content: "\f2ca";
}

.ion-android-arrow-down:before {
  content: "\f35d";
}

.ion-android-arrow-dropdown:before {
  content: "\f35f";
}

.ion-android-arrow-dropdown-circle:before {
  content: "\f35e";
}

.ion-android-arrow-dropleft:before {
  content: "\f361";
}

.ion-android-arrow-dropleft-circle:before {
  content: "\f360";
}

.ion-android-arrow-dropright:before {
  content: "\f363";
}

.ion-android-arrow-dropright-circle:before {
  content: "\f362";
}

.ion-android-arrow-dropup:before {
  content: "\f365";
}

.ion-android-arrow-dropup-circle:before {
  content: "\f364";
}

.ion-android-arrow-forward:before {
  content: "\f30f";
}

.ion-android-arrow-up:before {
  content: "\f366";
}

.ion-android-attach:before {
  content: "\f367";
}

.ion-android-bar:before {
  content: "\f368";
}

.ion-android-bicycle:before {
  content: "\f369";
}

.ion-android-boat:before {
  content: "\f36a";
}

.ion-android-bookmark:before {
  content: "\f36b";
}

.ion-android-bulb:before {
  content: "\f36c";
}

.ion-android-bus:before {
  content: "\f36d";
}

.ion-android-calendar:before {
  content: "\f2d1";
}

.ion-android-call:before {
  content: "\f2d2";
}

.ion-android-camera:before {
  content: "\f2d3";
}

.ion-android-cancel:before {
  content: "\f36e";
}

.ion-android-car:before {
  content: "\f36f";
}

.ion-android-cart:before {
  content: "\f370";
}

.ion-android-chat:before {
  content: "\f2d4";
}

.ion-android-checkbox:before {
  content: "\f374";
}

.ion-android-checkbox-blank:before {
  content: "\f371";
}

.ion-android-checkbox-outline:before {
  content: "\f373";
}

.ion-android-checkbox-outline-blank:before {
  content: "\f372";
}

.ion-android-checkmark-circle:before {
  content: "\f375";
}

.ion-android-clipboard:before {
  content: "\f376";
}

.ion-android-close:before {
  content: "\f2d7";
}

.ion-android-cloud:before {
  content: "\f37a";
}

.ion-android-cloud-circle:before {
  content: "\f377";
}

.ion-android-cloud-done:before {
  content: "\f378";
}

.ion-android-cloud-outline:before {
  content: "\f379";
}

.ion-android-color-palette:before {
  content: "\f37b";
}

.ion-android-compass:before {
  content: "\f37c";
}

.ion-android-contact:before {
  content: "\f2d8";
}

.ion-android-contacts:before {
  content: "\f2d9";
}

.ion-android-contract:before {
  content: "\f37d";
}

.ion-android-create:before {
  content: "\f37e";
}

.ion-android-delete:before {
  content: "\f37f";
}

.ion-android-desktop:before {
  content: "\f380";
}

.ion-android-document:before {
  content: "\f381";
}

.ion-android-done:before {
  content: "\f383";
}

.ion-android-done-all:before {
  content: "\f382";
}

.ion-android-download:before {
  content: "\f2dd";
}

.ion-android-drafts:before {
  content: "\f384";
}

.ion-android-exit:before {
  content: "\f385";
}

.ion-android-expand:before {
  content: "\f386";
}

.ion-android-favorite:before {
  content: "\f388";
}

.ion-android-favorite-outline:before {
  content: "\f387";
}

.ion-android-film:before {
  content: "\f389";
}

.ion-android-folder:before {
  content: "\f2e0";
}

.ion-android-folder-open:before {
  content: "\f38a";
}

.ion-android-funnel:before {
  content: "\f38b";
}

.ion-android-globe:before {
  content: "\f38c";
}

.ion-android-hand:before {
  content: "\f2e3";
}

.ion-android-hangout:before {
  content: "\f38d";
}

.ion-android-happy:before {
  content: "\f38e";
}

.ion-android-home:before {
  content: "\f38f";
}

.ion-android-image:before {
  content: "\f2e4";
}

.ion-android-laptop:before {
  content: "\f390";
}

.ion-android-list:before {
  content: "\f391";
}

.ion-android-locate:before {
  content: "\f2e9";
}

.ion-android-lock:before {
  content: "\f392";
}

.ion-android-mail:before {
  content: "\f2eb";
}

.ion-android-map:before {
  content: "\f393";
}

.ion-android-menu:before {
  content: "\f394";
}

.ion-android-microphone:before {
  content: "\f2ec";
}

.ion-android-microphone-off:before {
  content: "\f395";
}

.ion-android-more-horizontal:before {
  content: "\f396";
}

.ion-android-more-vertical:before {
  content: "\f397";
}

.ion-android-navigate:before {
  content: "\f398";
}

.ion-android-notifications:before {
  content: "\f39b";
}

.ion-android-notifications-none:before {
  content: "\f399";
}

.ion-android-notifications-off:before {
  content: "\f39a";
}

.ion-android-open:before {
  content: "\f39c";
}

.ion-android-options:before {
  content: "\f39d";
}

.ion-android-people:before {
  content: "\f39e";
}

.ion-android-person:before {
  content: "\f3a0";
}

.ion-android-person-add:before {
  content: "\f39f";
}

.ion-android-phone-landscape:before {
  content: "\f3a1";
}

.ion-android-phone-portrait:before {
  content: "\f3a2";
}

.ion-android-pin:before {
  content: "\f3a3";
}

.ion-android-plane:before {
  content: "\f3a4";
}

.ion-android-playstore:before {
  content: "\f2f0";
}

.ion-android-print:before {
  content: "\f3a5";
}

.ion-android-radio-button-off:before {
  content: "\f3a6";
}

.ion-android-radio-button-on:before {
  content: "\f3a7";
}

.ion-android-refresh:before {
  content: "\f3a8";
}

.ion-android-remove:before {
  content: "\f2f4";
}

.ion-android-remove-circle:before {
  content: "\f3a9";
}

.ion-android-restaurant:before {
  content: "\f3aa";
}

.ion-android-sad:before {
  content: "\f3ab";
}

.ion-android-search:before {
  content: "\f2f5";
}

.ion-android-send:before {
  content: "\f2f6";
}

.ion-android-settings:before {
  content: "\f2f7";
}

.ion-android-share:before {
  content: "\f2f8";
}

.ion-android-share-alt:before {
  content: "\f3ac";
}

.ion-android-star:before {
  content: "\f2fc";
}

.ion-android-star-half:before {
  content: "\f3ad";
}

.ion-android-star-outline:before {
  content: "\f3ae";
}

.ion-android-stopwatch:before {
  content: "\f2fd";
}

.ion-android-subway:before {
  content: "\f3af";
}

.ion-android-sunny:before {
  content: "\f3b0";
}

.ion-android-sync:before {
  content: "\f3b1";
}

.ion-android-textsms:before {
  content: "\f3b2";
}

.ion-android-time:before {
  content: "\f3b3";
}

.ion-android-train:before {
  content: "\f3b4";
}

.ion-android-unlock:before {
  content: "\f3b5";
}

.ion-android-upload:before {
  content: "\f3b6";
}

.ion-android-volume-down:before {
  content: "\f3b7";
}

.ion-android-volume-mute:before {
  content: "\f3b8";
}

.ion-android-volume-off:before {
  content: "\f3b9";
}

.ion-android-volume-up:before {
  content: "\f3ba";
}

.ion-android-walk:before {
  content: "\f3bb";
}

.ion-android-warning:before {
  content: "\f3bc";
}

.ion-android-watch:before {
  content: "\f3bd";
}

.ion-android-wifi:before {
  content: "\f305";
}

.ion-aperture:before {
  content: "\f313";
}

.ion-archive:before {
  content: "\f102";
}

.ion-arrow-down-a:before {
  content: "\f103";
}

.ion-arrow-down-b:before {
  content: "\f104";
}

.ion-arrow-down-c:before {
  content: "\f105";
}

.ion-arrow-expand:before {
  content: "\f25e";
}

.ion-arrow-graph-down-left:before {
  content: "\f25f";
}

.ion-arrow-graph-down-right:before {
  content: "\f260";
}

.ion-arrow-graph-up-left:before {
  content: "\f261";
}

.ion-arrow-graph-up-right:before {
  content: "\f262";
}

.ion-arrow-left-a:before {
  content: "\f106";
}

.ion-arrow-left-b:before {
  content: "\f107";
}

.ion-arrow-left-c:before {
  content: "\f108";
}

.ion-arrow-move:before {
  content: "\f263";
}

.ion-arrow-resize:before {
  content: "\f264";
}

.ion-arrow-return-left:before {
  content: "\f265";
}

.ion-arrow-return-right:before {
  content: "\f266";
}

.ion-arrow-right-a:before {
  content: "\f109";
}

.ion-arrow-right-b:before {
  content: "\f10a";
}

.ion-arrow-right-c:before {
  content: "\f10b";
}

.ion-arrow-shrink:before {
  content: "\f267";
}

.ion-arrow-swap:before {
  content: "\f268";
}

.ion-arrow-up-a:before {
  content: "\f10c";
}

.ion-arrow-up-b:before {
  content: "\f10d";
}

.ion-arrow-up-c:before {
  content: "\f10e";
}

.ion-asterisk:before {
  content: "\f314";
}

.ion-at:before {
  content: "\f10f";
}

.ion-backspace:before {
  content: "\f3bf";
}

.ion-backspace-outline:before {
  content: "\f3be";
}

.ion-bag:before {
  content: "\f110";
}

.ion-battery-charging:before {
  content: "\f111";
}

.ion-battery-empty:before {
  content: "\f112";
}

.ion-battery-full:before {
  content: "\f113";
}

.ion-battery-half:before {
  content: "\f114";
}

.ion-battery-low:before {
  content: "\f115";
}

.ion-beaker:before {
  content: "\f269";
}

.ion-beer:before {
  content: "\f26a";
}

.ion-bluetooth:before {
  content: "\f116";
}

.ion-bonfire:before {
  content: "\f315";
}

.ion-bookmark:before {
  content: "\f26b";
}

.ion-bowtie:before {
  content: "\f3c0";
}

.ion-briefcase:before {
  content: "\f26c";
}

.ion-bug:before {
  content: "\f2be";
}

.ion-calculator:before {
  content: "\f26d";
}

.ion-calendar:before {
  content: "\f117";
}

.ion-camera:before {
  content: "\f118";
}

.ion-card:before {
  content: "\f119";
}

.ion-cash:before {
  content: "\f316";
}

.ion-chatbox:before {
  content: "\f11b";
}

.ion-chatbox-working:before {
  content: "\f11a";
}

.ion-chatboxes:before {
  content: "\f11c";
}

.ion-chatbubble:before {
  content: "\f11e";
}

.ion-chatbubble-working:before {
  content: "\f11d";
}

.ion-chatbubbles:before {
  content: "\f11f";
}

.ion-checkmark:before {
  content: "\f122";
}

.ion-checkmark-circled:before {
  content: "\f120";
}

.ion-checkmark-round:before {
  content: "\f121";
}

.ion-chevron-down:before {
  content: "\f123";
}

.ion-chevron-left:before {
  content: "\f124";
}

.ion-chevron-right:before {
  content: "\f125";
}

.ion-chevron-up:before {
  content: "\f126";
}

.ion-clipboard:before {
  content: "\f127";
}

.ion-clock:before {
  content: "\f26e";
}

.ion-close:before {
  content: "\f12a";
}

.ion-close-circled:before {
  content: "\f128";
}

.ion-close-round:before {
  content: "\f129";
}

.ion-closed-captioning:before {
  content: "\f317";
}

.ion-cloud:before {
  content: "\f12b";
}

.ion-code:before {
  content: "\f271";
}

.ion-code-download:before {
  content: "\f26f";
}

.ion-code-working:before {
  content: "\f270";
}

.ion-coffee:before {
  content: "\f272";
}

.ion-compass:before {
  content: "\f273";
}

.ion-compose:before {
  content: "\f12c";
}

.ion-connection-bars:before {
  content: "\f274";
}

.ion-contrast:before {
  content: "\f275";
}

.ion-crop:before {
  content: "\f3c1";
}

.ion-cube:before {
  content: "\f318";
}

.ion-disc:before {
  content: "\f12d";
}

.ion-document:before {
  content: "\f12f";
}

.ion-document-text:before {
  content: "\f12e";
}

.ion-drag:before {
  content: "\f130";
}

.ion-earth:before {
  content: "\f276";
}

.ion-easel:before {
  content: "\f3c2";
}

.ion-edit:before {
  content: "\f2bf";
}

.ion-egg:before {
  content: "\f277";
}

.ion-eject:before {
  content: "\f131";
}

.ion-email:before {
  content: "\f132";
}

.ion-email-unread:before {
  content: "\f3c3";
}

.ion-erlenmeyer-flask:before {
  content: "\f3c5";
}

.ion-erlenmeyer-flask-bubbles:before {
  content: "\f3c4";
}

.ion-eye:before {
  content: "\f133";
}

.ion-eye-disabled:before {
  content: "\f306";
}

.ion-female:before {
  content: "\f278";
}

.ion-filing:before {
  content: "\f134";
}

.ion-film-marker:before {
  content: "\f135";
}

.ion-fireball:before {
  content: "\f319";
}

.ion-flag:before {
  content: "\f279";
}

.ion-flame:before {
  content: "\f31a";
}

.ion-flash:before {
  content: "\f137";
}

.ion-flash-off:before {
  content: "\f136";
}

.ion-folder:before {
  content: "\f139";
}

.ion-fork:before {
  content: "\f27a";
}

.ion-fork-repo:before {
  content: "\f2c0";
}

.ion-forward:before {
  content: "\f13a";
}

.ion-funnel:before {
  content: "\f31b";
}

.ion-gear-a:before {
  content: "\f13d";
}

.ion-gear-b:before {
  content: "\f13e";
}

.ion-grid:before {
  content: "\f13f";
}

.ion-hammer:before {
  content: "\f27b";
}

.ion-happy:before {
  content: "\f31c";
}

.ion-happy-outline:before {
  content: "\f3c6";
}

.ion-headphone:before {
  content: "\f140";
}

.ion-heart:before {
  content: "\f141";
}

.ion-heart-broken:before {
  content: "\f31d";
}

.ion-help:before {
  content: "\f143";
}

.ion-help-buoy:before {
  content: "\f27c";
}

.ion-help-circled:before {
  content: "\f142";
}

.ion-home:before {
  content: "\f144";
}

.ion-icecream:before {
  content: "\f27d";
}

.ion-image:before {
  content: "\f147";
}

.ion-images:before {
  content: "\f148";
}

.ion-information:before {
  content: "\f14a";
}

.ion-information-circled:before {
  content: "\f149";
}

.ion-ionic:before {
  content: "\f14b";
}

.ion-ios-alarm:before {
  content: "\f3c8";
}

.ion-ios-alarm-outline:before {
  content: "\f3c7";
}

.ion-ios-albums:before {
  content: "\f3ca";
}

.ion-ios-albums-outline:before {
  content: "\f3c9";
}

.ion-ios-americanfootball:before {
  content: "\f3cc";
}

.ion-ios-americanfootball-outline:before {
  content: "\f3cb";
}

.ion-ios-analytics:before {
  content: "\f3ce";
}

.ion-ios-analytics-outline:before {
  content: "\f3cd";
}

.ion-ios-arrow-back:before {
  content: "\f3cf";
}

.ion-ios-arrow-down:before {
  content: "\f3d0";
}

.ion-ios-arrow-forward:before {
  content: "\f3d1";
}

.ion-ios-arrow-left:before {
  content: "\f3d2";
}

.ion-ios-arrow-right:before {
  content: "\f3d3";
}

.ion-ios-arrow-thin-down:before {
  content: "\f3d4";
}

.ion-ios-arrow-thin-left:before {
  content: "\f3d5";
}

.ion-ios-arrow-thin-right:before {
  content: "\f3d6";
}

.ion-ios-arrow-thin-up:before {
  content: "\f3d7";
}

.ion-ios-arrow-up:before {
  content: "\f3d8";
}

.ion-ios-at:before {
  content: "\f3da";
}

.ion-ios-at-outline:before {
  content: "\f3d9";
}

.ion-ios-barcode:before {
  content: "\f3dc";
}

.ion-ios-barcode-outline:before {
  content: "\f3db";
}

.ion-ios-baseball:before {
  content: "\f3de";
}

.ion-ios-baseball-outline:before {
  content: "\f3dd";
}

.ion-ios-basketball:before {
  content: "\f3e0";
}

.ion-ios-basketball-outline:before {
  content: "\f3df";
}

.ion-ios-bell:before {
  content: "\f3e2";
}

.ion-ios-bell-outline:before {
  content: "\f3e1";
}

.ion-ios-body:before {
  content: "\f3e4";
}

.ion-ios-body-outline:before {
  content: "\f3e3";
}

.ion-ios-bolt:before {
  content: "\f3e6";
}

.ion-ios-bolt-outline:before {
  content: "\f3e5";
}

.ion-ios-book:before {
  content: "\f3e8";
}

.ion-ios-book-outline:before {
  content: "\f3e7";
}

.ion-ios-bookmarks:before {
  content: "\f3ea";
}

.ion-ios-bookmarks-outline:before {
  content: "\f3e9";
}

.ion-ios-box:before {
  content: "\f3ec";
}

.ion-ios-box-outline:before {
  content: "\f3eb";
}

.ion-ios-briefcase:before {
  content: "\f3ee";
}

.ion-ios-briefcase-outline:before {
  content: "\f3ed";
}

.ion-ios-browsers:before {
  content: "\f3f0";
}

.ion-ios-browsers-outline:before {
  content: "\f3ef";
}

.ion-ios-calculator:before {
  content: "\f3f2";
}

.ion-ios-calculator-outline:before {
  content: "\f3f1";
}

.ion-ios-calendar:before {
  content: "\f3f4";
}

.ion-ios-calendar-outline:before {
  content: "\f3f3";
}

.ion-ios-camera:before {
  content: "\f3f6";
}

.ion-ios-camera-outline:before {
  content: "\f3f5";
}

.ion-ios-cart:before {
  content: "\f3f8";
}

.ion-ios-cart-outline:before {
  content: "\f3f7";
}

.ion-ios-chatboxes:before {
  content: "\f3fa";
}

.ion-ios-chatboxes-outline:before {
  content: "\f3f9";
}

.ion-ios-chatbubble:before {
  content: "\f3fc";
}

.ion-ios-chatbubble-outline:before {
  content: "\f3fb";
}

.ion-ios-checkmark:before {
  content: "\f3ff";
}

.ion-ios-checkmark-empty:before {
  content: "\f3fd";
}

.ion-ios-checkmark-outline:before {
  content: "\f3fe";
}

.ion-ios-circle-filled:before {
  content: "\f400";
}

.ion-ios-circle-outline:before {
  content: "\f401";
}

.ion-ios-clock:before {
  content: "\f403";
}

.ion-ios-clock-outline:before {
  content: "\f402";
}

.ion-ios-close:before {
  content: "\f406";
}

.ion-ios-close-empty:before {
  content: "\f404";
}

.ion-ios-close-outline:before {
  content: "\f405";
}

.ion-ios-cloud:before {
  content: "\f40c";
}

.ion-ios-cloud-download:before {
  content: "\f408";
}

.ion-ios-cloud-download-outline:before {
  content: "\f407";
}

.ion-ios-cloud-outline:before {
  content: "\f409";
}

.ion-ios-cloud-upload:before {
  content: "\f40b";
}

.ion-ios-cloud-upload-outline:before {
  content: "\f40a";
}

.ion-ios-cloudy:before {
  content: "\f410";
}

.ion-ios-cloudy-night:before {
  content: "\f40e";
}

.ion-ios-cloudy-night-outline:before {
  content: "\f40d";
}

.ion-ios-cloudy-outline:before {
  content: "\f40f";
}

.ion-ios-cog:before {
  content: "\f412";
}

.ion-ios-cog-outline:before {
  content: "\f411";
}

.ion-ios-color-filter:before {
  content: "\f414";
}

.ion-ios-color-filter-outline:before {
  content: "\f413";
}

.ion-ios-color-wand:before {
  content: "\f416";
}

.ion-ios-color-wand-outline:before {
  content: "\f415";
}

.ion-ios-compose:before {
  content: "\f418";
}

.ion-ios-compose-outline:before {
  content: "\f417";
}

.ion-ios-contact:before {
  content: "\f41a";
}

.ion-ios-contact-outline:before {
  content: "\f419";
}

.ion-ios-copy:before {
  content: "\f41c";
}

.ion-ios-copy-outline:before {
  content: "\f41b";
}

.ion-ios-crop:before {
  content: "\f41e";
}

.ion-ios-crop-strong:before {
  content: "\f41d";
}

.ion-ios-download:before {
  content: "\f420";
}

.ion-ios-download-outline:before {
  content: "\f41f";
}

.ion-ios-drag:before {
  content: "\f421";
}

.ion-ios-email:before {
  content: "\f423";
}

.ion-ios-email-outline:before {
  content: "\f422";
}

.ion-ios-eye:before {
  content: "\f425";
}

.ion-ios-eye-outline:before {
  content: "\f424";
}

.ion-ios-fastforward:before {
  content: "\f427";
}

.ion-ios-fastforward-outline:before {
  content: "\f426";
}

.ion-ios-filing:before {
  content: "\f429";
}

.ion-ios-filing-outline:before {
  content: "\f428";
}

.ion-ios-film:before {
  content: "\f42b";
}

.ion-ios-film-outline:before {
  content: "\f42a";
}

.ion-ios-flag:before {
  content: "\f42d";
}

.ion-ios-flag-outline:before {
  content: "\f42c";
}

.ion-ios-flame:before {
  content: "\f42f";
}

.ion-ios-flame-outline:before {
  content: "\f42e";
}

.ion-ios-flask:before {
  content: "\f431";
}

.ion-ios-flask-outline:before {
  content: "\f430";
}

.ion-ios-flower:before {
  content: "\f433";
}

.ion-ios-flower-outline:before {
  content: "\f432";
}

.ion-ios-folder:before {
  content: "\f435";
}

.ion-ios-folder-outline:before {
  content: "\f434";
}

.ion-ios-football:before {
  content: "\f437";
}

.ion-ios-football-outline:before {
  content: "\f436";
}

.ion-ios-game-controller-a:before {
  content: "\f439";
}

.ion-ios-game-controller-a-outline:before {
  content: "\f438";
}

.ion-ios-game-controller-b:before {
  content: "\f43b";
}

.ion-ios-game-controller-b-outline:before {
  content: "\f43a";
}

.ion-ios-gear:before {
  content: "\f43d";
}

.ion-ios-gear-outline:before {
  content: "\f43c";
}

.ion-ios-glasses:before {
  content: "\f43f";
}

.ion-ios-glasses-outline:before {
  content: "\f43e";
}

.ion-ios-grid-view:before {
  content: "\f441";
}

.ion-ios-grid-view-outline:before {
  content: "\f440";
}

.ion-ios-heart:before {
  content: "\f443";
}

.ion-ios-heart-outline:before {
  content: "\f442";
}

.ion-ios-help:before {
  content: "\f446";
}

.ion-ios-help-empty:before {
  content: "\f444";
}

.ion-ios-help-outline:before {
  content: "\f445";
}

.ion-ios-home:before {
  content: "\f448";
}

.ion-ios-home-outline:before {
  content: "\f447";
}

.ion-ios-infinite:before {
  content: "\f44a";
}

.ion-ios-infinite-outline:before {
  content: "\f449";
}

.ion-ios-information:before {
  content: "\f44d";
}

.ion-ios-information-empty:before {
  content: "\f44b";
}

.ion-ios-information-outline:before {
  content: "\f44c";
}

.ion-ios-ionic-outline:before {
  content: "\f44e";
}

.ion-ios-keypad:before {
  content: "\f450";
}

.ion-ios-keypad-outline:before {
  content: "\f44f";
}

.ion-ios-lightbulb:before {
  content: "\f452";
}

.ion-ios-lightbulb-outline:before {
  content: "\f451";
}

.ion-ios-list:before {
  content: "\f454";
}

.ion-ios-list-outline:before {
  content: "\f453";
}

.ion-ios-location:before {
  content: "\f456";
}

.ion-ios-location-outline:before {
  content: "\f455";
}

.ion-ios-locked:before {
  content: "\f458";
}

.ion-ios-locked-outline:before {
  content: "\f457";
}

.ion-ios-loop:before {
  content: "\f45a";
}

.ion-ios-loop-strong:before {
  content: "\f459";
}

.ion-ios-medical:before {
  content: "\f45c";
}

.ion-ios-medical-outline:before {
  content: "\f45b";
}

.ion-ios-medkit:before {
  content: "\f45e";
}

.ion-ios-medkit-outline:before {
  content: "\f45d";
}

.ion-ios-mic:before {
  content: "\f461";
}

.ion-ios-mic-off:before {
  content: "\f45f";
}

.ion-ios-mic-outline:before {
  content: "\f460";
}

.ion-ios-minus:before {
  content: "\f464";
}

.ion-ios-minus-empty:before {
  content: "\f462";
}

.ion-ios-minus-outline:before {
  content: "\f463";
}

.ion-ios-monitor:before {
  content: "\f466";
}

.ion-ios-monitor-outline:before {
  content: "\f465";
}

.ion-ios-moon:before {
  content: "\f468";
}

.ion-ios-moon-outline:before {
  content: "\f467";
}

.ion-ios-more:before {
  content: "\f46a";
}

.ion-ios-more-outline:before {
  content: "\f469";
}

.ion-ios-musical-note:before {
  content: "\f46b";
}

.ion-ios-musical-notes:before {
  content: "\f46c";
}

.ion-ios-navigate:before {
  content: "\f46e";
}

.ion-ios-navigate-outline:before {
  content: "\f46d";
}

.ion-ios-nutrition:before {
  content: "\f470";
}

.ion-ios-nutrition-outline:before {
  content: "\f46f";
}

.ion-ios-paper:before {
  content: "\f472";
}

.ion-ios-paper-outline:before {
  content: "\f471";
}

.ion-ios-paperplane:before {
  content: "\f474";
}

.ion-ios-paperplane-outline:before {
  content: "\f473";
}

.ion-ios-partlysunny:before {
  content: "\f476";
}

.ion-ios-partlysunny-outline:before {
  content: "\f475";
}

.ion-ios-pause:before {
  content: "\f478";
}

.ion-ios-pause-outline:before {
  content: "\f477";
}

.ion-ios-paw:before {
  content: "\f47a";
}

.ion-ios-paw-outline:before {
  content: "\f479";
}

.ion-ios-people:before {
  content: "\f47c";
}

.ion-ios-people-outline:before {
  content: "\f47b";
}

.ion-ios-person:before {
  content: "\f47e";
}

.ion-ios-person-outline:before {
  content: "\f47d";
}

.ion-ios-personadd:before {
  content: "\f480";
}

.ion-ios-personadd-outline:before {
  content: "\f47f";
}

.ion-ios-photos:before {
  content: "\f482";
}

.ion-ios-photos-outline:before {
  content: "\f481";
}

.ion-ios-pie:before {
  content: "\f484";
}

.ion-ios-pie-outline:before {
  content: "\f483";
}

.ion-ios-pint:before {
  content: "\f486";
}

.ion-ios-pint-outline:before {
  content: "\f485";
}

.ion-ios-play:before {
  content: "\f488";
}

.ion-ios-play-outline:before {
  content: "\f487";
}

.ion-ios-plus:before {
  content: "\f48b";
}

.ion-ios-plus-empty:before {
  content: "\f489";
}

.ion-ios-plus-outline:before {
  content: "\f48a";
}

.ion-ios-pricetag:before {
  content: "\f48d";
}

.ion-ios-pricetag-outline:before {
  content: "\f48c";
}

.ion-ios-pricetags:before {
  content: "\f48f";
}

.ion-ios-pricetags-outline:before {
  content: "\f48e";
}

.ion-ios-printer:before {
  content: "\f491";
}

.ion-ios-printer-outline:before {
  content: "\f490";
}

.ion-ios-pulse:before {
  content: "\f493";
}

.ion-ios-pulse-strong:before {
  content: "\f492";
}

.ion-ios-rainy:before {
  content: "\f495";
}

.ion-ios-rainy-outline:before {
  content: "\f494";
}

.ion-ios-recording:before {
  content: "\f497";
}

.ion-ios-recording-outline:before {
  content: "\f496";
}

.ion-ios-redo:before {
  content: "\f499";
}

.ion-ios-redo-outline:before {
  content: "\f498";
}

.ion-ios-refresh:before {
  content: "\f49c";
}

.ion-ios-refresh-empty:before {
  content: "\f49a";
}

.ion-ios-refresh-outline:before {
  content: "\f49b";
}

.ion-ios-reload:before {
  content: "\f49d";
}

.ion-ios-reverse-camera:before {
  content: "\f49f";
}

.ion-ios-reverse-camera-outline:before {
  content: "\f49e";
}

.ion-ios-rewind:before {
  content: "\f4a1";
}

.ion-ios-rewind-outline:before {
  content: "\f4a0";
}

.ion-ios-rose:before {
  content: "\f4a3";
}

.ion-ios-rose-outline:before {
  content: "\f4a2";
}

.ion-ios-search:before {
  content: "\f4a5";
}

.ion-ios-search-strong:before {
  content: "\f4a4";
}

.ion-ios-settings:before {
  content: "\f4a7";
}

.ion-ios-settings-strong:before {
  content: "\f4a6";
}

.ion-ios-shuffle:before {
  content: "\f4a9";
}

.ion-ios-shuffle-strong:before {
  content: "\f4a8";
}

.ion-ios-skipbackward:before {
  content: "\f4ab";
}

.ion-ios-skipbackward-outline:before {
  content: "\f4aa";
}

.ion-ios-skipforward:before {
  content: "\f4ad";
}

.ion-ios-skipforward-outline:before {
  content: "\f4ac";
}

.ion-ios-snowy:before {
  content: "\f4ae";
}

.ion-ios-speedometer:before {
  content: "\f4b0";
}

.ion-ios-speedometer-outline:before {
  content: "\f4af";
}

.ion-ios-star:before {
  content: "\f4b3";
}

.ion-ios-star-half:before {
  content: "\f4b1";
}

.ion-ios-star-outline:before {
  content: "\f4b2";
}

.ion-ios-stopwatch:before {
  content: "\f4b5";
}

.ion-ios-stopwatch-outline:before {
  content: "\f4b4";
}

.ion-ios-sunny:before {
  content: "\f4b7";
}

.ion-ios-sunny-outline:before {
  content: "\f4b6";
}

.ion-ios-telephone:before {
  content: "\f4b9";
}

.ion-ios-telephone-outline:before {
  content: "\f4b8";
}

.ion-ios-tennisball:before {
  content: "\f4bb";
}

.ion-ios-tennisball-outline:before {
  content: "\f4ba";
}

.ion-ios-thunderstorm:before {
  content: "\f4bd";
}

.ion-ios-thunderstorm-outline:before {
  content: "\f4bc";
}

.ion-ios-time:before {
  content: "\f4bf";
}

.ion-ios-time-outline:before {
  content: "\f4be";
}

.ion-ios-timer:before {
  content: "\f4c1";
}

.ion-ios-timer-outline:before {
  content: "\f4c0";
}

.ion-ios-toggle:before {
  content: "\f4c3";
}

.ion-ios-toggle-outline:before {
  content: "\f4c2";
}

.ion-ios-trash:before {
  content: "\f4c5";
}

.ion-ios-trash-outline:before {
  content: "\f4c4";
}

.ion-ios-undo:before {
  content: "\f4c7";
}

.ion-ios-undo-outline:before {
  content: "\f4c6";
}

.ion-ios-unlocked:before {
  content: "\f4c9";
}

.ion-ios-unlocked-outline:before {
  content: "\f4c8";
}

.ion-ios-upload:before {
  content: "\f4cb";
}

.ion-ios-upload-outline:before {
  content: "\f4ca";
}

.ion-ios-videocam:before {
  content: "\f4cd";
}

.ion-ios-videocam-outline:before {
  content: "\f4cc";
}

.ion-ios-volume-high:before {
  content: "\f4ce";
}

.ion-ios-volume-low:before {
  content: "\f4cf";
}

.ion-ios-wineglass:before {
  content: "\f4d1";
}

.ion-ios-wineglass-outline:before {
  content: "\f4d0";
}

.ion-ios-world:before {
  content: "\f4d3";
}

.ion-ios-world-outline:before {
  content: "\f4d2";
}

.ion-ipad:before {
  content: "\f1f9";
}

.ion-iphone:before {
  content: "\f1fa";
}

.ion-ipod:before {
  content: "\f1fb";
}

.ion-jet:before {
  content: "\f295";
}

.ion-key:before {
  content: "\f296";
}

.ion-knife:before {
  content: "\f297";
}

.ion-laptop:before {
  content: "\f1fc";
}

.ion-leaf:before {
  content: "\f1fd";
}

.ion-levels:before {
  content: "\f298";
}

.ion-lightbulb:before {
  content: "\f299";
}

.ion-link:before {
  content: "\f1fe";
}

.ion-load-a:before {
  content: "\f29a";
}

.ion-load-b:before {
  content: "\f29b";
}

.ion-load-c:before {
  content: "\f29c";
}

.ion-load-d:before {
  content: "\f29d";
}

.ion-location:before {
  content: "\f1ff";
}

.ion-lock-combination:before {
  content: "\f4d4";
}

.ion-locked:before {
  content: "\f200";
}

.ion-log-in:before {
  content: "\f29e";
}

.ion-log-out:before {
  content: "\f29f";
}

.ion-loop:before {
  content: "\f201";
}

.ion-magnet:before {
  content: "\f2a0";
}

.ion-male:before {
  content: "\f2a1";
}

.ion-man:before {
  content: "\f202";
}

.ion-map:before {
  content: "\f203";
}

.ion-medkit:before {
  content: "\f2a2";
}

.ion-merge:before {
  content: "\f33f";
}

.ion-mic-a:before {
  content: "\f204";
}

.ion-mic-b:before {
  content: "\f205";
}

.ion-mic-c:before {
  content: "\f206";
}

.ion-minus:before {
  content: "\f209";
}

.ion-minus-circled:before {
  content: "\f207";
}

.ion-minus-round:before {
  content: "\f208";
}

.ion-model-s:before {
  content: "\f2c1";
}

.ion-monitor:before {
  content: "\f20a";
}

.ion-more:before {
  content: "\f20b";
}

.ion-mouse:before {
  content: "\f340";
}

.ion-music-note:before {
  content: "\f20c";
}

.ion-navicon:before {
  content: "\f20e";
}

.ion-navicon-round:before {
  content: "\f20d";
}

.ion-navigate:before {
  content: "\f2a3";
}

.ion-network:before {
  content: "\f341";
}

.ion-no-smoking:before {
  content: "\f2c2";
}

.ion-nuclear:before {
  content: "\f2a4";
}

.ion-outlet:before {
  content: "\f342";
}

.ion-paintbrush:before {
  content: "\f4d5";
}

.ion-paintbucket:before {
  content: "\f4d6";
}

.ion-paper-airplane:before {
  content: "\f2c3";
}

.ion-paperclip:before {
  content: "\f20f";
}

.ion-pause:before {
  content: "\f210";
}

.ion-person:before {
  content: "\f213";
}

.ion-person-add:before {
  content: "\f211";
}

.ion-person-stalker:before {
  content: "\f212";
}

.ion-pie-graph:before {
  content: "\f2a5";
}

.ion-pin:before {
  content: "\f2a6";
}

.ion-pinpoint:before {
  content: "\f2a7";
}

.ion-pizza:before {
  content: "\f2a8";
}

.ion-plane:before {
  content: "\f214";
}

.ion-planet:before {
  content: "\f343";
}

.ion-play:before {
  content: "\f215";
}

.ion-playstation:before {
  content: "\f30a";
}

.ion-plus:before {
  content: "\f218";
}

.ion-plus-circled:before {
  content: "\f216";
}

.ion-plus-round:before {
  content: "\f217";
}

.ion-podium:before {
  content: "\f344";
}

.ion-pound:before {
  content: "\f219";
}

.ion-power:before {
  content: "\f2a9";
}

.ion-pricetag:before {
  content: "\f2aa";
}

.ion-pricetags:before {
  content: "\f2ab";
}

.ion-printer:before {
  content: "\f21a";
}

.ion-pull-request:before {
  content: "\f345";
}

.ion-qr-scanner:before {
  content: "\f346";
}

.ion-quote:before {
  content: "\f347";
}

.ion-radio-waves:before {
  content: "\f2ac";
}

.ion-record:before {
  content: "\f21b";
}

.ion-refresh:before {
  content: "\f21c";
}

.ion-reply:before {
  content: "\f21e";
}

.ion-reply-all:before {
  content: "\f21d";
}

.ion-ribbon-a:before {
  content: "\f348";
}

.ion-ribbon-b:before {
  content: "\f349";
}

.ion-sad:before {
  content: "\f34a";
}

.ion-sad-outline:before {
  content: "\f4d7";
}

.ion-scissors:before {
  content: "\f34b";
}

.ion-search:before {
  content: "\f21f";
}

.ion-settings:before {
  content: "\f2ad";
}

.ion-share:before {
  content: "\f220";
}

.ion-shuffle:before {
  content: "\f221";
}

.ion-skip-backward:before {
  content: "\f222";
}

.ion-skip-forward:before {
  content: "\f223";
}

.ion-social-android:before {
  content: "\f225";
}

.ion-social-android-outline:before {
  content: "\f224";
}

.ion-social-angular:before {
  content: "\f4d9";
}

.ion-social-angular-outline:before {
  content: "\f4d8";
}

.ion-social-apple:before {
  content: "\f227";
}

.ion-social-apple-outline:before {
  content: "\f226";
}

.ion-social-bitcoin:before {
  content: "\f2af";
}

.ion-social-bitcoin-outline:before {
  content: "\f2ae";
}

.ion-social-buffer:before {
  content: "\f229";
}

.ion-social-buffer-outline:before {
  content: "\f228";
}

.ion-social-chrome:before {
  content: "\f4db";
}

.ion-social-chrome-outline:before {
  content: "\f4da";
}

.ion-social-codepen:before {
  content: "\f4dd";
}

.ion-social-codepen-outline:before {
  content: "\f4dc";
}

.ion-social-css3:before {
  content: "\f4df";
}

.ion-social-css3-outline:before {
  content: "\f4de";
}

.ion-social-designernews:before {
  content: "\f22b";
}

.ion-social-designernews-outline:before {
  content: "\f22a";
}

.ion-social-dribbble:before {
  content: "\f22d";
}

.ion-social-dribbble-outline:before {
  content: "\f22c";
}

.ion-social-dropbox:before {
  content: "\f22f";
}

.ion-social-dropbox-outline:before {
  content: "\f22e";
}

.ion-social-euro:before {
  content: "\f4e1";
}

.ion-social-euro-outline:before {
  content: "\f4e0";
}

.ion-social-facebook:before {
  content: "\f231";
}

.ion-social-facebook-outline:before {
  content: "\f230";
}

.ion-social-foursquare:before {
  content: "\f34d";
}

.ion-social-foursquare-outline:before {
  content: "\f34c";
}

.ion-social-freebsd-devil:before {
  content: "\f2c4";
}

.ion-social-github:before {
  content: "\f233";
}

.ion-social-github-outline:before {
  content: "\f232";
}

.ion-social-google:before {
  content: "\f34f";
}

.ion-social-google-outline:before {
  content: "\f34e";
}

.ion-social-googleplus:before {
  content: "\f235";
}

.ion-social-googleplus-outline:before {
  content: "\f234";
}

.ion-social-hackernews:before {
  content: "\f237";
}

.ion-social-hackernews-outline:before {
  content: "\f236";
}

.ion-social-html5:before {
  content: "\f4e3";
}

.ion-social-html5-outline:before {
  content: "\f4e2";
}

.ion-social-instagram:before {
  content: "\f351";
}

.ion-social-instagram-outline:before {
  content: "\f350";
}

.ion-social-javascript:before {
  content: "\f4e5";
}

.ion-social-javascript-outline:before {
  content: "\f4e4";
}

.ion-social-linkedin:before {
  content: "\f239";
}

.ion-social-linkedin-outline:before {
  content: "\f238";
}

.ion-social-markdown:before {
  content: "\f4e6";
}

.ion-social-nodejs:before {
  content: "\f4e7";
}

.ion-social-octocat:before {
  content: "\f4e8";
}

.ion-social-pinterest:before {
  content: "\f2b1";
}

.ion-social-pinterest-outline:before {
  content: "\f2b0";
}

.ion-social-python:before {
  content: "\f4e9";
}

.ion-social-reddit:before {
  content: "\f23b";
}

.ion-social-reddit-outline:before {
  content: "\f23a";
}

.ion-social-rss:before {
  content: "\f23d";
}

.ion-social-rss-outline:before {
  content: "\f23c";
}

.ion-social-sass:before {
  content: "\f4ea";
}

.ion-social-skype:before {
  content: "\f23f";
}

.ion-social-skype-outline:before {
  content: "\f23e";
}

.ion-social-snapchat:before {
  content: "\f4ec";
}

.ion-social-snapchat-outline:before {
  content: "\f4eb";
}

.ion-social-tumblr:before {
  content: "\f241";
}

.ion-social-tumblr-outline:before {
  content: "\f240";
}

.ion-social-tux:before {
  content: "\f2c5";
}

.ion-social-twitch:before {
  content: "\f4ee";
}

.ion-social-twitch-outline:before {
  content: "\f4ed";
}

.ion-social-twitter:before {
  content: "\f243";
}

.ion-social-twitter-outline:before {
  content: "\f242";
}

.ion-social-usd:before {
  content: "\f353";
}

.ion-social-usd-outline:before {
  content: "\f352";
}

.ion-social-vimeo:before {
  content: "\f245";
}

.ion-social-vimeo-outline:before {
  content: "\f244";
}

.ion-social-whatsapp:before {
  content: "\f4f0";
}

.ion-social-whatsapp-outline:before {
  content: "\f4ef";
}

.ion-social-windows:before {
  content: "\f247";
}

.ion-social-windows-outline:before {
  content: "\f246";
}

.ion-social-wordpress:before {
  content: "\f249";
}

.ion-social-wordpress-outline:before {
  content: "\f248";
}

.ion-social-yahoo:before {
  content: "\f24b";
}

.ion-social-yahoo-outline:before {
  content: "\f24a";
}

.ion-social-yen:before {
  content: "\f4f2";
}

.ion-social-yen-outline:before {
  content: "\f4f1";
}

.ion-social-youtube:before {
  content: "\f24d";
}

.ion-social-youtube-outline:before {
  content: "\f24c";
}

.ion-soup-can:before {
  content: "\f4f4";
}

.ion-soup-can-outline:before {
  content: "\f4f3";
}

.ion-speakerphone:before {
  content: "\f2b2";
}

.ion-speedometer:before {
  content: "\f2b3";
}

.ion-spoon:before {
  content: "\f2b4";
}

.ion-star:before {
  content: "\f24e";
}

.ion-stats-bars:before {
  content: "\f2b5";
}

.ion-steam:before {
  content: "\f30b";
}

.ion-stop:before {
  content: "\f24f";
}

.ion-thermometer:before {
  content: "\f2b6";
}

.ion-thumbsdown:before {
  content: "\f250";
}

.ion-thumbsup:before {
  content: "\f251";
}

.ion-toggle:before {
  content: "\f355";
}

.ion-toggle-filled:before {
  content: "\f354";
}

.ion-transgender:before {
  content: "\f4f5";
}

.ion-trash-a:before {
  content: "\f252";
}

.ion-trash-b:before {
  content: "\f253";
}

.ion-trophy:before {
  content: "\f356";
}

.ion-tshirt:before {
  content: "\f4f7";
}

.ion-tshirt-outline:before {
  content: "\f4f6";
}

.ion-umbrella:before {
  content: "\f2b7";
}

.ion-university:before {
  content: "\f357";
}

.ion-unlocked:before {
  content: "\f254";
}

.ion-upload:before {
  content: "\f255";
}

.ion-usb:before {
  content: "\f2b8";
}

.ion-videocamera:before {
  content: "\f256";
}

.ion-volume-high:before {
  content: "\f257";
}

.ion-volume-low:before {
  content: "\f258";
}

.ion-volume-medium:before {
  content: "\f259";
}

.ion-volume-mute:before {
  content: "\f25a";
}

.ion-wand:before {
  content: "\f358";
}

.ion-waterdrop:before {
  content: "\f25b";
}

.ion-wifi:before {
  content: "\f25c";
}

.ion-wineglass:before {
  content: "\f2b9";
}

.ion-woman:before {
  content: "\f25d";
}

.ion-wrench:before {
  content: "\f2ba";
}

.ion-xbox:before {
  content: "\f30c";
}

/*
	Custom Login
	Description: Style the WordPress Login page
*/
html body.login {
  min-height: 600px;
  display: flex;
  box-sizing: border-box;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/$secondary+0,082d35+100 */
  background: #0056a6; /* Old browsers */
  background: -moz-linear-gradient(-45deg, #0056a6 0%, #002140 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #0056a6 0%, #002140 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #0056a6 0%, #002140 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
html .login {
  /* Logo */
  /* Error Message */
  /* Other message */
}
html .login h1 {
  padding: 20px 0;
}
html .login h1 a {
  background: url(img/logo.png) no-repeat scroll 0 0 transparent;
  background-size: 125px auto;
  display: block;
  margin: 0 auto;
  width: 125px;
  padding: 0;
  height: 125px;
}
html .login #login_error {
  margin: 0 20px 20px !important;
  background: tomato !important;
  color: #fff;
  box-shadow: none !important;
  border: none;
}
html .login #login_error a {
  color: #fff;
}
html .login p.message {
  margin: 0 20px 20px;
  background: #86d81b !important;
  color: #fff;
  box-shadow: none !important;
  border: none;
}
html .login #nav {
  color: #211e1e !important;
  float: right;
  margin: 0;
  padding: 0 20px 20px 0;
  opacity: 0.7;
}
html .login #nav a {
  color: #211e1e !important;
  text-decoration: none !important;
}
html .login #nav a:hover {
  color: #211e1e !important;
  text-decoration: underline !important;
}
html .login #login {
  margin: auto;
  background: #fff;
  padding: 0;
  min-width: 425px !important;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
html .login #backtoblog {
  float: left;
  margin: 0;
  padding: 0 0 20px 20px;
  opacity: 0.7;
}
html .login #backtoblog a {
  color: #211e1e !important;
  text-decoration: none;
}
html .login #backtoblog a:hover {
  color: #211e1e !important;
  text-decoration: underline;
}
html .login form {
  background: none;
  padding: 0 24px 26px;
  margin-top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}
html .login form label {
  color: #211e1e;
  position: relative;
  content: "";
  display: block;
}
html .login form input[type=text],
html .login form input[type=password] {
  background: #f1f5f7;
  border: none;
  border-bottom: 1px solid #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #211e1e;
  padding: 15px 10px;
  margin-top: 5px;
  font-size: 16px;
}
html .login form label[for=user_login]:before {
  content: "\f110";
  font-family: dashicons;
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-right: 7px;
}
html .login form label[for=user_pass]:before {
  content: "\f160";
  font-family: dashicons;
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-right: 7px;
}
html .login form p.submit {
  display: flex;
  justify-content: flex-end;
}
html .login form p.submit #wp-submit {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 40px;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  background: #211e1e;
  border: none;
  cursor: pointer;
  text-shadow: none;
  margin-top: 15px;
  height: auto;
  box-shadow: none !important;
  border-radius: 4px;
}
html .forgetmenot {
  display: none;
}

/*
    404 Error Page
 */
section.four_o_four {
  padding: 80px 0;
}
section.four_o_four .four_o_four__page {
  max-width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 700px) {
  section.four_o_four .four_o_four__page {
    max-width: 100%;
  }
}
section.four_o_four .four_o_four__page .four_o_four__img {
  width: 300px;
  margin-bottom: 20px;
}
section.four_o_four .four_o_four__page h2 {
  font-size: 32px;
  color: #211e1e;
  padding-bottom: 15px;
}
section.four_o_four .four_o_four__page p {
  font-size: 16px;
  color: #211e1e;
  padding-bottom: 10px;
  line-height: 22px;
}

/*
    Search results
*/
section.search {
  margin-top: 40px;
}
section.search h2 {
  font-size: 22px;
  font-weight: 700;
  color: #211e1e;
  padding-bottom: 20px;
  text-align: left;
}
section.search h2 a {
  color: #211e1e;
}
section.search ul.site-search-results {
  margin: 0 0 20px;
  padding: 0;
  overflow: hidden;
}
section.search ul.site-search-results li {
  background: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px #f1f5f7 solid;
  overflow: hidden;
}
section.search ul.site-search-results li:last-child {
  border-bottom: none;
}
section.search ul.site-search-results li a {
  display: block;
  padding: 15px 75px 15px 10px;
  font-size: 18px;
  color: #211e1e;
  position: relative;
  line-height: 22px;
}
section.search ul.site-search-results li a:hover {
  color: #0056a6;
}
section.search ul.site-search-results li a span {
  display: block;
  font-size: 16px;
  color: #645b5b;
  text-transform: uppercase;
  padding-left: 20px;
  position: absolute;
  right: 15px;
  top: 20px;
}
@media (max-width: 400px) {
  section.search ul.site-search-results li a span {
    float: none;
    padding: 10px 0 0 0;
  }
}

/**

 * CSS3 Animations
 *
*/
/**
 * Fade
*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 0;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -25%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translate3d(0, -25%, 0);
  }
  to {
    opacity: 0;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0.2;
    transform: translate3d(8%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-8%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomScale {
  0% {
    transform: scale(1.2) rotate(0.02deg);
  }
  to {
    transform: scale(1) rotate(0.02deg);
  }
}
.is-loading {
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #ebf0f3;
  background: linear-gradient(to right, #ebf0f3 8%, #e4ecf0 24%, #ebf0f3 33%);
  background-size: 800px 104px;
  position: relative;
}
.is-loading.dark {
  background: #dee7ec;
  background: linear-gradient(to right, #dee7ec 8%, #cddce3 24%, #dee7ec 33%);
}

nav.header__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  nav.header__nav {
    flex: 2;
  }
}
nav.header__nav ul {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 1024px) {
  nav.header__nav ul {
    display: none;
  }
}
nav.header__nav ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 2px;
}
nav.header__nav ul li a {
  font-size: 16px;
  font-weight: normal;
  color: #211e1e;
  padding: 20px 10px;
  border-bottom: 4px transparent solid;
}
@media (max-width: 1200px) {
  nav.header__nav ul li a {
    font-size: 16px;
    padding: 20px 5px;
  }
}
nav.header__nav ul li:hover > ul {
  display: flex;
}
nav.header__nav ul li:hover > a {
  opacity: 0.7;
  border-bottom: 4px rgba(255, 255, 255, 0.6) solid;
}
nav.header__nav ul li.menu-item-has-children:hover {
  background: #fff;
  border-radius: 4px 4px 0 0;
}
nav.header__nav ul li.menu-item-has-children:hover > a {
  color: #0056a6;
  opacity: 1;
}
nav.header__nav ul li.current_page_parent > a, nav.header__nav ul li.current-menu-item > a {
  color: #0056a6;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 4px #0056a6 solid;
}
nav.header__nav ul li.current_page_parent.menu-item-has-children:hover > a, nav.header__nav ul li.current-menu-item.menu-item-has-children:hover > a {
  border-bottom: none;
}
nav.header__nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0;
  width: 100%;
  min-width: 250px;
  background: #fff;
  z-index: 3;
  text-align: left;
  border-radius: 0 4px 4px 4px;
  padding: 10px;
  display: none;
  flex-direction: column;
  box-shadow: 0 12px 13px rgba(0, 0, 0, 0.3);
}
nav.header__nav ul li ul li {
  margin: 0;
  border-top: none;
}
nav.header__nav ul li ul li a {
  color: #211e1e;
  font-size: 15px;
  padding: 6px;
  border-bottom: none;
  opacity: 1;
  display: block;
}
nav.header__nav ul li ul li.current-menu-item a {
  color: #211e1e;
  display: block;
  border-bottom: none;
}
nav.header__nav ul li ul li.current-menu-item a:after {
  display: none;
}
nav.header__nav ul li ul li:hover > a {
  color: #211e1e;
  border-bottom: none;
  opacity: 1;
}
nav.header__nav ul li ul li ul {
  top: 0;
  left: 100%;
  background: rgba(33, 30, 30, 0.9);
}
nav.header__nav a.nav__button {
  font-weight: 900;
  display: flex;
  background: #fff;
  transition-duration: 0.4s;
  padding: 12px 20px 10px;
  border-radius: 50px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  color: #211e1e;
  margin-left: 20px;
}
@media (max-width: 1200px) {
  nav.header__nav a.nav__button {
    padding: 12px 15px 10px;
    font-size: 11px;
  }
}
@media (max-width: 550px) {
  nav.header__nav a.nav__button {
    min-width: 78px;
  }
}
nav.header__nav a.nav__button:hover {
  transition-duration: 0.4s;
  background: #0056a6;
}

/* Mega Menu */
.mega-menu {
  display: none;
  position: fixed;
  z-index: 99999 !important;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background: rgba(33, 30, 30, 0.95);
  z-index: 24;
  padding: 50px 50px 30px 30px;
  box-sizing: border-box;
}
.mega-menu a.button-close {
  color: #0056a6;
  background: #FFFFFE;
  position: absolute;
  left: 33px;
  top: 12px;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.mega-menu a.button-close i {
  font-size: 1rem;
  color: #211e1e;
  padding-right: 13px;
}
.mega-menu .menu-content {
  display: flex;
  margin-top: 40px;
}
.mega-menu .menu-content .menu-wrap {
  width: 30%;
}
.mega-menu .menu-content .menu-wrap ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mega-menu .menu-content .menu-wrap ul li {
  float: left;
  box-sizing: border-box;
  list-style: none;
  padding: 0 20px 15px;
}
@media (max-width: 800px) {
  .mega-menu .menu-content .menu-wrap ul li {
    width: 100%;
    padding: 10px 0;
  }
}
.mega-menu .menu-content .menu-wrap ul li a {
  font-size: 20px;
  color: #FFFFFE;
  text-transform: uppercase;
}
.mega-menu .menu-content .menu-wrap ul li a:hover {
  transition: 0.3s ease-in-out all;
  text-decoration: underline;
}
.mega-menu .menu-content .menu-wrap ul li ul {
  margin: 20px 0 0;
}
.mega-menu .menu-content .menu-wrap ul li ul li {
  float: none;
  width: auto;
  padding-bottom: 10px;
}
.mega-menu .menu-content .menu-wrap ul li ul li a {
  color: #FFFFFE;
  font-size: 17px;
  text-transform: none;
}
.mega-menu .menu-content .menu-wrap ul li ul li a:hover {
  color: #0056a6;
}
.mega-menu .menu-content .menu-info {
  width: 70%;
}
.mega-menu .menu-content .menu-info .avb__apf__search .max__width {
  padding: 0;
}
.mega-menu .menu-content .menu-info .menu-boxes {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}
.mega-menu .menu-content .menu-info .menu-boxes .grid {
  display: flex;
  flex-wrap: wrap;
}
.mega-menu .menu-content .menu-info .menu-boxes .grid a {
  flex: 1 0 250px;
  width: 50%;
  transition: 0.5s ease all;
}
.mega-menu .menu-content .menu-info .menu-boxes .grid a:hover .menu-box {
  background: #211e1e;
  border: 2px solid #211e1e;
}
.mega-menu .menu-content .menu-info .menu-boxes .grid a:hover .menu-box p {
  color: white;
}
.mega-menu .menu-content .menu-info .menu-boxes .grid a .menu-box {
  height: 100px;
  background: #0056a6;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #211e1e;
}
.mega-menu .menu-content .menu-info .menu-boxes .grid a .menu-box p {
  color: #211e1e;
}
.mega-menu .menu-content .menu-info .menu-boxes.second .grid a:hover .menu-box {
  background: #0056a6;
  border: 2px solid #0056a6;
}
.mega-menu .menu-content .menu-info .menu-boxes.second .grid a:hover .menu-box p {
  color: #211e1e;
}
.mega-menu .menu-content .menu-info .menu-boxes.second .grid a .menu-box {
  background: #211e1e;
  border: 2px solid #0056a6;
}
.mega-menu .menu-content .menu-info .menu-boxes.second .grid a .menu-box p {
  color: white;
}
.mega-menu .menu-footer {
  margin-top: 60px;
}
.mega-menu .menu-footer ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .mega-menu .menu-footer ul {
    font-size: 16px;
    padding-bottom: 20px;
  }
}
.mega-menu .menu-footer ul li {
  list-style: none;
  padding-bottom: 10px;
  color: #211e1e;
  display: flex;
}
@media (max-width: 1024px) {
  .mega-menu .menu-footer ul li {
    padding-bottom: 10px;
  }
}
.mega-menu .menu-footer ul li i {
  font-size: 36px;
  color: #0056a6;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.mega-menu .menu-footer ul li img {
  width: 140px;
  margin-right: 10px;
}
.mega-menu .menu-footer ul li a {
  font-size: 15px;
  color: #211e1e;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .mega-menu .menu-footer ul li a {
    font-size: 16px;
  }
}
.mega-menu .menu-footer ul li a:hover {
  color: #0056a6;
  opacity: 1;
}

/**
 * Breadcrumbs
 */
.breadcrumbs {
  display: flex;
  align-items: center;
  padding: 10px 5px 6px;
}
.breadcrumbs__link {
  font-size: 13px;
  color: #211e1e;
}
.breadcrumbs__link span {
  color: #211e1e;
}
.breadcrumbs__link:hover span {
  color: #211e1e;
}
.breadcrumbs__current {
  font-size: 13px;
}
.breadcrumbs__current span {
  color: #2e2a2a;
}
.breadcrumbs__separator {
  padding: 0 10px;
  color: #b0c7d2;
  font-size: 10px;
}

/*! lightgallery - v1.3.5 - 2016-09-30
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2016 Sachin N; Licensed Apache 2.0 */
@font-face {
  font-family: "lg";
  src: url("lib/lightgallery/fonts/lg.eot?n1z373");
  src: url("lib/lightgallery/fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("lib/lightgallery/fonts/lg.woff?n1z373") format("woff"), url("lib/lightgallery/fonts/lg.ttf?n1z373") format("truetype"), url("lib/lightgallery/fonts/lg.svg?n1z373#lg") format("svg");
  font-weight: normal;
  font-style: normal;
}
.lg-icon {
  font-family: "lg";
  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;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
}

.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  color: #FFF;
}

.lg-actions .lg-next {
  right: 20px;
}

.lg-actions .lg-next:before {
  content: "\e095";
}

.lg-actions .lg-prev {
  left: 20px;
}

.lg-actions .lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.lg-toolbar .lg-icon:hover {
  color: #FFF;
}

.lg-toolbar .lg-close:after {
  content: "\e070";
}

.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle;
}

.lg-toolbar, .lg-prev, .lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-outer .lg-thumb-outer {
  background-color: #0D0A0A;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px;
}

.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 4px;
  margin-bottom: 5px;
}

@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #a90707;
}

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}

.lg-outer .lg-toogle-thumb {
  background-color: #0D0A0A;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
}

.lg-outer .lg-toogle-thumb:after {
  content: "\e1ff";
}

.lg-outer .lg-toogle-thumb:hover {
  color: #FFF;
}

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}

.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}

.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer;
}

.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("lib/lightgallery/img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("lib/lightgallery/img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}

.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("lib/lightgallery/img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-has-youtube .lg-video-play {
  background: url("lib/lightgallery/img/youtube-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("lib/lightgallery/img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}

.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  -moz-transition: opacity 0.08s ease 0s;
  -o-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "\e01d";
}

.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

#lg-zoom-in:after {
  content: "\e311";
}

#lg-actual-size {
  font-size: 20px;
}

#lg-actual-size:after {
  content: "\e033";
}

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}

#lg-zoom-out:after {
  content: "\e312";
}

.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  width: 12px;
}

.lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}

.lg-fullscreen:after {
  content: "\e20c";
}

.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transform: translate3d(0, 0px, 0);
  -o-transform: translate3d(0, 0px, 0);
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}

.lg-outer.lg-dropdown-active #lg-share {
  color: #FFF;
}

.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -moz-transform: translate3d(0, 5px, 0);
  -o-transform: translate3d(0, 5px, 0);
  -ms-transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
}

.lg-outer .lg-dropdown:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #FFF;
  right: 16px;
  top: -16px;
}

.lg-outer .lg-dropdown > li:last-child {
  margin-bottom: 0px;
}

.lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
  color: #333;
}

.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}

.lg-outer #lg-share {
  position: relative;
}

.lg-outer #lg-share:after {
  content: "\e80d";
}

.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998;
}

.lg-outer #lg-share-facebook .lg-icon:after {
  content: "\e901";
}

.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced;
}

.lg-outer #lg-share-twitter .lg-icon:after {
  content: "\e904";
}

.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39;
}

.lg-outer #lg-share-googleplus .lg-icon:after {
  content: "\e902";
}

.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027;
}

.lg-outer #lg-share-pinterest .lg-icon:after {
  content: "\e903";
}

.group {
  *zoom: 1;
}

.group:before, .group:after {
  display: table;
  content: "";
  line-height: 0;
}

.group:after {
  clear: both;
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}

.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}

.lg-outer .lg-item {
  background: url("lib/lightgallery/img/loading.gif") no-repeat scroll center center transparent;
  display: none !important;
}

.lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item, .lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}

.lg-outer .lg-empty-html {
  display: none;
}

.lg-outer.lg-hide-download #lg-download {
  display: none;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}


/*! lightslider - v1.1.5 - 2015-10-31
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */
/*! lightslider - v1.1.3 - 2015-04-14
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */
/** /!!! core css Should not edit !!!/**/
.lSSlideOuter {
  overflow: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.lightSlider:before, .lightSlider:after {
  content: " ";
  display: table;
}

.lightSlider {
  overflow: hidden;
  margin: 0;
}

.lSSlideWrapper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.lSSlideWrapper > .lightSlider:after {
  clear: both;
}

.lSSlideWrapper .lSSlide {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: all 1s;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform, height;
  transition-property: transform, height;
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lSSlideWrapper .lSFade {
  position: relative;
}

.lSSlideWrapper .lSFade > * {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 9;
  margin-right: 0;
  width: 100%;
}

.lSSlideWrapper.usingCss .lSFade > * {
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lSSlideWrapper .lSFade > *.active {
  z-index: 10;
}

.lSSlideWrapper.usingCss .lSFade > *.active {
  opacity: 1;
}

/** /!!! End of core css Should not edit !!!/**/
/* Pager */
.lSSlideOuter .lSPager.lSpg {
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
}

.lSSlideOuter .lSPager.lSpg > li {
  cursor: pointer;
  display: inline-block;
  padding: 0 5px;
}

.lSSlideOuter .lSPager.lSpg > li a {
  background-color: #222222;
  border-radius: 30px;
  display: inline-block;
  height: 8px;
  overflow: hidden;
  text-indent: -999em;
  width: 8px;
  position: relative;
  z-index: 99;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}

.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
  background-color: #428bca;
}

.lSSlideOuter .media {
  opacity: 0.8;
}

.lSSlideOuter .media.active {
  opacity: 1;
}

/* End of pager */
/** Gallery */
.lSSlideOuter .lSPager.lSGallery {
  list-style: none outside none;
  padding-left: 0;
  margin: 0;
  overflow: hidden;
  transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.lSSlideOuter .lSPager.lSGallery li {
  overflow: hidden;
  -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
  transition: border-radius 0.12s linear 0s 0.35s linear 0s;
}

.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
  border-radius: 5px;
}

.lSSlideOuter .lSPager.lSGallery img {
  display: block;
  height: auto;
  max-width: 100%;
}

.lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
  content: " ";
  display: table;
}

.lSSlideOuter .lSPager.lSGallery:after {
  clear: both;
}

/* End of Gallery*/
/* slider actions */
.lSAction > a {
  width: 32px;
  display: block;
  top: 50%;
  height: 32px;
  background-image: url("lib/lightslider/img/controls.png");
  cursor: pointer;
  position: absolute;
  z-index: 99;
  margin-top: -16px;
  opacity: 0.5;
  -webkit-transition: opacity 0.35s linear 0s;
  transition: opacity 0.35s linear 0s;
}

.lSAction > a:hover {
  opacity: 1;
}

.lSAction > .lSPrev {
  background-position: 0 0;
  left: 10px;
}

.lSAction > .lSNext {
  background-position: -32px 0;
  right: 10px;
}

.lSAction > a.disabled {
  pointer-events: none;
}

.cS-hidden {
  height: 1px;
  opacity: 0;
  filter: alpha(opacity=0);
  overflow: hidden;
}

/* vertical */
.lSSlideOuter.vertical {
  position: relative;
}

.lSSlideOuter.vertical.noPager {
  padding-right: 0px !important;
}

.lSSlideOuter.vertical .lSGallery {
  position: absolute !important;
  right: 0;
  top: 0;
}

.lSSlideOuter.vertical .lightSlider > * {
  width: 100% !important;
  max-width: none !important;
}

/* vertical controlls */
.lSSlideOuter.vertical .lSAction > a {
  left: 50%;
  margin-left: -14px;
  margin-top: 0;
}

.lSSlideOuter.vertical .lSAction > .lSNext {
  background-position: 31px -31px;
  bottom: 10px;
  top: auto;
}

.lSSlideOuter.vertical .lSAction > .lSPrev {
  background-position: 0 -31px;
  bottom: auto;
  top: 10px;
}

/* vertical */
/* Rtl */
.lSSlideOuter.lSrtl {
  direction: rtl;
}

.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
  padding-left: 0;
  list-style: none outside none;
}

.lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
  padding-right: 0;
}

.lSSlideOuter .lightSlider > *, .lSSlideOuter .lSGallery li {
  float: left;
}

.lSSlideOuter.lSrtl .lightSlider > *, .lSSlideOuter.lSrtl .lSGallery li {
  float: right !important;
}

/* Rtl */
@-webkit-keyframes rightEnd {
  0% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  100% {
    left: 0;
  }
}
@keyframes rightEnd {
  0% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes topEnd {
  0% {
    top: 0;
  }
  50% {
    top: -15px;
  }
  100% {
    top: 0;
  }
}
@keyframes topEnd {
  0% {
    top: 0;
  }
  50% {
    top: -15px;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes leftEnd {
  0% {
    left: 0;
  }
  50% {
    left: 15px;
  }
  100% {
    left: 0;
  }
}
@keyframes leftEnd {
  0% {
    left: 0;
  }
  50% {
    left: 15px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes bottomEnd {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -15px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes bottomEnd {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -15px;
  }
  100% {
    bottom: 0;
  }
}
.lSSlideOuter .rightEnd {
  -webkit-animation: rightEnd 0.3s;
  animation: rightEnd 0.3s;
  position: relative;
}

.lSSlideOuter .leftEnd {
  -webkit-animation: leftEnd 0.3s;
  animation: leftEnd 0.3s;
  position: relative;
}

.lSSlideOuter.vertical .rightEnd {
  -webkit-animation: topEnd 0.3s;
  animation: topEnd 0.3s;
  position: relative;
}

.lSSlideOuter.vertical .leftEnd {
  -webkit-animation: bottomEnd 0.3s;
  animation: bottomEnd 0.3s;
  position: relative;
}

.lSSlideOuter.lSrtl .rightEnd {
  -webkit-animation: leftEnd 0.3s;
  animation: leftEnd 0.3s;
  position: relative;
}

.lSSlideOuter.lSrtl .leftEnd {
  -webkit-animation: rightEnd 0.3s;
  animation: rightEnd 0.3s;
  position: relative;
}

/*/  GRab cursor */
.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.tooltipster-fall, .tooltipster-grow.tooltipster-show {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-base {
  display: flex;
  pointer-events: none;
  position: absolute;
}

.tooltipster-box {
  flex: 1 1 auto;
}

.tooltipster-content {
  box-sizing: border-box;
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
}

.tooltipster-ruler {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}

.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
  opacity: 1;
}

.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}

.tooltipster-grow.tooltipster-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
}

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  -webkit-transform: rotateZ(0);
  -moz-transform: rotateZ(0);
  -o-transform: rotateZ(0);
  -ms-transform: rotateZ(0);
  transform: rotateZ(0);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-initial {
  top: 0 !important;
}

.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0 !important;
  opacity: 0;
}

.tooltipster-slide {
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-initial {
  left: -40px !important;
}

.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0 !important;
  opacity: 0;
}

@keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tooltipster-update-fade {
  animation: tooltipster-fading 0.4s;
}

@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}
.tooltipster-update-rotate {
  animation: tooltipster-rotating 0.6s;
}

@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.tooltipster-update-scale {
  animation: tooltipster-scaling 0.6s;
}

.tooltipster-sidetip .tooltipster-box {
  background: #565656;
  border: 2px solid #000;
  border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px;
}

.tooltipster-sidetip .tooltipster-content {
  color: #fff;
  line-height: 18px;
  padding: 6px 14px;
}

.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  margin-left: -10px;
  top: 0;
  width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px;
}

.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0;
}

.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #565656;
  left: 0;
  top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #565656;
  left: -3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #565656;
  left: 3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #565656;
  left: 0;
  top: -3px;
}

.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #000;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #000;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #000;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #000;
}

.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px;
}

.tooltipster-sidetip.tooltipster-punk .tooltipster-box {
  border-radius: 4px;
  border: none;
  background: #f4f7f9;
  box-shadow: 0 3px 15px rgba(60, 135, 201, 0.3);
}

.tooltipster-sidetip.tooltipster-punk.tooltipster-top .tooltipster-box {
  margin-bottom: 7px;
}

.tooltipster-sidetip.tooltipster-punk .tooltipster-content {
  font-weight: 500;
  font-size: 13px;
  color: #211e1e;
  padding: 8px 16px;
  max-width: 550px;
  line-height: 16px;
}
.tooltipster-sidetip.tooltipster-punk .tooltipster-content a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.tooltipster-sidetip.tooltipster-punk .tooltipster-content a i {
  font-size: 13px;
  margin-right: 2px;
}
.tooltipster-sidetip.tooltipster-punk .tooltipster-content a:hover {
  opacity: 1;
}
.tooltipster-sidetip.tooltipster-punk .tooltipster-content h5 {
  opacity: 0.6;
}

.tooltipster-sidetip.tooltipster-punk .tooltipster-arrow-background {
  display: none;
}

.tooltipster-sidetip.tooltipster-punk.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #f1f5f7;
  box-shadow: 0 3px 15px rgba(60, 135, 201, 0.3);
}

.tooltipster-sidetip.tooltipster-punk.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #f1f5f7;
  box-shadow: 0 3px 15px rgba(60, 135, 201, 0.3);
}

.tooltipster-sidetip.tooltipster-punk.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #f1f5f7;
  box-shadow: 0 3px 15px rgba(60, 135, 201, 0.3);
}

.tooltipster-sidetip.tooltipster-punk.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #f1f5f7;
  box-shadow: 0 3px 15px rgba(60, 135, 201, 0.3);
}

#tooltip_tiered_pricing h3 {
  font-size: 17px;
  color: #211e1e;
  margin: 10px 0 20px;
  font-weight: 800;
}
#tooltip_tiered_pricing table tr {
  border-bottom: 1px #e1e9ee solid;
}
#tooltip_tiered_pricing table tr:last-child {
  border-bottom: none;
}
#tooltip_tiered_pricing table th {
  font-weight: 800;
  color: #211e1e;
}
#tooltip_tiered_pricing table th, #tooltip_tiered_pricing table td {
  text-align: left;
  padding: 5px;
}
#tooltip_tiered_pricing table th strong, #tooltip_tiered_pricing table td strong {
  font-weight: 800;
}
#tooltip_tiered_pricing p {
  margin: 10px 0;
  background: #e1e9ee;
  padding: 10px;
  border-radius: 4px;
  color: #211e1e;
}
#tooltip_tiered_pricing p strong {
  font-weight: 700;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("lib/slick/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("lib/slick/fonts/slick.eot");
  src: url("lib/slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("lib/slick/fonts/slick.woff") format("woff"), url("lib/slick/fonts/slick.ttf") format("truetype"), url("lib/slick/fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 10px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: #211e1e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #211e1e;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  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;
  top: 0;
  left: 0;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  min-height: 1px;
}
.slick-slide > div {
  display: flex;
  width: 100%;
}

.slick-active {
  display: flex;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: flex;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.oc__nav__trigger.elevate {
  position: relative;
  z-index: 9999999;
}

.oc__nav {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -999999;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease 0.4s;
}
.oc__nav__background {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
@media (max-width: 900px) {
  .oc__nav__background {
    display: none;
  }
}
.oc__nav__background figure {
  width: 50%;
  background: #211e1e;
  transform: translateX(1200px);
  transition: all 0.5s ease 0.2s;
}
.oc__nav__background figure:first-child {
  background: #fff;
  transform: translateX(-1200px);
}
.oc__nav .panel__left {
  width: 40%;
  padding: 160px 60px 0 0;
  transform: translateX(-1200px);
}
@media (max-width: 900px) {
  .oc__nav .panel__left {
    width: 100%;
    background: #fff;
    padding: 40px 20px 40px;
  }
}
.oc__nav .panel__right {
  width: 60%;
  padding: 100px 0 40px 60px;
  transform: translateX(1200px);
  displaY: none;
}
@media (max-width: 900px) {
  .oc__nav .panel__right {
    width: 100%;
    background: #211e1e;
    padding: 40px 20px;
  }
}
.oc__nav__content {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -ms-overflow-y: scroll;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
@media (max-width: 900px) {
  .oc__nav__content {
    flex-direction: column;
    padding: 0;
  }
}
.oc__nav__content .oc__nav__trigger {
  display: block;
  color: #0056a6;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
}
.oc__nav__content .oc__nav__trigger i {
  font-size: 32px;
}
.oc__nav__content__panel {
  width: 50%;
  transition: all 0.5s ease;
  position: relative;
  /*
      Masonry
  */
}
.oc__nav__content__panel .fc_masonry {
  margin: 10px 0;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry {
  margin: 0 10px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item {
  width: 33.3333333333%;
  min-height: 200px;
  border: 10px transparent solid;
}
@media (max-width: 1024px) {
  .oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item {
    width: 100%;
  }
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item__wrapper {
  border-radius: 5px;
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item .blog {
  padding: 15px;
  background: #fff;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item .blog__img {
  height: 330px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  transition: all 0.4s ease;
  opacity: 1;
  position: relative;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item .blog__img:hover {
  opacity: 0.6;
  transition: all 0.4s ease;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item .blog__img__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+49&0+0,1+88 */
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item .blog__content {
  margin: 0 15px 10px;
  padding: 15px;
  position: relative;
  z-index: 5;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item .blog__content h3 {
  font-size: 1.1rem;
  color: #211e1e;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item .blog__content h3 span {
  font-size: 12px;
  color: #211e1e;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item .blog__content h3 span a {
  color: #0056a6;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item .blog__content h3 a {
  color: #211e1e;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item .blog__content p {
  font-size: 0.85rem;
  color: #211e1e;
  line-height: 1.4;
  margin-bottom: 0;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item .blog__content .blog__meta {
  font-size: 1rem;
  font-weight: 600;
  color: #211e1e;
  display: flex;
  align-items: center;
  padding: 25px 0 10px;
  justify-content: space-between;
  text-transform: uppercase;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item .blog__content .blog__meta a {
  color: #0056a6;
  font-size: 14px;
  font-weight: 800;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item .blog__content .blog__meta date {
  margin-right: 20px;
  font-size: 14px;
  color: #211e1e;
  font-weight: 600;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper {
  background: #211e1e;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap {
  display: flex;
  flex-wrap: wrap;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article {
  height: 250px;
}
@media (max-width: 700px) {
  .oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article {
    width: 50%;
  }
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article a {
  display: block;
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  height: 250px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article a .team__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: #211e1e;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article a .team__overlay.member-join {
  background: #211e1e;
  opacity: 1;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article a .team__overlay.member-join:hover {
  opacity: 1;
  background: #3c87c9;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article a .team__overlay.member-join span.team-more {
  width: 165px;
  background: #FFF;
  color: #211e1e;
  padding: 8px 20px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article a .team__overlay span.team__more {
  padding: 10px 0;
  color: #0056a6;
  text-align: center;
  font-size: 22px;
  display: block;
  font-weight: 600;
  margin-bottom: 40px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article h5 {
  padding: 20px 0;
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: rgba(241, 245, 247, 0.8);
  color: #211e1e;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 16px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article h5 span {
  font-size: 16px;
  color: white;
  display: block;
  line-height: 16px;
  font-weight: 600;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article h5:before {
  content: "";
  display: block;
  width: 2px;
  max-height: 60px;
  background: #211e1e;
  margin-right: 10px;
  height: 40px;
  margin-left: 20px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article img {
  width: 100%;
  max-height: 400px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article:hover .team__overlay {
  opacity: 0.9;
  transition: opacity 0.5s ease;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .team__img {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  margin: -50px auto 0;
  box-shadow: 0 -5px 12px 0px rgba(0, 0, 0, 0.05);
  display: block;
  transition: all 0.4s ease;
  opacity: 1;
  background-color: #e3ece5;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .team__img:hover {
  opacity: 0.8;
  transition: all 0.4s ease;
}
@media (max-width: 700px) {
  .oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .team__img {
    margin-top: -20px;
  }
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .team__content {
  padding: 20px 10px 0;
  text-align: center;
  width: 100%;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .team__content h5 {
  font-size: 1.05rem;
  color: #FFFFFE;
  text-transform: uppercase;
  margin-bottom: 5px;
  line-height: normal;
  font-weight: 500;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .team__content h2 {
  font-size: 1.2rem;
  color: #0056a6;
  margin-bottom: 20px;
  line-height: normal;
  font-weight: 600;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .team__content h2 a {
  color: #211e1e;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .team__content h2 a:hover {
  color: #211e1e;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .team__content p {
  font-size: 0.85rem;
  color: #FFFFFE;
  line-height: 1.5;
  padding: 0 20px 20px;
  width: 100%;
  margin-bottom: 0;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team .team__content .button {
  border-radius: 96px;
  margin-bottom: 20px;
  display: inline-block;
  font-weight: 800;
  padding: 15px 20px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper {
  background: #211e1e;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap {
  display: flex;
  flex-wrap: wrap;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article a {
  display: block;
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article a .team__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: #211e1e;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article a .team__overlay.member-join {
  background: #211e1e;
  opacity: 1;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article a .team__overlay.member-join:hover {
  opacity: 1;
  background: #3c87c9;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article a .team__overlay.member-join span.team-more {
  width: 165px;
  background: #FFF;
  color: #211e1e;
  padding: 8px 20px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article a .team__overlay span.team__more {
  padding: 10px 0;
  color: #0056a6;
  text-align: center;
  font-size: 22px;
  display: block;
  font-weight: 600;
  margin-bottom: 40px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article h5 {
  padding: 20px 0;
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: rgba(241, 245, 247, 0.8);
  color: #211e1e;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 16px;
}
@media (max-width: 625px) {
  .oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article h5 {
    padding: 10px 0;
    font-size: 15px;
  }
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article h5 span {
  font-size: 16px;
  color: white;
  display: block;
  line-height: 16px;
  font-weight: 600;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article h5:before {
  content: "";
  display: block;
  width: 2px;
  max-height: 60px;
  background: #211e1e;
  margin-right: 10px;
  height: 40px;
  margin-left: 20px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article img {
  width: 100%;
  max-height: 400px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article:hover .team__overlay {
  opacity: 0.9;
  transition: opacity 0.5s ease;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__img {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  margin: -50px auto 0;
  box-shadow: 0 -5px 12px 0px rgba(0, 0, 0, 0.05);
  display: block;
  transition: all 0.4s ease;
  opacity: 1;
  background-color: #e3ece5;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__img:hover {
  opacity: 0.8;
  transition: all 0.4s ease;
}
@media (max-width: 700px) {
  .oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__img {
    margin-top: -20px;
  }
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content {
  padding: 20px 10px 0;
  text-align: center;
  width: 100%;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content h5 {
  font-size: 1.05rem;
  color: #FFFFFE;
  text-transform: uppercase;
  margin-bottom: 5px;
  line-height: normal;
  font-weight: 500;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content h2 {
  font-size: 1.2rem;
  color: #0056a6;
  margin-bottom: 20px;
  line-height: normal;
  font-weight: 600;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content h2 a {
  color: #211e1e;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content h2 a:hover {
  color: #211e1e;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content p {
  font-size: 0.85rem;
  color: #FFFFFE;
  line-height: 1.5;
  padding: 0 20px 20px;
  width: 100%;
  margin-bottom: 0;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content .button {
  border-radius: 96px;
  margin-bottom: 20px;
  display: inline-block;
  font-weight: 800;
  padding: 15px 20px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper {
  background: #e8f1f9;
  padding: 15px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__top figure {
  font-family: "Times New Roman", Georgia, Serif;
  font-size: 40px;
  color: #211e1e;
  line-height: 0;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__top a {
  display: flex;
  align-items: center;
  color: #211e1e;
  font-size: 14px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__top a i {
  margin-left: 5px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__content {
  padding: 20px 0 0;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__content p {
  font-size: 16px;
  color: #060606;
  line-height: normal;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__content h6 {
  font-size: 16px;
  color: #060606;
  margin: 20px 0 0;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature_tall a {
  display: flex;
  height: 500px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: 5px;
  overflow: hidden;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature_tall a .feat__tall__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  width: 100%;
  opacity: 1;
  transition: all 0.4s ease;
  align-items: center;
  padding: 10px 30px 40px;
  text-align: center;
  height: inherit;
  background: -moz-linear-gradient(top, rgba(33, 30, 30, 0) 0%, rgba(33, 30, 30, 0.22) 12%, #211e1e 55%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(33, 30, 30, 0) 0%, rgba(33, 30, 30, 0.22) 12%, #211e1e 85%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(33, 30, 30, 0) 0%, rgba(33, 30, 30, 0.22) 12%, #211e1e 85%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature_tall a .feat__tall__content h4 {
  font-size: 14px;
  color: #211e1e;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature_tall a .feat__tall__content h4:after {
  content: "";
  display: block;
  width: 100%;
  max-width: 100px;
  height: 2px;
  background: #0056a6;
  margin: 5px 0;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature_tall a .feat__tall__content h3 {
  font-size: 28px;
  color: #211e1e;
  margin-bottom: 15px;
  line-height: 24px;
  font-weight: 600;
  padding: 10px 0;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature_tall a .feat__tall__content p {
  font-size: 16px;
  color: #211e1e;
  line-height: 24px;
  margin-bottom: 0;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature_tall a:hover .feat__tall__content {
  opacity: 0.4;
  transition: all 0.4s ease;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature a {
  display: flex;
  height: 300px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 5px;
  overflow: hidden;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature a .feat__overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
  min-height: 100%;
  text-align: center;
  opacity: 1;
  transition: all 0.4s ease;
  height: inherit;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature a .feat__overlay h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFE;
  padding: 10px 0;
  margin: 0;
  width: 100%;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature a .feat__overlay h3 span, .oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature a .feat__overlay h3 i {
  font-size: 35px;
  line-height: 75px;
  color: #FFFFFE;
  width: 75px;
  height: 75px;
  box-sizing: border-box;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature a .feat__overlay h4 {
  font-size: 1.1rem;
  color: #0056a6;
  margin: 0;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.feature a:hover .feat__overlay {
  opacity: 0.4;
  transition: all 0.4s ease;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.video a {
  display: flex;
  height: 300px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 5px;
  overflow: hidden;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.video a .feat__overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 10px 20px;
  width: 100%;
  min-height: 100%;
  text-align: center;
  opacity: 1;
  transition: all 0.4s ease;
  height: inherit;
  background: -moz-linear-gradient(top, rgba(33, 30, 30, 0) 0%, rgba(33, 30, 30, 0.22) 12%, #211e1e 55%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(33, 30, 30, 0) 0%, rgba(33, 30, 30, 0.22) 12%, #211e1e 85%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(33, 30, 30, 0) 0%, rgba(33, 30, 30, 0.22) 12%, #211e1e 85%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.video a .feat__overlay span {
  font-size: 35px;
  line-height: 75px;
  background: #0056a6;
  color: #211e1e;
  padding-left: 5px;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  box-sizing: border-box;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.video a .feat__overlay h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  padding: 10px 0;
  margin: 10px 0 20px;
  width: 100%;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.video a .feat__overlay h4 {
  font-size: 1rem;
  color: #fff;
  margin: 0;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.video a:hover .feat__overlay {
  opacity: 0.4;
  transition: all 0.4s ease;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry {
  padding: 0;
  margin: -10px;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item {
  width: 50%;
}
@media (max-width: 1200px) {
  .oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item {
    width: 100%;
  }
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.property article .apf__property__border {
  background: #fff;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.blog .masonry__item__wrapper {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.oc__nav__content__panel .fc_masonry .masonry__wrapper .masonry__item.blog .blog__img {
  height: 235px;
}
.oc__nav__content__panel .logo {
  max-width: 140px;
  width: 100%;
  position: absolute;
  top: 0;
  right: -70px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
@media (max-width: 900px) {
  .oc__nav__content__panel .logo {
    right: auto;
  }
}
.oc__nav.oc__nav__active {
  z-index: 999999;
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease;
}
.oc__nav.oc__nav__active .oc__nav__background figure {
  transform: translateX(0);
  transition: all 0.5s ease;
}
.oc__nav.oc__nav__active .oc__nav__content article {
  transform: translateX(0);
  transition: all 0.5s ease 0.2s;
  border-bottom: 10px solid #0056a6;
}
.oc__nav.oc__nav__active .oc__nav__content article .logo {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease 0.8s;
}

/**
 * AVB Styles
 *
 * @package advanced-video-banners/
 * @version 1.0
*/
section.banners {
  position: relative;
  overflow: hidden;
  /* Global */
  /* Inner */
  /**
   * AVB Inner Banners
   *
   * @package advanced-video-banners/
   * @version 1.0
  */
  /* APF search */
  /**
   * AVB APF Search
   *
   * @package advanced-video-banners/
   * @version 1.0
  */
  /* Lighslider */
  /**
   * AVB LightSlider overrides
   *
   * @package advanced-video-banners/
   * @version 1.0
  */
  /* LightSlider overrides */
}
section.banners .small-banner {
  min-height: 300px !important;
}
section.banners .medium-banner {
  min-height: 500px !important;
}
section.banners .large-banner {
  min-height: 700px !important;
}
section.banners #home_banners .banner {
  height: 500px;
  min-height: 500px;
}
section.banners .banner {
  position: relative;
  height: 200px;
  min-height: 150px;
  overflow: hidden;
  overflow: hidden;
  background: #222124;
  /* Video */
  /**
   * AVB Video Styles
   *
   * @package advanced-video-banners/
   * @version 1.0
  */
}
@media (max-width: 900px) {
  section.banners .banner {
    height: calc(100vh - 500px);
  }
}
@media (max-width: 700px) {
  section.banners .banner {
    height: calc(100vh - 650px);
  }
}
section.banners .banner__width {
  display: flex;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-around;
}
section.banners .banner__caption {
  z-index: 4;
  display: flex;
  flex-direction: column;
  width: 700px;
  justify-content: center;
  box-sizing: border-box;
  visibility: visibile;
  opacity: 1;
  transition: all 0.4s ease;
  position: relative;
  /* carousel fix for flashing content. Yeh boi!!! */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -webkit-transform: translateZ(0) scale(1, 1);
}
@media (max-width: 1024px) {
  section.banners .banner__caption {
    width: 60%;
  }
}
@media (max-width: 700px) {
  section.banners .banner__caption {
    width: 100%;
    align-items: center;
  }
}
section.banners .banner__caption.off {
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
section.banners .banner__caption .banner_logo {
  max-width: 280px;
  margin: 0 auto 50px;
}
@media (max-width: 700px) {
  section.banners .banner__caption .banner_logo {
    margin: 0 auto 20px;
  }
}
section.banners .banner__caption h2 {
  font-size: 60px;
  color: #fff;
  font-weight: normal;
  padding: 0 0 40px;
  line-height: 64px;
  font-family: "Museo 700";
}
@media (max-width: 900px) {
  section.banners .banner__caption h2 {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 700px) {
  section.banners .banner__caption h2 {
    font-size: 42px;
    line-height: 50px;
    text-align: center;
  }
}
section.banners .banner__caption p {
  font-size: 18px;
  color: #FFFFFE;
  line-height: 30px;
  padding: 0 0 40px;
}
@media (max-width: 700px) {
  section.banners .banner__caption p {
    font-size: 26px;
    line-height: 34px;
    text-align: center;
    padding-right: 0;
  }
}
section.banners .banner__caption .banner__shortcuts {
  display: flex;
  align-items: center;
  border: 1px rgba(255, 255, 255, 0.5) solid;
  margin-top: 30px;
  align-self: center;
  padding: 7px 0;
  width: 100%;
}
@media (max-width: 700px) {
  section.banners .banner__caption .banner__shortcuts {
    flex-direction: column;
    align-self: auto;
    width: 100%;
    padding: 0;
  }
}
section.banners .banner__caption .banner__shortcuts a,
section.banners .banner__caption .banner__shortcuts article {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  border-right: 1px rgba(255, 255, 255, 0.5) solid;
  color: #fff;
  font-weight: 600;
  width: 100%;
  text-align: center;
}
@media (max-width: 700px) {
  section.banners .banner__caption .banner__shortcuts a,
  section.banners .banner__caption .banner__shortcuts article {
    border-right: none;
    border-bottom: 1px rgba(255, 255, 255, 0.5) solid;
    padding: 10px 0;
  }
}
section.banners .banner__caption .banner__shortcuts a:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: underline;
}
section.banners .banner__caption .banner__shortcuts a:last-of-type {
  border-right: none;
}
@media (max-width: 700px) {
  section.banners .banner__caption .banner__shortcuts a:last-of-type {
    border-bottom: none;
  }
}
section.banners .banner__apf__search {
  z-index: 9999;
  margin-top: 100px;
}
section.banners .banner__overlay {
  position: absolute;
  width: 100%;
  height: 160%;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  /* carousel fix for flashing content. Yeh boi!!! */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
  -webkit-transform: translateZ(0) scale(1, 1);
  background: #000;
}
section.banners .banner__overlay.opacity-0 {
  opacity: 0;
}
section.banners .banner__overlay.opacity-10 {
  opacity: 0.1;
}
section.banners .banner__overlay.opacity-20 {
  opacity: 0.2;
}
section.banners .banner__overlay.opacity-30 {
  opacity: 0.3;
}
section.banners .banner__overlay.opacity-40 {
  opacity: 0.4;
}
section.banners .banner__overlay.opacity-50 {
  opacity: 0.5;
}
section.banners .banner__overlay.opacity-60 {
  opacity: 0.6;
}
section.banners .banner__overlay.opacity-70 {
  opacity: 0.7;
}
section.banners .banner__overlay.opacity-80 {
  opacity: 0.8;
}
section.banners .banner__overlay.opacity-90 {
  opacity: 0.9;
}
section.banners .banner__overlay.opacity-100 {
  opacity: 1;
}
section.banners .banner__top__gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 5%, transparent);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 3;
}
section.banners .banner__bg__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
section.banners .banner__caption__skew {
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -200px;
  transform: skewX(-23deg);
  z-index: 1;
  overflow: hidden;
}
section.banners .banner__caption__skew:before {
  content: "";
  background-image: url("img/banner-shape.svg");
  background-size: 60%;
  background-repeat: no-repeat;
  transform: skewX(23deg);
  width: 120%;
  height: 120%;
  position: relative;
  top: -80px;
  left: 20%;
  display: block;
  opacity: 0.07;
}
@media (max-width: 900px) {
  section.banners .banner__caption__skew {
    width: 80%;
  }
}
@media (max-width: 700px) {
  section.banners .banner__caption__skew {
    width: 100%;
    transform: none;
    left: 0;
  }
  section.banners .banner__caption__skew:before {
    transform: none;
  }
}
section.banners .banner .banner__video__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 700px) {
  section.banners .banner .banner__video__player {
    display: none;
  }
}
section.banners .banner .banner__video__player iframe,
section.banners .banner .banner__video__player object,
section.banners .banner .banner__video__player embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: scale3d(1.5, 1.5, 1.5);
}
section.banners .banner .banner__video__altimg {
  display: none;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 700px) {
  section.banners .banner .banner__video__altimg {
    display: block;
  }
}
section.banners .banner .banner__video__controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
section.banners .banner .banner__video__controls.on {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s ease;
}
section.banners .banner .banner__video__controls a {
  display: block;
  margin: 0 10px;
}
section.banners .banner .banner__video__controls a i {
  font-size: 40px;
  color: #fff;
}
section.banners.inner .banner {
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  /* Video Banner */
}
@media (max-width: 700px) {
  section.banners.inner .banner {
    padding: 40px 0;
  }
}
section.banners.inner .banner .max__width {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 3;
  align-items: flex-start;
}
section.banners.inner .banner .max__width .avb__apf__search {
  position: static;
}
section.banners.inner .banner .max__width .avb__apf__search .max__width {
  padding: 0;
}
section.banners.inner .banner .max__width .avb__apf__search .apf__search {
  border-top: 0;
}
section.banners.inner .banner .banner__caption {
  top: auto;
}
section.banners.inner .banner .banner__caption h1 {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
@media (max-width: 550px) {
  section.banners.inner .banner .banner__caption h1 {
    font-size: 28px;
  }
}
section.banners.inner .banner .banner__caption p {
  color: #fff;
  margin-top: 10px;
}
section.banners.inner .banner .banner__caption p a {
  color: #fff !important;
  text-decoration: underline;
}
section.banners.inner .banner .banner__caption a {
  color: #fff !important;
}
section.banners.inner .banner .banner__caption.align-centre {
  text-align: center;
  width: 100%;
}
section.banners.inner .banner .banner__caption.align-right {
  text-align: right;
  width: 100%;
}
section.banners.inner .banner .banner__video__player iframe,
section.banners.inner .banner .banner__video__player object,
section.banners.inner .banner .banner__video__player embed {
  transform: scale3d(1.8, 1.8, 1.8);
}
section.banners .avb__apf__search {
  z-index: 5;
  width: 100%;
}
section.banners .avb__apf__search .max__width {
  padding: 0;
}
@media (max-width: 900px) {
  section.banners .avb__apf__search {
    display: block;
    padding: 10px 0 20px;
  }
}
section.banners .avb__apf__search .apf__search__buyrent a {
  color: #211e1e;
  background: rgba(255, 255, 255, 0.2);
}
section.banners .avb__apf__search .apf__search__buyrent a:hover {
  background: #211e1e;
  color: #211e1e;
}
section.banners .avb__apf__search .apf__search__buyrent a.checked {
  background: #0056a6;
  color: #211e1e;
}
@media (max-width: 900px) {
  section.banners .avb__apf__search .apf__search__buyrent a {
    color: #211e1e;
    background: #f1f5f7;
  }
}
section.banners .avb__apf__search .apf__search {
  display: block;
  padding-top: 30px;
}
section.banners .avb__apf__search .apf__search .apf__area__search {
  background: white;
  color: #211e1e;
  min-width: 100%;
}
section.banners .avb__apf__search .apf__search .apf__area__search::-webkit-input-placeholder {
  color: #211e1e;
  transition: all 0.4s ease;
}
section.banners .avb__apf__search .apf__search .apf__area__search::-moz-placeholder {
  color: #211e1e;
  transition: all 0.4s ease;
}
section.banners .avb__apf__search .apf__search .apf__area__search:-ms-input-placeholder {
  color: #211e1e;
  transition: all 0.4s ease;
}
section.banners .avb__apf__search .apf__search .apf__area__search:-moz-placeholder {
  color: #211e1e;
  transition: all 0.4s ease;
}
section.banners .avb__apf__search .apf__search .apf__area__search:focus::-webkit-input-placeholder {
  color: rgba(33, 30, 30, 0.4);
  transition: all 0.4s ease;
}
section.banners .avb__apf__search .apf__search .apf__area__search:focus::-moz-placeholder {
  color: rgba(33, 30, 30, 0.4);
  transition: all 0.4s ease;
}
section.banners .avb__apf__search .apf__search .apf__area__search:focus:-ms-input-placeholder {
  color: rgba(33, 30, 30, 0.4);
  transition: all 0.4s ease;
}
section.banners .avb__apf__search .apf__search .apf__area__search:focus:-moz-placeholder {
  color: rgba(33, 30, 30, 0.4);
  transition: all 0.4s ease;
}
@media (max-width: 900px) {
  section.banners .avb__apf__search .apf__search .apf__area__search {
    background: #f1f5f7;
    color: #211e1e;
  }
  section.banners .avb__apf__search .apf__search .apf__area__search::-webkit-input-placeholder {
    color: #211e1e;
    transition: all 0.4s ease;
  }
  section.banners .avb__apf__search .apf__search .apf__area__search::-moz-placeholder {
    color: #211e1e;
    transition: all 0.4s ease;
  }
  section.banners .avb__apf__search .apf__search .apf__area__search:-ms-input-placeholder {
    color: #211e1e;
    transition: all 0.4s ease;
  }
  section.banners .avb__apf__search .apf__search .apf__area__search:-moz-placeholder {
    color: #211e1e;
    transition: all 0.4s ease;
  }
  section.banners .avb__apf__search .apf__search .apf__area__search:focus::-webkit-input-placeholder {
    color: rgba(33, 30, 30, 0.4);
    transition: all 0.4s ease;
  }
  section.banners .avb__apf__search .apf__search .apf__area__search:focus::-moz-placeholder {
    color: rgba(33, 30, 30, 0.4);
    transition: all 0.4s ease;
  }
  section.banners .avb__apf__search .apf__search .apf__area__search:focus:-ms-input-placeholder {
    color: rgba(33, 30, 30, 0.4);
    transition: all 0.4s ease;
  }
  section.banners .avb__apf__search .apf__search .apf__area__search:focus:-moz-placeholder {
    color: rgba(33, 30, 30, 0.4);
    transition: all 0.4s ease;
  }
}
@media (max-width: 700px) {
  section.banners .avb__apf__search .apf__search__button {
    max-width: 100%;
    padding: 15px 20px;
  }
}
section.banners .lSSlideOuter {
  position: relative;
  z-index: 2;
}
section.banners .lSSlideOuter .lSPager {
  position: absolute;
  bottom: 15px;
  left: 0;
  z-index: 10;
  padding: 0 calc((100vw - 1375px) / 2);
  width: 100%;
  display: flex;
  justify-content: center;
}
section.banners .lSSlideOuter .lSPager.lSpg > li {
  padding: 0 2px;
}
section.banners .lSSlideOuter .lSPager.lSpg > li a {
  border: 2px solid #fff;
  width: 16px;
  height: 16px;
  background: none;
}
section.banners .lSSlideOuter .lSPager.lSpg > li.active a {
  background: #0056a6;
  border: 2px #0056a6 solid;
}
section.banners .lSSlideOuter .lSAction a {
  background: none !important;
}

/*
--------------------------------------------------------------------------------
    ________          _ __    __        ______            __             __
   / ____/ /__  _  __(_) /_  / /__     / ____/___  ____  / /____  ____  / /_
  / /_  / / _ \| |/_/ / __ \/ / _ \   / /   / __ \/ __ \/ __/ _ \/ __ \/ __/
 / __/ / /  __/>  </ / /_/ / /  __/  / /___/ /_/ / / / / /_/  __/ / / / /_
/_/   /_/\___/_/|_/_/_.___/_/\___/   \____/\____/_/ /_/\__/\___/_/ /_/\__/

--------------------------------------------------------------------------------
Flexible Content
*/
/*
*	FC Tab Scrollbar
*
*	Custom overrides and additions
*	for this specific site
*
*	@package Flexible Content
*	@version 1.0
*/
.fc_tab_scrollbar {
  position: relative;
  z-index: 2;
  position: sticky;
  top: 0;
  background: #fff;
}
@media (max-width: 800px) {
  .fc_tab_scrollbar {
    display: none;
  }
}
.fc_tab_scrollbar ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px #e7eef1 solid;
}
.fc_tab_scrollbar ul li {
  text-align: center;
}
.fc_tab_scrollbar ul li a {
  display: block;
  padding: 20px 30px;
  font-size: 16px;
  color: #211e1e;
}
.fc_tab_scrollbar ul li a:hover {
  color: #211e1e;
}

.flexible__content {
  z-index: 99;
  /*
  *	FC Global
  *
  *	Global stuff
  *
  *	@package Flexible Content
  *	@version 1.0
  */
  /*
      Buttons
  */
  /*
  ----------------------------------------------------
      ______                  ______          __
     / ____/_______  ___     /_  __/__  _  __/ /_
    / /_  / ___/ _ \/ _ \     / / / _ \| |/_/ __/
   / __/ / /  /  __/  __/    / / /  __/>  </ /_
  /_/   /_/   \___/\___/    /_/  \___/_/|_|\__/

  ----------------------------------------------------
  Free Text
  */
  /*
  --------------------------------------------
      ______           __
     / ____/__  ____ _/ /___  __________
    / /_  / _ \/ __ `/ __/ / / / ___/ _ \
   / __/ /  __/ /_/ / /_/ /_/ / /  /  __/
  /_/    \___/\__,_/\__/\__,_/_/   \___/

  -------------------------------------------
  Feature
  */
  /*
  ---------------------------------------------------
      ____                    ______     _     __
     /  _/________  ____     / ____/____(_)___/ /
     / // ___/ __ \/ __ \   / / __/ ___/ / __  /
   _/ // /__/ /_/ / / / /  / /_/ / /  / / /_/ /
  /___/\___/\____/_/ /_/   \____/_/  /_/\__,_/

  ---------------------------------------------------
  Icon Grid
  */
  /*
  ---------------------------------------------------
     ______     _     __   __    _       __
    / ____/____(_)___/ /  / /   (_)___  / /_______
   / / __/ ___/ / __  /  / /   / / __ \/ //_/ ___/
  / /_/ / /  / / /_/ /  / /___/ / / / / ,< (__  )
  \____/_/  /_/\__,_/  /_____/_/_/ /_/_/|_/____/

  ---------------------------------------------------
  Grid Link
  */
  /*
  -----------------------------------------------------
      ___                            ___
     /   | ______________  _________/ (_)___  ____
    / /| |/ ___/ ___/ __ \/ ___/ __  / / __ \/ __ \
   / ___ / /__/ /__/ /_/ / /  / /_/ / / /_/ / / / /
  /_/  |_\___/\___/\____/_/   \__,_/_/\____/_/ /_/

  -----------------------------------------------------
  Accordion
  */
  /*
  ---------------------------
    ______      __
   /_  __/___ _/ /_  _____
    / / / __ `/ __ \/ ___/
   / / / /_/ / /_/ (__  )
  /_/  \__,_/_.___/____/

  ---------------------------
  Tabs
  */
  /*
  ------------------------------------------------
     ______      ____
    / ____/___ _/ / /__  _______  __
   / / __/ __ `/ / / _ \/ ___/ / / /
  / /_/ / /_/ / / /  __/ /  / /_/ /
  \____/\__,_/_/_/\___/_/   \__, /
                           /____/
  ------------------------------------------------
  Gallery
  */
  /*
  ----------------------------
    ______      __    __
   /_  __/___ _/ /_  / /__
    / / / __ `/ __ \/ / _ \
   / / / /_/ / /_/ / /  __/
  /_/  \__,_/_.___/_/\___/

  ---------------------------
  Table
  */
  /*
  -----------------------------
   _    ___     __
  | |  / (_)___/ /__  ____
  | | / / / __  / _ \/ __ \
  | |/ / / /_/ /  __/ /_/ /
  |___/_/\__,_/\___/\____/

  -----------------------------
  Video
  */
  /*
  ------------------------------------------------
     ______                                 __
    / ____/___ __________  __  __________  / /
   / /   / __ `/ ___/ __ \/ / / / ___/ _ \/ /
  / /___/ /_/ / /  / /_/ / /_/ (__  )  __/ /
  \____/\__,_/_/   \____/\__,_/____/\___/_/

  ------------------------------------------------
  Carousel
  */
  /*
  -----------------------------
    ______                        ______           __
   /_  __/__  ____ _____ ___     / ____/_  _______/ /_____  ____ ___
    / / / _ \/ __ `/ __ `__ \   / /   / / / / ___/ __/ __ \/ __ `__ \
   / / /  __/ /_/ / / / / / /  / /___/ /_/ (__  ) /_/ /_/ / / / / / /
  /_/  \___/\__,_/_/ /_/ /_/   \____/\__,_/____/\__/\____/_/ /_/ /_/

  -----------------------------
  Team
  */
  /*
  -----------------------------
    ______                        ____
   /_  __/__  ____ _____ ___     / __ \____  ____        __  ______
    / / / _ \/ __ `/ __ `__ \   / /_/ / __ \/ __ \______/ / / / __ \
   / / /  __/ /_/ / / / / / /  / ____/ /_/ / /_/ /_____/ /_/ / /_/ /
  /_/  \___/\__,_/_/ /_/ /_/  /_/    \____/ .___/      \__,_/ .___/
                                         /_/               /_/
  -----------------------------
  Team Pop-up
  */
  /*
      Bluecoat - 2 Column Boxes
  */
  /*
      Bluecoat - Press
  */
  /*
      Call to action
  */
  /*
      Bluecoat - Grid Boxes
  */
  /*
      Testimonials
  */
  /*
      Contact
  */
  /*
      Feature
  */
  /*
      Feature
  */
  /*
      Masonry
  */
  /*
      Masonry Circles
  */
}
.flexible__content .grey {
  background: #f1f5f7;
}
.flexible__content .is__skewed {
  z-index: 10;
}
.flexible__content .is__skewed.top__normal {
  width: 100%;
  position: relative;
}
.flexible__content .is__skewed.top__normal::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
  z-index: -1;
  top: 0;
  transform-origin: left top;
  transform: skewY(-3deg);
}
.flexible__content .is__skewed.top__invert {
  width: 100%;
  position: relative;
}
.flexible__content .is__skewed.top__invert::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
  z-index: -1;
  top: 0;
  transform-origin: right top;
  transform: skewY(3deg);
}
.flexible__content .is__skewed.bottom__normal {
  width: 100%;
  position: relative;
}
.flexible__content .is__skewed.bottom__normal::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
  z-index: -1;
}
.flexible__content .is__skewed.bottom__normal::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
  z-index: -1;
  bottom: 0;
  transform-origin: right bottom;
  transform: skewY(-3deg);
}
.flexible__content .is__skewed.bottom__invert {
  width: 100%;
  position: relative;
}
.flexible__content .is__skewed.bottom__invert::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
  z-index: -1;
}
.flexible__content .is__skewed.bottom__invert::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
  z-index: -1;
  bottom: 0;
  transform-origin: left bottom;
  transform: skewY(3deg);
}
.flexible__content .is__skewed.grey.top__normal {
  width: 100%;
  position: relative;
}
.flexible__content .is__skewed.grey.top__normal::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #f1f5f7;
  z-index: -1;
  top: 0;
  transform-origin: left top;
  transform: skewY(-3deg);
}
.flexible__content .is__skewed.grey.top__invert {
  width: 100%;
  position: relative;
}
.flexible__content .is__skewed.grey.top__invert::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #f1f5f7;
  z-index: -1;
  top: 0;
  transform-origin: right top;
  transform: skewY(3deg);
}
.flexible__content .is__skewed.grey.bottom__normal {
  width: 100%;
  position: relative;
}
.flexible__content .is__skewed.grey.bottom__normal::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #f1f5f7;
  z-index: -1;
}
.flexible__content .is__skewed.grey.bottom__normal::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #f1f5f7;
  z-index: -1;
  bottom: 0;
  transform-origin: right bottom;
  transform: skewY(-3deg);
}
.flexible__content .is__skewed.grey.bottom__invert {
  width: 100%;
  position: relative;
}
.flexible__content .is__skewed.grey.bottom__invert::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #f1f5f7;
  z-index: -1;
}
.flexible__content .is__skewed.grey.bottom__invert::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #f1f5f7;
  z-index: -1;
  bottom: 0;
  transform-origin: left bottom;
  transform: skewY(3deg);
}
.flexible__content .section__heading {
  display: flex;
  flex-direction: column;
  padding: 0 0 20px 0;
  max-width: 550px;
}
.flexible__content .section__heading h2 {
  font-size: 30px;
  text-transform: none;
  color: #064882;
  margin: 0;
  display: flex;
  font-family: "Museo 700";
}
@media (max-width: 625px) {
  .flexible__content .section__heading h2 {
    font-size: 24px;
  }
}
.flexible__content .section__heading p {
  margin: 15px 0 0;
  font-size: 1rem;
  line-height: 25px;
}
@media (max-width: 625px) {
  .flexible__content .section__heading p {
    padding-left: 0;
  }
}
.flexible__content .section__heading p strong {
  font-weight: 800;
}
.flexible__content .section__heading.centred {
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.flexible__content .section__heading.centred h2:after {
  margin: 20px auto;
}
.flexible__content .section__heading.centred h2,
.flexible__content .section__heading.centred p {
  text-align: center;
  padding: 0 10px;
}
.flexible__content ul.lSPager.lSpg {
  display: flex;
  justify-content: center;
  margin: 0;
  padding-top: 20px;
}
.flexible__content ul.lSPager.lSpg > li {
  border-radius: 100%;
  width: 12px;
  height: 12px;
  margin: 3px;
  background: #e1e9ee;
  list-style: none;
}
.flexible__content ul.lSPager.lSpg > li > a {
  display: none;
}
.flexible__content ul.lSPager.lSpg > li.active {
  background: #211e1e;
}
.flexible__content .lSAction a {
  z-index: 5;
}
.flexible__content .lSAction a.lSPrev, .flexible__content .lSAction a.lSNext {
  background: none;
  color: #211e1e;
  font-size: 40px;
  background: #fff;
  height: 47px;
}
.flexible__content .lSAction > .lSPrev {
  left: 0;
}
.flexible__content .lSAction > .lSNext {
  right: 0;
}
.flexible__content .lSAction > .lSNext i {
  float: right;
}
.flexible__content .slick-dots {
  position: static;
  margin: 20px 0;
}
.flexible__content .slick-dots li {
  margin-bottom: 0;
}
.flexible__content .slick-dots li button:before {
  color: #211e1e;
  font-size: 45px;
}
.flexible__content .slick-dots li.slick-active button:before {
  opacity: 1;
}
.flexible__content h1, .flexible__content h2, .flexible__content h3, .flexible__content h4, .flexible__content h5, .flexible__content h6 {
  margin: 0 0 20px 0;
  padding: 0;
  font-family: "Museo 300", sans-serif;
  color: #064882;
}
.flexible__content h2 {
  line-height: 38px;
  font-size: 32px;
}
.flexible__content h3 {
  line-height: 34px;
  font-size: 28px;
}
.flexible__content h4 {
  line-height: 30px;
  font-size: 24px;
}
.flexible__content h5 {
  line-height: 26px;
  font-size: 20px;
}
.flexible__content h6 {
  line-height: 24px;
  font-size: 18px;
}
.flexible__content p {
  font-size: 17px;
  color: #211e1e;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 30px;
}
.flexible__content p a {
  color: #211e1e;
}
.flexible__content p strong {
  font-weight: 700;
}
.flexible__content ul, .flexible__content ol {
  padding: 0 0 0 25px;
  margin: 0 0 30px 0;
  line-height: 26px;
}
.flexible__content ul li, .flexible__content ol li {
  list-style: disc;
  margin-bottom: 10px;
  color: #211e1e;
  font-weight: 500;
}
.flexible__content ul li a, .flexible__content ol li a {
  color: #211e1e;
}
.flexible__content img.alignright {
  margin: 0 0 0 20px;
  width: auto;
  height: auto;
  float: right;
}
.flexible__content img.alignleft {
  margin: 0 20px 0 0;
  width: auto;
  height: auto;
  float: left;
}
@media (max-width: 700px) {
  .flexible__content img.alignright, .flexible__content img.alignleft {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }
}
.flexible__content img.aligncenter {
  margin: 0 auto;
}
.flexible__content .wpcf7 {
  margin: 30px 0;
  width: 100%;
}
.flexible__content .wpcf7 form div.wpcf7-validation-errors {
  background: #ef3c3c;
}
.flexible__content .wpcf7 form div.wpcf7-mail-sent-ok {
  background: #21d697;
}
.flexible__content .wpcf7 form div.wpcf7-response-output {
  padding: 10px;
  margin: 0;
  color: #fff;
  border: none;
  text-align: center;
}
.flexible__content .wpcf7 form p {
  margin: 0 0 20px 0;
}
.flexible__content .wpcf7 form p .ajax-loader {
  display: none;
}
.flexible__content .wpcf7 form p span.wpcf7-not-valid-tip {
  margin: 10px 0 20px;
  color: #ef3c3c;
}
.flexible__content .wpcf7 form p input:not([type=submit]), .flexible__content .wpcf7 form p textarea, .flexible__content .wpcf7 form p select {
  padding: 15px;
  margin: 0 0 10px 0;
  border: 1px solid #f1f5f7;
  width: 100%;
  font-size: 16px;
  color: #999;
  resize: none;
  display: block;
}
.flexible__content .wpcf7 form p input[type=submit] {
  padding: 20px 15px;
  background: #0056a6;
  color: #fff;
  border: none;
  width: 100%;
  font-size: 17px;
  display: inline-block;
  text-transform: uppercase;
}
.flexible__content .fc_buttons .buttons__wrap {
  display: flex;
  align-items: center;
}
.flexible__content .fc_buttons .buttons__wrap a {
  display: block;
  padding: 18px 40px 16px;
  background: #211e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 5px;
}
.flexible__content .fc_buttons .buttons__wrap a:hover {
  background: #0056a6;
}
.flexible__content .fc_buttons .buttons__wrap.align-left {
  justify-content: flex-start;
}
.flexible__content .fc_buttons .buttons__wrap.align-left a {
  margin-right: 20px;
}
.flexible__content .fc_buttons .buttons__wrap.align-center {
  justify-content: center;
}
.flexible__content .fc_buttons .buttons__wrap.align-center a {
  margin: 0 10px;
}
.flexible__content .fc_buttons .buttons__wrap.align-right {
  justify-content: flex-end;
}
.flexible__content .fc_buttons .buttons__wrap.align-right a {
  margin-left: 20px;
}
@media (max-width: 1024px) {
  .flexible__content .fc_feature {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
.flexible__content .fc_feature .fc_feature_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__image,
.flexible__content .fc_feature .fc_feature_wrapper .feature__text {
  width: 50%;
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__image .feature__action .arrow__link,
.flexible__content .fc_feature .fc_feature_wrapper .feature__text .feature__action .arrow__link {
  color: #FFFFFE;
  padding: 12px 22px;
  background: #0056a6;
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__image .feature__action .arrow__link i,
.flexible__content .fc_feature .fc_feature_wrapper .feature__text .feature__action .arrow__link i {
  color: #FFFFFE;
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__image {
  position: relative;
  overflow: hidden;
  padding-right: 25px;
}
@media (max-width: 1024px) {
  .flexible__content .fc_feature .fc_feature_wrapper .feature__image {
    margin-bottom: 20px;
    width: 100%;
    padding-right: 0;
  }
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__image.as__bg {
  position: absolute;
  left: 0;
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__image img {
  border-radius: 5px;
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__image a {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  box-sizing: border-box;
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__image a span {
  border-radius: 100%;
  width: 100px;
  height: 100px;
  background: rgba(33, 30, 30, 0.8);
  margin: -50px auto 0;
  display: block;
  position: relative;
  top: 50%;
  text-align: center;
  transition: all 0.4s ease;
  transform: scale(1);
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__image a span strong {
  font-size: 70px;
  color: #fff;
  display: inline-block;
  line-height: 103px;
  margin-left: 14px;
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__image:hover a span {
  transition: all 0.4s ease;
  transform: scale(1.2);
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__text {
  padding-left: 25px;
}
@media (max-width: 1024px) {
  .flexible__content .fc_feature .fc_feature_wrapper .feature__text {
    width: 100%;
    padding-left: 0;
  }
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__text h3 {
  font-size: 30px;
  line-height: 36px;
  font-family: "Museo 700";
}
@media (max-width: 625px) {
  .flexible__content .fc_feature .fc_feature_wrapper .feature__text h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__text p {
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 20px;
}
.flexible__content .fc_feature .fc_feature_wrapper .feature__text p:last-child {
  margin-bottom: 0;
}
.flexible__content .fc_feature .fc_feature_wrapper.right .feature__image {
  order: 1;
  padding-left: 25px;
  padding-right: 0;
}
@media (max-width: 1024px) {
  .flexible__content .fc_feature .fc_feature_wrapper.right .feature__image {
    width: 100%;
    order: 0;
    padding-left: 0;
  }
}
.flexible__content .fc_feature .fc_feature_wrapper.right .feature__image.as__bg {
  position: absolute;
  right: 0;
  left: auto;
}
.flexible__content .fc_feature .fc_feature_wrapper.right .feature__text {
  padding-right: 25px;
  padding-left: 0;
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper.center {
  text-align: center;
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper.left {
  text-align: left;
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper.right {
  text-align: right;
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper article {
  padding: 20px;
  color: inherit;
  max-width: 350px;
  /* Full */
  /* Half */
  /* One third */
  /* One fourth */
  /* One fifth */
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.full-width {
  width: 100%;
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-half {
  width: 50%;
}
@media (max-width: 400px) {
  .flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-half {
    width: 100%;
  }
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-third {
  width: 33.3333333333%;
}
@media (max-width: 550px) {
  .flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-third {
    width: 50%;
  }
}
@media (max-width: 400px) {
  .flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-third {
    width: 100%;
  }
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-fourth {
  width: 25%;
}
@media (max-width: 700px) {
  .flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-fourth {
    width: 33.3333333333%;
  }
}
@media (max-width: 550px) {
  .flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-fourth {
    width: 50%;
  }
}
@media (max-width: 400px) {
  .flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-fourth {
    width: 100%;
  }
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-fifth {
  width: 20%;
}
@media (max-width: 900px) {
  .flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-fifth {
    width: 25%;
  }
}
@media (max-width: 700px) {
  .flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-fifth {
    width: 33.3333333333%;
  }
}
@media (max-width: 550px) {
  .flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-fifth {
    width: 50%;
  }
}
@media (max-width: 400px) {
  .flexible__content .fc_icon_grid .fc_icon_grid_wrapper article.one-fifth {
    width: 100%;
  }
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper article .icon-grid__icon {
  max-width: 300px;
  margin: 0 auto 20px;
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper article .icon-grid__icon span {
  font-size: 40px;
  color: #3c87c9;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper article .icon-grid__content {
  padding: 0 20px;
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper article h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #211e1e;
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper article p {
  font-size: 16px;
  line-height: 22px;
}
.flexible__content .fc_icon_grid .fc_icon_grid_wrapper article a {
  color: #211e1e;
}
.flexible__content .fc_grid_links .grid {
  display: flex;
  flex-wrap: wrap;
}
.flexible__content .fc_grid_links .grid article {
  width: 33.3333333333%;
  min-height: 420px;
  border: 2px transparent solid;
  flex: 1 0 auto;
}
@media (max-width: 700px) {
  .flexible__content .fc_grid_links .grid article {
    width: 100% !important;
  }
}
.flexible__content .fc_grid_links .grid article.full {
  width: 100%;
}
.flexible__content .fc_grid_links .grid article.full .grid__box__image {
  min-height: 200px;
}
.flexible__content .fc_grid_links .grid article.full .grid__box__content {
  width: 60%;
}
.flexible__content .fc_grid_links .grid article.half {
  width: 50%;
  flex: 1 0 50%;
}
.flexible__content .fc_grid_links .grid article.half .grid__box__image {
  min-height: 170px;
}
.flexible__content .fc_grid_links .grid article.half .grid__box__content {
  width: 60%;
}
.flexible__content .fc_grid_links .grid article.one__third {
  width: 33.3333333333%;
  flex: 1 0 auto;
}
.flexible__content .fc_grid_links .grid article.one__fourth {
  width: 25%;
  flex: 1 0 auto;
}
.flexible__content .fc_grid_links .grid article a {
  display: flex;
  height: 100%;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f1f5f7;
  overflow: hidden;
  border-radius: 5px;
}
.flexible__content .fc_grid_links .grid article a .grid__link__content {
  display: flex;
  align-items: flex-end;
  transition: all 0.8s ease;
  height: 100%;
  width: 100%;
  padding: 20px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,082d35+100&0+0,0.85+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(8, 45, 53, 0.85) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(8, 45, 53, 0.85) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(8, 45, 53, 0.85) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#d9082d35",GradientType=0 ); /* IE6-9 */
}
.flexible__content .fc_grid_links .grid article a .grid__link__content h3 {
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #fff;
}
.flexible__content .fc_grid_links .grid article a .grid__link__content h3 i {
  color: #0056a6;
  font-size: 18px;
  margin-left: 10px;
  transform: translateX(0) translateY(-2px);
  transition: all 0.4s ease;
}
.flexible__content .fc_grid_links .grid article:hover .grid__box__image {
  transform: scale(1.05);
  transition: all 0.8s ease;
}
.flexible__content .fc_grid_links .grid article:hover .grid__box__content h3 i {
  transform: translateX(4px) translateY(-2px);
  transition: all 0.4s ease;
}
.flexible__content .fc_accordion.grey .accordion__wrap h3 {
  background: #e4ecf0;
}
.flexible__content .fc_accordion.grey .accordion__wrap h3:hover:not(.active) {
  background: #dee7ec;
}
.flexible__content .fc_accordion .accordion__wrap {
  border-bottom: 1px solid #e7eef1;
  position: relative;
}
.flexible__content .fc_accordion .accordion__wrap h3 {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  color: #211e1e;
  font-size: 21px;
  margin: 0;
  cursor: pointer;
  line-height: 28px;
  transition: all 0.2s ease;
}
@media (max-width: 625px) {
  .flexible__content .fc_accordion .accordion__wrap h3 {
    font-size: 16px;
  }
}
.flexible__content .fc_accordion .accordion__wrap h3 i {
  display: block;
  margin-top: 7px;
  color: #0056a6;
  font-size: 24px;
  margin: 0 0 0 20px;
  transition: all 0.2s ease;
}
.flexible__content .fc_accordion .accordion__wrap h3 i.rotate {
  transform: rotate(180deg);
  transition: all 0.2s ease;
}
.flexible__content .fc_accordion .accordion__wrap .accordion__content {
  padding: 10px 20px;
  display: none;
}
.flexible__content .fc_accordion .accordion__wrap .accordion__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  transform: scale(0.8, 0.8);
  transition: all 0.2s ease;
}
.flexible__content .fc_accordion .accordion__wrap.active {
  border-bottom: none;
  z-index: 2;
}
.flexible__content .fc_accordion .accordion__wrap.active h3 {
  font-size: 31px;
  color: #211e1e;
  font-weight: 700;
  transition: all 0.2s ease;
}
.flexible__content .fc_accordion .accordion__wrap.active .accordion__content {
  display: block;
  animation: fadeInUp 0.3s ease-in;
}
.flexible__content .fc_accordion .accordion__wrap.active .accordion__content:before {
  content: "";
  display: block;
  width: 100%;
  max-width: 100px;
  height: 4px;
  background: #0056a6;
  margin: 0 0 20px;
}
.flexible__content .fc_accordion .accordion__wrap.active .accordion__bg {
  background: #fff;
  transform: scale(1.02, 1.1);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.13);
}
@media (max-width: 700px) {
  .flexible__content .fc_accordion .accordion__wrap.active .accordion__bg {
    transform: scale(1.02, 1.02);
  }
}
.flexible__content .fc_accordion .accordion__wrap.inactive h3 {
  color: #8b8080;
}
.flexible__content .fc_tabs.grey ul.tabbed li.active a {
  background: #fff;
}
.flexible__content .fc_tabs.grey .tab__content {
  background: #fff;
}
.flexible__content .fc_tabs ul.tabbed {
  padding: 0;
  display: flex;
  width: 100%;
  margin: 0;
}
.flexible__content .fc_tabs ul.tabbed li {
  padding-bottom: 0;
  list-style: none;
  margin: 0;
  display: flex;
}
.flexible__content .fc_tabs ul.tabbed li a {
  display: block;
  padding: 10px 30px;
  text-align: center;
  font-size: 18px;
  color: #0056a6;
  text-transform: uppercase;
}
.flexible__content .fc_tabs ul.tabbed li a:hover {
  background: #f7fafb;
}
.flexible__content .fc_tabs ul.tabbed li.active a {
  border-top: 2px #211e1e solid;
  background: #f1f5f7;
  font-weight: 400;
  color: #211e1e;
}
.flexible__content .fc_tabs .tab__content {
  padding: 20px;
  background: #f1f5f7;
}
.flexible__content .fc_gallery ul.gallery__images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  clear: both;
  margin: 0;
  padding: 0;
}
.flexible__content .fc_gallery ul.gallery__images li {
  list-style: none;
  padding: 10px;
  margin: 0;
  /* Full */
  /* Half */
  /* One third */
  /* One fourth */
  /* One fifth */
}
.flexible__content .fc_gallery ul.gallery__images li.full__width {
  width: 100%;
}
.flexible__content .fc_gallery ul.gallery__images li.one__half {
  width: 50%;
}
@media (max-width: 400px) {
  .flexible__content .fc_gallery ul.gallery__images li.one__half {
    width: 100%;
  }
}
.flexible__content .fc_gallery ul.gallery__images li.one__third {
  width: 33.3333333333%;
}
@media (max-width: 550px) {
  .flexible__content .fc_gallery ul.gallery__images li.one__third {
    width: 50%;
  }
}
@media (max-width: 400px) {
  .flexible__content .fc_gallery ul.gallery__images li.one__third {
    width: 100%;
  }
}
.flexible__content .fc_gallery ul.gallery__images li.one__fourth {
  width: 25%;
}
@media (max-width: 700px) {
  .flexible__content .fc_gallery ul.gallery__images li.one__fourth {
    width: 33.3333333333%;
  }
}
@media (max-width: 550px) {
  .flexible__content .fc_gallery ul.gallery__images li.one__fourth {
    width: 50%;
  }
}
@media (max-width: 400px) {
  .flexible__content .fc_gallery ul.gallery__images li.one__fourth {
    width: 100%;
  }
}
.flexible__content .fc_gallery ul.gallery__images li.one__fifth {
  width: 20%;
}
@media (max-width: 900px) {
  .flexible__content .fc_gallery ul.gallery__images li.one__fifth {
    width: 25%;
  }
}
@media (max-width: 700px) {
  .flexible__content .fc_gallery ul.gallery__images li.one__fifth {
    width: 33.3333333333%;
  }
}
@media (max-width: 550px) {
  .flexible__content .fc_gallery ul.gallery__images li.one__fifth {
    width: 50%;
  }
}
@media (max-width: 400px) {
  .flexible__content .fc_gallery ul.gallery__images li.one__fifth {
    width: 100%;
  }
}
.flexible__content .fc_gallery ul.gallery__images li img {
  width: 100%;
}
.flexible__content .fc_gallery ul.gallery__images li a {
  overflow: hidden;
  display: block;
  position: relative;
}
.flexible__content .fc_gallery ul.gallery__images li a img {
  transition: all 0.2s ease-in-out;
}
.flexible__content .fc_gallery ul.gallery__images li a .overlay {
  transition: all 0.2s ease-in-out;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.67);
}
.flexible__content .fc_gallery ul.gallery__images li a .overlay i {
  font-size: 60px;
  color: #fff;
}
.flexible__content .fc_gallery ul.gallery__images li:hover a .overlay {
  opacity: 1;
}
.flexible__content .fc_gallery ul.gallery__images li:hover a img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.flexible__content .fc_table.grey table tbody tr:nth-child(even) {
  background-color: #e7eef1;
}
.flexible__content .fc_table table {
  width: 100%;
}
@media (max-width: 700px) {
  .flexible__content .fc_table table thead {
    display: none;
  }
}
.flexible__content .fc_table table thead th {
  color: #fff;
  padding: 10px;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  background: #211e1e;
  text-transform: uppercase;
}
.flexible__content .fc_table table tbody tr:nth-child(odd) {
  background-color: #fff;
}
@media (max-width: 700px) {
  .flexible__content .fc_table table tbody tr:nth-child(odd) {
    background: none;
  }
}
.flexible__content .fc_table table tbody tr:nth-child(even) {
  background-color: #f1f5f7;
}
@media (max-width: 700px) {
  .flexible__content .fc_table table tbody tr:nth-child(even) {
    background: none;
  }
}
.flexible__content .fc_table table tbody td {
  color: inherit;
  padding: 10px;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  border-right: 1px #f1f5f7 solid;
}
@media (max-width: 700px) {
  .flexible__content .fc_table table tbody td {
    width: 100%;
    display: block;
  }
  .flexible__content .fc_table table tbody td:nth-child(even) {
    background-color: #f1f5f7;
  }
  .flexible__content .fc_table table tbody td:before {
    content: attr(data-th);
    width: 100%;
    display: block;
    padding: 10px 0;
    color: #211e1e;
    font-size: 18px;
    font-weight: 700;
  }
}
.flexible__content .fc_table table tbody td:last-child {
  border: none;
}
.flexible__content .fc_video {
  margin: 10px 0;
}
.flexible__content .fc_video .video-wrapper {
  margin: 0 auto;
}
.flexible__content .fc_video .video-wrapper .video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.flexible__content .fc_video .video-wrapper .video-responsive object,
.flexible__content .fc_video .video-wrapper .video-responsive embed,
.flexible__content .fc_video .video-wrapper .video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.flexible__content .fc_video .video-button {
  display: flex;
}
.flexible__content .fc_video .video-button .arrow__link {
  color: #FFFFFE;
  padding: 12px 22px;
  background: #0056a6;
  margin: 20px auto 0;
}
.flexible__content .fc_video .video-button .arrow__link i {
  color: #FFFFFE;
}
.flexible__content .fc_video p {
  margin-bottom: 20px;
}
.flexible__content .fc_carousel_images .carousel_images {
  display: flex;
  justify-content: space-around;
  height: 100px !important;
  width: 100% !important;
}
.flexible__content .fc_carousel_images .carousel_images .carousel_image {
  display: flex;
  align-items: center;
  justify-content: center;
  float: none;
  padding: 0 15px;
  max-width: 195px;
  width: 100%;
}
.flexible__content .fc_carousel_images .carousel_images .carousel_image img {
  width: auto;
  max-height: 100px;
}
.flexible__content .fc_carousel_images ul.lSPager {
  display: flex;
  justify-content: center;
  margin: 10px 0 0;
}
.flexible__content .fc_carousel_images ul.lSPager li {
  border-radius: 100%;
  width: 15px;
  height: 15px;
  margin: 5px;
  background: #ccc;
  list-style: none;
}
.flexible__content .fc_carousel_images ul.lSPager li a {
  display: none;
}
.flexible__content .fc_carousel_images ul.lSPager li.active {
  background: #211e1e;
}
.flexible__content .fc_carousel_images .lSAction a {
  z-index: 5;
}
.flexible__content .fc_carousel_images .lSAction a.lSPrev, .flexible__content .fc_carousel_images .lSAction a.lSNext {
  background: none;
  color: #211e1e;
  font-size: 40px;
  background: #fff;
  height: 47px;
}
.flexible__content .fc_carousel_images .lSAction > .lSPrev {
  left: 0;
}
.flexible__content .fc_carousel_images .lSAction > .lSNext {
  right: 0;
}
.flexible__content .fc_carousel_images .lSAction > .lSNext i {
  float: right;
}
.flexible__content .fc_carousel_images.footer {
  background: #FFFFFE;
  border-top: 1px solid #e1e9ee;
  border-bottom: 1px solid #e1e9ee;
}
.flexible__content .fc_team,
.flexible__content .fc_team_full {
  position: relative;
}
.flexible__content .fc_team .team__wrap,
.flexible__content .fc_team_full .team__wrap {
  display: flex;
  flex-wrap: wrap;
}
.flexible__content .fc_team .team__wrap article,
.flexible__content .fc_team_full .team__wrap article {
  width: 25%;
  margin-bottom: 40px;
}
@media (max-width: 700px) {
  .flexible__content .fc_team .team__wrap article,
  .flexible__content .fc_team_full .team__wrap article {
    width: 50%;
  }
}
@media (max-width: 625px) {
  .flexible__content .fc_team .team__wrap article,
  .flexible__content .fc_team_full .team__wrap article {
    width: 100%;
  }
}
.flexible__content .fc_team .team__wrap article a,
.flexible__content .fc_team_full .team__wrap article a {
  display: block;
  margin: 5px;
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.flexible__content .fc_team .team__wrap article a .team__overlay,
.flexible__content .fc_team_full .team__wrap article a .team__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: #211e1e;
}
.flexible__content .fc_team .team__wrap article a .team__overlay.member-join,
.flexible__content .fc_team_full .team__wrap article a .team__overlay.member-join {
  background: #211e1e;
  opacity: 1;
}
.flexible__content .fc_team .team__wrap article a .team__overlay.member-join:hover,
.flexible__content .fc_team_full .team__wrap article a .team__overlay.member-join:hover {
  opacity: 1;
  background: #3c87c9;
}
.flexible__content .fc_team .team__wrap article a .team__overlay.member-join span.team-more,
.flexible__content .fc_team_full .team__wrap article a .team__overlay.member-join span.team-more {
  width: 165px;
  background: #FFF;
  color: #211e1e;
  padding: 8px 20px;
}
.flexible__content .fc_team .team__wrap article a .team__overlay span.team__more,
.flexible__content .fc_team_full .team__wrap article a .team__overlay span.team__more {
  padding: 10px 0;
  color: #0056a6;
  text-align: center;
  font-size: 22px;
  display: block;
  font-weight: 600;
  margin-bottom: 40px;
}
.flexible__content .fc_team .team__wrap article h5,
.flexible__content .fc_team_full .team__wrap article h5 {
  padding: 15px 0;
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: rgba(241, 245, 247, 0.8);
  color: #211e1e;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 22px;
}
.flexible__content .fc_team .team__wrap article h5 span,
.flexible__content .fc_team_full .team__wrap article h5 span {
  font-size: 16px;
  color: white;
  display: block;
  line-height: 16px;
  font-weight: 600;
}
.flexible__content .fc_team .team__wrap article h5:before,
.flexible__content .fc_team_full .team__wrap article h5:before {
  content: "";
  display: block;
  width: 2px;
  max-height: 60px;
  background: #211e1e;
  margin-right: 10px;
  height: 40px;
  margin-left: 20px;
}
.flexible__content .fc_team .team__wrap article img,
.flexible__content .fc_team_full .team__wrap article img {
  width: 100%;
  max-height: 400px;
}
.flexible__content .fc_team .team__wrap article:hover .team__overlay,
.flexible__content .fc_team_full .team__wrap article:hover .team__overlay {
  opacity: 0.9;
  transition: opacity 0.5s ease;
}
.flexible__content .team__popup__holder {
  display: flex;
  transition: all 0.5s ease;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  -ms-overflow-y: scroll;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  opacity: 0;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  /* Old browsers */
  background: #f1f5f7;
  /* FF3.6-15 */
  background: -moz-linear-gradient(-45deg, rgba(241, 245, 247, 0.9) 0%, rgba(241, 245, 247, 0.9) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-linear-gradient(-45deg, rgba(241, 245, 247, 0.9) 0%, rgba(241, 245, 247, 0.9) 100%);
  background: linear-gradient(135deg, rgba(241, 245, 247, 0.9) 0%, rgba(241, 245, 247, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f5f8f9", endColorstr="#f5f8f9",GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}
@media (max-width: 700px) {
  .flexible__content .team__popup__holder {
    align-items: flex-start;
  }
}
.flexible__content .team__popup__holder.on {
  transition: all 0.5s ease;
  visibility: visible;
  opacity: 1;
}
.flexible__content .team__popup__holder .team__popup {
  background: rgb(255, 255, 255);
  position: relative;
  transition: all 0.2s ease;
  transform: rotateX(90deg);
  max-width: 1200px;
  display: none;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  width: 100%;
  min-height: 420px;
}
@media (max-width: 700px) {
  .flexible__content .team__popup__holder .team__popup {
    flex-direction: column;
  }
}
.flexible__content .team__popup__holder .team__popup .team__popup__img {
  width: 40%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  min-width: 320px;
  border-radius: 10px;
}
@media (max-width: 700px) {
  .flexible__content .team__popup__holder .team__popup .team__popup__img {
    width: 100%;
    height: 340px;
    margin-bottom: 20px;
  }
}
.flexible__content .team__popup__holder .team__popup .team__popup__img img {
  width: 100%;
}
.flexible__content .team__popup__holder .team__popup .team__popup__img a.team__video {
  position: absolute;
  bottom: -87%;
  left: 0;
  background: rgba(33, 30, 30, 0.8);
  padding: 18px 0 0;
  text-align: center;
  color: #fff;
  font-size: 20px;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.flexible__content .team__popup__holder .team__popup .team__popup__img a.team__video span {
  display: inline-block;
  margin: 0 10px 0 0;
  text-align: center;
  font-size: 22px;
}
.flexible__content .team__popup__holder .team__popup .team__popup__img a.team__video span:before {
  margin-left: 4px;
}
.flexible__content .team__popup__holder .team__popup .team__popup__img a.team__video:hover {
  transition: all 0.5s ease;
  bottom: 0;
  box-sizing: border-box;
  align-items: center;
  flex-direction: column;
}
.flexible__content .team__popup__holder .team__popup .team__popup__img a.team__video:hover span {
  display: block;
  font-size: 58px;
}
.flexible__content .team__popup__holder .team__popup .team__popup__img a.team__video:hover span:before {
  margin-left: 7px;
}
.flexible__content .team__popup__holder .team__popup .team__popup__content {
  width: 60%;
  padding: 30px 40px 20px;
  position: relative;
}
@media (max-width: 700px) {
  .flexible__content .team__popup__holder .team__popup .team__popup__content {
    width: 100%;
    padding: 20px 10px;
  }
}
.flexible__content .team__popup__holder .team__popup .team__popup__content .team__popup__nav {
  position: absolute;
  top: 0;
  right: 10px;
}
.flexible__content .team__popup__holder .team__popup .team__popup__content .team__popup__nav ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.flexible__content .team__popup__holder .team__popup .team__popup__content .team__popup__nav ul li {
  list-style: none;
}
.flexible__content .team__popup__holder .team__popup .team__popup__content .team__popup__nav ul li a {
  font-size: 28px;
  color: #211e1e;
  padding: 10px;
  display: block;
}
.flexible__content .team__popup__holder .team__popup .team__popup__content .team__popup__nav ul li a:hover {
  color: #211e1e;
}
.flexible__content .team__popup__holder .team__popup .team__popup__content .team__popup__nav ul li.inactive a {
  color: #f1f5f7;
  pointer-events: none;
}
.flexible__content .team__popup__holder .team__popup .team__popup__content .team__popup__meta {
  display: flex;
  align-items: center;
  margin: 10px 0 20px;
  padding: 10px;
  border-top: 1px #e1e9ee solid;
  border-bottom: 1px #e1e9ee solid;
}
.flexible__content .team__popup__holder .team__popup .team__popup__content .team__popup__meta article {
  padding-right: 20px;
  display: flex;
  align-items: center;
}
.flexible__content .team__popup__holder .team__popup .team__popup__content .team__popup__meta article i {
  color: #0056a6;
  margin-right: 10px;
  font-size: 20px;
}
.flexible__content .team__popup__holder .team__popup .team__popup__content .team__popup__meta article a {
  color: #211e1e;
}
.flexible__content .team__popup__holder .team__popup .team__popup_name h3 {
  font-size: 28px;
  color: #211e1e;
  font-weight: 600;
  margin: 0 0 10px;
  display: flex;
}
.flexible__content .team__popup__holder .team__popup .team__popup_name h3:before {
  content: "";
  display: block;
  width: 2px;
  max-height: 60px;
  background: #c2d217;
  margin-right: 10px;
  height: 40px;
  margin-left: -10px;
}
.flexible__content .team__popup__holder .team__popup .team__popup_name span {
  display: block;
  font-size: 17px;
  color: #211e1e;
  text-transform: none;
}
.flexible__content .team__popup__holder .team__popup .team__popup__email {
  display: block;
  padding-bottom: 27px;
  padding-left: 35px;
}
.flexible__content .team__popup__holder .team__popup .team__popup__email span {
  padding-top: 4px;
  display: block;
}
.flexible__content .team__popup__holder .team__popup .team__popup__email a {
  color: #d9cfcf;
}
.flexible__content .team__popup__holder .team__popup p {
  line-height: 26px;
  margin: 0 0 20px 0;
  font-size: 16px;
  padding: 0;
  color: #211e1e;
  clear: both;
}
.flexible__content .team__popup__holder .team__popup p:last-of-type {
  padding-bottom: 0;
}
.flexible__content .team__popup__holder .team__popup.is__active {
  display: flex;
  transform: rotateX(0deg);
}
.flexible__content .team__popup__holder .team__popup.is__active.rotate__bye {
  transform: rotateX(90deg);
  transition: all 0.2s ease;
}
.flexible__content .team__popup__holder .team__popup.is__active.rotate__hello {
  transform: rotateX(0deg);
  transition: all 0.2s 0.2s ease;
}
.flexible__content.bluecoat__2__column__boxes {
  display: flex;
}
@media (max-width: 700px) {
  .flexible__content.bluecoat__2__column__boxes {
    flex-direction: column;
  }
}
.flexible__content.bluecoat__2__column__boxes article {
  width: 50%;
  padding: 40px;
}
@media (max-width: 700px) {
  .flexible__content.bluecoat__2__column__boxes article {
    width: 100%;
    padding: 30px;
  }
}
.flexible__content.bluecoat__2__column__boxes article p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
  font-weight: 200;
}
.flexible__content.bluecoat__2__column__boxes article ul {
  padding-left: 10px;
}
.flexible__content.bluecoat__2__column__boxes article ul li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  padding-bottom: 20px;
  margin: 0;
}
.flexible__content.bluecoat__2__column__boxes article ul li:before {
  content: "\f120";
  font-family: "Ionicons";
  margin-right: 15px;
}
.flexible__content.bluecoat__2__column__boxes article.lightgrey {
  background: #f1f5f7;
}
.flexible__content.bluecoat__2__column__boxes article.blue {
  background: #211e1e;
}
.flexible__content.bluecoat__2__column__boxes article.darkblue {
  background: #3c87c9;
}
.flexible__content.bluecoat__2__column__boxes article.blue h1, .flexible__content.bluecoat__2__column__boxes article.blue h2, .flexible__content.bluecoat__2__column__boxes article.blue h3, .flexible__content.bluecoat__2__column__boxes article.blue h4, .flexible__content.bluecoat__2__column__boxes article.blue h5, .flexible__content.bluecoat__2__column__boxes article.blue h6, .flexible__content.bluecoat__2__column__boxes article.darkblue h1, .flexible__content.bluecoat__2__column__boxes article.darkblue h2, .flexible__content.bluecoat__2__column__boxes article.darkblue h3, .flexible__content.bluecoat__2__column__boxes article.darkblue h4, .flexible__content.bluecoat__2__column__boxes article.darkblue h5, .flexible__content.bluecoat__2__column__boxes article.darkblue h6 {
  color: #fff;
}
.flexible__content.bluecoat__2__column__boxes article.blue p, .flexible__content.bluecoat__2__column__boxes article.blue li, .flexible__content.bluecoat__2__column__boxes article.darkblue p, .flexible__content.bluecoat__2__column__boxes article.darkblue li {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
}
.flexible__content .fc_timeline {
  padding: 10px 20px;
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row {
    margin-bottom: 40px;
  }
  .flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row:last-child {
    margin-bottom: 0;
  }
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row article {
  width: 50%;
  box-shadow: 2px 0 0 0 #f1f5f7;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row article {
    width: 100%;
    box-shadow: none;
  }
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row article .timeline__caption {
  margin: 10px 0 0 20px;
  width: 75%;
  padding: 15px 20px 15px 40px;
  position: relative;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row article .timeline__caption {
    box-shadow: none;
    padding: 60px 20px 20px;
    width: 100%;
    margin: 0;
    text-align: center;
  }
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row article .timeline__caption h3 {
  font-size: 24px;
  margin: 0 0 10px 0;
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row article .timeline__caption p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row article .timeline__caption i {
  width: 70px;
  height: 70px;
  background: #fff;
  box-shadow: -1px 0px 10px rgba(0, 0, 0, 0.05);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #0056a6;
  position: absolute;
  top: -42.5px;
  left: -42.5px;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row article .timeline__caption i {
    left: 50%;
    margin-left: -42.5px;
  }
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row article .line {
  height: 2px;
  background: #f1f5f7;
  position: relative;
  right: -30px;
  width: 15%;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row article .line {
    display: none;
  }
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row article figure {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 100%;
  background: #0056a6;
  box-shadow: -1px 0px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #211e1e;
  font-weight: 700;
  position: relative;
  right: -30px;
  font-size: 22px;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row article figure {
    display: none;
    box-shadow: none;
  }
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row:nth-child(even) {
  justify-content: flex-end;
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row:nth-child(even) article {
  border: none;
  box-shadow: inset 2px 0 0 0 #f1f5f7;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row:nth-child(even) article {
    box-shadow: none;
  }
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row:nth-child(even) article .timeline__caption {
  order: 3;
  margin: 10px 0 0 20px;
  padding: 15px 40px 15px 20px;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row:nth-child(even) article .timeline__caption {
    box-shadow: 0;
    padding: 60px 20px 20px;
    width: 100%;
    margin: 0;
    text-align: center;
  }
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row:nth-child(even) article .timeline__caption i {
  left: auto;
  right: -42.5px;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row:nth-child(even) article .timeline__caption i {
    right: 50%;
    margin-right: -42.5px;
  }
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row:nth-child(even) article .line {
  order: 2;
  right: auto;
  left: -18px;
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row:nth-child(even) article figure {
  order: 1;
  right: auto;
  left: -18px;
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row:first-child article {
  padding-top: 40px;
}
.flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row:last-child article {
  padding-bottom: 40px;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline .fc_timeline_wrapper .timeline__row:last-child article {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.flexible__content .fc_timeline.grey .fc_timeline_wrapper .timeline__row article {
  box-shadow: 4px 0 0 0 #fff;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline.grey .fc_timeline_wrapper .timeline__row article {
    box-shadow: none;
  }
}
.flexible__content .fc_timeline.grey .fc_timeline_wrapper .timeline__row article .timeline__caption {
  background: #fff;
  box-shadow: 22px 0 0 0 #fff;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline.grey .fc_timeline_wrapper .timeline__row article .timeline__caption {
    box-shadow: none;
  }
}
.flexible__content .fc_timeline.grey .fc_timeline_wrapper .timeline__row article .line {
  background: #fff;
}
.flexible__content .fc_timeline.grey .fc_timeline_wrapper .timeline__row article figure {
  background: #fff;
  border: 4px #fff solid;
  box-shadow: 0 0 0 10px #f1f5f7;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline.grey .fc_timeline_wrapper .timeline__row article figure {
    box-shadow: none;
  }
}
.flexible__content .fc_timeline.grey .fc_timeline_wrapper .timeline__row:nth-child(even) article {
  box-shadow: inset 4px 0 0 0 #fff;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline.grey .fc_timeline_wrapper .timeline__row:nth-child(even) article {
    box-shadow: none;
  }
}
.flexible__content .fc_timeline.grey .fc_timeline_wrapper .timeline__row:nth-child(even) article .timeline__caption {
  box-shadow: -18px 0 0 0 #fff;
}
@media (max-width: 900px) {
  .flexible__content .fc_timeline.grey .fc_timeline_wrapper .timeline__row:nth-child(even) article .timeline__caption {
    box-shadow: none;
  }
}
@media (max-width: 700px) {
  .flexible__content .fc_cta {
    flex-direction: column;
    align-items: center;
  }
}
.flexible__content .fc_cta .cta__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 100px 0;
}
@media (max-width: 700px) {
  .flexible__content .fc_cta .cta__wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.flexible__content .fc_cta .cta__wrapper .max__width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 700px) {
  .flexible__content .fc_cta .cta__wrapper .max__width {
    flex-direction: column;
    align-items: center;
  }
}
.flexible__content .fc_cta .cta__wrapper article {
  width: 40%;
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .flexible__content .fc_cta .cta__wrapper article {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
  }
}
.flexible__content .fc_cta .cta__wrapper article h2 {
  font-size: 33px;
  color: #fff;
  margin: 0;
  font-weight: 600;
}
.flexible__content .fc_cta .cta__wrapper article p {
  font-size: 18px;
  padding-top: 20px;
  margin: 0;
  color: #fff;
}
.flexible__content .fc_cta .cta__wrapper a {
  font-size: 22px;
  font-weight: 700;
  padding: 15px 50px;
  position: relative;
  z-index: 2;
  background: #0056a6;
  color: #FFFFFE;
  transition: all 0.4s ease;
  margin-top: 0;
  align-self: auto;
}
@media (max-width: 700px) {
  .flexible__content .fc_cta .cta__wrapper a {
    font-size: 18px;
  }
}
.flexible__content .fc_cta .cta__wrapper a:hover {
  background: #0063c0;
  transition: all 0.4s ease;
}
.flexible__content .fc_cta .cta__wrapper .cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.flexible__content .fc_cta .cta__wrapper .cta__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.flexible__content .fc_cta .cta__wrapper .cta__image.cta__parallax {
  background-attachment: fixed;
}
@media (max-width: 700px) {
  .flexible__content .fc_cta .cta__wrapper .cta__image.cta__parallax {
    background-attachment: initial;
  }
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 10px;
}
@media (max-width: 625px) {
  .flexible__content .fc_grid_boxes .grid__boxes__wrapper {
    margin: 0;
  }
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article {
  display: flex;
  align-items: center;
  flex: 1 0 280px;
  position: relative;
  overflow: hidden;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article .grid__box__image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 50%;
  min-height: 250px;
  position: relative;
  width: 100%;
  transition: all 0.8s ease;
  transform: scale(1);
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article .grid__box__image a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article .grid__box__content {
  width: 50%;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article .grid__box__content a.button {
  margin-top: 20px;
  background: #211e1e;
  color: #fff;
  padding: 8px 20px;
  align-self: flex-start;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article .grid__box__content a.button:hover {
  background: #211e1e;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article .grid__box__content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article .grid__box__content h3 i {
  color: #0056a6;
  font-size: 18px;
  margin-left: 10px;
  transform: translateX(0) translateY(-2px);
  transition: all 0.4s ease;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.content_below {
  flex-direction: column;
  min-width: 150px;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.content_below .grid__box__content {
  width: 100%;
  padding: 10px 0 0;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.content_below .grid__box__content h3 {
  font-family: "Museo 700";
}
@media (max-width: 625px) {
  .flexible__content .fc_grid_boxes .grid__boxes__wrapper article.content_below .grid__box__content {
    padding: 5px 0 0;
  }
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.full {
  width: 100%;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.full .grid__box__image {
  min-height: 200px;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.full .grid__box__content {
  width: 60%;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.half {
  width: 50%;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.half .grid__box__image {
  min-height: 170px;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.half .grid__box__content {
  width: 60%;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.one__third {
  width: 33.3333333333%;
}
@media (max-width: 625px) {
  .flexible__content .fc_grid_boxes .grid__boxes__wrapper article.one__third {
    flex: 1 0 100%;
  }
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.one__fourth {
  width: 25%;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.right .grid__box__image {
  order: 2;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.top, .flexible__content .fc_grid_boxes .grid__boxes__wrapper article.bottom {
  flex-direction: column;
  padding: 10px;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.top .grid__box__image, .flexible__content .fc_grid_boxes .grid__boxes__wrapper article.bottom .grid__box__image {
  width: 100%;
  min-height: 200px;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.top .grid__box__content, .flexible__content .fc_grid_boxes .grid__boxes__wrapper article.bottom .grid__box__content {
  width: 100%;
  align-items: flex-start;
  padding: 10px 0;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.top .grid__box__content h3, .flexible__content .fc_grid_boxes .grid__boxes__wrapper article.bottom .grid__box__content h3 {
  margin: 10px 0;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.bottom {
  flex-direction: column-reverse;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.bottom .grid__box__content p {
  margin-bottom: 10px;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.overlay .grid__box__image {
  min-height: 240px;
  overflow: hidden;
}
@media (max-width: 550px) {
  .flexible__content .fc_grid_boxes .grid__boxes__wrapper article.overlay .grid__box__image {
    min-height: 240px;
  }
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.overlay .grid__box__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  justify-content: flex-end;
  transition: all 0.8s ease;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,082d35+100&0+0,0.85+100 */
  background: -moz-linear-gradient(top, rgba(33, 30, 30, 0.5) 0%, rgba(33, 30, 30, 0.5) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(33, 30, 30, 0.5) 0%, rgba(33, 30, 30, 0.5) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(33, 30, 30, 0.1) 0%, #211e1e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#d9082d35",GradientType=0 ); /* IE6-9 */
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.overlay .grid__box__content h3, .flexible__content .fc_grid_boxes .grid__boxes__wrapper article.overlay .grid__box__content p {
  color: #FFFFFE;
  margin: 0;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.overlay .grid__box__content p {
  max-width: 335px;
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.8);
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.overlay .grid__box__content.left {
  text-align: left;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.overlay .grid__box__content.center {
  text-align: center;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.overlay .grid__box__content.center p:before {
  margin: 5px auto 15px;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.overlay .grid__box__content.right {
  text-align: right;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article.overlay .grid__box__content.right p:before {
  margin: 5px 0 15px auto;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article .grid__overlay__a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article .grid__overlay__a:hover .grid__box__image {
  transform: scale(1.05);
  transition: all 0.8s ease;
}
.flexible__content .fc_grid_boxes .grid__boxes__wrapper article .grid__overlay__a:hover .grid__box__content h3 i {
  transform: translateX(4px) translateY(-2px);
  transition: all 0.4s ease;
}
.flexible__content .fc_testimonials {
  padding: 40px 0;
}
.flexible__content .fc_testimonials .testimonials__wrapper {
  width: 100%;
}
.flexible__content .fc_testimonials .testimonials__wrapper article {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #f1f5f7;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.flexible__content .fc_testimonials .testimonials__wrapper article .test_img {
  width: 20%;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .flexible__content .fc_testimonials .testimonials__wrapper article .test_img {
    display: none;
  }
}
.flexible__content .fc_testimonials .testimonials__wrapper article .test_img img {
  margin: 0 auto;
  border-radius: 50%;
}
.flexible__content .fc_testimonials .testimonials__wrapper article .test_content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 800px) {
  .flexible__content .fc_testimonials .testimonials__wrapper article .test_content {
    width: 100%;
  }
}
.flexible__content .fc_testimonials .testimonials__wrapper article .test_content .testimonial__meta {
  padding-bottom: 20px;
  flex: 1 0 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 700px) {
  .flexible__content .fc_testimonials .testimonials__wrapper article .test_content .testimonial__meta {
    text-align: center;
  }
}
.flexible__content .fc_testimonials .testimonials__wrapper article .test_content .testimonial__meta h3 {
  color: #211e1e;
  padding: 0 0 10px;
  line-height: 28px;
  margin: 0;
}
@media (max-width: 700px) {
  .flexible__content .fc_testimonials .testimonials__wrapper article .test_content .testimonial__meta h3 {
    font-size: 24px;
    flex-direction: column-reverse;
  }
}
@media (max-width: 700px) {
  .flexible__content .fc_testimonials .testimonials__wrapper article .test_content .testimonial__meta .stars {
    margin-bottom: 10px;
  }
}
.flexible__content .fc_testimonials .testimonials__wrapper article .test_content .testimonial__meta .stars span {
  color: #211e1e;
  font-size: 25px;
}
.flexible__content .fc_testimonials .testimonials__wrapper article .test_content .video-wrapper {
  width: 50%;
}
@media (max-width: 700px) {
  .flexible__content .fc_testimonials .testimonials__wrapper article .test_content .video-wrapper {
    width: 100%;
  }
}
.flexible__content .fc_testimonials .testimonials__wrapper article .test_content .video-wrapper .video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.flexible__content .fc_testimonials .testimonials__wrapper article .test_content .video-wrapper .video-responsive object,
.flexible__content .fc_testimonials .testimonials__wrapper article .test_content .video-wrapper .video-responsive embed,
.flexible__content .fc_testimonials .testimonials__wrapper article .test_content .video-wrapper .video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.flexible__content .fc_testimonials .testimonials__wrapper article .test_content .testim__content {
  width: 50%;
  flex: 1 0 auto;
}
@media (max-width: 700px) {
  .flexible__content .fc_testimonials .testimonials__wrapper article .test_content .testim__content {
    text-align: center;
  }
}
.flexible__content .fc_testimonials .testimonials__wrapper article .test_content .testim__content p {
  font-size: 16px;
  line-height: 26px;
  color: #211e1e;
  padding-bottom: 15px;
  margin: 0;
}
.flexible__content .fc_testimonials .testimonials__wrapper article .test_content .testim__content h5 {
  font-size: 18px;
  color: #211e1e;
  padding-bottom: 0;
}
.flexible__content .fc_testimonials .testimonials__wrapper article.left .testim__content {
  padding-left: 40px;
}
@media (max-width: 700px) {
  .flexible__content .fc_testimonials .testimonials__wrapper article.left .testim__content {
    padding: 20px 0 0;
  }
}
.flexible__content .fc_testimonials .testimonials__wrapper article.right .testim__content {
  padding-right: 40px;
}
@media (max-width: 700px) {
  .flexible__content .fc_testimonials .testimonials__wrapper article.right .testim__content {
    padding: 20px 0 0;
  }
}
.flexible__content .fc_testimonials .testimonials__wrapper article.right .video-wrapper {
  order: 2;
}
@media (max-width: 700px) {
  .flexible__content .fc_testimonials .testimonials__wrapper article.right .video-wrapper {
    order: 0;
  }
}
.flexible__content .fc_testimonials .testimonials__wrapper.grid {
  display: flex;
  flex-wrap: wrap;
}
.flexible__content .fc_testimonials .testimonials__wrapper.grid article {
  width: 33.3333333333%;
  flex: 1 0 auto;
  padding: 0 25px;
  margin-bottom: 0;
  border-bottom: none;
  display: block;
}
@media (max-width: 625px) {
  .flexible__content .fc_testimonials .testimonials__wrapper.grid article {
    width: 100%;
  }
}
.flexible__content .fc_testimonials .testimonials__wrapper.grid article .testimonial__meta {
  flex-direction: column;
  flex: auto;
  width: 100%;
}
.flexible__content .fc_testimonials .testimonials__wrapper.grid article .testimonial__meta h3 {
  display: none;
}
.flexible__content .fc_testimonials .testimonials__wrapper.grid article .testimonial__meta .stars {
  padding-top: 10px;
}
.flexible__content .fc_testimonials .testimonials__wrapper.grid article .testim__content {
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.flexible__content .fc_testimonials .testimonials__wrapper.feature {
  display: flex;
}
.flexible__content .fc_testimonials .testimonials__wrapper.feature .testimonial_feature {
  width: 33.3333333333%;
  box-sizing: border-box;
}
.flexible__content .fc_testimonials .testimonials__wrapper.feature .lSSlideOuter {
  width: 66.6666666667%;
}
.flexible__content .fc_contact .fc_contact_wrapper {
  display: flex;
}
@media (max-width: 700px) {
  .flexible__content .fc_contact .fc_contact_wrapper {
    flex-direction: column;
  }
}
.flexible__content .fc_contact .fc_contact_wrapper article {
  flex: 1 0 auto;
}
@media (max-width: 700px) {
  .flexible__content .fc_contact .fc_contact_wrapper article {
    width: 100%;
  }
}
.flexible__content .fc_contact .fc_contact_wrapper article ul {
  margin: 0;
  padding: 20px 0;
}
.flexible__content .fc_contact .fc_contact_wrapper article ul li {
  list-style: none;
  color: #211e1e;
  display: flex;
  font-size: 22px;
  font-weight: 300;
  align-items: center;
  line-height: 30px;
  padding-bottom: 20px;
}
.flexible__content .fc_contact .fc_contact_wrapper article ul li i {
  font-size: 30px;
  color: #211e1e;
  width: 60px;
  height: 60px;
  border: 1px #a49a9a solid;
  line-height: 60px;
  text-align: center;
  margin-right: 15px;
  border-radius: 100%;
}
.flexible__content .fc_contact .fc_contact_wrapper article ul li a {
  color: #211e1e;
}
.flexible__content .fc_contact .fc_contact_wrapper article ul li a:hover {
  color: #211e1e;
}
.flexible__content .fc_contact .fc_contact_wrapper article ul li.address {
  align-items: flex-start;
}
.flexible__content .fc_contact .fc_contact_wrapper article #map_single {
  height: 450px;
}
.flexible__content .fc_contact .fc_contact_wrapper article.map {
  width: 60%;
  padding-left: 20px;
}
@media (max-width: 700px) {
  .flexible__content .fc_contact .fc_contact_wrapper article.map {
    width: 100%;
    padding: 0;
  }
}
.flexible__content .fc_feature_boxes_wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 10px 0;
}
@media (max-width: 900px) {
  .flexible__content .fc_feature_boxes_wrapper {
    flex-direction: column;
    margin: 0 -20px;
  }
}
.flexible__content .fc_feature_boxes_wrapper article {
  width: 33.3333333333%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .flexible__content .fc_feature_boxes_wrapper article {
    width: 100%;
  }
}
.flexible__content .fc_feature_boxes_wrapper article.full__width {
  width: 100%;
}
.flexible__content .fc_feature_boxes_wrapper article.one__half {
  width: 50%;
}
@media (max-width: 900px) {
  .flexible__content .fc_feature_boxes_wrapper article.one__half {
    width: 100%;
  }
}
.flexible__content .fc_feature_boxes_wrapper article.one__third {
  width: 33.3333333333%;
}
@media (max-width: 900px) {
  .flexible__content .fc_feature_boxes_wrapper article.one__third {
    width: 100%;
  }
}
.flexible__content .fc_feature_boxes_wrapper article.one__fourth {
  width: 25%;
}
@media (max-width: 900px) {
  .flexible__content .fc_feature_boxes_wrapper article.one__fourth {
    width: 100%;
  }
}
.flexible__content .fc_feature_boxes_wrapper article .fc__feature__box__inner {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  margin: 10px;
  transition: all 0.3s ease;
  transform: scale3d(1, 1, 1);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.flexible__content .fc_feature_boxes_wrapper article .fc__feature__box__inner h3 {
  font-size: 32px;
  color: #211e1e;
  font-weight: 400;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flexible__content .fc_feature_boxes_wrapper article .fc__feature__box__inner h3 a {
  color: #211e1e;
}
.flexible__content .fc_feature_boxes_wrapper article .fc__feature__box__inner h3 a:hover {
  color: #564f4f;
}
.flexible__content .fc_feature_boxes_wrapper article .fc__feature__box__inner h3 figure i {
  font-size: 50px;
  color: #0056a6;
  transition: all 0.3s ease;
}
.flexible__content .fc_feature_boxes_wrapper article .fc__feature__box__inner p {
  font-size: 16px;
  color: #211e1e;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 20px;
}
.flexible__content .fc_feature_boxes_wrapper article .fc__feature__box__inner p strong {
  font-weight: 700;
}
.flexible__content .fc_feature_boxes_wrapper article .fc__feature__box__inner a.fom {
  font-size: 16px;
  font-weight: 800;
  color: #211e1e;
  display: flex;
  align-self: flex-end;
  margin-top: auto;
}
.flexible__content .fc_feature_boxes_wrapper article .fc__feature__box__inner a.fom i {
  margin-left: 10px;
  position: relative;
  top: 1px;
}
.flexible__content .fc_feature_boxes_wrapper article .fc__feature__box__inner a.fom:hover {
  color: #564f4f;
}
.flexible__content .fc_feature_boxes_wrapper article.animate:hover {
  transition: all 0.3s ease;
  transform: scale3d(1.03, 1.03, 1.03);
}
.flexible__content .fc_feature_boxes_persona_wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px -10px 0;
}
@media (max-width: 900px) {
  .flexible__content .fc_feature_boxes_persona_wrapper {
    flex-direction: column;
    margin: 0 -20px;
  }
}
.flexible__content .fc_feature_boxes_persona_wrapper article {
  width: 33.3333333333%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .flexible__content .fc_feature_boxes_persona_wrapper article {
    width: 100%;
  }
}
.flexible__content .fc_feature_boxes_persona_wrapper article.full__width {
  width: 100%;
}
.flexible__content .fc_feature_boxes_persona_wrapper article.one__half {
  width: 50%;
}
@media (max-width: 900px) {
  .flexible__content .fc_feature_boxes_persona_wrapper article.one__half {
    width: 100%;
  }
}
.flexible__content .fc_feature_boxes_persona_wrapper article.one__third {
  width: 33.3333333333%;
}
@media (max-width: 900px) {
  .flexible__content .fc_feature_boxes_persona_wrapper article.one__third {
    width: 100%;
  }
}
.flexible__content .fc_feature_boxes_persona_wrapper article.one__fourth {
  width: 25%;
}
@media (max-width: 900px) {
  .flexible__content .fc_feature_boxes_persona_wrapper article.one__fourth {
    width: 100%;
  }
}
.flexible__content .fc_feature_boxes_persona_wrapper article.one__fifth {
  width: 20%;
}
@media (max-width: 900px) {
  .flexible__content .fc_feature_boxes_persona_wrapper article.one__fifth {
    width: 100%;
  }
}
.flexible__content .fc_feature_boxes_persona_wrapper article .fc__feature__box__inner {
  background: #0056a6;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0 25px 50px;
  display: flex;
  flex-direction: column;
  margin: 10px;
  transition: all 0.3s ease;
  transform: scale3d(1, 1, 1);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.flexible__content .fc_feature_boxes_persona_wrapper article .fc__feature__box__inner .top_icon {
  display: flex;
  justify-content: center;
  position: relative;
  top: -50px;
  z-index: 999;
}
@media (max-width: 700px) {
  .flexible__content .fc_feature_boxes_persona_wrapper article .fc__feature__box__inner .top_icon {
    top: -20px;
  }
}
.flexible__content .fc_feature_boxes_persona_wrapper article .fc__feature__box__inner .top_icon i {
  font-size: 50px;
  color: #FFFFFE;
  transition: all 0.3s ease;
  width: 110px;
  height: 110px;
  background: #211e1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flexible__content .fc_feature_boxes_persona_wrapper article .fc__feature__box__inner h3 {
  font-size: 27px;
  color: #211e1e;
  font-weight: 400;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.flexible__content .fc_feature_boxes_persona_wrapper article .fc__feature__box__inner h3 a {
  color: #211e1e;
}
.flexible__content .fc_feature_boxes_persona_wrapper article .fc__feature__box__inner h3 a:hover {
  color: #564f4f;
}
.flexible__content .fc_feature_boxes_persona_wrapper article .fc__feature__box__inner p {
  font-size: 16px;
  color: #211e1e;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
}
.flexible__content .fc_feature_boxes_persona_wrapper article .fc__feature__box__inner p strong {
  font-weight: 700;
}
.flexible__content .fc_feature_boxes_persona_wrapper article .fc__feature__box__inner a.fom {
  font-size: 16px;
  font-weight: 800;
  color: #211e1e;
  display: flex;
  align-self: flex-end;
  margin-top: auto;
}
.flexible__content .fc_feature_boxes_persona_wrapper article .fc__feature__box__inner a.fom i {
  margin-left: 10px;
  position: relative;
  top: 1px;
}
.flexible__content .fc_feature_boxes_persona_wrapper article .fc__feature__box__inner a.fom:hover {
  color: #564f4f;
}
.flexible__content .fc_feature_boxes_persona_wrapper article.animate:hover {
  transition: all 0.3s ease;
  transform: scale3d(1.03, 1.03, 1.03);
}
.flexible__content .fc_masonry {
  margin: 10px 0;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry {
  margin: 0 10px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item {
  width: 33.3333333333%;
  min-height: 200px;
  border: 10px transparent solid;
}
@media (max-width: 1024px) {
  .flexible__content .fc_masonry .masonry__wrapper .masonry__item {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .flexible__content .fc_masonry .masonry__wrapper .masonry__item {
    width: 100%;
  }
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item__wrapper {
  border-radius: 5px;
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item .blog {
  padding: 15px;
  background: #fff;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item .blog__img {
  height: 330px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  transition: all 0.4s ease;
  opacity: 1;
  position: relative;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item .blog__img:hover {
  opacity: 0.6;
  transition: all 0.4s ease;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item .blog__img__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+49&0+0,1+88 */
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item .blog__content {
  margin: 0 15px 10px;
  padding: 15px;
  position: relative;
  z-index: 5;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item .blog__content h3 {
  font-size: 1.1rem;
  color: #211e1e;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item .blog__content h3 span {
  font-size: 12px;
  color: #211e1e;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item .blog__content h3 span a {
  color: #0056a6;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item .blog__content h3 a {
  color: #211e1e;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item .blog__content p {
  font-size: 0.85rem;
  color: #211e1e;
  line-height: 1.4;
  margin-bottom: 0;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item .blog__content .blog__meta {
  font-size: 1rem;
  font-weight: 600;
  color: #211e1e;
  display: flex;
  align-items: center;
  padding: 25px 0 10px;
  justify-content: space-between;
  text-transform: uppercase;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item .blog__content .blog__meta a {
  color: #0056a6;
  font-size: 14px;
  font-weight: 800;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item .blog__content .blog__meta date {
  margin-right: 20px;
  font-size: 14px;
  color: #211e1e;
  font-weight: 600;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper {
  background: #211e1e;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap {
  display: flex;
  flex-wrap: wrap;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article {
  height: 250px;
}
@media (max-width: 700px) {
  .flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article {
    width: 50%;
  }
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article a {
  display: block;
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  height: 250px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article a .team__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: #211e1e;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article a .team__overlay.member-join {
  background: #211e1e;
  opacity: 1;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article a .team__overlay.member-join:hover {
  opacity: 1;
  background: #3c87c9;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article a .team__overlay.member-join span.team-more {
  width: 165px;
  background: #FFF;
  color: #211e1e;
  padding: 8px 20px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article a .team__overlay span.team__more {
  padding: 10px 0;
  color: #0056a6;
  text-align: center;
  font-size: 22px;
  display: block;
  font-weight: 600;
  margin-bottom: 40px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article h5 {
  padding: 20px 0;
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: rgba(241, 245, 247, 0.8);
  color: #211e1e;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 16px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article h5 span {
  font-size: 16px;
  color: white;
  display: block;
  line-height: 16px;
  font-weight: 600;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article h5:before {
  content: "";
  display: block;
  width: 2px;
  max-height: 60px;
  background: #211e1e;
  margin-right: 10px;
  height: 40px;
  margin-left: 20px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article img {
  width: 100%;
  max-height: 400px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .masonry__item__wrapper .team__wrap article:hover .team__overlay {
  opacity: 0.9;
  transition: opacity 0.5s ease;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .team__img {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  margin: -50px auto 0;
  box-shadow: 0 -5px 12px 0px rgba(0, 0, 0, 0.05);
  display: block;
  transition: all 0.4s ease;
  opacity: 1;
  background-color: #e3ece5;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .team__img:hover {
  opacity: 0.8;
  transition: all 0.4s ease;
}
@media (max-width: 700px) {
  .flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .team__img {
    margin-top: -20px;
  }
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .team__content {
  padding: 20px 10px 0;
  text-align: center;
  width: 100%;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .team__content h5 {
  font-size: 1.05rem;
  color: #FFFFFE;
  text-transform: uppercase;
  margin-bottom: 5px;
  line-height: normal;
  font-weight: 500;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .team__content h2 {
  font-size: 1.2rem;
  color: #0056a6;
  margin-bottom: 20px;
  line-height: normal;
  font-weight: 600;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .team__content h2 a {
  color: #211e1e;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .team__content h2 a:hover {
  color: #211e1e;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .team__content p {
  font-size: 0.85rem;
  color: #FFFFFE;
  line-height: 1.5;
  padding: 0 20px 20px;
  width: 100%;
  margin-bottom: 0;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team .team__content .button {
  border-radius: 96px;
  margin-bottom: 20px;
  display: inline-block;
  font-weight: 800;
  padding: 15px 20px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper {
  background: #211e1e;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap {
  display: flex;
  flex-wrap: wrap;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article a {
  display: block;
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article a .team__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: #211e1e;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article a .team__overlay.member-join {
  background: #211e1e;
  opacity: 1;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article a .team__overlay.member-join:hover {
  opacity: 1;
  background: #3c87c9;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article a .team__overlay.member-join span.team-more {
  width: 165px;
  background: #FFF;
  color: #211e1e;
  padding: 8px 20px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article a .team__overlay span.team__more {
  padding: 10px 0;
  color: #0056a6;
  text-align: center;
  font-size: 22px;
  display: block;
  font-weight: 600;
  margin-bottom: 40px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article h5 {
  padding: 20px 0;
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: rgba(241, 245, 247, 0.8);
  color: #211e1e;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 16px;
}
@media (max-width: 625px) {
  .flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article h5 {
    padding: 10px 0;
    font-size: 15px;
  }
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article h5 span {
  font-size: 16px;
  color: white;
  display: block;
  line-height: 16px;
  font-weight: 600;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article h5:before {
  content: "";
  display: block;
  width: 2px;
  max-height: 60px;
  background: #211e1e;
  margin-right: 10px;
  height: 40px;
  margin-left: 20px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article img {
  width: 100%;
  max-height: 400px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .masonry__item__wrapper .team__wrap article:hover .team__overlay {
  opacity: 0.9;
  transition: opacity 0.5s ease;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__img {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  margin: -50px auto 0;
  box-shadow: 0 -5px 12px 0px rgba(0, 0, 0, 0.05);
  display: block;
  transition: all 0.4s ease;
  opacity: 1;
  background-color: #e3ece5;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__img:hover {
  opacity: 0.8;
  transition: all 0.4s ease;
}
@media (max-width: 700px) {
  .flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__img {
    margin-top: -20px;
  }
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content {
  padding: 20px 10px 0;
  text-align: center;
  width: 100%;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content h5 {
  font-size: 1.05rem;
  color: #FFFFFE;
  text-transform: uppercase;
  margin-bottom: 5px;
  line-height: normal;
  font-weight: 500;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content h2 {
  font-size: 1.2rem;
  color: #0056a6;
  margin-bottom: 20px;
  line-height: normal;
  font-weight: 600;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content h2 a {
  color: #211e1e;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content h2 a:hover {
  color: #211e1e;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content p {
  font-size: 0.85rem;
  color: #FFFFFE;
  line-height: 1.5;
  padding: 0 20px 20px;
  width: 100%;
  margin-bottom: 0;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.team_tall .team__content .button {
  border-radius: 96px;
  margin-bottom: 20px;
  display: inline-block;
  font-weight: 800;
  padding: 15px 20px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper {
  background: #e8f1f9;
  padding: 15px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__top figure {
  font-family: "Times New Roman", Georgia, Serif;
  font-size: 40px;
  color: #211e1e;
  line-height: 0;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__top a {
  display: flex;
  align-items: center;
  color: #211e1e;
  font-size: 14px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__top a i {
  margin-left: 5px;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__content {
  padding: 20px 0 0;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__content p {
  font-size: 16px;
  color: #060606;
  line-height: normal;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.testimonial .masonry__item__wrapper .testim__content h6 {
  font-size: 16px;
  color: #060606;
  margin: 20px 0 0;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature_tall a {
  display: flex;
  height: 500px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: 5px;
  overflow: hidden;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature_tall a .feat__tall__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  width: 100%;
  opacity: 1;
  transition: all 0.4s ease;
  align-items: center;
  padding: 10px 30px 40px;
  text-align: center;
  height: inherit;
  background: -moz-linear-gradient(top, rgba(33, 30, 30, 0) 0%, rgba(33, 30, 30, 0.22) 12%, #211e1e 55%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(33, 30, 30, 0) 0%, rgba(33, 30, 30, 0.22) 12%, #211e1e 85%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(33, 30, 30, 0) 0%, rgba(33, 30, 30, 0.22) 12%, #211e1e 85%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature_tall a .feat__tall__content h4 {
  font-size: 14px;
  color: #211e1e;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature_tall a .feat__tall__content h4:after {
  content: "";
  display: block;
  width: 100%;
  max-width: 100px;
  height: 2px;
  background: #0056a6;
  margin: 5px 0;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature_tall a .feat__tall__content h3 {
  font-size: 28px;
  color: #211e1e;
  margin-bottom: 15px;
  line-height: 24px;
  font-weight: 600;
  padding: 10px 0;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature_tall a .feat__tall__content p {
  font-size: 16px;
  color: #211e1e;
  line-height: 24px;
  margin-bottom: 0;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature_tall a:hover .feat__tall__content {
  opacity: 0.4;
  transition: all 0.4s ease;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature a {
  display: flex;
  height: 300px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 5px;
  overflow: hidden;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature a .feat__overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
  min-height: 100%;
  text-align: center;
  opacity: 1;
  transition: all 0.4s ease;
  height: inherit;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature a .feat__overlay h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFE;
  padding: 10px 0;
  margin: 0;
  width: 100%;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature a .feat__overlay h3 span, .flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature a .feat__overlay h3 i {
  font-size: 35px;
  line-height: 75px;
  color: #FFFFFE;
  width: 75px;
  height: 75px;
  box-sizing: border-box;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature a .feat__overlay h4 {
  font-size: 1.1rem;
  color: #0056a6;
  margin: 0;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.feature a:hover .feat__overlay {
  opacity: 0.4;
  transition: all 0.4s ease;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.video a {
  display: flex;
  height: 300px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 5px;
  overflow: hidden;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.video a .feat__overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 10px 20px;
  width: 100%;
  min-height: 100%;
  text-align: center;
  opacity: 1;
  transition: all 0.4s ease;
  height: inherit;
  background: -moz-linear-gradient(top, rgba(33, 30, 30, 0) 0%, rgba(33, 30, 30, 0.22) 12%, #211e1e 55%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(33, 30, 30, 0) 0%, rgba(33, 30, 30, 0.22) 12%, #211e1e 85%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(33, 30, 30, 0) 0%, rgba(33, 30, 30, 0.22) 12%, #211e1e 85%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.video a .feat__overlay span {
  font-size: 35px;
  line-height: 75px;
  background: #0056a6;
  color: #211e1e;
  padding-left: 5px;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  box-sizing: border-box;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.video a .feat__overlay h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  padding: 10px 0;
  margin: 10px 0 20px;
  width: 100%;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.video a .feat__overlay h4 {
  font-size: 1rem;
  color: #fff;
  margin: 0;
}
.flexible__content .fc_masonry .masonry__wrapper .masonry__item.video a:hover .feat__overlay {
  opacity: 0.4;
  transition: all 0.4s ease;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 10px;
  margin: 30px auto;
  justify-content: center;
}
@media (max-width: 625px) {
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper {
    overflow-x: scroll;
    height: 200px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
  }
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper::-webkit-scrollbar {
    width: 1em;
    border-radius: 25px;
    background-color: #211e1e !important;
  }
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 25px;
  }
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper::-webkit-scrollbar-thumb {
    background-color: #211e1e !important;
    outline: 1px solid slategrey;
    border-radius: 25px;
  }
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper::-webkit-scrollbar-thumb:hover {
    background: #0056a6;
  }
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 18%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 5px 20px 5px;
  box-sizing: border-box;
  margin-bottom: -20px;
}
@media (max-width: 800px) {
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper article {
    padding: 5px 10px;
  }
}
@media (max-width: 625px) {
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper article {
    margin-bottom: 0;
  }
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__image {
  background-color: #3c87c9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.8s ease;
  transform: scale(1);
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 100%;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__image__overlay {
  background: #211e1e;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__image__overlay.opacity-0 {
  opacity: 0;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__image__overlay.opacity-10 {
  opacity: 0.1;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__image__overlay.opacity-20 {
  opacity: 0.2;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__image__overlay.opacity-30 {
  opacity: 0.3;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__image__overlay.opacity-40 {
  opacity: 0.4;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__image__overlay.opacity-50 {
  opacity: 0.5;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__image__overlay.opacity-60 {
  opacity: 0.6;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__image__overlay.opacity-70 {
  opacity: 0.7;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__image__overlay.opacity-80 {
  opacity: 0.8;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__image__overlay.opacity-90 {
  opacity: 0.9;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__image__overlay.opacity-100 {
  opacity: 1;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0px 1px 7px rgba(33, 30, 30, 0.1);
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle:hover {
  transform: scale(1.05);
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle:hover .circle__image {
  transform: scale(1.05);
  transition: all 0.8s ease;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle:hover .circle__content h3 i {
  transform: translateX(4px) translateY(-2px);
  transition: all 0.4s ease;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  justify-content: center;
  align-items: center;
  transition: all 0.8s ease;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 600;
  color: #211e1e;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__content h3 {
    font-size: 0.85rem;
  }
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__content p {
  max-width: 335px;
  font-size: 16px;
  line-height: 22px;
  color: #211e1e;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article .circle__content p:before {
  content: "";
  display: block;
  height: 3px;
  background: #0056a6;
  max-width: 100px;
  margin: 10px 0 15px;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article.size-large {
  flex: 1 0 240px;
  max-width: 280px;
}
@media (max-width: 900px) {
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper article.size-large {
    flex: 1 0 240px;
    max-width: 240px;
  }
}
@media (max-width: 800px) {
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper article.size-large {
    flex: 1 0 200px;
    max-width: 200px;
  }
}
@media (max-width: 700px) {
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper article.size-large {
    flex: 1 0 170px;
    max-width: 170px;
  }
}
@media (max-width: 625px) {
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper article.size-large {
    min-width: 160px;
  }
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article.size-large .circle__content h3 {
  font-size: 1.3rem;
}
@media (max-width: 800px) {
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper article.size-large .circle__content h3 {
    font-size: 0.85rem;
  }
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article.size-small {
  max-width: 240px;
}
@media (max-width: 900px) {
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper article.size-small {
    max-width: 180px;
  }
}
@media (max-width: 800px) {
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper article.size-small {
    max-width: 160px;
  }
}
@media (max-width: 625px) {
  .flexible__content .fc_circle_masonry .masonry_circles_wrapper article.size-small {
    min-width: 160px;
  }
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper article.has_image .circle__content h3 {
  color: #FFFFFE;
}
.flexible__content .fc_circle_masonry .masonry_circles_wrapper .break {
  flex-basis: 100%;
  height: 40px;
}
.flexible__content .fc_featured_testimonials .featured-testimonials--filter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  white-space: nowrap;
}
.flexible__content .fc_featured_testimonials .featured-testimonials--filter span {
  font-weight: 800;
  color: #211e1e;
  font-size: 1rem;
  padding-right: 30px;
}
.flexible__content .fc_featured_testimonials .featured-testimonials--filter .btn-group {
  display: flex;
  white-space: nowrap;
  border: 1px solid #e1e9ee;
  border-right: 96px;
  background: #3c87c9;
  border-radius: 96px;
  overflow: hidden;
  user-select: none;
  z-index: 1;
  position: relative;
  box-shadow: 0 12.5px 10px rgba(0, 0, 0, 0.08), 0 100px 80px rgba(0, 0, 0, 0.03);
}
.flexible__content .fc_featured_testimonials .featured-testimonials--filter .btn-group label {
  padding: 8px 16px;
  display: inline-block;
  border-radius: 96px;
  position: relative;
  transition: color 250ms cubic-bezier(0, 0.95, 0.38, 0.98);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.flexible__content .fc_featured_testimonials .featured-testimonials--filter .btn-group label:before {
  transition: all 250ms cubic-bezier(0, 0.95, 0.38, 0.98);
}
.flexible__content .fc_featured_testimonials .featured-testimonials--filter .btn-group label:last-of-type:before {
  content: "";
  display: block;
  max-width: calc(33.3333333333% - 0px);
  margin: 0px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: translateX(0);
}
.flexible__content .fc_featured_testimonials .featured-testimonials--filter .btn-group input[type=radio] {
  appearance: none;
  display: none;
}
.flexible__content .fc_featured_testimonials .featured-testimonials--filter .btn-group input[type=radio]:checked + label {
  background: #0056a6;
  color: #3c3636;
  font-weight: 500;
  box-shadow: 0 12.5px 10px rgba(0, 0, 0, 0.08), 0 100px 80px rgba(0, 0, 0, 0.03);
}
.flexible__content .fc_featured_testimonials .featured-testimonials--filter .btn-group input[type=radio]:nth-of-type(2):checked ~ label:last-of-type:before {
  transform: translateX(calc(0% + 0px));
}
.flexible__content .fc_featured_testimonials .featured-testimonials--filter .btn-group input[type=radio]:nth-of-type(2):checked ~ label:last-of-type:before {
  transform: translateX(calc(100% + 0px));
}
.flexible__content .fc_featured_testimonials .featured-testimonials--single {
  display: flex;
  padding: 30px 20px;
  box-sizing: border-box;
  align-items: center;
}
@media (max-width: 625px) {
  .flexible__content .fc_featured_testimonials .featured-testimonials--single {
    flex-direction: column;
  }
}
.flexible__content .fc_featured_testimonials .featured-testimonials--single--box {
  float: left;
  width: 25%;
  flex: 1 0 33%;
  padding-right: 50px;
  box-sizing: border-box;
  max-width: 31%;
}
@media (max-width: 1024px) {
  .flexible__content .fc_featured_testimonials .featured-testimonials--single--box {
    flex: auto;
    padding-right: 20px;
  }
}
@media (max-width: 900px) {
  .flexible__content .fc_featured_testimonials .featured-testimonials--single--box {
    width: 50%;
    max-width: 50%;
  }
}
@media (max-width: 625px) {
  .flexible__content .fc_featured_testimonials .featured-testimonials--single--box {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
}
.flexible__content .fc_featured_testimonials .featured-testimonials--single--box h3 {
  font-weight: bold;
  font-size: 1rem;
}
.flexible__content .fc_featured_testimonials .featured-testimonials--single--box p {
  font-size: 0.85rem;
  line-height: 1.5;
}
.flexible__content .fc_featured_testimonials .featured-testimonials--single--box a.button {
  display: inline-block;
  border-radius: 96px;
  padding: 15px 20px;
  font-size: 0.9rem;
}
.flexible__content .fc_featured_testimonials .featured-testimonials--single--review {
  width: 50%;
  display: flex;
  align-items: center;
  position: relative;
  flex: 1 0 66%;
}
@media (max-width: 900px) {
  .flexible__content .fc_featured_testimonials .featured-testimonials--single--review {
    flex: auto;
    justify-content: center;
  }
}
@media (max-width: 625px) {
  .flexible__content .fc_featured_testimonials .featured-testimonials--single--review {
    width: 100%;
    max-width: 100%;
  }
}
.flexible__content .fc_featured_testimonials .featured-testimonials--single--review-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #e1e9ee;
  min-width: 450px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 1100px) {
  .flexible__content .fc_featured_testimonials .featured-testimonials--single--review-image {
    min-width: 350px;
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 800px) {
  .flexible__content .fc_featured_testimonials .featured-testimonials--single--review-image {
    min-width: 300px;
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 400px) {
  .flexible__content .fc_featured_testimonials .featured-testimonials--single--review-image {
    min-width: 250px;
    width: 250px;
    height: 250px;
  }
}
.flexible__content .fc_featured_testimonials .featured-testimonials--single--review-content {
  background: #211e1e;
  border-radius: 96px 96px;
  margin: 0 0 0 -300px;
  padding: 40px 80px 40px 350px;
}
@media (max-width: 1200px) {
  .flexible__content .fc_featured_testimonials .featured-testimonials--single--review-content {
    padding: 30px 50px 30px 320px;
  }
}
@media (max-width: 1024px) {
  .flexible__content .fc_featured_testimonials .featured-testimonials--single--review-content {
    padding: 30px 30px 30px 315px;
  }
}
@media (max-width: 900px) {
  .flexible__content .fc_featured_testimonials .featured-testimonials--single--review-content {
    display: none;
  }
}
.flexible__content .fc_featured_testimonials .featured-testimonials--single--review-content h5 {
  color: #FFFFFE;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 0;
}
.flexible__content .fc_featured_testimonials .featured-testimonials--single--review-content p {
  color: #FFFFFE;
  font-size: 1rem;
  line-height: 1.5;
}
.flexible__content .fc_featured_testimonials .featured-testimonials--single--review:after {
  content: "\f10e";
  font-family: "Font Awesome 5 Pro";
  font-size: 30px;
  position: absolute;
  font-weight: bold;
  right: 20px;
  top: auto;
  color: #0056a6;
}
@media (max-width: 1024px) {
  .flexible__content .fc_featured_testimonials .featured-testimonials--single--review:after {
    display: none;
  }
}
.flexible__content .aef .aef__listings {
  max-width: 850px;
  margin: 0 auto;
}

/*
*	Advanced Slide Menu
*
*	@package Advanced New Homes
*	@version 1.0
*/
.asm {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
.asm ul {
  position: relative;
  width: 100%;
}
.asm ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px #f1f5f7 solid;
  transition: all 0.3s ease;
}
.asm ul li.asm__parent__page {
  border-bottom: none;
}
.asm ul li.asm__parent__page h4 {
  font-weight: normal;
  color: #888;
}
.asm ul li a {
  font-size: 18px;
  padding: 10px 0 10px 10px;
  color: #211e1e;
  display: block;
  flex: 1 0 auto;
}
.asm ul li a:hover {
  color: #0056a6;
}
.asm ul li.asm__back a {
  font-size: 16px;
  color: #211e1e;
}
.asm ul li.asm__back a:before {
  font-family: "Ionicons";
  content: "\f124";
  font-size: 16px;
  margin-right: 10px;
}
.asm ul li.active > a {
  color: #211e1e;
}
.asm ul li > i.asm__subnav__arrow {
  display: block;
  padding: 15px 20px;
  cursor: pointer;
}
.asm ul li > i.asm__subnav__arrow:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f054";
  font-size: 18px;
}
.asm ul li > i.asm__subnav__arrow:hover:before {
  color: #211e1e;
}
.asm ul li.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.asm ul.sub-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translate3d(100%, 0, 0);
  transition: all 0.3s ease;
  background: #fff;
  height: 100%;
}
.asm ul.sub-menu.current-menu {
  transform: translate3d(0, 0, 0);
  transition: all 0.3s ease;
}

/* -------------------------------------------
   ________      __          __
  / ____/ /___  / /_  ____ _/ /
 / / __/ / __ \/ __ \/ __ `/ /
/ /_/ / / /_/ / /_/ / /_/ / /
\____/_/\____/_.___/\__,_/_/

------------------------------------------- */
.woocommerce-shop .site-main {
  padding: 20px;
}
.woocommerce-shop .site-main .woocommerce-breadcrumb {
  display: none;
}
.woocommerce-shop .site-main .woocommerce-products-header {
  display: none;
}
.woocommerce-shop .site-main .woocommerce-result-count {
  display: none;
}
.woocommerce-shop .site-main .woocommerce-ordering select {
  font-family: "Museo 300", sans-serif;
}
@media (max-width: 400px) {
  .woocommerce-shop .site-main ul.products .product {
    width: 100% !important;
  }
}
.woocommerce-shop .site-main ul.products .product .woocommerce-loop-product__title {
  text-align: center;
  color: #0056a6;
  font-size: 20px;
}
.woocommerce-shop .site-main ul.products .product .price {
  text-align: center;
  color: black;
  font-size: 16px;
}
.woocommerce-shop .site-main ul.products .product .button {
  display: flex;
  justify-content: center;
  background: #0056a6 !important;
  color: white !important;
}
.woocommerce-shop .site-main ul.products .product a.added_to_cart {
  justify-content: center;
  display: flex;
  margin: 10px 0;
  color: #0056a6;
}

.single-product .site-main {
  padding: 20px;
}
.single-product .site-main .woocommerce-breadcrumb {
  display: none;
}
.single-product .site-main .product {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.single-product .site-main .product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
  pointer-events: none !important;
}
.single-product .site-main .product .summary {
  padding-left: 40px;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .single-product .site-main .product .summary {
    padding-left: 0;
    padding-top: 10px;
  }
}
.single-product .site-main .product .summary .product_title {
  color: #0056a6;
  font-size: 34px;
}
.single-product .site-main .product .summary .price {
  color: black;
  margin: 20px 0;
}
.single-product .site-main .product .summary .cart .quantity .qty {
  height: 36px;
}
.single-product .site-main .product .summary .cart .single_add_to_cart_button {
  background: #0056a6;
}
.single-product .site-main .product .summary .variations {
  margin: 20px 0 0;
}
.single-product .site-main .product .summary .variations tbody tr {
  display: flex;
  flex-direction: column;
}
.single-product .site-main .product .summary .variations tbody tr .label {
  text-align: left;
}
.single-product .site-main .product .summary .variations tbody tr .label label {
  font-weight: normal;
  color: #0056a6;
  font-size: 22px;
}
.single-product .site-main .product .summary .variations tbody td select {
  font-family: "Museo 300", sans-serif;
}
.single-product .site-main .product .summary .variations tbody td .reset_variations {
  color: #0056a6;
  color: white;
  padding: 10px 30px;
}
.single-product .site-main .product .summary .woocommerce-product-details__short-description {
  margin: 40px 0 20px;
  line-height: 24px;
}
.single-product .site-main .product .summary .woocommerce-product-details__short-description h2 {
  margin-top: 20px;
  font-size: 20px;
  color: #0056a6;
}
.single-product .site-main .product .summary .woocommerce-product-details__short-description ul {
  padding-left: 20px;
  margin-top: 20px;
}
.single-product .site-main .product .summary .woocommerce-product-details__short-description ul li {
  list-style: disc;
}
.single-product .site-main .product .summary .single_variation_wrap {
  display: flex;
  align-items: center;
  padding-top: 20px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.single-product .site-main .product .summary .single_variation_wrap .woocommerce-variation-price {
  margin-left: 30px;
}
.single-product .site-main .product .summary .woocommerce-variation-add-to-cart .quantity .qty {
  height: 36px;
}
.single-product .site-main .product .summary .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  background: #0056a6;
}
.single-product .site-main .product .summary .product_meta {
  display: none;
}
.single-product .site-main .woocommerce-tabs, .single-product .site-main .related {
  display: none;
}
@media (max-width: 768px) {
  .single-product.woocommerce .thumbnails {
    margin: 0 auto;
  }
}

.woocommerce-checkout .woocommerce-input-wrapper input, .woocommerce-checkout .woocommerce-input-wrapper textarea {
  height: 28px;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-family: "Museo 300", sans-serif;
}
.woocommerce-checkout #payment ul.payment_methods li::marker {
  content: none;
}
.woocommerce-checkout #payment #place_order {
  background: #0056a6 !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
  list-style: none !important;
}

.woocommerce-message {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.woocommerce-message .button {
  margin-top: 10px;
  background: #0056a6;
  color: white;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
  padding-left: 0;
}

.woocommerce-additional-fields, #order_review_heading {
  margin-top: 20px;
}

.yith_magnifier_thumbnail a img {
  max-height: 120px;
  height: 100% !important;
  width: auto !important;
  margin: 0 auto;
}

.single-product.woocommerce .thumbnails #slider-prev, .single-product.woocommerce .thumbnails #slider-next {
  display: block !important;
}

.coupon {
  display: none;
}

.product-name a {
  color: #0056a6;
}

.checkout-button {
  background: #0056a6 !important;
}

.woocommerce-info {
  display: none;
}

body {
  font-family: "Museo 300", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #211e1e;
  overflow-x: hidden;
}
body.no__scroll {
  overflow: hidden;
}

.floating-social-media {
  position: fixed;
  top: 15%;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  background: #211e1e;
  padding: 8px 3px 8px 5px;
  border-radius: 5px 0 0 5px;
}
@media (max-width: 625px) {
  .floating-social-media {
    display: none;
  }
}
.floating-social-media a i {
  font-size: 20px;
  border-radius: 50%;
  border: 2px solid #0056a6;
  background: #0056a6;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3px 0;
  color: #211e1e;
  transition: 0.5s ease all;
}
.floating-social-media a i:hover {
  color: white;
  background: #211e1e;
}

.floating-reviews {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  background: #f1f5f7;
  padding: 10px 20px;
}
.floating-reviews img {
  max-width: 100px;
}

#page {
  background: #fff;
  display: flex;
  flex-direction: column;
}
@media (max-width: 700px) {
  #page section.banners .banner .banner__width {
    flex-direction: column !important;
    justify-content: center;
  }
}
#page section.banners .banner .banner__width .landing__form {
  width: 40%;
  max-width: 500px;
  background: #211e1e;
  padding: 30px 20px;
  position: relative;
  left: -10px;
  z-index: 999;
  top: 30px;
}
@media (max-width: 700px) {
  #page section.banners .banner .banner__width .landing__form {
    padding: 15px 20px 20px 20px;
    width: 80%;
  }
}
#page section.banners .banner .banner__width .landing__form h3 {
  color: #FFFFFE;
  font-size: 24px;
}
#page section.banners .banner .banner__width .landing__form .gform_wrapper {
  margin: 0 !important;
}
#page section.banners .banner .banner__width .landing__form .gform_wrapper form .gform_body {
  margin: 0 !important;
}
#page section.banners .banner .banner__width .landing__form .gform_wrapper form .gform_body ul li {
  padding: 10px 0 !important;
}
#page section.banners .banner .banner__width .landing__form .gform_wrapper form .gform_body ul li label {
  color: white !important;
}
#page section.banners .banner .banner__width .landing__form .gform_wrapper form .gform_body ul li div {
  width: 100% !important;
  display: flex;
  flex-direction: column;
}
#page section.banners .banner .banner__width .landing__form .gform_wrapper form .gform_body ul li div span {
  padding: 0 !important;
  width: 100%;
}
#page section.banners .banner .banner__width .landing__form .gform_wrapper form .gform_body ul li input {
  width: 100%;
  margin: 0 !important;
  height: 50px;
  padding: 5px 0 5px 10px !important;
}
@media (max-width: 700px) {
  #page section.banners .banner .banner__width .landing__form .gform_wrapper form .gform_body ul li input {
    min-height: 40px;
  }
}
#page section.banners .banner .banner__width .landing__form .gform_wrapper form .gform_body ul li input::placeholder {
  color: #211e1e !important;
}
#page section.banners .banner .banner__width .landing__form .gform_wrapper form .gform_footer {
  padding: 0 !important;
}
#page section.banners .banner .banner__width .landing__form .gform_wrapper form .gform_footer input {
  background: #0056a6;
  border: 2px solid #0056a6;
  color: #211e1e;
  width: 100%;
  margin: 10px 0 0 !important;
  height: 50px;
  padding: 0;
}
@media (max-width: 700px) {
  #page section.banners .banner .banner__width .landing__form .gform_wrapper form .gform_footer input {
    height: 40px;
    padding: 0;
  }
}
#page section.banners .banner .banner__width .landing__form .gform_wrapper form .gform_footer input:hover {
  color: white;
  background: #211e1e;
}

#gform_1 .gfield_label {
  display: none;
}
#gform_1 .hidden_sub_label {
  display: none !important;
}
#gform_1 .name_first, #gform_1 .name_last {
  width: 100%;
}

a:hover {
  transition: all 0.3s ease;
}
a strong {
  font-weight: 600;
}

/* Wrap */
.max__width {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.max__width__960 {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  padding: 0 10px;
}

.max__width__1800 {
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
  padding: 0 10px;
}

/* Heading */
@media (max-width: 400px) {
  .heading {
    padding-bottom: 0;
  }
}
.heading.centre {
  text-align: center;
}
.heading h2 {
  font-size: 30px;
  font-weight: 400;
  color: #211e1e;
  padding-bottom: 15px;
}
.heading p {
  color: #211e1e;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/**
* Loaders
*/
.wp__loading {
  display: none;
  width: 20px;
  margin: 0 auto;
}
.wp__loading.is__loading {
  display: block;
}

.tooltip_templates {
  display: none;
}

.is__curved__top-left {
  background-image: url("img/half-circle-gradient-top-left.png");
  background-position: top left;
  background-repeat: no-repeat;
}

.is__curved__top-right {
  background-image: url("img/half-circle-gradient-top-right.png");
  background-position: top right;
  background-repeat: no-repeat;
}

.is__curved__bottom-left {
  background-image: url("img/half-circle-gradient-bottom-left.png");
  background-position: bottom left;
  background-repeat: no-repeat;
}

.is__curved__bottom-right {
  background-image: url("img/half-circle-gradient-bottom-right.png");
  background-position: bottom right;
  background-repeat: no-repeat;
}

/**
* Buttons
*/
a.button, button.button, button, input[type=submit], input[type=button] {
  color: white;
  display: flex;
  background: #0056a6;
  align-self: flex-start;
  transition: all 0.4s ease;
  padding: 18px 40px 18px;
  cursor: pointer;
  border: none;
}
a.button span, button.button span, button span, input[type=submit] span, input[type=button] span {
  font-size: 16px;
  text-align: center;
  color: #FFFFFE;
  line-height: 16px;
  font-family: "Museo 300", sans-serif;
}
a.button.primary, button.button.primary, button.primary, input[type=submit].primary, input[type=button].primary {
  background: #211e1e;
  color: #FFFFFE;
}
a.button.primary span, button.button.primary span, button.primary span, input[type=submit].primary span, input[type=button].primary span {
  color: #FFFFFE;
}
a.button.secondary, button.button.secondary, button.secondary, input[type=submit].secondary, input[type=button].secondary {
  background: #0056a6;
  color: #FFFFFE;
}
a.button.secondary span, button.button.secondary span, button.secondary span, input[type=submit].secondary span, input[type=button].secondary span {
  color: #FFFFFE;
}
a.button.tertiary, button.button.tertiary, button.tertiary, input[type=submit].tertiary, input[type=button].tertiary {
  background: #3c87c9;
  color: #211e1e;
}
a.button.tertiary span, button.button.tertiary span, button.tertiary span, input[type=submit].tertiary span, input[type=button].tertiary span {
  color: #211e1e;
}
a.button.outline, button.button.outline, button.outline, input[type=submit].outline, input[type=button].outline {
  background-color: transparent;
  border: 1px solid #0056a6;
  color: #211e1e;
}
a.button.outline span, button.button.outline span, button.outline span, input[type=submit].outline span, input[type=button].outline span {
  color: #211e1e;
}
a.button.small, button.button.small, button.small, input[type=submit].small, input[type=button].small {
  padding: 7px 10px;
  color: #211e1e;
  font-size: 0.8125rem;
  margin: 0;
}
a.button.small span, button.button.small span, button.small span, input[type=submit].small span, input[type=button].small span {
  font-size: 0.8125rem;
}
@media (max-width: 700px) {
  a.button, button.button, button, input[type=submit], input[type=button] {
    align-self: center;
  }
}
a.button:hover, button.button:hover, button:hover, input[type=submit]:hover, input[type=button]:hover {
  transition: all 0.4s ease;
  background: #211e1e;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
  color: #FFFFFE;
}
a.button:hover span, button.button:hover span, button:hover span, input[type=submit]:hover span, input[type=button]:hover span {
  color: #FFFFFE;
}

.arrow__link {
  display: inline-flex;
  align-items: center;
  font-size: 17px;
  color: #211e1e;
  font-weight: 800;
  text-transform: uppercase;
}
.arrow__link i {
  color: #0056a6;
  margin-left: 10px;
  transform: translateY(-2px);
  transition: all 0.4s ease;
}
.arrow__link:hover {
  color: #2e2a2a;
}
.arrow__link:hover i {
  transform: translateX(4px) translateY(-2px);
  transition: all 0.4s ease;
}

/* -------------------------------------------
    __                            __
   / /   ____ ___  ______  __  __/ /_
  / /   / __ `/ / / / __ \/ / / / __/
 / /___/ /_/ / /_/ / /_/ / /_/ / /_
/_____/\__,_/\__, /\____/\__,_/\__/
            /____/

------------------------------------------- */
header.header {
  width: 100%;
  transition: top 0.3s ease;
  position: sticky;
  z-index: 999;
  top: 0;
}
header.header .pre__header {
  padding: 10px 0;
  background: #0056a6;
}
header.header .pre__header .max__width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 625px) {
  header.header .pre__header .max__width {
    justify-content: center;
  }
}
header.header .pre__header .max__width .contact {
  display: flex;
}
@media (max-width: 1024px) {
  header.header .pre__header .max__width .contact {
    margin-right: 30px;
    margin-bottom: 0;
  }
}
@media (max-width: 625px) {
  header.header .pre__header .max__width .contact {
    display: none;
  }
}
header.header .pre__header .max__width .contact li {
  padding-left: 20px;
  display: flex;
  align-items: center;
}
header.header .pre__header .max__width .contact li i {
  color: #FFFFFE;
  margin-right: 7px;
  font-size: 22px;
}
header.header .pre__header .max__width .contact li a {
  color: #FFFFFE;
  font-family: "Museo 300", sans-serif;
}
header.header .pre__header .max__width .contact li a:hover {
  color: #211e1e;
}
header.header .pre__header .max__width .contact li a:hover i {
  color: #211e1e;
}
header.header .pre__header .max__width .contact li.image {
  margin-right: 20px;
}
@media (max-width: 1024px) {
  header.header .pre__header .max__width .contact li.image {
    display: none;
  }
}
header.header .pre__header .max__width .contact li.image img {
  width: 100px;
}
header.header .pre__header .max__width .book_button .book {
  display: flex;
  background: #FFFFFE;
  align-self: flex-start;
  transition: all 0.4s ease;
  padding: 12px 30px;
  cursor: pointer;
  border: none;
  color: #0056a6;
}
@media (max-width: 625px) {
  header.header .pre__header .max__width .book_button .book {
    padding: 10px 25px;
  }
}
header.header .pre__header .max__width .book_button .book:hover {
  transition: all 0.4s ease;
  background: #211e1e;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
  color: #FFFFFE;
}
header.header .pre__header .max__width .book_button .book:hover span {
  color: #FFFFFE;
}
header.header .header__main {
  position: relative;
  background: #FFFFFE;
  border-bottom: 2px solid #0056a6;
}
@media (max-width: 1024px) {
  header.header .header__main {
    padding: 5px 0;
  }
}
header.header .header__main .max__width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.header .header__main .oc__nav__trigger,
header.header .header__main .burger__menu {
  display: none;
}
@media (max-width: 1024px) {
  header.header .header__main .oc__nav__trigger,
  header.header .header__main .burger__menu {
    display: block;
  }
}
header.header .header__main .oc__nav__trigger a,
header.header .header__main .burger__menu a {
  display: flex;
  align-items: center;
  color: #211e1e;
  font-family: "Museo 700";
  font-size: 16px;
}
header.header .header__main .oc__nav__trigger a:hover,
header.header .header__main .burger__menu a:hover {
  color: #FFFFFE;
  border: 1px solid #211e1e;
}
header.header .header__main .oc__nav__trigger a:hover i,
header.header .header__main .burger__menu a:hover i {
  color: #FFFFFE;
}
header.header .header__main .oc__nav__trigger a i,
header.header .header__main .burger__menu a i {
  font-size: 18px;
  color: #211e1e;
  padding-right: 15px;
}
header.header .header__main .header_logo_menu {
  display: flex;
}
header.header .header__main .header_logo_menu .logo a {
  display: block;
}
header.header .header__main .header_logo_menu .logo a img {
  width: 250px;
  align-self: center;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  header.header .header__main .header_logo_menu .logo a img {
    width: 120px;
  }
}
@media (max-width: 625px) {
  header.header .header__main .header_logo_menu .logo a img {
    width: 100px;
  }
}
header.header .header__main .header__cta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
@media (max-width: 1024px) {
  header.header .header__main .header__cta {
    flex-direction: row;
    align-items: center;
  }
}
header.header .header__main .header__cta .header__menu {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  header.header .header__main .header__cta .header__menu {
    display: none;
  }
}
header.header .header__main .header__cta .header__menu ul {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
@media (max-width: 1024px) {
  header.header .header__main .header__cta .header__menu ul {
    margin-left: 0;
  }
}
header.header .header__main .header__cta .header__menu ul li {
  display: flex;
  align-items: center;
}
header.header .header__main .header__cta .header__menu ul li.button {
  background: #0056a6;
  color: #FFFFFE;
  padding: 8px 15px;
  margin-left: 10px;
}
header.header .header__main .header__cta .header__menu ul li.button a {
  color: #FFFFFE;
}
header.header .header__main .header__cta .header__menu ul li.button a:hover {
  color: #211e1e;
}
header.header .header__main .header__cta .header__menu ul li:hover > ul {
  display: flex;
}
header.header .header__main .header__cta .header__menu ul li.menu-item-has-children:hover {
  background: #00498d;
}
header.header .header__main .header__cta .header__menu ul li.menu-item-has-children:hover a {
  color: white;
}
header.header .header__main .header__cta .header__menu ul li ul {
  position: absolute;
  top: 84px;
  padding: 0;
  width: 100%;
  max-width: 250px;
  background: #fff;
  z-index: 3;
  text-align: left;
  padding: 10px;
  display: none;
  flex-direction: column;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  margin: 0;
}
header.header .header__main .header__cta .header__menu ul li ul li {
  margin: 0;
  border-top: none;
}
header.header .header__main .header__cta .header__menu ul li ul li a {
  padding: 10px 0;
  color: #211e1e !important;
}
header.header .header__main .header__cta .header__menu ul li ul li a:hover {
  color: #0056a6;
}
header.header .header__main .header__cta .header__menu ul li ul li.current-menu-item a {
  color: #211e1e;
  display: block;
  border-bottom: none;
}
header.header .header__main .header__cta .header__menu ul li ul li.current-menu-item a:after {
  display: none;
}
header.header .header__main .header__cta .header__menu ul li ul li:hover > a {
  color: #0056a6 !important;
  border-bottom: none;
  opacity: 1;
}
header.header .header__main .header__cta .header__menu ul li ul li ul {
  top: 0;
  left: 100%;
  background: rgba(33, 30, 30, 0.9);
}
header.header .header__main .header__cta .header__menu ul li a {
  font-size: 15px;
  color: #211e1e;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  text-align: center;
  padding: 25px 15px;
}
header.header .header__main .header__cta .header__menu ul li a:hover {
  color: #0056a6;
}
header.header .header__main .header__cta .header__menu ul li a.button {
  min-height: 34px;
  font-weight: bold;
}
@media (max-width: 1024px) {
  header.header .header__main .header__cta .header__menu ul li a.button {
    display: none;
  }
}
header.header .header__main .header__cta .header__menu ul li a i {
  color: #0056a6;
  font-size: 18px;
  margin-right: 10px;
}
@media (max-width: 1024px) {
  header.header .header__main .header__cta .header__menu ul li a i {
    font-size: 25px;
    margin: 0 0 0 15px;
  }
}
@media (max-width: 1024px) {
  header.header .header__main .header__cta .header__menu ul li a span {
    display: none;
  }
}
header.header .header__main .header__cta ul {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  header.header .header__main .header__cta ul {
    margin-left: 0;
  }
}
header.header .header__main .header__cta ul li {
  display: flex;
  align-items: center;
}
header.header .header__main .header__cta ul li a {
  font-size: 16px;
  color: #FFFFFE;
  display: flex;
  align-items: center;
}
header.header .header__main .header__cta ul li a.button {
  padding: 14px 20px;
}
@media (max-width: 1024px) {
  header.header .header__main .header__cta ul li a.button {
    display: none;
  }
}
@media (max-width: 1024px) {
  header.header .header__main .header__cta ul li a span {
    display: none;
  }
}
header.header.sticky, header.header.not-sticky {
  background: rgba(0, 0, 0, 0.8);
  transition: top 0.3s ease;
}
header.header.sticky .logo img, header.header.not-sticky .logo img {
  width: 90px;
  transition: top 0.3s ease;
}
header.header.sticky {
  top: 0;
}
header.header.not-sticky {
  top: -165px;
}
header.header.reset .logo img {
  width: 125px;
  transition: top 0.3s ease;
}
@media (max-width: 1024px) {
  header.header.reset .logo img {
    width: 70px;
  }
}
@media (max-width: 1024px) {
  header.header .mega__menu {
    display: block;
  }
}
@media (max-width: 700px) {
  header.header .mega__menu {
    flex: 0;
  }
}
header.header .mega__menu a {
  display: block;
  color: #0056a6;
}
header.header .mega__menu a i {
  font-size: 38px;
}

/* Seperators */
.seperator {
  margin: 20px 0;
  border-top: 1px solid #e1e9ee;
}
.seperator--with-logo {
  margin: 30px auto;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}
.seperator--with-logo:before {
  content: "";
  top: -15px;
  position: absolute;
  background: url("img/logo.png") center no-repeat #fff;
  background-size: contain;
  width: 150px;
  height: 30px;
  border-left: 10px solid #FFFFFE;
  border-right: 10px solid #FFFFFE;
}

section.circle__gradient__left {
  background-image: url("img/half-circle-gradient-top-left.png");
  background-position: top left;
  background-repeat: no-repeat;
}

.home .flexible__content .fc_circle_masonry {
  background-image: url("img/left-elipse.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
}

.home .flexible__content .fc_featured_testimonials {
  background-image: url("img/right-elipse.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
}

.wpgmza-infowindow p {
  line-height: 18px !important;
}

.footer-blog-posts {
  background: #f1f5f7;
  padding: 40px 0;
}
.footer-blog-posts .max__width .blog-posts-loop {
  display: flex;
  justify-content: space-between;
}
.footer-blog-posts .max__width .blog-posts-loop .footer_blog_box {
  width: 23%;
}
.footer-blog-posts .max__width .blog-posts-loop .footer_blog_box .image {
  height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-blog-posts .max__width .blog-posts-loop .footer_blog_box .content {
  padding: 20px 10px;
  background: #FFFFFE;
  border: 1px solid #efefef;
}
.footer-blog-posts .max__width .blog-posts-loop .footer_blog_box .content .title {
  font-family: "Museo 700";
  color: #211e1e;
}
.footer-blog-posts .max__width .blog-posts-loop .footer_blog_box .content .excerpt {
  color: #211e1e;
  margin-top: 10px;
}
.footer-blog-posts .max__width .blog-posts-loop .footer_blog_box .content .blog_button {
  margin-top: 20px;
}
.footer-blog-posts .max__width .blog-posts-loop .footer_blog_box .content .blog_button a {
  color: #0056a6;
  text-transform: uppercase;
  margin-top: 20px;
  font-family: "Museo 700";
}
.footer-blog-posts .max__width .blog-posts-loop .footer_blog_box .content .blog_button i {
  color: #0056a6;
  margin-left: 10px;
}

/* Footer */
footer {
  padding: 0;
  position: relative;
}
footer .footer__menus {
  background: #211e1e;
}
footer .footer__menus .max__width {
  padding: 40px 60px 20px;
  display: flex;
}
@media (max-width: 1024px) {
  footer .footer__menus .max__width {
    flex-direction: column;
  }
}
@media (max-width: 625px) {
  footer .footer__menus .max__width {
    padding: 20px;
  }
}
footer .footer__menus .max__width article {
  width: 25%;
}
@media (max-width: 1024px) {
  footer .footer__menus .max__width article {
    width: 100%;
    border-bottom: 1px #e1e9ee solid;
  }
  footer .footer__menus .max__width article:last-child {
    border-bottom: none;
  }
}
footer .footer__menus .max__width article h5 {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFE;
  padding-bottom: 20px;
}
@media (max-width: 1024px) {
  footer .footer__menus .max__width article h5 {
    padding: 20px 0;
    cursor: pointer;
  }
}
footer .footer__menus .max__width article h5 span {
  display: none;
  float: right;
  font-size: 30px;
  position: relative;
  top: -6px;
}
@media (max-width: 1024px) {
  footer .footer__menus .max__width article h5 span {
    display: block;
  }
}
footer .footer__menus .max__width article ul {
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  footer .footer__menus .max__width article ul {
    font-size: 16px;
    padding-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  footer .footer__menus .max__width article ul.social-wrapper {
    padding-bottom: 50px;
  }
}
footer .footer__menus .max__width article ul li {
  list-style: none;
  padding-bottom: 10px;
  color: #FFFFFE;
  display: flex;
  font-size: 14px;
}
@media (max-width: 1024px) {
  footer .footer__menus .max__width article ul li {
    padding-bottom: 10px;
  }
}
footer .footer__menus .max__width article ul li i {
  font-size: 24px;
  color: #FFFFFE;
  width: 22px;
  display: flex;
  justify-content: center;
  margin: 0px 15px 0 0;
}
footer .footer__menus .max__width article ul li i:hover {
  color: #0056a6;
}
footer .footer__menus .max__width article ul li img {
  width: 140px;
  margin-right: 10px;
}
footer .footer__menus .max__width article ul li a {
  font-size: 14px;
  color: #FFFFFE;
  cursor: pointer;
}
@media (max-width: 1024px) {
  footer .footer__menus .max__width article ul li a {
    font-size: 16px;
  }
}
footer .footer__menus .max__width article ul li a:hover {
  color: #0056a6;
  opacity: 1;
}
footer .footer__menus .max__width article.social {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  footer .footer__menus .max__width article.social {
    display: initial;
  }
}
footer .footer__menus .max__width article.social .social-wrapper li {
  display: inline;
  float: left;
}
footer .footer__menus .max__width article.social .contact {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  footer .footer__menus .max__width article.social .contact {
    margin-top: 40px;
  }
}
footer .footer__menus .max__width article.social p {
  color: #FFFFFE;
  padding-bottom: 5px;
}
footer .footer__menus .max__width article .contact a {
  color: white;
  line-height: 24px;
}
footer .footer__menus .max__width article .contact a:hover {
  color: #0056a6;
}
footer .footer__menus .max__width article .button {
  display: inline-block;
}
@media (max-width: 1024px) {
  footer .footer__menus .max__width article .button {
    margin: 20px 0 0;
  }
}
@media (max-width: 625px) {
  footer .footer__menus .max__width article .button {
    padding: 12px 25px;
  }
}
footer .subfooter {
  background: #FFFFFE;
  padding: 30px 0;
}
@media (max-width: 1024px) {
  footer .subfooter {
    margin-top: 0;
    border-top: none;
  }
}
footer .subfooter .subfooter__credits {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
footer .subfooter .subfooter__credits img {
  width: 250px;
  margin-bottom: 20px;
}
@media (max-width: 625px) {
  footer .subfooter .subfooter__credits img {
    width: 150px;
  }
}
footer .subfooter .subfooter__credits p {
  font-size: 14px;
  line-height: 20px;
  color: #211e1e;
}
footer .subfooter .subfooter__credits p a {
  color: #0056a6;
  padding: 0 10px;
  text-decoration: underline;
}
footer .subfooter .subfooter__credits p a:hover {
  color: #0056a6;
}
footer .subfooter .subfooter__credits p.credit a {
  padding: 0;
}

.team__single__container {
  padding: 60px 0;
  background: #f0f7fd;
}
@media (max-width: 625px) {
  .team__single__container {
    padding: 10px 0;
  }
}
.team__single__container .breadcrumbs {
  padding-left: 0;
  padding-right: 0;
}
.team__single__container .max__width {
  display: flex;
  flex-direction: column;
}
.team__single__container .max__width .top {
  width: 100%;
  display: flex;
}
@media (max-width: 1024px) {
  .team__single__container .max__width .top {
    flex-direction: column;
  }
}
.team__single__container .max__width .top .left {
  width: 48%;
  padding-right: 2%;
}
@media (max-width: 1024px) {
  .team__single__container .max__width .top .left {
    width: 100%;
    padding-right: 0;
  }
}
.team__single__container .max__width .top .left .name {
  margin-bottom: 20px;
}
.team__single__container .max__width .top .left .name h3 {
  font-size: 28px;
  color: #211e1e;
  font-weight: 600;
}
.team__single__container .max__width .top .left .name h5 {
  font-size: 18px;
  color: #211e1e;
  font-weight: 400;
}
.team__single__container .max__width .top .left .name p {
  padding-bottom: 10px;
  border-bottom: 1px solid #211e1e;
}
.team__single__container .max__width .top .left .details .item {
  margin-bottom: 10px;
}
.team__single__container .max__width .top .left .details .item h5 {
  color: #211e1e;
  font-weight: 600;
  padding: 10px 0;
}
.team__single__container .max__width .top .left .details .extra-details {
  margin-top: 40px;
}
.team__single__container .max__width .top .left .details .extra-details p a {
  color: #211e1e;
  text-decoration: underline;
}
.team__single__container .max__width .top .left .details .extra-details .video-link {
  margin-top: 20px;
  display: inline-block;
  color: #211e1e;
  text-decoration: underline;
}
.team__single__container .max__width .top .right {
  width: 48%;
  padding-left: 2%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .team__single__container .max__width .top .right {
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }
}
.team__single__container .max__width .top .right img {
  border-radius: 10px;
  max-width: 500px;
}
@media (max-width: 1024px) {
  .team__single__container .max__width .top .right img {
    width: 100%;
  }
}
.team__single__container .max__width .top .right .details.hide-section {
  display: none;
}
.team__single__container .max__width .top .right .details .item {
  margin-bottom: 10px;
}
.team__single__container .max__width .top .right .details .item h5 {
  color: #211e1e;
  font-weight: 600;
  padding: 10px 0;
}
.team__single__container .max__width .top .right .contact {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}
.team__single__container .max__width .top .right .contact .phone, .team__single__container .max__width .top .right .contact .email {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.team__single__container .max__width .top .right .contact .phone i, .team__single__container .max__width .top .right .contact .email i {
  padding-right: 10px;
  font-size: 20px;
  color: #211e1e;
}
.team__single__container .max__width .top .right .contact .phone a, .team__single__container .max__width .top .right .contact .email a {
  color: #211e1e;
}
.team__single__container .max__width .top .right .contact .phone a:hover, .team__single__container .max__width .top .right .contact .email a:hover {
  color: #211e1e;
}
.team__single__container .max__width .about-my-photo {
  width: 100%;
  margin-top: 50px;
}
.team__single__container .max__width .about-my-photo .details {
  display: flex;
}
@media (max-width: 1024px) {
  .team__single__container .max__width .about-my-photo .details {
    flex-direction: column;
  }
}
.team__single__container .max__width .about-my-photo .details .left {
  width: 48%;
  padding-right: 2%;
}
@media (max-width: 1024px) {
  .team__single__container .max__width .about-my-photo .details .left {
    width: 100%;
    padding-right: 0;
    order: 2;
    margin-top: 40px;
  }
}
.team__single__container .max__width .about-my-photo .details .left img {
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .team__single__container .max__width .about-my-photo .details .left img {
    width: 100%;
  }
}
.team__single__container .max__width .about-my-photo .details .right {
  width: 48%;
  padding-left: 2%;
}
@media (max-width: 1024px) {
  .team__single__container .max__width .about-my-photo .details .right {
    width: 100%;
    padding-left: 0;
    order: 0;
  }
}
.team__single__container .max__width .about-my-photo .details .right h3 {
  font-size: 28px;
  color: #211e1e;
  font-weight: 600;
  margin-bottom: 20px;
}
.team__single__container .max__width .about-my-photo .details .right .social {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.team__single__container .max__width .about-my-photo .details .right .social i {
  padding-right: 10px;
  font-size: 30px;
  color: #211e1e;
}
.team__single__container .max__width .about-my-photo .details .right .social a {
  color: #211e1e;
}
.team__single__container .max__width .about-my-photo .details .right .social a:hover {
  color: #211e1e;
}

#landingForm .gform_wrapper form .gform_body ul.gform_fields li.gfield .gfield_label {
  color: white !important;
}

#x3edabac23446401 div {
  display: flex;
  justify-content: center;
}
@media (max-width: 625px) {
  #x3edabac23446401 div {
    flex-direction: column;
    align-items: center;
  }
}
#x3edabac23446401 div button {
  margin-right: 10px;
  font-family: "Museo 300", sans-serif;
  color: white;
}
@media (max-width: 625px) {
  #x3edabac23446401 div button {
    margin-bottom: 10px;
  }
}
#x3edabac23446401 div table {
  margin: 0 20px;
}
#x3edabac23446401 .xeyexAppTimes {
  flex-direction: column;
  align-items: center;
}
#x3edabac23446401 .xeyexAppTimes div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 625px) {
  #x3edabac23446401 .xeyexAppTimes div {
    flex-direction: column;
  }
}
#x3edabac23446401 .xeyexAppTimes button {
  margin: 8px 10px;
}
#x3edabac23446401 form #pxDetails {
  flex-direction: column;
}
#x3edabac23446401 form #pxDetails .xeyexSubHeader {
  padding-bottom: 10px;
  color: #0056a6;
  margin-top: 20px;
  font-size: 20px;
}
#x3edabac23446401 form #pxDetails .xeyexFieldMaster {
  padding-bottom: 10px;
}
#x3edabac23446401 form #pxDetails .xeyexFieldMaster label {
  padding-right: 10px;
}
#x3edabac23446401 form #pxDetails .xeyexFieldMaster #xeyexPMS_dob select {
  margin-right: 5px;
}
#x3edabac23446401 form #pxDetails input[type=submit] {
  color: white;
  align-self: center !important;
  margin-top: 20px;
}
#x3edabac23446401 .s7css {
  flex-direction: column;
  margin-bottom: 30px;
}
#x3edabac23446401 .s7css .s7cssxeyexCFMTitle, #x3edabac23446401 .s7css .s7cssxeyexCFMTitle {
  color: #0056a6;
  font-size: 18px;
  margin-bottom: 10px;
}
#x3edabac23446401 #s7AppointmentType, #x3edabac23446401 #Time, #x3edabac23446401 #s7YourDetails {
  width: 25%;
}
#x3edabac23446401 #s7YourDetails p {
  margin: 0;
  line-height: 20px;
}
#x3edabac23446401 input[type=button] {
  color: white;
  align-self: center !important;
  margin: 20px auto 0;
}

/* Gravity forms */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .gform_wrapper select,
  .gform_wrapper textarea,
  .gform_wrapper input, .mc-wrapper select,
  .mc-wrapper textarea,
  .mc-wrapper input {
    font-size: 16px;
  }
}
.gform_wrapper ::-webkit-input-placeholder, .mc-wrapper ::-webkit-input-placeholder {
  color: #fff;
}
.gform_wrapper :-moz-placeholder, .mc-wrapper :-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.gform_wrapper ::-moz-placeholder, .mc-wrapper ::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.gform_wrapper :-ms-input-placeholder, .mc-wrapper :-ms-input-placeholder {
  color: #fff;
}
.gform_wrapper input[type=text],
.gform_wrapper input[type=search],
.gform_wrapper input[type=password],
.gform_wrapper input[type=number],
.gform_wrapper input[type=email],
.gform_wrapper input[type=url],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=file],
.gform_wrapper textarea,
.gform_wrapper select, .mc-wrapper input[type=text],
.mc-wrapper input[type=search],
.mc-wrapper input[type=password],
.mc-wrapper input[type=number],
.mc-wrapper input[type=email],
.mc-wrapper input[type=url],
.mc-wrapper input[type=tel],
.mc-wrapper input[type=file],
.mc-wrapper textarea,
.mc-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  padding: 15px;
  background: #f1f5f7;
  color: #211e1e;
  border: none;
  border-bottom: 1px transparent solid;
  line-height: normal;
  display: block;
  width: 100%;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  font-size: 16px;
  height: auto !important;
}
.gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=search]:focus,
.gform_wrapper input[type=password]:focus,
.gform_wrapper input[type=number]:focus,
.gform_wrapper input[type=email]:focus,
.gform_wrapper input[type=url]:focus,
.gform_wrapper input[type=tel]:focus,
.gform_wrapper input[type=file]:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus, .mc-wrapper input[type=text]:focus,
.mc-wrapper input[type=search]:focus,
.mc-wrapper input[type=password]:focus,
.mc-wrapper input[type=number]:focus,
.mc-wrapper input[type=email]:focus,
.mc-wrapper input[type=url]:focus,
.mc-wrapper input[type=tel]:focus,
.mc-wrapper input[type=file]:focus,
.mc-wrapper textarea:focus,
.mc-wrapper select:focus {
  outline: none;
}
.gform_wrapper input[type=number]::placeholder, .mc-wrapper input[type=number]::placeholder {
  color: #211e1e;
}
.gform_wrapper input[type=file]:hover, .mc-wrapper input[type=file]:hover {
  cursor: pointer;
}
.gform_wrapper input[type=search], .mc-wrapper input[type=search] {
  width: auto;
  display: inline-block;
}
.gform_wrapper select, .mc-wrapper select {
  background: url(modules/gravity-forms/img/select-arrow-down.png) no-repeat right center #f1f5f7;
  background-size: 24px;
}
.gform_wrapper select[multiple],
.gform_wrapper select[size], .mc-wrapper select[multiple],
.mc-wrapper select[size] {
  height: auto;
}
.gform_wrapper input[type=submit],
.gform_wrapper input[type=reset],
.gform_wrapper input[type=button],
.gform_wrapper button, .mc-wrapper input[type=submit],
.mc-wrapper input[type=reset],
.mc-wrapper input[type=button],
.mc-wrapper button {
  margin-top: 10px;
  font-family: "Museo 300", sans-serif;
  padding: 14px 60px 9px;
  font-size: 20px;
  font-size: 1.25rem;
  background: #211e1e;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  border: 0;
  height: auto !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 700px) {
  .gform_wrapper input[type=submit],
  .gform_wrapper input[type=reset],
  .gform_wrapper input[type=button],
  .gform_wrapper button, .mc-wrapper input[type=submit],
  .mc-wrapper input[type=reset],
  .mc-wrapper input[type=button],
  .mc-wrapper button {
    padding: 15px;
    width: 100%;
  }
}
.gform_wrapper input[type=submit]:hover,
.gform_wrapper input[type=reset]:hover,
.gform_wrapper input[type=button]:hover,
.gform_wrapper button:hover, .mc-wrapper input[type=submit]:hover,
.mc-wrapper input[type=reset]:hover,
.mc-wrapper input[type=button]:hover,
.mc-wrapper button:hover {
  background: #2e2a2a;
}
.gform_wrapper input[type=checkbox]:focus,
.gform_wrapper input[type=radio]:focus,
.gform_wrapper input[type=submit]:focus,
.gform_wrapper input[type=reset]:focus,
.gform_wrapper input[type=button]:focus,
.gform_wrapper button:focus, .mc-wrapper input[type=checkbox]:focus,
.mc-wrapper input[type=radio]:focus,
.mc-wrapper input[type=submit]:focus,
.mc-wrapper input[type=reset]:focus,
.mc-wrapper input[type=button]:focus,
.mc-wrapper button:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.gform_wrapper .gform_confirmation_wrapper h2, .mc-wrapper .gform_confirmation_wrapper h2 {
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.ginput_complex::after,
.clear-multi::after,
.ginput_full::after,
.gf_list_2col::after,
.gf_list_3col::after,
.gf_list_4col::after,
.gf_list_5col::after,
.gf_list_inline::after,
.gf_page_steps::after,
.ui-datepicker-header::after {
  clear: both;
  content: "";
  display: table;
}

.hidden_sub_label {
  display: none;
}

.gform_confirmation_wrapper {
  text-align: center;
  padding: 20px 0;
}
.gform_confirmation_wrapper .gform_confirmation_message {
  text-align: center;
  font-size: 18px;
}

.gform_wrapper form {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  margin: 0 auto;
  /* Heading */
  /* Steps */
  /* Body */
  /* Footer */
}
.gform_wrapper form .gform_heading {
  margin-bottom: 20px;
}
.gform_wrapper form .gform_heading h3 {
  font-size: 22px;
  color: #3c87c9;
  font-weight: 600;
}
.gform_wrapper form .gform_heading p,
.gform_wrapper form .gform_heading .gform_description {
  margin: 10px 0 0;
  display: block;
}
.gform_wrapper form .gf_page_steps {
  margin: 0;
  padding: 20px 0 30px;
  display: flex;
  border-bottom: 1px solid #e1e9ee;
  margin-bottom: 40px !important;
}
@media (max-width: 700px) {
  .gform_wrapper form .gf_page_steps {
    margin-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }
}
.gform_wrapper form .gf_page_steps .gf_step {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
@media (max-width: 700px) {
  .gform_wrapper form .gf_page_steps .gf_step {
    margin-bottom: 10px;
  }
}
.gform_wrapper form .gf_page_steps .gf_step .gf_step_number {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #f1f5f7;
  color: #b0c7d2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  margin-right: 5px;
}
.gform_wrapper form .gf_page_steps .gf_step .gf_step_label {
  font-weight: 300;
  color: #b0c7d2;
}
.gform_wrapper form .gf_page_steps .gf_step.gf_step_active .gf_step_number {
  background: #211e1e;
  color: #fff;
}
.gform_wrapper form .gf_page_steps .gf_step.gf_step_active .gf_step_label {
  font-weight: 500;
  color: #211e1e;
}
.gform_wrapper form .gform_body {
  margin: 0 -30px;
}
.gform_wrapper form .gform_body .gfield_required {
  color: #f00;
  padding-left: 2px;
}
.gform_wrapper form .gform_body .ginput_complex label {
  font-weight: normal;
}
.gform_wrapper form .gform_body ul.gform_fields {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.gform_wrapper form .gform_body ul.gform_fields li {
  list-style: none;
  width: 100%;
  margin-bottom: 0;
  /* Field LI */
}
.gform_wrapper form .gform_body ul.gform_fields li input::placeholder {
  color: #211e1e;
  padding-left: 5px;
}
.gform_wrapper form .gform_body ul.gform_fields li.hidden_label > label {
  display: none;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield {
  flex: 1 0 100%;
  padding: 0 30px 30px;
  /* Prefix Label */
  /**
  * GF Field: Address
  */
  /**
  * Custom datetime picker for estate agents
  * 
  * 
  */
  /**
  * GF Checkboxes and Radio buttons
  */
  /**
  * GF Field: File upload
  */
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gform_hidden, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gfield_html {
  padding: 0;
  margin: 0;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__half__width {
  flex: 1 0 50%;
}
@media (max-width: 1024px) {
  .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__half__width {
    flex: 1 0 100%;
  }
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.do__flex .has_first_name {
  display: flex;
}
@media (max-width: 700px) {
  .gform_wrapper form .gform_body ul.gform_fields li.gfield.do__flex .has_first_name {
    flex-direction: column;
  }
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gsection {
  border: none;
  border-top: 1px #e1e9ee solid;
  margin-top: 30px;
  padding-top: 40px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gsection h2.gsection_title {
  font-weight: 700;
  color: #211e1e;
  font-size: 19px;
  margin: 0 0 20px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gsection .gsection_description {
  margin-bottom: 10px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gsection:first-of-type {
  border: none;
  margin-top: 0;
  padding-top: 0;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .gfield_label {
  font-size: 16px;
  font-weight: 700;
  color: #211e1e;
  padding: 10px 0 10px;
  display: block;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .gfield_description {
  font-size: 14px;
  font-weight: 400;
  color: #211e1e;
  display: block;
  margin: 0 0 20px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .gfield_description.validation_message {
  display: none;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .name_prefix_select {
  padding-right: 20px;
  width: 25%;
}
@media (max-width: 700px) {
  .gform_wrapper form .gform_body ul.gform_fields li.gfield .name_prefix_select {
    width: 100%;
    padding-right: 0;
  }
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield span label {
  font-size: 14px;
  color: #211e1e;
  display: inline-block;
  padding-top: 10px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .gf_inline {
  width: auto;
  display: inline-block;
  margin-right: 1%;
  vertical-align: top;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_address {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 550px) {
  .gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_address {
    flex-direction: column;
  }
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_address span {
  display: block;
  width: 50%;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_address span:nth-child(odd) {
  padding-right: 10px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_address span:nth-child(even) {
  padding-left: 10px;
}
@media (max-width: 550px) {
  .gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_address span {
    width: 100%;
  }
  .gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_address span:nth-child(odd) {
    padding-right: 0;
  }
  .gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_address span:nth-child(even) {
    padding-left: 0;
  }
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time {
  position: relative;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio {
  padding: 0 30px;
  box-sizing: border-box;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio::before, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio::after, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio::before, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio::after {
  display: none !important;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li {
  padding: 0;
  position: relative;
  justify-content: center;
  list-style: none;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li label, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li label {
  padding: 5px;
  display: block;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li label span, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li label span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li label span.gf__date, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li label span.gf__date {
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 10px 40px;
  display: block;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px #e1e9ee solid;
  background: #fff;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li label span.gf__date .gf__date__weekday, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li label span.gf__date .gf__date__weekday {
  font-size: 18px;
  color: #003c73;
  padding-bottom: 4px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li label span.gf__date .gf__date__day, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li label span.gf__date .gf__date__day {
  font-size: 34px;
  color: #211e1e;
  line-height: 46px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li label span.gf__date .gf__date__month, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li label span.gf__date .gf__date__month {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #211e1e;
  padding-top: 4px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li label span.gf__time .gf__time__digits, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li label span.gf__time .gf__time__digits {
  font-size: 18px;
  color: #211e1e;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 10px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px #e1e9ee solid;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li label span.gf__time .gf__time__message, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li label span.gf__time .gf__time__message {
  font-size: 12px;
  font-weight: 400;
  color: #211e1e;
  padding-top: 4px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li label span.gf__time.gf__out__of__hours .gf__time__digits, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li label span.gf__time.gf__out__of__hours .gf__time__digits {
  background: #f1f5f7;
  color: #564f4f;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li input, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  border: none;
  cursor: pointer;
  /*&:not(:checked) + label {
  	img { opacity:0.5;}
  }*/
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li input:focus, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li input, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li input {
    display: none;
  }
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li input:checked, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li input:checked {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li input:checked + label:before, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li input:checked + label:before {
  display: none;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li input:checked + label span.gf__date, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li input:checked + label span.gf__date {
  background: #211e1e;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li input:checked + label span.gf__date .gf__date__weekday, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li input:checked + label span.gf__date .gf__date__weekday {
  color: #fff;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li input:checked + label span.gf__date .gf__date__day, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li input:checked + label span.gf__date .gf__date__day {
  color: #0056a6;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li input:checked + label span.gf__date .gf__date__month, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li input:checked + label span.gf__date .gf__date__month {
  color: #fff;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li input:checked + label span.gf__time .gf__time__digits, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li input:checked + label span.gf__time .gf__time__digits {
  color: #0056a6;
  background: #211e1e;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li input:checked + label span.gf__time.gf__out__of__hours, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li input:checked + label span.gf__time.gf__out__of__hours {
  background: none;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__date ul.gfield_radio li input:checked + label span.gf__time.gf__out__of__hours .gf__time__message, .gform_wrapper form .gform_body ul.gform_fields li.gfield.gf__radio__time ul.gfield_radio li input:checked + label span.gf__time.gf__out__of__hours .gf__time__message {
  background: none;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .gf__selected__date,
.gform_wrapper form .gform_body ul.gform_fields li.gfield .gf__selected__time {
  text-align: center;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .gf__selected__date span,
.gform_wrapper form .gform_body ul.gform_fields li.gfield .gf__selected__time span {
  margin-bottom: 20px;
  color: #211e1e;
  font-size: 24px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .lSAction .lSPrev,
.gform_wrapper form .gform_body ul.gform_fields li.gfield .lSAction .lSNext {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  top: 0;
  transition: all 0.3s ease;
  opacity: 1;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .lSAction .lSPrev:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield .lSAction .lSNext:before {
  font-family: "Font Awesome 5 Pro";
  display: block;
  font-size: 24px;
  color: #211e1e;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .lSAction .lSPrev:hover,
.gform_wrapper form .gform_body ul.gform_fields li.gfield .lSAction .lSNext:hover {
  background: #0056a6;
  transition: all 0.3s ease;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .lSAction .lSPrev:hover:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield .lSAction .lSNext:hover:before {
  color: #fff;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .lSAction .lSPrev:before {
  content: "\f053";
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .lSAction .lSNext:before {
  content: "\f054";
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li {
  list-style: none;
  box-sizing: border-box;
  list-style: none;
  width: auto;
  margin-right: 20px;
  padding: 10px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li input[type=checkbox],
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li input[type=radio],
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li input[type=checkbox],
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li input[type=radio] {
  display: none;
  width: auto;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li input[type=checkbox] + label,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li input[type=radio] + label,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li input[type=checkbox] + label,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li input[type=radio] + label {
  font-size: 16px;
  color: #211e1e;
  display: flex;
  cursor: pointer;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li input[type=checkbox] + label:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li input[type=radio] + label:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li input[type=checkbox] + label:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li input[type=radio] + label:before {
  font-family: "Font Awesome 5 Pro";
  display: block;
  font-weight: normal;
  font-size: 26px;
  color: #d1dee4;
  content: "\f111";
  letter-spacing: 10px;
  border: none;
  border-radius: 0;
  box-sizing: inherit;
  cursor: pointer;
  height: auto;
  line-height: auto;
  text-align: inherit;
  text-indent: 0;
  width: auto;
  padding: inherit;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li input[type=checkbox]:checked + label,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li input[type=radio]:checked + label,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li input[type=checkbox]:checked + label,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li input[type=radio]:checked + label {
  color: #211e1e;
  font-weight: 700;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li input[type=checkbox]:checked + label:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li input[type=radio]:checked + label:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li input[type=checkbox]:checked + label:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li input[type=radio]:checked + label:before {
  content: "\f058";
  font-weight: bold;
  color: #0056a6;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li input[type=checkbox]:checked + label:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li input[type=radio]:checked + label:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li input[type=checkbox]:checked + label:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li input[type=radio]:checked + label:before {
  letter-spacing: 10px;
}
@media (max-width: 1024px) {
  .gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li,
  .gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li {
    width: 50%;
    margin-right: 0;
  }
}
@media (max-width: 625px) {
  .gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_radio li,
  .gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time) ul.gfield_checkbox li {
    width: 100%;
  }
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time).gf__radio__check__equal ul.gfield_radio li,
.gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time).gf__radio__check__equal ul.gfield_checkbox li {
  width: 50%;
  margin-right: 0;
}
@media (max-width: 625px) {
  .gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time).gf__radio__check__equal ul.gfield_radio li,
  .gform_wrapper form .gform_body ul.gform_fields li.gfield:not(.gf__radio__date):not(.gf__radio__time).gf__radio__check__equal ul.gfield_checkbox li {
    width: 100%;
  }
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .gform_drop_area {
  background: #f1f5f7;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 3px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .gform_drop_area input[type=button] {
  background: #0056a6;
  color: #211e1e;
  cursor: pointer;
  font-size: 16px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .gform_drop_area input[type=button]:hover {
  background: #0063c0;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .screen-reader-text {
  font-weight: 400;
  font-size: 14px;
  color: #211e1e;
  display: inline-block;
  padding-top: 10px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_preview {
  display: flex;
  align-items: center;
  border-bottom: 1px #f1f5f7 solid;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_preview:last-child {
  border-bottom: none;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_preview a {
  color: tomato;
  padding-left: 10px;
  font-weight: 400;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_preview .gform_delete {
  width: 12px;
  height: 12px;
  cursor: pointer;
  margin-right: 5px;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_consent input[type=checkbox],
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_consent input[type=radio] {
  display: none;
  width: auto;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_consent input[type=checkbox] + label,
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_consent input[type=radio] + label {
  font-size: 16px;
  color: #211e1e;
  display: flex;
  cursor: pointer;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_consent input[type=checkbox] + label:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_consent input[type=radio] + label:before {
  font-family: "Font Awesome 5 Pro";
  display: block;
  font-weight: normal;
  font-size: 26px;
  color: #d1dee4;
  content: "\f111";
  letter-spacing: 10px;
  border: none;
  border-radius: 0;
  box-sizing: inherit;
  cursor: pointer;
  height: auto;
  line-height: auto;
  text-align: inherit;
  text-indent: 0;
  width: auto;
  padding: inherit;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_consent input[type=checkbox]:checked + label,
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_consent input[type=radio]:checked + label {
  color: #211e1e;
  font-weight: 700;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_consent input[type=checkbox]:checked + label:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_consent input[type=radio]:checked + label:before {
  content: "\f058";
  font-weight: bold;
  color: #0056a6;
}
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_consent input[type=checkbox]:checked + label:before,
.gform_wrapper form .gform_body ul.gform_fields li.gfield .ginput_container_consent input[type=radio]:checked + label:before {
  letter-spacing: 10px;
}
.gform_wrapper form .gform_page_footer,
.gform_wrapper form .gform_footer {
  clear: both;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 700px) {
  .gform_wrapper form .gform_page_footer,
  .gform_wrapper form .gform_footer {
    flex-direction: column;
  }
  .gform_wrapper form .gform_page_footer .gform_next_button,
  .gform_wrapper form .gform_footer .gform_next_button {
    order: 1;
  }
  .gform_wrapper form .gform_page_footer .gform_previous_button,
  .gform_wrapper form .gform_footer .gform_previous_button {
    order: 2;
  }
}
.gform_wrapper form .gform_page_footer img,
.gform_wrapper form .gform_footer img {
  align-self: center;
}
.gform_wrapper form .gform_page_footer .button,
.gform_wrapper form .gform_footer .button {
  cursor: pointer;
}
.gform_wrapper form .gform_page_footer .gform_previous_button,
.gform_wrapper form .gform_footer .gform_previous_button {
  background: #e1e9ee;
  color: #211e1e;
}
.gform_wrapper form .gform_page_footer .gform_ajax_spinner,
.gform_wrapper form .gform_footer .gform_ajax_spinner {
  position: absolute;
  top: 32px;
  right: 10px;
  width: 25px;
}
.gform_wrapper form .validation_message {
  font-style: normal;
}
.gform_wrapper form .gfield_radio input[type=text] {
  width: auto;
  display: inline-block;
}
.gform_wrapper form .ginput_complex .ginput_left {
  width: 49%;
  float: left;
  clear: left;
}
.gform_wrapper form .ginput_complex .ginput_right {
  width: 49%;
  float: right;
  clear: right;
}
.gform_wrapper form .name_prefix {
  width: 10%;
  float: left;
}
@media (max-width: 700px) {
  .gform_wrapper form .name_prefix {
    width: 100%;
    float: none;
  }
}
.gform_wrapper form .name_first {
  float: left;
  width: 50%;
  box-sizing: border-box;
  padding-right: 10px;
}
@media (max-width: 700px) {
  .gform_wrapper form .name_first {
    width: 100%;
    float: none;
    padding-right: 0;
  }
}
.gform_wrapper form .name_last {
  float: left;
  width: 50%;
  box-sizing: border-box;
  padding-left: 0px;
}
@media (max-width: 700px) {
  .gform_wrapper form .name_last {
    width: 100%;
    float: none;
    padding-left: 0;
  }
}
.gform_wrapper form .name_suffix {
  float: right;
}
.gform_wrapper form input.datepicker_with_icon {
  margin-right: 12px;
  margin-right: 0.75rem;
  display: inline-block;
  width: auto;
}
.gform_wrapper form .gfield_date_month,
.gform_wrapper form .gfield_date_dropdown_month {
  display: inline-block;
  width: auto;
  margin-right: 1%;
}
.gform_wrapper form .gfield_date_day,
.gform_wrapper form .gfield_date_dropdown_day {
  display: inline-block;
  width: auto;
  margin-right: 1%;
}
.gform_wrapper form .gfield_date_year,
.gform_wrapper form .gfield_date_dropdown_year {
  display: inline-block;
  width: auto;
}
.gform_wrapper form .gfield_time_hour {
  float: left;
  margin-right: 1%;
}
.gform_wrapper form .gfield_time_hour input {
  width: inherit;
  display: inline-block;
}
.gform_wrapper form .gfield_time_hour label {
  display: block;
}
.gform_wrapper form .gfield_time_minute {
  width: 30%;
  float: left;
  margin-right: 1%;
}
.gform_wrapper form .gfield_time_ampm {
  width: 20%;
  float: left;
  margin-right: 1%;
}
.gform_wrapper form .gf_list_2col li {
  width: 50%;
  float: left;
}
.gform_wrapper form .gf_list_3col li {
  width: 33%;
  float: left;
}
.gform_wrapper form .gf_list_4col li {
  width: 25%;
  float: left;
}
.gform_wrapper form .gf_list_5col li {
  width: 20%;
  float: left;
}
.gform_wrapper form .gf_list_inline li {
  display: inline-block;
  margin-right: 1%;
}
.gform_wrapper form .gf_list_height_25 li {
  height: 25px;
}
.gform_wrapper form .gf_list_height_50 li {
  height: 50px;
}
.gform_wrapper form .gf_list_height_75 li {
  height: 75px;
}
.gform_wrapper form .gf_list_height_100 li {
  height: 100px;
}
.gform_wrapper form .gf_list_height_125 li {
  height: 125px;
}
.gform_wrapper form .gf_list_height_150 li {
  height: 150px;
}
.gform_wrapper form .gfield_list {
  margin: 0;
}
.gform_wrapper form .gfield_list > tbody > tr:nth-child(odd) > td,
.gform_wrapper form .gfield_list > tbody > tr:nth-child(odd) > th {
  padding-right: 12px;
  padding-right: 0.75rem;
  background: none;
  line-height: normal;
  padding: 0;
  border: 0;
}
.gform_wrapper form .gfield_list > thead > tr > th {
  border: 0;
}
.gform_wrapper form .gf_scroll_text {
  padding: 12px;
  border: 1px solid #cecece;
  height: 180px;
  overflow: auto;
}
.gform_wrapper form .gf_scroll_text p:last-of-type {
  margin-bottom: 0;
}
.gform_wrapper form .gf_hide_ampm .gfield_time_ampm {
  display: none;
}
.gform_wrapper form .gf_hide_charleft .charleft {
  display: none;
}
.gform_wrapper form .gf_page_steps {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.gform_wrapper form .gf_step {
  display: inline-block;
  opacity: 0.2;
  margin-right: 1%;
}
.gform_wrapper form .gf_step:last-of-type {
  margin-right: 0;
}
.gform_wrapper form .gf_step_active {
  opacity: 1;
}
.gform_wrapper form .gf_step_number {
  font-weight: bold;
  font-size: 150%;
}
.gform_wrapper form .gfield_error { /*padding:$form-space; border:1px solid #eee; border-left-width:5px; border-left-color:#ef736f;*/ }
.gform_wrapper form .gfield_error > label,
.gform_wrapper form .gfield_error .validation_message {
  color: #ef736f;
}
.gform_wrapper form .gfield_error input,
.gform_wrapper form .gfield_error textarea,
.gform_wrapper form .gfield_error select {
  border-bottom: 1px #ef736f solid;
}
.gform_wrapper form .gfield_error input:focus,
.gform_wrapper form .gfield_error textarea:focus,
.gform_wrapper form .gfield_error select:focus {
  border-color: #ea4641;
}
.gform_wrapper form .gfield_error .ginput_container_consent label {
  color: tomato;
}
.gform_wrapper form .gform_validation_container {
  display: none;
  position: absolute;
  left: -9000px;
}
.gform_wrapper form .ui-datepicker {
  background: #FFFFFE;
  border: 1px solid #aaa;
}
.gform_wrapper form .ui-datepicker-prev {
  width: 20%;
  float: left;
}
.gform_wrapper form .ui-datepicker-next {
  width: 20%;
  float: right;
}
.gform_wrapper form .ui-datepicker-title {
  width: 60%;
  float: left;
}
.gform_wrapper form .ui-datepicker-title select {
  width: auto;
  display: inline-block;
}
.gform_wrapper form .validation_error {
  border: 1px solid #f28986;
  padding: 20px;
  text-align: center;
  color: #ef736f;
  margin-bottom: 20px;
}

.ui-datepicker {
  background-color: #fff;
  border: 1px solid #66AFE9;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
  display: none;
  margin-top: 4px;
  padding: 10px;
  width: 240px;
}

.ui-datepicker a,
.ui-datepicker a:hover {
  text-decoration: none;
}

.ui-datepicker a:hover,
.ui-datepicker td:hover a {
  color: #2A6496;
  -webkit-transition: color 0.1s ease-in-out;
  -moz-transition: color 0.1s ease-in-out;
  -o-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

.ui-datepicker .ui-datepicker-header {
  margin-bottom: 4px;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title {
  font-weight: 700;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  cursor: default;
  font-family: "Ionicons";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  height: 20px;
  line-height: 1;
  margin-top: 2px;
  width: 30px;
  color: #211e1e;
}

.ui-datepicker .ui-datepicker-prev {
  float: left;
  text-align: left;
}

.ui-datepicker .ui-datepicker-next {
  float: right;
  text-align: right;
}

.ui-datepicker .ui-datepicker-prev:before {
  content: "\f124";
}

.ui-datepicker .ui-datepicker-next:before {
  content: "\f125";
}

.ui-datepicker .ui-icon {
  display: none;
}

.ui-datepicker .ui-datepicker-calendar {
  table-layout: fixed;
  width: 100%;
}

.ui-datepicker .ui-datepicker-calendar th {
  text-transform: uppercase;
  color: #211e1e;
  font-weight: 400;
}

.ui-datepicker .ui-datepicker-calendar th,
.ui-datepicker .ui-datepicker-calendar td {
  text-align: center;
  padding: 4px 0;
}

.ui-datepicker .ui-datepicker-calendar td {
  border-radius: 4px;
  -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  -moz-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  -o-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}

.ui-datepicker .ui-datepicker-calendar td:hover {
  background-color: #eee;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-calendar td a {
  text-decoration: none;
  color: #6f98ad;
}

.ui-datepicker .ui-datepicker-current-day {
  background-color: #211e1e;
}
.ui-datepicker .ui-datepicker-current-day .ui-state-active {
  color: #fff;
}

.ui-datepicker .ui-datepicker-current-day a {
  color: #fff;
}

.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover {
  background-color: #fff;
  cursor: default;
}

.gf__modal__form__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  z-index: 99999999999999;
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
  -ms-overflow-y: scroll;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background: rgba(60, 135, 201, 0.8);
  display: flex;
  flex-direction: column;
  /* Open */
}
.gf__modal__form__overlay .gf__modal__form {
  padding: 40px;
  background: #fff;
  margin: 70px auto;
  max-width: 835px;
  position: relative;
  transform: scale3d(0.7, 0.7, 0.7);
  transition: all 0.4s ease;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  max-width: 590px;
  width: 100%;
}
.gf__modal__form__overlay .gf__modal__form a.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 32px;
  color: #211e1e;
}
.gf__modal__form__overlay .gf__modal__form a.close:hover {
  color: #211e1e;
}
.gf__modal__form__overlay.open {
  transition: all 0.4s ease;
  visibility: visible;
  opacity: 1;
}
.gf__modal__form__overlay.open .gf__modal__form {
  transition: all 0.4s ease;
  transform: scale3d(1, 1, 1);
}

@media (max-width: 550px) {
  .page-id-399 .banner {
    background-image: none !important;
  }
}

.pay-template h1 {
  line-height: 38px;
  font-size: 32px;
  color: #211e1e;
}
.pay-template form {
  margin-top: 20px;
}
.pay-template form input[type=text] {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 3px;
  padding: 15px;
  background: #f1f5f7;
  color: #6b8aa2;
  border: none;
  border-bottom: 1px transparent solid;
  line-height: normal;
  display: block;
  width: 50%;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  font-size: 16px;
  height: auto !important;
}
.pay-template form input[type=submit] {
  margin-top: 10px;
  font-family: "Mont", sans-serif;
  padding: 14px 60px 9px;
  font-size: 20px;
  font-size: 1.25rem;
  border-radius: 3px;
  background: #022e4f;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  border: 0;
  height: auto !important;
  transition: all 0.3s ease-in-out;
}

.accordion-flex {
  display: flex;
}
@media (max-width: 700px) {
  .accordion-flex {
    flex-direction: column;
  }
}
.accordion-flex img {
  margin-right: 10px;
}
@media (max-width: 700px) {
  .accordion-flex img {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
