/* ------------------------------------------
***** Prepend Imports *****
------------------------------------------- */
* {
  box-sizing: border-box;
  -webkit-appearance: none;
  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 {
  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;
}

/*
* 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(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Checked animation
*/
@-webkit-keyframes checked {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes checked {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/*!
 * Font Awesome Free 5.10.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -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: solid 0.08em #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,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}

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

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

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

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

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

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

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

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

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

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
  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;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-cotton-bureau:before {
  content: "\f89e";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

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

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

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

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-haykal:before {
  content: "\f666";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

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

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

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

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-igloo:before {
  content: "\f7ae";
}

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

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

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

.fa-instagram:before {
  content: "\f16d";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

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

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

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

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

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

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

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

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

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

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

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

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

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

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

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

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

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

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

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

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

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

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

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

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

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

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

.fa-paw:before {
  content: "\f1b0";
}

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

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

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

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

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

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-play:before {
  content: "\f04b";
}

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

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

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

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

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

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

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

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

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

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

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

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

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

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

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

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

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

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

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

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

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

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

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

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

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

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

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

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

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

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

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

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

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

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

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

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

.fa-stopwatch:before {
  content: "\f2f2";
}

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

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

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

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

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

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

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

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

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

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

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

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

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

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

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

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

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

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

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

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

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

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

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

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

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

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

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("./../fonts/fontawesome/fa-brands-400.eot");
  src: url("./../fonts/fontawesome/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("./../fonts/fontawesome/fa-brands-400.woff2") format("woff2"), url("./../fonts/fontawesome/fa-brands-400.woff") format("woff"), url("./../fonts/fontawesome/fa-brands-400.ttf") format("truetype"), url("./../fonts/fontawesome/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("./../fonts/fontawesome/fa-regular-400.eot");
  src: url("./../fonts/fontawesome/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("./../fonts/fontawesome/fa-regular-400.woff2") format("woff2"), url("./../fonts/fontawesome/fa-regular-400.woff") format("woff"), url("./../fonts/fontawesome/fa-regular-400.ttf") format("truetype"), url("./../fonts/fontawesome/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("./../fonts/fontawesome/fa-solid-900.eot");
  src: url("./../fonts/fontawesome/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("./../fonts/fontawesome/fa-solid-900.woff2") format("woff2"), url("./../fonts/fontawesome/fa-solid-900.woff") format("woff"), url("./../fonts/fontawesome/fa-solid-900.ttf") format("truetype"), url("./../fonts/fontawesome/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

@font-face {
  font-family: "HelveticaNeueW01";
  src: url("./../fonts/helvetica/HelveticaNeueW01-55Roma.eot");
  src: url("./../fonts/helvetica/HelveticaNeueW01-55Roma.eot?#iefix") format("embedded-opentype"), url("./../fonts/helvetica/HelveticaNeueW01-55Roma.woff") format("woff"), url("./../fonts/helvetica/HelveticaNeueW01-55Roma.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaNeueW01";
  src: url("./../fonts/helvetica/helveticaneueultralight.eot");
  src: url("./../fonts/helvetica/helveticaneueultralight.eot?#iefix") format("embedded-opentype"), url("./../fonts/helvetica/helveticaneueultralight.woff") format("woff"), url("./../fonts/helvetica/helveticaneueultralight.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaNeueW01";
  src: url("./../fonts/helvetica/HelveticaNeueW01-45Ligh.eot");
  src: url("./../fonts/helvetica/HelveticaNeueW01-45Ligh.eot?#iefix") format("embedded-opentype"), url("./../fonts/helvetica/HelveticaNeueW01-45Ligh.woff") format("woff"), url("./../fonts/helvetica/HelveticaNeueW01-45Ligh.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaNeueW01";
  src: url("./../fonts/helvetica/HelveticaNeueW01-65Medi.eot");
  src: url("./../fonts/helvetica/HelveticaNeueW01-65Medi.eot?#iefix") format("embedded-opentype"), url("./../fonts/helvetica/HelveticaNeueW01-65Medi.woff") format("woff"), url("./../fonts/helvetica/HelveticaNeueW01-65Medi.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaNeueW01";
  src: url("./../fonts/helvetica/HelveticaNeueW01-75Bold.eot");
  src: url("./../fonts/helvetica/HelveticaNeueW01-75Bold.eot?#iefix") format("embedded-opentype"), url("./../fonts/helvetica/HelveticaNeueW01-75Bold.woff") format("woff"), url("./../fonts/helvetica/HelveticaNeueW01-75Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
.text__center,
.center {
  text-align: center;
}

.hidden {
  display: none;
}

.p0 {
  padding: 0 !important;
}
.p0 .kt-row-column-wrap {
  padding: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pt25 {
  padding-top: 2.5rem;
}

.mt25 {
  margin-top: 2.5rem;
}

.mt5 {
  margin-top: 5rem;
}
.mt5.mts25 {
  margin-top: 2.5rem;
}
@media (min-width: 900px) {
  .mt5.mts25 {
    margin-top: 5rem;
  }
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb1 {
  margin-bottom: 1rem !important;
}

.mb2 {
  margin-bottom: 2rem !important;
}

.mb3 {
  margin-bottom: 3rem !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt1 {
  margin-top: 1rem !important;
}

.mt2 {
  margin-top: 2rem !important;
}

.mt3 {
  margin-top: 3rem !important;
}

hr.orange {
  height: 1px;
  border-width: 0;
  color: transparent;
  background-color: #fb7321;
}

.orange {
  color: #fb7321;
}

.block {
  display: block;
  margin-bottom: 3rem;
}

.center {
  text-align: center;
}

.offsetborder img {
  outline: 2px solid white;
  outline-offset: -5px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.contain__left {
  padding-left: calc((100vw - 1440px) / 2);
}

.contain__right {
  padding-right: calc((100vw - 1440px) / 2);
}

.floatleft {
  float: left;
  align-self: flex-start;
}

.floatright {
  float: right;
  align-self: flex-end;
}

.wrap {
  max-width: 1440px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (min-width: 900px) {
  .wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.no__scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.mb0 {
  margin-bottom: 0;
}

.p0 {
  padding: 0;
}

.mp0 {
  margin: 0 !important;
  padding: 0 !important;
}

.border-top {
  position: relative;
}

.border-top::before {
  content: "";
  width: 100%;
  height: 3px;
  background: #afb5a5;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
}

.social__wrapper {
  margin-left: 1rem;
}

@media (max-width: 799px) {
  .hide-for-small {
    display: none;
  }
}
@media (min-width: 799px) {
  .hide-for-large {
    display: none;
  }
}
.border {
  border: 1px solid #fb7321;
}

.fullwidth {
  margin: 0 calc(-50vw + ( 1160px - 4rem ) / 2);
  margin: 0 calc(-50vw + ( 1160px - 4rem ) / 2);
}
@media only screen and (max-width: 1160px) {
  .fullwidth {
    margin: 0 calc(-50vw + 50%);
  }
}

.w75 {
  width: 75%;
  margin: 0 auto;
}

a.img-link {
  background: #fb7321;
  overflow: hidden;
}
a.img-link img {
  transition: 0.2s all ease-in-out;
}
a.img-link img:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

a {
  display: inline-block;
  color: #fb7321;
  font-weight: 500;
}
a.arrow::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  background: url(../img/icons/arrow-right.svg);
  background-size: cover;
  vertical-align: text-bottom;
}
a.arrow:hover:after {
  background: url(../img/icons/arrow-right-black.svg);
  background-size: cover;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #000;
}

.page__title {
  text-transform: uppercase;
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 36px;
  position: relative;
}
@media (min-width: 700px) {
  .page__title {
    font-size: 3rem;
  }
}
.page__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  background: url(../img/icons/underline-orange.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -9px;
  left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .page__title::after {
    background: url("../img/icons/underline-orange.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
  }
}
@media (min-width: 900px) {
  .page__title {
    height: 7rem;
    display: inline-block;
    padding-top: 3rem;
    margin-bottom: 5rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px 0;
  padding: 0;
  font-family: "HelveticaNeueW01", sans-serif;
}

h2 {
  color: #fb7321;
  font-weight: 400;
  line-height: 3.6rem;
  position: relative;
  margin-bottom: 3rem;
  font-size: 2rem;
}
@media (min-width: 1100px) {
  h2 {
    font-size: 2.8rem;
  }
}
.home h2 {
  text-transform: uppercase;
  font-size: 2.2rem;
}
@media (min-width: 700px) {
  .home h2 {
    font-size: 1.8rem;
  }
}
@media (min-width: 900px) {
  .home h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1100px) {
  .home h2 {
    font-size: 3rem;
  }
}
h2.heading {
  display: inline-block;
  text-transform: uppercase;
}
h2.heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  background: url("../img/icons/underline-black.svg");
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -10px;
  left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  h2.heading::after {
    background: url("../img/icons/underline-black.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
  }
}
h3 {
  font-weight: 400;
  color: #fb7321;
  position: relative;
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 1100px) {
  h3 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
}
.home h3 {
  text-transform: uppercase;
  font-size: 1.6rem;
}
@media (min-width: 1100px) {
  .home h3 {
    font-size: 2.2rem;
  }
}
h3.heading {
  display: inline-block;
}
h3.heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  background: url("../img/icons/underline-black.svg");
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -10px;
  left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  h3.heading::after {
    background: url("../img/icons/underline-black.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
  }
}
p + h3 {
  margin: 2.5rem 0;
}

h4 {
  font-size: 1.6rem;
  color: #fb7321;
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  h4 {
    font-size: 2rem;
  }
}
h4.heading {
  display: inline-block;
  text-transform: uppercase;
}
h4.heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  background: url("../img/icons/underline-black.svg");
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -10px;
  left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  h4.heading::after {
    background: url("../img/icons/underline-black.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
  }
}

h5 {
  line-height: 32px;
  font-size: 20px;
  color: #fb7321;
  font-weight: 700;
}

h6 {
  line-height: 28px;
  font-size: 18px;
  color: #fb7321;
  font-weight: 700;
}

p {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 1.8rem;
  line-height: 1.4;
}
p.small {
  font-size: 1.4rem;
}
p.lead {
  font-weight: 500;
  line-height: 2.7rem;
  color: #454544;
}
p strong {
  font-weight: 600;
}
p em {
  font-style: italic;
}

ul,
ol {
  padding: 0 0 0 25px;
  margin: 0 0 30px 0;
  line-height: 26px;
}
ul li,
ol li {
  list-style: none;
  margin-bottom: 10px;
}
ul li a,
ol li a {
  color: #fb7321;
}
ul li ul,
ol li ul {
  padding: 0 0 0 15px;
  margin: 0 0 10px 0;
  line-height: 20px;
}
ul li ul li:not(.kt-title-item),
ol li ul li:not(.kt-title-item) {
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 90%;
}
ul li ul li:not(.kt-title-item):before,
ol li ul li:not(.kt-title-item):before {
  border-radius: 50%;
  border: 1px solid #fb7321 !important;
  background: transparent !important;
}

.content li:not(.kt-title-item, .slick-dots > li) {
  position: relative;
  list-style: none;
  line-height: 1.4;
}
.content li:not(.kt-title-item, .slick-dots > li):before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background: url(../img/icons/list.svg);
  background-size: cover;
  position: absolute;
  top: 8px;
  left: -17px;
}

img.alignright {
  margin: 0 0 0 20px;
  width: 50%;
  height: auto;
  float: right;
}
img.alignleft {
  margin: 0 20px 0 0;
  width: 50%;
  height: auto;
  float: left;
}
@media (min-width: 700px) {
  img.alignright, img.alignleft {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }
}
img.aligncenter {
  margin: 0 auto;
}

blockquote {
  margin: 0 0 2rem 0;
  padding-left: 1.7rem;
  position: relative;
}
blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 16px;
  background: #005892;
}

cite {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  margin-top: 1rem;
}
@media (min-width: 900px) {
  cite {
    font-size: 18px;
    line-height: 28px;
  }
}

figcaption {
  font-size: 16px;
  color: #005892;
  font-weight: 400;
}

strong {
  font-weight: 600;
}

.fab,
.fas {
  color: #0c419a;
}

sup {
  font-size: x-small;
  vertical-align: super;
  line-height: 0;
}

.home .bir__heading {
  min-height: 6rem;
  margin-bottom: 2rem;
}
@media (min-width: 1100px) {
  .home .bir__heading {
    min-height: 9rem;
  }
}

.bir__heading {
  display: inline-block;
}

.bir__heading.mh5 {
  min-height: 2.5rem;
}
@media (min-width: 1100px) {
  .bir__heading.mh5 {
    min-height: 5rem;
  }
}

.bir__heading h2.heading {
  margin-bottom: 0;
}

.bir__heading.mh5 h2.heading {
  font-size: 2rem;
}
@media (min-width: 1100px) {
  .bir__heading.mh5 h2.heading {
    font-size: 2.8rem;
  }
}

.bir__heading.center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* --- TABLES --- */
main table,
main .tablepress {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
main table + h2, main table + h3, main table + h4, main table + h5, main table + h6,
main .tablepress + h2,
main .tablepress + h3,
main .tablepress + h4,
main .tablepress + h5,
main .tablepress + h6 {
  margin-top: 3rem;
}
main table thead,
main table tfoot,
main .tablepress thead,
main .tablepress tfoot {
  color: black;
  text-transform: unset;
}
main table thead th,
main table tfoot th,
main .tablepress thead th,
main .tablepress tfoot th {
  font-weight: 500;
  line-height: 24px;
  padding: 1.3rem 1.6rem;
  text-align: left;
  color: #fb7321;
  background-color: #f8f8f8;
  border-bottom: none;
  font-size: 1.6rem;
}
@media (min-width: 1100px) {
  main table thead th,
main table tfoot th,
main .tablepress thead th,
main .tablepress tfoot th {
    font-size: 1.8rem;
  }
}
main table thead th.download,
main table tfoot th.download,
main .tablepress thead th.download,
main .tablepress tfoot th.download {
  text-align: center;
}
main table thead th.file_size,
main table tfoot th.file_size,
main .tablepress thead th.file_size,
main .tablepress tfoot th.file_size {
  min-width: 12rem;
  text-align: center;
}
main table thead th:not(:last-child),
main table tfoot th:not(:last-child),
main .tablepress thead th:not(:last-child),
main .tablepress tfoot th:not(:last-child) {
  border-right: 1px solid rgba(187, 194, 180, 0.4);
}
main table tbody tr:nth-child(even),
main .tablepress tbody tr:nth-child(even) {
  background-color: #f8f8f8;
}
main table tbody tr td,
main .tablepress tbody tr td {
  padding: 1.3rem 1.6rem;
  vertical-align: middle;
  line-height: 24px;
  border-top: none;
  font-size: 1.6rem;
}
@media (min-width: 1100px) {
  main table tbody tr td,
main .tablepress tbody tr td {
    font-size: 1.8rem;
  }
}
main table tbody tr td:first-child,
main .tablepress tbody tr td:first-child {
  font-weight: 500;
  color: #000;
}
main table tbody tr td.file_name a,
main .tablepress tbody tr td.file_name a {
  color: #000;
  font-weight: 500;
}
main table tbody tr td.file_name a:hover,
main .tablepress tbody tr td.file_name a:hover {
  color: #fb7321;
}
main table tbody tr td.file_size,
main .tablepress tbody tr td.file_size {
  font-size: 1.6rem;
  text-align: center;
}
main table tbody tr td.download,
main .tablepress tbody tr td.download {
  text-align: center;
}
main table tbody tr td.download a:hover,
main .tablepress tbody tr td.download a:hover {
  color: #0c419a;
}
main table tbody tr td.download a.disabled,
main .tablepress tbody tr td.download a.disabled {
  pointer-events: none !important;
  cursor: not-allowed !important;
  color: black !important;
  opacity: 0.2 !important;
}
main table tbody tr td:not(:last-child),
main .tablepress tbody tr td:not(:last-child) {
  border-right: 1px solid rgba(187, 194, 180, 0.4);
}
main table tfoot th,
main .tablepress tfoot th {
  background: none;
}
main table i.fas.fa-file-download::before,
main .tablepress i.fas.fa-file-download::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/pdf.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
main table i.fas.fa-file-download:hover:before,
main .tablepress i.fas.fa-file-download:hover:before {
  background-image: url("../img/icons/pdf-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
main table i.fas.fa-external-link-alt:before,
main .tablepress i.fas.fa-external-link-alt:before {
  color: #fb7321;
  font-size: 1.5rem;
  display: block;
  width: 20px;
  height: 20px;
}
main table i.fas.fa-external-link-alt:hover:before,
main .tablepress i.fas.fa-external-link-alt:hover:before {
  color: #005892;
}
main .word-break table {
  width: auto !important;
}
main .word-break table td,
main .word-break table th {
  word-break: normal !important;
}
@media (min-width: 900px) {
  main .word-break table {
    width: 100% !important;
  }
}
main .word-break.overflow {
  overflow: scroll;
  position: relative;
  position: relative;
  left: -20px;
  width: 100vw;
  padding-left: 20px;
}
@media (min-width: 900px) {
  main .word-break.overflow {
    left: 0px;
    width: auto;
    padding-left: 0px;
    overflow: hidden;
  }
}

.table-note {
  font-size: 1.5rem;
}

/* --- FORMS : general --- */
.gform_confirmation_wrapper {
  background: #fb7321;
  color: white;
  padding: 10px;
  margin-bottom: 20px;
  line-height: 21px;
  font-size: 13px;
}

main .gform_wrapper form ul {
  margin: 0;
  padding: 0;
}
main .gform_wrapper form ul li {
  margin-bottom: 20px;
  list-style: none;
}
.gform_wrapper form .gform_body {
  padding: 3rem;
  background: #f9f9f9;
}
.gform_wrapper form label.gfield_label {
  display: block;
  margin: 0 0 0.7rem 0;
  color: #fb7321;
  font-size: 1.8rem;
  font-weight: 300;
}
.gform_wrapper form label.gfield_label .gfield_required {
  color: #fb7321;
}
.gform_wrapper form select,
.gform_wrapper form input:not([type=checkbox]):not([type=submit]),
.gform_wrapper form textarea {
  width: 100%;
  font-family: "HelveticaNeueW01", sans-serif;
  font-size: 16px;
  -webkit-appearance: none;
  border: 1px solid rgba(187, 194, 180, 0.3);
  min-height: 4rem;
  border-radius: 4px;
  background: #fff;
  padding-left: 1rem !important;
}
@media (min-width: 900px) {
  .gform_wrapper form select,
.gform_wrapper form input:not([type=checkbox]):not([type=submit]),
.gform_wrapper form textarea {
    font-size: 18px;
  }
}
.gform_wrapper form select:active, .gform_wrapper form select:focus,
.gform_wrapper form input:not([type=checkbox]):not([type=submit]):active,
.gform_wrapper form input:not([type=checkbox]):not([type=submit]):focus,
.gform_wrapper form textarea:active,
.gform_wrapper form textarea:focus {
  outline: none;
  border-color: #ccc;
}
.gform_wrapper form .gfield_select {
  padding-right: 3rem !important;
}
.gform_wrapper form .gfield_select {
  color: #575756;
  background-color: white;
  background-image: url("../img/icons/arrow-down.svg");
  background-size: 14px;
  background-position: right 7px top 50%;
  background-repeat: no-repeat;
  border-radius: 3px;
}
.gform_wrapper form input[type=submit] {
  overflow: hidden;
  text-align: center;
  padding: 1.2rem 3rem;
  color: #fb7321;
  background: transparent;
  border: 2px solid #fb7321;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 500;
  min-width: 180px;
  border-radius: 7px;
  transition: all 0.3s;
  cursor: pointer;
}
.gform_wrapper form input[type=submit]:hover {
  background: #fb7321;
  color: #fff;
}
.gform_wrapper form .ginput_container_consent {
  display: flex;
  align-items: center;
}
.gform_wrapper form .ginput_container_consent label {
  margin-bottom: 0;
}
.gform_wrapper form .ginput_recaptcha iframe {
  border: 0;
  background: none;
  padding: 0;
  border-radius: 0;
}
.gform_wrapper form .gfield_description {
  font-size: 14px;
}
.gform_wrapper form .validation_error,
.gform_wrapper form .validation_message {
  background: tomato;
  color: white;
  padding: 10px;
  margin-bottom: 20px;
  line-height: 21px;
  font-size: 13px;
}
.gform_wrapper form .gform_validation_container {
  display: none;
}
.gform_wrapper form .gform_ajax_spinner {
  width: 20px;
  height: 20px;
  margin-top: 20px;
}

/*
	Custom Login
	Description: Style the WordPress Login page
*/
html body.login {
  min-height: 600px;
  display: flex;
  box-sizing: border-box;
  background: #fb7321;
  background-image: url("img/custom/loginbg.jpg");
  background-size: cover;
  background-position: center;
}
html .login {
  /* Logo */
  /* Error Message */
  /* Other message */
}
html .login h1 a {
  padding-bottom: 0;
  width: 200px;
  height: 150px;
  background-size: 200px auto;
  background-position: center;
  display: block;
  margin: 0 auto;
  padding: 0;
}
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: #575756 !important;
  float: right;
  margin: 0;
  padding: 0 20px 20px 0;
  opacity: 0.7;
}
html .login #nav a {
  color: #575756 !important;
  text-decoration: none !important;
}
html .login #nav a:hover {
  color: #575756 !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: #575756 !important;
  text-decoration: none;
}
html .login #backtoblog a:hover {
  color: #575756 !important;
  text-decoration: underline;
}
html .login form {
  background: none;
  padding: 20px;
  margin-top: 0;
  box-shadow: none;
  border: none;
}
html .login form label {
  color: #575756;
  position: relative;
  content: "";
  display: block;
}
html .login form input[type=text],
html .login form input[type=password] {
  background: #f5f5f5;
  border: none;
  border-bottom: 1px solid #fff;
  box-shadow: none;
  color: #575756;
  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: #fb7321;
  border: none;
  cursor: pointer;
  text-shadow: none;
  margin-top: 15px;
  height: auto;
  box-shadow: none !important;
  border-radius: 4px;
}
html .login form p.submit #wp-submit:hover {
  background: #fb833a;
}
html .login .button.wp-hide-pw {
  top: 15%;
}
html .forgetmenot {
  display: none;
}

.has-cookie-bar #catapult-cookie-bar {
  padding: 20px;
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border-radius: 5px;
}
.has-cookie-bar #catapult-cookie-bar h3 {
  color: #575756;
  margin-bottom: 10px;
  font-family: "HelveticaNeueW01", sans-serif;
  text-transform: uppercase;
}
.has-cookie-bar #catapult-cookie-bar .ctcc-left-side {
  line-height: 20px;
  color: #575756;
  font-weight: 300;
  font-size: 16px;
}
.has-cookie-bar #catapult-cookie-bar .ctcc-left-side .ctcc-more-info-link {
  color: #fb7321;
  padding: 10px 0;
}
.has-cookie-bar #catapult-cookie-bar .ctcc-right-side button {
  -webkit-appearance: none;
  border: 0;
  padding: 10px 20px;
  border-radius: 3px;
  color: white;
  background: #fb7321;
  font-size: 16px;
}
.has-cookie-bar #catapult-cookie-bar .ctcc-right-side button:hover {
  cursor: pointer;
  background: #fb833a;
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
/* --- PAGE : 404 --- */
.error404 main {
  min-height: unset;
}
.error404 main h2 {
  margin: 0 0 3rem 0;
  opacity: 0.6;
  text-align: center;
}
.error404 main h2 strong {
  display: block;
  font-size: 11rem;
  color: #7c8084;
  line-height: 12rem;
}
.error404 main h2 span {
  display: block;
  font-size: 2.95rem;
  margin-top: -1rem;
  color: #687077;
}
.error404 main p {
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
}
.error404 main p a {
  color: #fb7321;
  font-weight: 600;
}

body:not(.home) .container {
  position: relative;
  z-index: 1;
  margin-top: -7rem;
}
body:not(.home) .container .alignfull .wrap {
  padding: 0 20px;
}
@media (min-width: 900px) {
  body:not(.home) .container .alignfull .wrap {
    padding: 0 40px;
  }
}

.content .wrap-inner {
  margin: 0 auto !important;
  max-width: 1160px;
  padding: 0;
}
.content .wrap-inner .kt-row-column-wrap {
  padding: 0;
}
.content .bg-gray {
  background: transparent linear-gradient(49deg, #ffffff 0%, #e8e8e8 100%) 0% 0% no-repeat padding-box;
}
@media (min-width: 1000px) {
  .content .kt-gutter-default > .wp-block-kadence-column {
    margin-right: 6rem;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .content .kt-has-1-columns {
    display: block !important;
  }
  .content .kt-has-1-columns > .inner-column-1 {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }
}
.home-widgets {
  padding-top: 3rem;
}

.section-desc {
  line-height: 1.2;
}
@media (min-width: 700px) {
  .section-desc {
    min-height: 10rem;
  }
}
@media (min-width: 1100px) {
  .section-desc {
    min-height: 13rem;
  }
}

.box-investor {
  padding: 3rem;
  border-bottom: 2px solid #afb5a5;
}
.box-investor #price-widget {
  margin-bottom: 3rem;
}
.box-investor #mini-chart {
  margin-bottom: 2.5rem;
}

.investor-update {
  padding: 3rem;
  margin-bottom: 6rem;
}
.investor-update .quote {
  font-size: 10rem;
  color: #fb7321;
  line-height: 1;
  margin: 0;
  height: 6rem;
}
.investor-update .body-txt {
  color: #000;
  font-size: 2.4rem;
  line-height: 1.3;
  padding: 1rem 3rem;
}
.investor-icons {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 3rem;
  margin-bottom: 0 !important;
}
.investor-icons img {
  width: 120px;
  margin-bottom: 2rem;
}
.investor-icons p.investor-txt {
  font-weight: 400;
  color: #454544;
  min-height: 8rem;
  position: relative;
  margin-top: 4rem;
}
.investor-icons p.investor-txt::after {
  content: "";
  display: block;
  width: 60%;
  height: 5px;
  background: url(../img/icons/underline-orange.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .investor-icons p.investor-txt::after {
    background: url("../img/icons/underline-orange.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
  }
}
.investor-icons .border-right {
  position: relative;
}
.investor-icons .border-right:after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  right: -30px;
  top: 0;
  background: rgba(187, 194, 180, 0.4);
}

.key-achivements {
  position: relative;
  border-top: 6px solid white;
}
.key-achivements::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  position: absolute;
  top: 0;
  left: 0;
}
.key-achivements .wrap {
  min-height: 50rem;
  justify-content: center;
}
.key-achivements .key-heading {
  display: block;
  text-align: center;
}
.key-achivements .key-heading h2 {
  color: #fff;
}
.key-achivements .key-heading h2:after {
  background: url(../img/icons/underline-orange.svg);
  background-position: center;
  background-size: contain;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .key-achivements .key-heading h2:after {
    background: url("../img/icons/underline-orange.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
  }
}
.key-achivements p {
  color: #fff;
  text-align: center;
}
.key-achivements p.count {
  font-weight: 400;
  line-height: 1;
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}
@media (min-width: 1100px) {
  .key-achivements p.count {
    font-size: 3.5rem;
    margin-bottom: 1.8rem;
  }
}

.page-id-348 footer {
  margin-top: 3rem;
}

.brochure figure {
  margin-right: 0;
  background: #f9f9f9;
}

.adviser-block {
  margin-left: 1.5rem;
}
.adviser-block .kt-inside-inner-col {
  position: relative;
  padding: 3rem;
  background: #f9f9f9;
  min-height: 23.5rem;
}
.adviser-block .kt-inside-inner-col::before {
  content: "";
  display: block;
  width: 100%;
  height: 5rem;
  background: url(../img/icons/border.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: -1.5rem;
  top: -2.5rem;
  z-index: -1;
}

.contact-left p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

@media (min-width: 900px) {
  div.vision-tabs ul.kt-tabs-title-list {
    width: 40% !important;
  }
  div.vision-tabs ul.kt-tabs-title-list > li {
    margin-right: 3rem !important;
  }
  div.vision-tabs ul.kt-tabs-title-list > li a {
    width: 100% !important;
  }
  div.vision-tabs .kt-tabs-content-wrap {
    width: 60%;
  }
}
div.vision-tabs ul li a {
  font-size: 1.5rem !important;
  padding: 1.2rem !important;
  min-width: 18rem !important;
  color: #fff !important;
  border-width: 0 !important;
  border-radius: 0 !important;
}
@media (min-width: 700px) {
  div.vision-tabs ul li a {
    font-size: 1.3rem !important;
    padding: 1.2rem !important;
    min-width: 18rem !important;
  }
}
@media (min-width: 900px) {
  div.vision-tabs ul li a {
    font-size: 1.6rem !important;
    padding: 1.5rem !important;
    min-width: 22rem !important;
  }
}
div.vision-tabs ul li#tab-excellence a {
  background: #c0603a !important;
  border-color: #c0603a !important;
}
div.vision-tabs ul li#tab-excellence a:hover {
  background: #fa782d !important;
  border-color: #fa782d !important;
}
div.vision-tabs ul li#tab-teamwork a {
  background: #adb5a6 !important;
  border-color: #adb5a6 !important;
}
div.vision-tabs ul li#tab-teamwork a:hover {
  background: #fa782d !important;
  border-color: #fa782d !important;
}
div.vision-tabs ul li#tab-sustainability a {
  background: #e39f5c !important;
  border-color: #e39f5c !important;
}
div.vision-tabs ul li#tab-sustainability a:hover {
  background: #fa782d !important;
  border-color: #fa782d !important;
}
div.vision-tabs ul li#tab-integrity a {
  background: #777776 !important;
  border-color: #777776 !important;
}
div.vision-tabs ul li#tab-integrity a:hover {
  background: #fa782d !important;
  border-color: #fa782d !important;
}
div.vision-tabs ul li#tab-entrepreneurialism a {
  background: #dc8740 !important;
  border-color: #dc8740 !important;
}
div.vision-tabs ul li#tab-entrepreneurialism a:hover {
  background: #fa782d !important;
  border-color: #fa782d !important;
}
div.vision-tabs div[aria-labelledby=tab-excellence] {
  border-top: 3px solid #c0603a !important;
  padding-top: 2rem !important;
}
div.vision-tabs div[aria-labelledby=tab-teamwork] {
  border-top: 3px solid #adb5a6 !important;
  padding-top: 2rem !important;
}
div.vision-tabs div[aria-labelledby=tab-sustainability] {
  border-top: 3px solid #e39f5c !important;
  padding-top: 2rem !important;
}
div.vision-tabs div[aria-labelledby=tab-integrity] {
  border-top: 3px solid #777776 !important;
  padding-top: 2rem !important;
}
div.vision-tabs div[aria-labelledby=tab-entrepreneurialism] {
  border-top: 3px solid #dc8740 !important;
  padding-top: 2rem !important;
}
div.vision-tabs img {
  height: 90px;
  width: auto;
  margin-bottom: 1rem;
}

.values-img img {
  max-height: 35rem;
}

.vision-statement > div.kt-row-layout-inner {
  position: relative;
}
.vision-statement > div.kt-row-layout-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  position: absolute;
  left: 0;
  bottom: 0;
}
.vision-statement h2 {
  color: white;
  margin-left: 1.5rem;
  margin-top: 1rem;
}
.vision-statement p {
  background: linear-gradient(210deg, #f9f9f9, #fdf4d4);
  justify-content: center;
  margin-left: 2rem;
  margin-top: 8rem;
  margin-bottom: 5rem;
  color: black;
  font-size: 2rem;
  line-height: 1.2;
  padding: 3rem;
  position: relative;
}
.vision-statement p::before {
  content: "";
  display: block;
  width: 100%;
  height: 5rem;
  background: url(../img/icons/border-lg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  z-index: -1;
}

.single-post .sidebar__enabled .content {
  float: none;
  width: 100%;
}
.single-post .sidebar__enabled .content .nav-links {
  display: none;
}

.business-model-wrapper {
  background: #f5f5f5;
}

.page-id-1967 footer {
  margin-top: 0;
}

.niger-accordinon {
  min-height: 35rem;
}

i.charttable-checkbox {
  display: inline-block;
}
i.charttable-checkbox:hover {
  cursor: pointer;
}
i.charttable-checkbox:before {
  content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  margin-right: 1em;
  margin-bottom: 3px;
  display: inline-block;
  font-size: 1.5em;
  line-height: 14px;
  vertical-align: middle;
  font-weight: 400;
}
i.charttable-checkbox[data-status=active]:before {
  content: "\f14a";
}
i.charttable-checkbox span {
  white-space: nowrap;
}

#chart_image_div {
  display: none;
}

.fullscreen__search {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(10, 33, 49, 0.97);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.1s linear, opacity 0.1s linear;
}
.fullscreen__search.active {
  opacity: 1;
  visibility: visible;
  transition: visibility 0.2s linear, opacity 0.2s linear;
}
.fullscreen__search .outer__close {
  position: absolute;
  right: 0;
  top: 0;
  width: 85px;
  height: 85px;
  cursor: pointer;
}
.fullscreen__search .outer__close .close {
  position: fixed;
  top: 40px;
  right: 60px;
  color: white;
  z-index: 3;
  cursor: pointer;
  font-family: sans-serif;
}
.fullscreen__search .outer__close .close span,
.fullscreen__search .outer__close .close span:before,
.fullscreen__search .outer__close .close span:after {
  border-radius: 4px;
  height: 5px;
  width: 35px;
  background: white;
  position: absolute;
  display: block;
  content: "";
}
.fullscreen__search .outer__close .close span {
  background: transparent;
}
.fullscreen__search .outer__close .close span:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.fullscreen__search .outer__close .close span:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.fullscreen__search .search__form {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  max-width: 70%;
  margin: 0 auto;
  margin-top: -5rem;
}
.fullscreen__search .search__form h3 {
  color: white;
  font-size: 36px;
}
.fullscreen__search .search__form form input {
  padding: 20px;
  background: white;
  width: 100%;
  font-size: 1.6rem;
  border: 0;
}

.fa-search.search__trigger {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: -2.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 900px) {
  .fa-search.search__trigger {
    position: static;
    -webkit-transform: none;
            transform: none;
    left: unset;
  }
}

.search-result {
  padding: 2.5rem 2rem;
}
.search-result:nth-child(odd) {
  background: #f8f8f8;
}
.search-result a:hover h3 {
  color: #fb7321;
}
.search-result h3 {
  color: #000;
  font-size: 2rem;
  text-transform: capitalize;
  margin: 0;
}
.search-result i {
  color: #fb7321;
  padding-right: 1.5rem;
}

.search .pagination {
  margin-top: 2rem;
}
.search .pagination .page-count {
  font-size: 1.5rem;
  color: #000;
  font-weight: 500;
}
.search .pagination .page-numbers * {
  margin-right: 1rem;
}
.search .pagination .page-numbers .current {
  color: #000;
  padding: 1rem;
  border: 1px solid #fb7321;
  border-radius: 5px;
  display: inline-block;
  line-height: 1;
}
.search .pagination .page-numbers a {
  color: #fb7321;
  padding: 1rem;
  border: 1px solid #fb7321;
  border-radius: 5px;
  display: inline-block;
  line-height: 1;
}
.search .pagination .page-numbers a:hover {
  color: #000;
}

.social__wrapper {
  height: 77px;
  display: none;
  float: right;
}
@media (min-width: 1200px) {
  .social__wrapper {
    display: flex;
  }
}
.social__wrapper ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  margin-right: 20px;
}
.social__wrapper ul li {
  padding: 0 8px;
  list-style: none;
  margin-bottom: 0;
}
.social__wrapper ul li a {
  font-size: 21px;
  color: #fb7321;
  transition-duration: 0.3s;
}
.social__wrapper ul li a:hover {
  color: #005892;
  transition-duration: 0.3s;
}

header.sticky .social__wrapper {
  height: 65px;
}

#ctf .ctf-tweets {
  overflow-y: scroll;
  height: 435px;
}

#ctf p.ctf-tweet-text,
#ctf p.ctf-media-link {
  line-height: 1.2;
  font-size: 15px;
}
@media (min-width: 1100px) {
  #ctf p.ctf-tweet-text,
#ctf p.ctf-media-link {
    font-size: 18px;
  }
}

#ctf .ctf-tweet-meta {
  margin: 0;
}

#ctf .ctf-tweet-text a {
  font-weight: 400;
}

#ctf.ctf-styles .ctf-tweet-meta a {
  font-size: 1.4rem;
  color: #fb7321 !important;
  text-transform: uppercase;
}

#ctf .ctf-item {
  border-top: 1px solid rgba(175, 181, 165, 0.5);
}

a.ctf-twitterlink {
  color: #0c419a !important;
}

.home #ctf .ctf-tweet-actions .ctf-like:hover,
#ctf .ctf-tweet-actions .ctf-like:focus {
  color: #fb7321 !important;
}

.home #ctf .ctf-tweet-actions .ctf-retweet:hover,
#ctf .ctf-tweet-actions .ctf-retweet:focus {
  color: #fb7321 !important;
}

.home #ctf .ctf-tweet-actions .ctf-reply:hover,
#ctf .ctf-tweet-actions .ctf-reply:focus {
  color: #fb7321 !important;
}

hr.twitter-border {
  margin-top: 2rem;
  border: none;
  height: 1px;
  background: #afb5a5;
}

/* --- TABS --- */
.wp-block-kadence-tabs.tabs .wp-block-kadence-tab {
  min-height: unset !important;
}
.wp-block-kadence-tabs.tabs.with-border .kt-tab-inner-content-inner {
  padding: 0 0 0 2rem;
  border-left: 1px solid #fb7321;
}
.wp-block-kadence-tabs.tabs li a {
  color: rgba(87, 87, 86, 0.8) !important;
  border: 1px solid #fb7321 !important;
  border-radius: 0 !important;
  font-size: 1.8rem !important;
  background: transparent !important;
  margin-right: 1rem;
}
.wp-block-kadence-tabs.tabs li a:hover {
  color: #fb7321 !important;
}
.wp-block-kadence-tabs.tabs li a:hover span {
  color: #fb7321 !important;
}
.wp-block-kadence-tabs.tabs li a::after {
  display: none !important;
}
.wp-block-kadence-tabs.tabs li.kt-tab-title-active a {
  color: #fb7321 !important;
}
.wp-block-kadence-tabs.tabs li.kt-tab-title-active a span {
  color: #fb7321 !important;
}

.investors-custom-sidebar {
  padding: 3rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("https://s3-eu-west-2.amazonaws.com/wp-savannah-2020/media/2020/05/26163615/sidebar-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.investors-custom-sidebar .bir__heading {
  min-height: initial;
}
.investors-custom-sidebar .bir__heading h2 {
  color: #fff;
}
.investors-custom-sidebar .bir__heading h2::after {
  background: url(../img/icons/underline-orange.svg);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .investors-custom-sidebar .bir__heading h2::after {
    background: url("../img/icons/underline-orange.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
  }
}
.investors-custom-sidebar .document {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(187, 194, 180, 0.4);
  position: relative;
}
.investors-custom-sidebar .document .date {
  color: #ffd341;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.investors-custom-sidebar .document .title {
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  width: calc(100% - 30px);
  margin: 0;
}
.investors-custom-sidebar .document .download-btn {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(../img/icons/download-icon-orange.svg);
  background-size: cover;
  border: 0;
  color: transparent;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.investors-custom-sidebar .document .download-btn:hover {
  background: url(../img/icons/download-icon-white.svg);
  background-size: cover;
}
.investors-custom-sidebar .document .link {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: transparent url(../img/icons/arrow-right.svg) 100% no-repeat;
  background-size: contain;
  border: 0;
  color: transparent;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.investors-custom-sidebar .document .link:hover {
  background: transparent url(../img/icons/arrow-right-white.svg) 100% no-repeat;
  background-size: contain;
}

.ajax-search > form {
  display: flex;
}
.ajax-search > form input {
  padding: 0.7rem 2rem;
  font-size: 18px;
  color: black;
  display: block;
  font-weight: 400;
  width: 100%;
  border: 1px solid rgba(187, 194, 180, 0.3);
  border-right: 0;
  border-radius: 0.5rem 0 0 0.5rem;
  background-color: transparent;
  min-width: 12rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(//cdn.brighterir.com/img/angle-down.png);
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: 92% 15px;
  background: #f8f8f8;
  overflow: hidden;
}
.ajax-search > form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0 0.5rem 0.5rem 0;
  border: 0;
  border: 1px solid rgba(187, 194, 180, 0.3);
  border-left: 0;
  cursor: pointer;
  background: #f8f8f8;
}

.filters {
  display: flex;
  justify-content: space-between;
  margin-left: 0px;
  margin-bottom: 3rem;
}
.filters > * {
  width: calc(33.33% - 16px);
}
.filters .right,
.filters .center {
  text-align: left;
}
.filters .label {
  font-size: 18px;
  font-weight: 500;
  color: #fb7321;
  margin-bottom: 0.5rem;
}
.filters .dropdown {
  padding: 0;
  border-radius: 0.5rem;
  border: 1px solid rgba(187, 194, 180, 0.3);
  background: #f8f8f8;
  min-width: 12rem;
  text-align: left;
  background-image: url(//cdn.brighterir.com/img/angle-down.png);
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: 92% 15px;
  min-width: 23rem;
}
.filters .dropdown ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
.filters .dropdown ul li {
  order: 1;
  padding: 0;
  visibility: hidden;
  position: absolute;
  margin: 0;
  padding: 0.1rem 0;
  width: 100%;
}
.filters .dropdown ul li:before {
  display: none;
}
.filters .dropdown ul li .option {
  cursor: pointer;
  padding: 0.5rem 2rem;
  padding-right: 30px;
  font-size: 18px;
  color: black;
  display: block;
  font-weight: 400;
  width: 100%;
}
.filters .dropdown ul li.active {
  order: 0;
  visibility: visible;
  position: relative;
}
.filters .dropdown.active ul li {
  visibility: visible;
  position: relative;
}
.latest-posts {
  margin-left: -18px;
}
.latest-posts .alm-reveal {
  display: flex;
  flex-wrap: wrap;
}
.latest-posts .alm-reveal .media-post {
  display: block;
  margin: 0 0 20px 0;
  padding: 30px;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  margin-left: 16px;
  position: relative;
  height: 30rem;
  border-radius: 0;
  transition: all 0.2s;
  width: 100%;
  margin-left: 0px;
}
@media (min-width: 700px) {
  .latest-posts .alm-reveal .media-post {
    width: calc(50% - 16px);
    margin-left: 16px;
    height: 37rem;
    padding: 40px;
  }
}
@media (min-width: 1000px) {
  .latest-posts .alm-reveal .media-post {
    width: calc(33.33% - 16px);
  }
}
.latest-posts .alm-reveal .media-post:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.latest-posts .alm-reveal .media-post:hover a.post-link {
  background: #fb7321;
  color: #fff;
  border-color: #fb7321;
}
.latest-posts .alm-reveal .media-post .post-date {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: uppercase;
}
.latest-posts .alm-reveal .media-post .post-title {
  color: #fff;
  font-size: 2.2rem;
  line-height: 28px;
}
.latest-posts .alm-reveal .media-post .post-link {
  overflow: hidden;
  text-align: center;
  padding: 1.2rem 3rem;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: normal;
  position: relative;
  font-weight: 500;
  min-width: 180px;
  border-radius: 7px;
  transition: all 0.3s;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
@media (min-width: 700px) {
  .latest-posts .alm-reveal .media-post .post-link {
    bottom: 40px;
    left: 40px;
    font-size: 1.8rem;
  }
}

button.alm-load-more-btn.more {
  overflow: hidden;
  text-align: center;
  padding: 1.2rem 3rem;
  color: #fb7321 !important;
  background: transparent !important;
  border: 2px solid #fb7321;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: normal;
  position: relative;
  font-weight: 500;
  min-width: 180px;
  border-radius: 7px;
  transition: all 0.3s;
  height: auto;
}
button.alm-load-more-btn.more:hover {
  color: #fff;
  background: #fb7321;
}

/* -------------------------------------------
***** Packages *****
------------------------------------------- */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* -------------------------------------------
***** Extensions *****
-------------------------------------------*/
.banner__caption__wrapper, .main-slider .slick-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.main-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 390px;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s ease;
  overflow: hidden;
}
@media (min-width: 900px) {
  .main-slider {
    min-height: 450px;
  }
}
@media (min-width: 1200px) {
  .main-slider {
    min-height: 650px;
  }
}
@media (min-width: 1300px) {
  .main-slider {
    min-height: 700px;
  }
}
.main-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}
.main-slider .slick-slide {
  position: relative;
  height: 100vh;
  min-height: 390px;
}
@media (min-width: 900px) {
  .main-slider .slick-slide {
    min-height: 450px;
  }
}
@media (min-width: 1200px) {
  .main-slider .slick-slide {
    min-height: 650px;
  }
}
@media (min-width: 1300px) {
  .main-slider .slick-slide {
    min-height: 700px;
  }
}
.main-slider .slick-slide video {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.main-slider .slick-slide iframe {
  position: relative;
  pointer-events: none;
}
.main-slider .slick-slide figure {
  position: relative;
  height: 100%;
}
.main-slider .slick-slide .slide-image {
  opacity: 0;
  height: 100%;
  background-size: cover;
  background-position: top;
  transition: all 0.8s ease;
}
.main-slider .slick-slide .slide-image.show {
  opacity: 1;
}
.main-slider .slick-slide:last-child .slide-image {
  background-position: bottom;
}
.main-slider .slick-slide .image-entity {
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.main-slider .slick-slide .embed-player {
  display: none;
}
@media (min-width: 700px) {
  .main-slider .slick-slide .embed-player {
    display: block;
  }
}
.main-slider .slick-slide .home_banners_alt_image {
  z-index: 20;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 700px) {
  .main-slider .slick-slide .home_banners_alt_image {
    display: none;
  }
}
.main-slider .slick-slide .slide-media {
  -webkit-animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
          animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}
.main-slider .slick-slide.slick-active {
  z-index: 1;
}
.main-slider .slick-slide.slick-active .slide-media {
  -webkit-animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
          animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}
.main-slider .slick-slide.slick-active .caption {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.6s;
}
.main-slider .slick-slide.youtube iframe {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.main-slider .slick-arrow.slick-prev {
  position: absolute;
  cursor: pointer;
  bottom: 8rem;
  left: 8rem;
  z-index: 1;
  color: transparent;
  width: 35px;
  height: 35px;
  padding: 5px 0 0 0;
  background: url(../img/icons/arrow-right-white.svg);
  background-size: cover;
  border: none;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 0.9;
}
.main-slider .slick-arrow.slick-next {
  position: absolute;
  cursor: pointer;
  bottom: 8rem;
  right: 8rem;
  z-index: 1;
  color: transparent;
  width: 35px;
  height: 35px;
  padding: 5px 0 0 0;
  background: url(../img/icons/arrow-right-white.svg);
  background-size: cover;
  border: none;
  opacity: 0.9;
}
.main-slider .slick-dots {
  text-align: left;
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  text-align: center;
}
.main-slider .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
}
.main-slider .slick-dots li button {
  width: 15px;
  height: 18px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
  text-indent: -99999px;
  vertical-align: middle;
  color: #fff;
  background-color: unset;
  transition: all 0.3s ease;
}
.main-slider .slick-dots li button:focus {
  outline: none;
}
.main-slider .slick-dots li button:hover {
  opacity: 1;
}
.main-slider .slick-dots li.slick-active button {
  border-color: white;
  opacity: 1;
  background: white;
}

.banner__caption__wrapper {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.3s ease;
}
.banner__caption__wrapper .wrap {
  height: 100%;
  width: 100%;
  max-width: initial;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
}
.banner__caption__wrapper .wrap .banner__caption {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  position: relative;
}
.banner__caption__wrapper .wrap .banner__caption.has__background {
  padding: 20px;
  box-sizing: border-box;
  background: linear-gradient(rgba(251, 115, 33, 0.55), rgba(251, 115, 33, 0.5)), url(../img/icons/bg-lines.svg);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (min-width: 700px) {
  .banner__caption__wrapper .wrap .banner__caption.has__background {
    padding: 4rem 3rem;
  }
}
.banner__caption__wrapper .wrap .banner__caption.has__background h2 {
  letter-spacing: 0px;
  color: #fff;
  font-size: 3.5rem;
  max-width: 88rem;
  line-height: 1.3;
  font-weight: 300;
}
.banner__caption__wrapper .wrap .banner__caption.has__background p {
  color: #fb7321;
}
.banner__caption__wrapper .wrap .banner__caption h1,
.banner__caption__wrapper .wrap .banner__caption h2,
.banner__caption__wrapper .wrap .banner__caption p {
  text-align: center;
  color: white;
}
.banner__caption__wrapper .wrap .banner__caption h1,
.banner__caption__wrapper .wrap .banner__caption h2 {
  font-family: "HelveticaNeueW01", sans-serif;
  margin: 0;
  position: relative;
}
@media (min-width: 900px) {
  .banner__caption__wrapper .wrap .banner__caption h1,
.banner__caption__wrapper .wrap .banner__caption h2 {
    font-size: 54px;
    line-height: 52px;
  }
}
@media (min-width: 1300px) {
  .banner__caption__wrapper .wrap .banner__caption h1,
.banner__caption__wrapper .wrap .banner__caption h2 {
    font-size: 60px;
    line-height: 68px;
  }
}
.banner__caption__wrapper .wrap .banner__caption p {
  max-width: 100%;
  padding-top: 20px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
}
@media (min-width: 550px) {
  .banner__caption__wrapper .wrap .banner__caption p {
    font-size: 18px;
  }
}
@media (min-width: 900px) {
  .banner__caption__wrapper .wrap .banner__caption p {
    font-size: 21px;
    line-height: 30px;
    max-width: 80%;
  }
}
.banner__caption__wrapper .wrap .banner__caption .banner__caption__buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 550px) {
  .banner__caption__wrapper .wrap .banner__caption .banner__caption__buttons {
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    flex-direction: row;
    margin: 40px auto 0 auto;
  }
}
.banner__caption__wrapper .wrap .banner__caption .banner__caption__buttons a {
  display: flex;
  align-self: flex-start;
  margin-right: 0;
  justify-content: center;
  margin-bottom: 15px;
}
@media (min-width: 550px) {
  .banner__caption__wrapper .wrap .banner__caption .banner__caption__buttons a {
    width: 48%;
    margin-right: 5px;
  }
}

.banner__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.inner__banner {
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
  opacity: 1;
  transition: all 1.2s ease;
  overflow: hidden;
  min-height: 200px;
  margin-top: 6.5rem;
}
@media (min-width: 700px) {
  .inner__banner {
    min-height: 280px;
    max-height: 320px;
  }
}
@media (min-width: 900px) {
  .inner__banner {
    max-height: none;
    min-height: 320px;
  }
}
@media (min-width: 1100px) {
  .inner__banner {
    margin-bottom: 0;
    min-height: 450px;
  }
}
.inner__banner .banner__image {
  display: flex;
  align-items: flex-end;
}
.inner__banner .banner__image {
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.8s ease;
}
.inner__banner .banner__image .image-entity {
  opacity: 0;
}
.inner__banner .banner__caption__wrapper {
  top: auto;
}
.inner__banner .banner__caption__wrapper .wrap {
  justify-content: flex-end;
}
.inner__banner .banner__caption__wrapper .wrap .banner__caption {
  margin-bottom: 0;
  align-items: flex-start;
  width: 100%;
  float: left;
}
@media (min-width: 900px) {
  .inner__banner .banner__caption__wrapper .wrap .banner__caption {
    width: 100%;
  }
}
.page-parent .inner__banner .banner__caption__wrapper .wrap .banner__caption, .page-child .inner__banner .banner__caption__wrapper .wrap .banner__caption, .single-post .inner__banner .banner__caption__wrapper .wrap .banner__caption {
  width: 75%;
  float: right;
}
@media (min-width: 900px) {
  .page-parent .inner__banner .banner__caption__wrapper .wrap .banner__caption, .page-child .inner__banner .banner__caption__wrapper .wrap .banner__caption, .single-post .inner__banner .banner__caption__wrapper .wrap .banner__caption {
    width: 100%;
  }
}
.inner__banner .banner__caption__wrapper .wrap .banner__caption h1 {
  font-size: 28px;
  text-shadow: unset;
  position: relative;
  line-height: 36px;
  padding-bottom: 8px;
  text-transform: uppercase;
}
.inner__banner .banner__caption__wrapper .wrap .banner__caption h1:before {
  content: none;
}
.inner__banner .banner__caption__wrapper .wrap .banner__caption p {
  font-size: 21px;
  margin-top: 0;
}

.main-slider .slick-list .item:nth-of-type(3) .slide-image {
  background-position: bottom;
}

.scroll-down-arrow {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2hldnJvbl90aGluX2Rvd24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiBmaWxsPSJ3aGl0ZSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTE3LjQxOCw2LjEwOWMwLjI3Mi0wLjI2OCwwLjcwOS0wLjI2OCwwLjk3OSwwYzAuMjcsMC4yNjgsMC4yNzEsMC43MDEsMCwwLjk2OWwtNy45MDgsNy44M2MtMC4yNywwLjI2OC0wLjcwNywwLjI2OC0wLjk3OSwwbC03LjkwOC03LjgzYy0wLjI3LTAuMjY4LTAuMjctMC43MDEsMC0wLjk2OWMwLjI3MS0wLjI2OCwwLjcwOS0wLjI2OCwwLjk3OSwwTDEwLDEzLjI1TDE3LjQxOCw2LjEwOXoiLz48L3N2Zz4=);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer !important;
  height: 60px;
  width: 80px;
  margin: 0px 0 0 -40px;
  line-height: 60px;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 5rem);
  color: #fff;
  text-align: center;
  font-size: 70px;
  z-index: 100;
  text-decoration: none;
  z-index: 6;
  background-position: center;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  -webkit-animation: fade_move_down 2s ease-in-out infinite;
  animation: fade_move_down 2s ease-in-out infinite;
}
.scroll-down-arrow:before {
  font-weight: normal;
  font-family: "modules";
  content: attr(data-ca3_icon);
}

/*animated scroll arrow animation*/
@-webkit-keyframes fade_move_down {
  0% {
    -webkit-transform: translate(0, -20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
}
@keyframes fade_move_down {
  0% {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
    opacity: 0;
  }
}
/* -------------------------------------------
***** Includes *****
------------------------------------------- */
.btn,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title {
  overflow: hidden;
  text-align: center;
  padding: 1.2rem 3rem;
  color: #fb7321;
  background: transparent;
  border: 2px solid #fb7321;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: normal;
  position: relative;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  font-weight: 500;
  min-width: 180px;
  border-radius: 7px;
  transition: all 0.3s;
}
@media (min-width: 1100px) {
  .btn,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title {
    font-size: 1.8rem;
  }
}
.btn svg,
.btn span,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title svg,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title span {
  z-index: 2;
  position: relative;
}
.btn svg path,
.btn span path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title svg path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title span path {
  fill: white;
}
.btn:hover, .btn:active, .btn:focus,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:hover,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:active,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:focus {
  background: #0c419a;
  border-color: #0c419a;
  color: #fff;
}
.btn:hover svg path,
.btn:hover span path, .btn:active svg path,
.btn:active span path, .btn:focus svg path,
.btn:focus span path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:hover svg path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:hover span path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:active svg path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:active span path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:focus svg path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:focus span path {
  color: #fb7321;
  fill: #fb7321;
}
.btn.orange,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.orange.kt-tab-title {
  color: #fb7321;
  border-color: #fb7321;
}
.btn.orange:hover,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.orange.kt-tab-title:hover {
  color: #fff;
  border-color: #0c419a;
}
.btn.fancy__btn__effect,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title {
  transition: all 0.3s;
}
.btn.fancy__btn__effect:hover:after, .btn.fancy__btn__effect:active:after,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:hover:after,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:active:after {
  width: 100%;
}
.btn.fancy__btn__effect:after,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:after {
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: white;
  content: "";
  position: absolute;
  z-index: 0;
  transition: all 0.3s;
}
.btn.btn__primary, .btn.is-style-btn__primary,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title {
  border-color: #fb7321;
  color: #fb7321;
}
.btn.btn__primary path, .btn.is-style-btn__primary path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title path {
  fill: #fb7321;
}
.btn.btn__primary.fancy__btn__effect:after, .btn.is-style-btn__primary.fancy__btn__effect:after,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:after {
  background: #fb7321;
}
.btn.btn__primary:hover, .btn.btn__primary:active, .btn.btn__primary:focus, .btn.is-style-btn__primary:hover, .btn.is-style-btn__primary:active, .btn.is-style-btn__primary:focus,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:hover,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:active,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:focus {
  background: #fb7321;
  border-color: #fb7321;
}
.btn.btn__primary:hover svg,
.btn.btn__primary:hover span, .btn.btn__primary:active svg,
.btn.btn__primary:active span, .btn.btn__primary:focus svg,
.btn.btn__primary:focus span, .btn.is-style-btn__primary:hover svg,
.btn.is-style-btn__primary:hover span, .btn.is-style-btn__primary:active svg,
.btn.is-style-btn__primary:active span, .btn.is-style-btn__primary:focus svg,
.btn.is-style-btn__primary:focus span,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:hover svg,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:hover span,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:active svg,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:active span,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:focus svg,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:focus span {
  color: white;
}
.btn.btn__primary:hover svg path,
.btn.btn__primary:hover span path, .btn.btn__primary:active svg path,
.btn.btn__primary:active span path, .btn.btn__primary:focus svg path,
.btn.btn__primary:focus span path, .btn.is-style-btn__primary:hover svg path,
.btn.is-style-btn__primary:hover span path, .btn.is-style-btn__primary:active svg path,
.btn.is-style-btn__primary:active span path, .btn.is-style-btn__primary:focus svg path,
.btn.is-style-btn__primary:focus span path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:hover svg path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:hover span path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:active svg path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:active span path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:focus svg path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:focus span path {
  fill: white;
}
.btn.btn__secondary, .btn.is-style-btn__secondary,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title {
  border-color: #005892;
  color: #005892;
}
.btn.btn__secondary path, .btn.is-style-btn__secondary path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title path {
  fill: #005892;
}
.btn.btn__secondary.fancy__btn__effect:after, .btn.is-style-btn__secondary.fancy__btn__effect:after,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:after,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:after {
  background: #005892;
}
.btn.btn__secondary:hover, .btn.btn__secondary:active, .btn.btn__secondary:focus, .btn.is-style-btn__secondary:hover, .btn.is-style-btn__secondary:active, .btn.is-style-btn__secondary:focus,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:hover,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:active,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:focus,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:hover,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:active,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:focus {
  background: #005892;
  border-color: #005892;
}
.btn.btn__secondary:hover svg,
.btn.btn__secondary:hover span, .btn.btn__secondary:active svg,
.btn.btn__secondary:active span, .btn.btn__secondary:focus svg,
.btn.btn__secondary:focus span, .btn.is-style-btn__secondary:hover svg,
.btn.is-style-btn__secondary:hover span, .btn.is-style-btn__secondary:active svg,
.btn.is-style-btn__secondary:active span, .btn.is-style-btn__secondary:focus svg,
.btn.is-style-btn__secondary:focus span,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:hover svg,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:hover span,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:active svg,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:active span,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:focus svg,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:focus span,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:hover svg,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:hover span,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:active svg,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:active span,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:focus svg,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:focus span {
  color: white;
}
.btn.btn__secondary:hover svg path,
.btn.btn__secondary:hover span path, .btn.btn__secondary:active svg path,
.btn.btn__secondary:active span path, .btn.btn__secondary:focus svg path,
.btn.btn__secondary:focus span path, .btn.is-style-btn__secondary:hover svg path,
.btn.is-style-btn__secondary:hover span path, .btn.is-style-btn__secondary:active svg path,
.btn.is-style-btn__secondary:active span path, .btn.is-style-btn__secondary:focus svg path,
.btn.is-style-btn__secondary:focus span path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:hover svg path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:hover span path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:active svg path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:active span path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:focus svg path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.btn__secondary.kt-tab-title:focus span path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:hover svg path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:hover span path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:active svg path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:active span path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:focus svg path,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.is-style-btn__secondary.kt-tab-title:focus span path {
  fill: white;
}
.btn.full__width,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.full__width.kt-tab-title {
  display: block;
}
.btn.center,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.center.kt-tab-title {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}
.btn.heading-read-more,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.heading-read-more.kt-tab-title {
  color: transparent;
  width: 32px;
  height: 32px;
  margin-top: 5px;
  display: inline-block;
  min-width: 32px;
  padding: 5px 0 0 0;
  background: url("../img/icons/arrow-right.svg");
  background-size: cover;
  float: right;
  border: 0;
  transition: all 0.4s;
}
.btn.heading-read-more:hover,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.heading-read-more.kt-tab-title:hover {
  background: url("../img/icons/arrow-blue.svg");
  background-size: cover;
}
.btn.heading-read-more.sm,
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.heading-read-more.sm.kt-tab-title {
  margin-top: 2px;
}

/* block : cta */
.cta {
  margin-bottom: 50px !important;
}

.cta__bg {
  display: block;
  min-height: 250px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta__bg.icon {
  background-size: 30%;
}

.cta.icon__magni .icon {
  background-size: 45%;
}

.cta__content {
  padding: 36px 30px 30px 30px;
  background: rgb(237, 237, 237);
  background: linear-gradient(to right, #ededed 0%, #f1ebf6 100%);
  position: relative;
}

.cta__content h3 {
  font-size: 30px;
  line-height: 1.2;
  margin: -10px 0 30px 0;
}

.cta__content *:last-child {
  margin-bottom: 0;
}

@media (max-width: 799px) {
  .cta__content:before {
    height: 6px;
    top: 0;
    left: 30px;
    right: 30px;
  }
}
@media (min-width: 800px) {
  .cta.horis {
    display: flex;
    flex-wrap: wrap;
  }

  .cta.horis .cta__bg {
    width: 40%;
    order: 1;
  }

  .cta.horis .cta__content {
    width: 60%;
    padding: 40px 46px 40px 40px;
    order: 0;
  }

  .cta.horis .cta__content {
    padding: 40px 46px 40px 40px;
  }

  .cta.vert .cta__content:before {
    height: 6px;
    top: 0;
    left: 30px;
    right: 30px;
  }

  .cta.horis .cta__content:before {
    width: 6px;
    top: 45px;
    bottom: 37px;
    right: 0;
  }
}
@media (min-width: 1200px) {
  .cta.horis .cta__bg,
.cta.horis .cta__content {
    width: 50%;
  }

  .cta.three__by__one .cta__bg {
    width: 25%;
  }

  .cta.three__by__one .cta__content {
    width: 75%;
  }
}
/* block : iframe */
iframe {
  border: 0;
  width: 100%;
  overflow: hidden !important;
}

.bir__block.iframe #share_price_widget_home {
  height: 8.5rem;
  padding: 2.8rem 0;
  margin-bottom: 2.5rem;
  width: 100%;
  background: url(../img/widget-bg.svg);
  background-size: cover;
}
.bir__block.iframe #share_price_widget_home ul {
  white-space: nowrap;
}

.image__cta {
  min-height: 450px;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 40px 0;
  z-index: 2;
}
@supports (-webkit-overflow-scrolling: touch) {
  .image__cta {
    background-attachment: unset !important;
  }
}
@media (min-width: 550px) {
  .image__cta {
    min-height: 300px;
  }
}
.image__cta .wrap {
  display: flex;
  min-height: inherit;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 1100px) {
  .image__cta .wrap {
    align-items: flex-start;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .image__cta .wrap {
    height: 2px;
  }
  .home .image__cta .wrap {
    height: auto;
  }
}
.image__cta .wrap .image__cta__content__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}
@media (min-width: 1100px) {
  .image__cta .wrap .image__cta__content__wrapper {
    width: 60%;
  }
}
.image__cta .wrap .image__cta__content__wrapper .image__cta__content__title__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.image__cta .wrap .image__cta__content__wrapper .image__cta__content__title__wrapper a.btn {
  margin-top: 0;
}
.image__cta .wrap .image__cta__content__wrapper h2 {
  font-family: "HelveticaNeueW01", sans-serif;
  color: white;
  margin-bottom: 0;
  background: rgb(0, 88, 146);
  background: linear-gradient(287deg, rgba(0, 88, 146, 0.9) 0%, rgba(15, 44, 71, 0.9) 100%);
  padding: 15px 20px;
}
@media (min-width: 700px) {
  .image__cta .wrap .image__cta__content__wrapper h2 {
    padding: 5px 20px;
  }
}
.image__cta .wrap .image__cta__content__wrapper p {
  color: white;
  font-weight: 600;
  margin-top: 15px;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}
@media (min-width: 1100px) {
  .image__cta .wrap .image__cta__content__wrapper p {
    width: 90%;
    font-size: 18px;
  }
}
.image__cta .image__cta__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.image__cta a.btn {
  margin-top: 20px;
}
.image__cta a.btn span svg {
  float: right;
  margin-left: 30px;
  width: 22px;
  height: 22px;
}
@media (min-width: 1100px) {
  .image__cta.home__footer__cta {
    height: 600px;
  }
}
.image__cta.home__footer__cta .image__cta__overlay {
  background-color: rgba(0, 0, 0, 0.3);
}

.is-style-intro {
  font-size: 19px;
  color: #005892;
  line-height: 26px;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 900px) {
  .is-style-intro {
    text-align: left;
    font-size: 20px;
    line-height: 28px;
  }
}

.is-style-feature {
  background: #fb7321;
  padding: 20px;
  color: white;
  font-weight: 400;
  position: relative;
}

/* block : posts */
.excerpt {
  margin: 0 0 50px 0;
}

.excerpt h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-top: 0;
  font-family: "Helvetica-Bold";
}

.excerpt h3 a {
  font-weight: 600;
  color: var(--secondary);
}

.excerpt h3 a:hover,
.excerpt h3 a:active,
.excerpt h3 a:focus {
  color: var(--primary);
}

.excerpt p {
  margin: 0;
}

.excerpt p.meta {
  font-family: var(--secondaryFont);
  margin-bottom: 20px;
  color: #621244;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.excerpt .btn-sm {
  font-family: var(--secondaryFont);
  margin-top: 25px;
  color: #fff;
  color: #621244;
}

.excerpt .btn-sm:hover,
.excerpt .btn-sm:hover:active,
.excerpt .btn-sm:hover:focus {
  color: var(--secondary);
}

.posts.col .excerpt,
.boxed .posts .excerpt {
  padding: 20px;
  background: var(--lightgrey);
  background: linear-gradient(to bottom, rgb(239, 239, 239) 0%, rgb(249, 249, 249) 100%);
  border-top: 2px solid var(--primary);
}

@media (min-width: 900px) {
  .posts.col {
    display: flex;
    flex-wrap: wrap;
    margin-left: -50px;
  }

  .posts.col .excerpt {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: calc(50% - 50px);
    margin-left: 50px;
    padding: 30px;
  }

  .posts.col .excerpt > * {
    width: 100%;
  }

  .posts.col .excerpt p {
    margin-bottom: 25px;
  }

  .posts.col .excerpt p.meta {
    margin-bottom: 20px;
  }

  .posts.col .excerpt .btn-sm {
    margin-top: auto;
  }
}
@media (min-width: 1300px) {
  .posts.col .excerpt {
    width: calc(33.33% - 50px);
  }

  .boxed .posts .excerpt {
    padding: 40px 70px;
  }
}
/* block : grid */
.team-member-grid {
  margin: 0 2rem 2.5rem 0;
  background: #fb7321;
  width: calc(33% - 2.5rem);
  display: inline-flex;
  flex-wrap: wrap;
}
.team-member-grid .team-wrapper {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
}
.team-member-grid img {
  width: 100%;
  margin: 0;
}
.team-member-grid .team-img {
  width: 100%;
  height: 380px;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: top center !important;
}
.team-member-grid .name {
  padding: 15px 20px;
  position: absolute;
  bottom: 0;
  background: #fb7321;
  width: 100%;
  min-height: 11rem;
}
.team-member-grid .name h3 {
  font-size: 22px;
  margin: 0 0 4px 0;
  color: white;
  line-height: 24px;
}
.team-member-grid .name p {
  display: block;
  font-size: 16px;
  margin: 0;
  color: white;
}
.team-member-grid .name p + p {
  margin-top: 5px;
}
.team-member-grid a.btn-open-profile {
  color: white;
  font-size: 1.5rem;
}
.team-member-grid a.btn-open-profile::after {
  content: "+";
  display: inline;
  padding-left: 5px;
  font-size: 2rem;
}
.team-member-grid a.btn-open-profile.active::after {
  content: "-";
}

.team-bio {
  width: calc(99% - 2.5rem);
  float: left;
  margin-top: -2.5rem;
  padding: 2rem;
  background: linear-gradient(to right, #f5f5f5, #dadada);
  position: relative;
  margin-bottom: 2.5rem;
}
.team-bio p {
  font-size: 1.5rem;
  color: black;
}
.team-bio p:last-child {
  margin-bottom: 0;
}
.team-bio .bio-wrapper {
  width: 100%;
  padding: 0;
}

@media (min-width: 1100px) {
  .two-col .team-member-grid {
    width: calc(50% - 20px);
  }
}
/* block : team list */
.team-member {
  margin: 0 0 50px 0;
}
@media (min-width: 550px) {
  .team-member .team-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 30px -20px;
  }
}

.team-member .head h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 30px 0;
}

.team-member .head span {
  display: block;
  padding: 25px 20px;
  background: linear-gradient(135deg, var(--lightgrey) 0%, rgb(235, 226, 242) 100%);
}

.team-member .head h3 em {
  display: block;
  font-size: 18px;
  color: var(--secondary);
}

.team-member .bio p:first-of-type {
  font-size: 105%;
  color: var(--primary);
}

@media (min-width: 700px) {
  .team-member .head {
    margin: 0 0 30px 0;
    position: relative;
  }

  .team-member .head img {
    width: 55%;
  }

  .team-member .head .name {
    width: 55%;
    margin: 0;
    position: absolute;
    top: 30px;
    right: 0;
  }
}
@media (min-width: 900px) {
  .team-member {
    margin: 0 0 120px 0;
  }

  .team-member .bio p:last-of-type {
    margin-bottom: 0;
  }
}
@media (min-width: 1100px) {
  .team-member .head span {
    max-width: 480px;
  }

  .team-member .head img {
    width: 300px;
  }

  .team-member .head .name {
    width: calc(100% - 250px);
  }

  .team-member .bio {
    width: calc(100% - 330px);
    margin: -74px 0 0 auto;
  }
}
@media (min-width: 1300px) {
  .team-member .head span {
    padding: 45px 50px;
  }
}
/* bio lightbox */
.bio.fancybox-content {
  width: 90%;
  max-width: 900px;
}

.bio-photo img {
  width: 100%;
  margin: 0;
}

.bio-name {
  margin: 0 0 24px 0;
  padding-top: 15px;
  border-top: 5px solid var(--primary);
}

.bio-name h3 {
  font-size: 22px;
  margin: 0 0 4px 0;
}

.bio-name p {
  display: block;
  font-size: 16px;
  margin: 0;
  color: var(--secondary);
}

.bio-name p + p {
  margin-top: 5px;
}

bio-body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .bio-photo {
    width: 240px;
    float: left;
  }

  .bio-body {
    width: calc(100% - 240px);
    float: left;
    padding-left: 20px;
  }
}
@media (min-width: 1000px) {
  .bio-photo {
    width: 300px;
  }

  .bio-body {
    width: calc(100% - 300px);
    padding-left: 30px;
  }
}
.stats {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats .stats__svg {
  padding: 20px 0;
}
.stats .active__stats,
.stats .inactive__stats {
  text-align: center;
}
.stats .active__stats span,
.stats .inactive__stats span {
  display: block;
  font-size: 38px;
  font-weight: 700;
  padding-bottom: 5px;
}
.stats.is-style-primary .active__stats {
  color: #fb7321;
}
.stats.is-style-secondary .active__stats {
  color: #005892;
}
.stats.is-style-green .active__stats {
  color: #afb5a5;
}

.image__slider ul.slick-slider {
  margin: 0;
  padding: 0;
}
.image__slider ul.slick-slider .slick-list li {
  width: 100%;
  height: 250px;
}
@media (min-width: 700px) {
  .image__slider ul.slick-slider .slick-list li {
    height: 300px;
  }
}
@media (min-width: 1100px) {
  .image__slider ul.slick-slider .slick-list li {
    height: 400px;
  }
}
.image__slider ul.slick-slider .slick-dots {
  text-align: left;
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  text-align: center;
  margin-bottom: 10px;
}
.image__slider ul.slick-slider .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
}
.image__slider ul.slick-slider .slick-dots li button {
  width: 15px;
  height: 18px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
  text-indent: -99999px;
  vertical-align: middle;
  color: #fff;
  background-color: unset;
  transition: all 0.3s ease;
}
.image__slider ul.slick-slider .slick-dots li button:focus {
  outline: none;
}
.image__slider ul.slick-slider .slick-dots li button:hover {
  opacity: 1;
}
.image__slider ul.slick-slider .slick-dots li.slick-active button {
  border-color: white;
  opacity: 1;
  background: white;
}

blockquote.wp-block-quote {
  padding: 25px;
  color: white;
  background: linear-gradient(222deg, #00b1ff 0%, #005892 100%);
}
@media (min-width: 900px) {
  blockquote.wp-block-quote {
    padding: 40px;
  }
}
blockquote.wp-block-quote:before {
  content: "\f10d";
  position: absolute;
  left: 13px;
  top: 30px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 150px;
  opacity: 0.1;
}
@media (min-width: 900px) {
  blockquote.wp-block-quote p {
    font-size: 17px;
    line-height: 24px;
  }
}
blockquote.wp-block-quote p em {
  font-style: normal;
}

.wp-block-image.size-full img {
  width: 100%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .wp-block-image img {
    width: 100%;
  }
}

.bir__block.image picture {
  position: relative;
  margin-bottom: 4rem;
  display: inline-block;
  width: 100%;
}
.bir__block.image picture::after {
  content: "";
  display: block;
  width: 100%;
  height: 5rem;
  background: url(../img/icons/border.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -1.5rem;
  z-index: -1;
}
.bir__block.image picture.left:after {
  left: -1.5rem;
}
.bir__block.image picture.right:after {
  right: -1.5rem;
}
.bir__block.image picture.none:after {
  display: none;
}
.bir__block.image picture a {
  width: 100%;
}

.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header {
  font-size: 18px;
  line-height: 24px;
  border-radius: 0px 0px 0px 0px;
  border-width: 0px 0px 0px 0px;
  padding: 20px 20px 20px 20px;
  margin-top: 14px;
  background: #f5f5f5;
  color: #fb7321;
  cursor: pointer;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header .kt-blocks-accordion-icon-trigger:before, .wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header .kt-blocks-accordion-icon-trigger:after {
  background: white;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header:hover {
  background: #fed2b7;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header.kt-accordion-panel-active {
  background: #fb7321;
  color: white;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-accordion-panel-inner {
  background: #fbfbfb;
  border: 0;
  padding: 20px;
}
@media (min-width: 700px) {
  .wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-accordion-panel-inner {
    padding: 40px 20px;
  }
}

.wp-block-kadence-tabs ul.kt-tabs-title-list {
  margin-bottom: 2rem;
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li {
  margin: 0 10px 10px 0;
  width: 100%;
}
@media (min-width: 700px) {
  .wp-block-kadence-tabs ul.kt-tabs-title-list li {
    margin: 0 10px -1px 0;
    width: auto;
  }
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title {
  border-radius: 0;
  width: 100%;
}
@media (min-width: 700px) {
  .wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title {
    width: auto;
  }
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li.kt-tab-title-active a.kt-tab-title {
  background: #fb7321;
  border-color: #fb7321;
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li.kt-tab-title-active a.kt-tab-title span {
  color: white;
}
.wp-block-kadence-tabs div.kt-tabs-content-wrap .wp-block-kadence-tab {
  border: 0;
  padding: 0;
}

.doc-box {
  margin-top: 2rem;
}
.doc-box .bg {
  padding: 2rem;
  min-height: 22rem;
  background-position: bottom;
  background-size: 80%;
  background-repeat: no-repeat;
  border: 1px solid #ececec;
  width: 100%;
  margin-bottom: 1rem;
}
.doc-box h3 {
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}
@media (min-width: 1100px) {
  .doc-box h3 {
    margin-bottom: 1rem;
  }
}
.doc-box p {
  color: #100000;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.4;
  min-height: 4rem;
}
.doc-box a.db-btn {
  color: transparent;
  width: 25px;
  height: 25px;
  display: block;
  margin: 2rem 0 0 0;
  background: url(../img/icons/download-icon.svg);
  background-size: cover;
  border: 0;
  transition: all 0.4s;
}
.doc-box:hover a.db-btn {
  background: url(../img/icons/download-icon-white.svg);
  background-size: cover;
}

/* block : latest releases */
.latest-press .post {
  margin-bottom: 2.1rem;
}
.latest-press .post .post-thumbnail {
  height: 18rem;
  width: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
.latest-press .post .post-thumbnail:hover:after {
  background: rgba(0, 0, 0, 0.4);
}
.latest-press .post .post-thumbnail:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  transition: all 0.4s;
}
.latest-press .post .date {
  color: #fb7321;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 400;
  padding-top: 0.2rem;
}
@media (min-width: 1100px) {
  .latest-press .post .date {
    font-size: 1.4rem;
    padding-top: 0.5rem;
  }
}
.latest-press .post .title {
  color: #454544;
  font-size: 1.5rem;
  font-weight: 400;
  transition: all 0.4s;
  line-height: 1.4;
}
@media (min-width: 1100px) {
  .latest-press .post .title {
    font-size: 1.8rem;
  }
}
.latest-press .post .title:hover {
  color: #fb7321;
}

/* block : latest video */
.latest-video .video {
  margin-bottom: 2.5rem;
}
.latest-video .video .post-thumbnail {
  background-size: cover;
  min-height: 18rem;
  padding: 3rem;
  position: relative;
}
.latest-video .video .post-thumbnail:hover .play {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.latest-video .video .play {
  position: absolute;
  left: 3rem;
  bottom: 3rem;
  width: 35px;
  height: 35px;
  transition: all 0.4s;
}
.latest-video .video .video-all {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  transition: all 0.4s;
}
.latest-video .video .video-all:hover {
  color: #fff;
}
.latest-video .video .title {
  color: #fff;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 20px;
}
@media (min-width: 1100px) {
  .latest-video .video .title {
    font-size: 1.9rem;
    line-height: 24px;
  }
}

/* block :upcoming events */
.events {
  color: #454544;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.events .event {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}
.events .date {
  width: 12rem;
  padding: 1rem;
  vertical-align: middle;
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 2px solid #ececec;
}
.events .date .day {
  display: block;
  color: #fb7321;
  font-size: 2.6rem;
  text-align: center;
}
.events .date .month {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
}
.events .title {
  margin-left: 2rem;
}

/* block :upcoming events table */
.events-table .date {
  font-weight: 500;
}
@media (min-width: 700px) {
  .events-table .date {
    width: 30%;
    min-width: 22rem;
  }
}
.events-table .notice {
  margin: 3rem 0;
  color: black;
}
.events-table .calendar {
  text-align: center;
}
.events-table .calendar .fa-apple {
  font-size: 2.3rem;
}
.events-table th .fab,
.events-table th .far {
  color: #343b42;
}

.image__slideshow .cover {
  background: #f4f4f4;
  position: relative;
}
.image__slideshow .cover i {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  font-size: 7rem;
  color: white;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.image__slideshow .cover:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s;
  background: transparent;
}
.image__slideshow .cover:hover:after {
  background: rgba(56, 27, 6, 0.2);
  mix-blend-mode: multiply;
}
.image__slideshow .cover:hover i {
  opacity: 1;
}

.fancybox-header #wpadminbar {
  display: none;
}

.counter .pre-text {
  margin-bottom: 0;
}
.counter .count {
  font-weight: 400;
  font-size: 4.5rem;
  margin: 3rem 0;
  text-align: center;
}

/* block : History */
.bir-history {
  margin-top: 5rem;
}
.bir-history .year-block {
  position: relative;
}
.bir-history .year-block:before {
  content: "";
  height: 100%;
  position: absolute;
  width: 2px;
  background-color: #dadada;
  top: 0;
  left: 50%;
}
.bir-history .year-block .year {
  font-weight: 600;
  font-family: "HelveticaNeueW01", sans-serif;
  font-size: 2.2rem;
  background-color: #fb7321;
  color: #fff;
  display: block;
  padding: 5px;
  width: 150px;
  text-align: center;
  margin: 0 auto 40px auto;
  position: relative;
}
.bir-history .year-block .events-wrap::after {
  content: "";
  clear: both;
  display: table;
}
.bir-history .year-block .events-wrap .event-block {
  font-weight: 500;
  margin-bottom: 4rem;
  position: relative;
  width: 48%;
  padding: 3rem;
  text-align: left;
  float: left;
}
.bir-history .year-block .events-wrap .event-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #f5f5f5, #dadada);
  bottom: 0;
  left: 0;
  z-index: -1;
}
.bir-history .year-block .events-wrap .event-block:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #dadada;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bir-history .year-block .events-wrap .event-block:last-of-type {
  margin-bottom: 0;
}
.bir-history .year-block .events-wrap .event-thumb {
  float: right;
  width: 46%;
  position: relative;
}
.bir-history .year-block .events-wrap .event-thumb picture {
  position: relative;
  margin-bottom: 4rem;
  display: inline-block;
}
.bir-history .year-block .events-wrap .event-thumb picture img {
  max-height: 250px;
  width: auto;
}
.bir-history .year-block .events-wrap .event-thumb picture::after {
  content: "";
  display: block;
  width: 100%;
  height: 5rem;
  background: url(../img/icons/border.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
  z-index: -1;
}
.bir-history .year-block:nth-child(even) .events-wrap .event-block {
  float: right;
}
.bir-history .year-block:nth-child(even) .events-wrap .event-block::after {
  right: unset;
  left: -18px;
}
.bir-history .year-block:nth-child(even) .events-wrap .event-thumb {
  float: left;
  text-align: right;
}
.bir-history .year-block:nth-child(even) .events-wrap .event-thumb picture::after {
  left: unset;
  right: -1.5rem;
}

/* block :IFC PS */
.ifc_ps {
  position: relative;
  padding: 4rem 0;
}
.ifc_ps .ifc-block {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.ifc_ps .ifc-block .ifc-icon {
  margin-right: 6rem;
}
.ifc_ps .ifc-block .ifc-icon img {
  width: 25rem;
  height: 25rem;
  max-width: unset;
}
.ifc_ps .slick-prev {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  cursor: pointer;
}
.ifc_ps .slick-prev::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  background: url(../img/icons/arrow-left.svg);
  background-size: cover;
  vertical-align: text-bottom;
}
.ifc_ps .slick-prev:hover:before {
  background: url(../img/icons/arrow-left-black.svg);
  background-size: cover;
}
.ifc_ps .slick-next {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  cursor: pointer;
}
.ifc_ps .slick-next::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  background: url(../img/icons/arrow-right.svg);
  background-size: cover;
  vertical-align: text-bottom;
}
.ifc_ps .slick-next:hover:after {
  background: url(../img/icons/arrow-right-black.svg);
  background-size: cover;
}
/* block :business model */
.bir_business_model {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 40px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.bir_business_model::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 20rem);
  border: 2px solid #fb7321;
  top: 10rem;
  left: 0;
}
.bir_business_model .box-wrapper {
  max-width: 22%;
  text-align: center;
  padding: 3rem;
  position: relative;
}
.bir_business_model .box-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(10rem - 39px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -3rem;
  color: #fb7321;
  background: url(../img/icons/caret-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 10px;
}
.bir_business_model .box-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(10rem - 39px);
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  right: -3rem;
  color: #fb7321;
  background: url(../img/icons/caret-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 10px;
}
.bir_business_model .box-wrapper img {
  width: 10rem;
  height: 10rem;
  margin-bottom: 2rem;
}
.bir_business_model .box-wrapper .model-title {
  color: white;
}
.bir_business_model .box-wrapper .model-desc {
  color: white;
}

@media (min-width: 900px) {
  .page-id-1390 footer {
    margin-top: -3rem;
  }
}

/* block : SLIDER SYNCING */
.sync_slider {
  position: relative;
  padding: 4rem 0;
}
.sync_slider .slider-block {
  min-height: 45rem;
  padding: 2rem;
  background: white;
}
.sync_slider .slider-block .slider-heading {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
}
.sync_slider .slider-block .slider-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.sync_slider .slider-block .slider-content .slider-icon {
  margin-right: 4rem;
}
.sync_slider .slider-block .slider-content .slider-icon img {
  width: 100%;
  height: auto;
  max-width: unset;
  padding: 2rem;
  min-width: 50rem;
}
.sync_slider .slider-block .slider-content .slider-text {
  padding: 2rem 0;
}
.sync_slider .slider-block .slider-content.full-width .slider-icon img {
  width: 100%;
}
.sync_slider .slick-prev {
  position: absolute;
  top: 50%;
  left: -6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sync_slider .slick-prev::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 25px;
  height: 25px;
  background: url(../img/icons/arrow-left.svg);
  background-size: cover;
  vertical-align: text-bottom;
}
.sync_slider .slick-prev:hover:before {
  background: url(../img/icons/arrow-left-black.svg);
  background-size: cover;
}
.sync_slider .slick-next {
  position: absolute;
  top: 50%;
  right: -6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.sync_slider .slick-next::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 25px;
  height: 25px;
  background: url(../img/icons/arrow-right.svg);
  background-size: cover;
  vertical-align: text-bottom;
}
.sync_slider .slick-next:hover:after {
  background: url(../img/icons/arrow-right-black.svg);
  background-size: cover;
}

.slider-nav .slick-slide .slider-nav-item {
  background: grey;
  color: white;
  margin: 0 2rem;
  text-align: center;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
  padding: 0 1.5rem;
  cursor: pointer;
  transition: background 0.4s ease;
}
.slider-nav .slick-slide.is-active .slider-nav-item {
  background: #fb7321;
}

.bir_business_model_2022 .bm_slide__container {
  height: 100%;
  width: 100%;
  min-height: 360px;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 1rem;
}
.bir_business_model_2022 .bm_slide__container .bm_slide__flexbox {
  justify-content: center;
  display: flex;
  height: 100%;
  flex-direction: column;
}
.bir_business_model_2022 .bm_slide__container .bm_slide__header {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2rem 0 1rem;
}
.bir_business_model_2022 .bm_slide__container .bm_slide__header .model-title {
  margin-bottom: 1rem;
}
@media (min-width: 550px) {
  .bir_business_model_2022 .bm_slide__container .bm_slide__header {
    align-items: flex-end;
    flex-direction: row;
  }
}
.bir_business_model_2022 .bm_slide__container .model-icon {
  width: 140px;
  padding: 0 1.5rem;
  float: left;
}
.bir_business_model_2022 .bm_slide__container .bm_slide__text {
  padding: 0 3rem 3rem;
}
.bir_business_model_2022 .bm_slide__container .bm_slide__text p {
  margin-bottom: 0;
}
.bir_business_model_2022 .slick-slide {
  height: inherit !important;
}
.bir_business_model_2022 .slick-dots {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bir_business_model_2022 .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 3px;
}
.bir_business_model_2022 .slick-dots li button {
  width: 15px;
  height: 16px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fb7321;
  text-indent: -99999px;
  vertical-align: middle;
  color: #fb7321;
  background-color: unset;
  transition: all 0.3s ease;
}
.bir_business_model_2022 .slick-dots li button:focus {
  outline: none;
}
.bir_business_model_2022 .slick-dots li button:hover {
  opacity: 1;
}
.bir_business_model_2022 .slick-dots li.slick-active button {
  border-color: #fb7321;
  opacity: 1;
  background: #fb7321;
}
.bir_business_model_2022 .business_model_nav {
  width: 90%;
  margin: 0 auto;
}
.bir_business_model_2022 .business_model_nav .slick-slider {
  width: 100%;
}
.bir_business_model_2022 .business_model_nav .slick-slide {
  height: 125px !important;
  opacity: 0.5;
}
.bir_business_model_2022 .business_model_nav .slick-slide.slick-active {
  opacity: 0.75;
}
.bir_business_model_2022 .business_model_nav .slick-slide.slick-active.slick-center {
  opacity: 1;
}
.bir_business_model_2022 .business_model_nav .slick-slide.slick-active.slick-center img {
  max-width: 120px;
}
.bir_business_model_2022 .business_model_nav .bm_nav__icon {
  display: flex;
  height: 100%;
  align-items: center;
}
.bir_business_model_2022 .business_model_nav .bm_nav__icon img {
  width: 100%;
  max-width: 90px;
  margin: 0 auto;
  transition: all 0.2s ease-in;
}
.bir_business_model_2022 .business_model_nav .slick-prev {
  position: absolute;
  top: calc(50% - 12.5px);
  left: -3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bir_business_model_2022 .business_model_nav .slick-prev::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 25px;
  height: 55px;
  background: url(../img/icons/caret-left.svg);
  background-size: cover;
  vertical-align: text-bottom;
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}
.bir_business_model_2022 .business_model_nav .slick-prev:hover:before {
  opacity: 1;
}
.bir_business_model_2022 .business_model_nav .slick-next {
  position: absolute;
  top: calc(50% - 12.5px);
  right: -3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.bir_business_model_2022 .business_model_nav .slick-next::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 25px;
  height: 50px;
  background: url(../img/icons/caret-right.svg);
  background-size: cover;
  vertical-align: text-bottom;
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}
.bir_business_model_2022 .business_model_nav .slick-next:hover:after {
  opacity: 1;
}

.bir_icon_slider .icon_slider__nav .slick-track {
  display: flex;
  width: 100% !important;
}
.bir_icon_slider .icon_slider__nav .slick-slide {
  height: inherit;
  border-radius: 1rem;
  padding: 2rem 0;
  transition: 0.2s all ease-in-out;
  width: 20% !important;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
}
@media (min-width: 700px) {
  .bir_icon_slider .icon_slider__nav .slick-slide {
    margin-right: 10px;
  }
}
.bir_icon_slider .icon_slider__nav .slick-slide img {
  opacity: 0.6;
  transition: 0.2s all ease-in-out;
  width: 55%;
  cursor: pointer;
}
.bir_icon_slider .icon_slider__nav .slick-slide img:hover {
  opacity: 1;
}
.bir_icon_slider .icon_slider__nav .slick-slide:hover {
  background: rgba(251, 115, 33, 0.1);
}
.bir_icon_slider .icon_slider__nav .slick-slide.slick-current {
  background: rgba(251, 115, 33, 0.2);
}
.bir_icon_slider .icon_slider__nav .slick-slide.slick-current img {
  opacity: 1;
}
.bir_icon_slider .icon_slider__slides {
  background: #f5f5f5;
  margin-top: 2rem;
  padding: 2rem 3rem;
  border-radius: 1rem;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.layout p + .bir__block,
.layout p + .wp-block-group,
.layout p + .wp-block-kadence-rowlayout,
.layout p + .wp-block-kadence-accordion,
.layout p + .wp-block-kadence-tabs,
.layout p + .wp-block-columns,
.layout p + .wp-block-archives,
.layout p + .wp-block-image,
.layout p + .wp-block-quote,
.layout p + .wp-block-embed,
.layout p + table {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .layout p + .bir__block,
.layout p + .wp-block-group,
.layout p + .wp-block-kadence-rowlayout,
.layout p + .wp-block-kadence-accordion,
.layout p + .wp-block-kadence-tabs,
.layout p + .wp-block-columns,
.layout p + .wp-block-archives,
.layout p + .wp-block-image,
.layout p + .wp-block-quote,
.layout p + .wp-block-embed,
.layout p + table {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

.wp-block-column {
  flex-grow: 1;
  flex-basis: 100%;
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .wp-block-column {
    flex-grow: 0;
    flex-basis: calc(50% - 16px);
    margin-bottom: 0;
  }
}
.wp-block-column:last-child {
  margin-bottom: 0;
}
.wp-block-column:nth-child(2n) {
  margin-left: 0;
}
@media (min-width: 900px) {
  .wp-block-column:nth-child(2n) {
    margin-left: 32px;
  }
}

.sidebar__enabled {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 900px) {
  .sidebar__enabled {
    flex-direction: row-reverse;
  }
}
@media (min-width: 900px) {
  .sidebar__enabled .content {
    float: right;
    width: 65%;
  }
}
.sidebar__enabled .sidebar {
  margin-top: 40px;
}
@media (min-width: 900px) {
  .sidebar__enabled .sidebar {
    width: 35%;
    margin-top: 0;
    margin-right: 50px;
    max-width: 300px;
  }
}
.sidebar__enabled .sidebar .sidebar__menu,
.sidebar__enabled .sidebar .menu {
  background: linear-gradient(210deg, #f9f9f9, #fdf4d4);
  padding: 40px;
}
.sidebar__enabled .sidebar .sidebar__menu h3,
.sidebar__enabled .sidebar .menu h3 {
  text-transform: uppercase;
  margin-bottom: 40px;
}
.sidebar__enabled .sidebar .sidebar__menu .parent-title a,
.sidebar__enabled .sidebar .menu .parent-title a {
  color: #fb7321;
}
.sidebar__enabled .sidebar .sidebar__menu .parent-title a:hover,
.sidebar__enabled .sidebar .menu .parent-title a:hover {
  color: #000;
}
.sidebar__enabled .sidebar .sidebar__menu li,
.sidebar__enabled .sidebar .menu li {
  list-style: none;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .sidebar__enabled .sidebar .sidebar__menu li.menu-item-1866,
.sidebar__enabled .sidebar .menu li.menu-item-1866 {
    white-space: nowrap;
  }
}
.sidebar__enabled .sidebar .sidebar__menu li a,
.sidebar__enabled .sidebar .menu li a {
  text-align: left;
  color: #000;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.6rem;
  position: relative;
}
.sidebar__enabled .sidebar .sidebar__menu li a:hover:after,
.sidebar__enabled .sidebar .menu li a:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: url(../img/icons/underline.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.sidebar__enabled .sidebar .sidebar__menu li.current_page_item a,
.sidebar__enabled .sidebar .menu li.current_page_item a {
  color: #fb7321;
}
.sidebar__enabled .sidebar .sidebar__menu li.current_page_item a::after,
.sidebar__enabled .sidebar .menu li.current_page_item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: url(../img/icons/underline-orange.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -5px;
  left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sidebar__enabled .sidebar .sidebar__menu li.current_page_item a::after,
.sidebar__enabled .sidebar .menu li.current_page_item a::after {
    background: url("../img/icons/underline-orange.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
  }
}

html {
  background: white;
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  font-family: "HelveticaNeueW01", sans-serif;
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: 300;
  color: #575756;
  letter-spacing: normal;
}
@media (min-width: 900px) {
  body {
    line-height: 28px;
  }
}

body.admin-bar header {
  top: 46px;
}
body.admin-bar header.sticky {
  top: 0;
}
@media (min-width: 600px) {
  body.admin-bar header {
    top: 46px;
  }
  body.admin-bar header.sticky {
    top: 46px;
  }
}
@media (min-width: 782px) {
  body.admin-bar header {
    top: 32px;
  }
  body.admin-bar header.sticky {
    top: 32px;
  }
}

main {
  min-height: 80vh;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

.content {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}

iframe {
  display: block;
  width: 100%;
  margin: 0;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.fancybox-header {
  overflow: visible;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .fancybox-header {
    overflow: hidden;
    height: 100%;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ie-fancybox-body {
    overflow: visible !important;
    height: 100%;
  }
}

.fancybox-slide.fancybox-slide--iframe .fancybox-content {
  background: #000;
  width: 800px;
  height: 550px;
  max-width: 80%;
  max-height: 80%;
  margin: 0;
}

/* -------------------------------------------
***** Header *****
------------------------------------------- */
header {
  height: 77px;
  background: #fff;
  position: absolute;
  z-index: 10;
  width: 100%;
  transition: all 0.4s ease;
  top: 0;
  left: 0;
}
header ul.menu {
  height: 77px;
}
header ul.menu .sub-toggle {
  display: none;
}
@media (min-width: 900px) {
  header ul.sub-menu li.current-menu-item a::after,
header ul.sub-menu li.current-menu-item a:hover:after {
    content: "";
    position: absolute !important;
    display: block !important;
    height: 1px !important;
    width: 80% !important;
    background: #eeeeef !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 auto !important;
  }
}
@media (min-width: 900px) {
  header {
    position: fixed;
  }
}
header.full__width .wrap {
  width: 100%;
  position: relative;
}
header .wrap {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  header .wrap {
    padding: 0 40px;
  }
}
header.sticky {
  height: 77px;
  background: #fff;
  transition: all 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: -1px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
@media (min-width: 900px) {
  header.sticky {
    padding: 0;
    height: 65px;
  }
}
header.sticky ul.menu {
  height: 77px;
}
@media (min-width: 900px) {
  header.sticky ul.menu {
    height: 65px;
  }
}
header.sticky .logo {
  transition: all 0.2s;
  background: none;
  width: 100px;
  height: 100%;
  width: 22rem;
}
@media (min-width: 900px) {
  header.sticky .logo {
    width: 17rem;
  }
}
@media (min-width: 1000px) {
  header.sticky .logo {
    width: 26rem;
  }
}
header.sticky .logo a {
  padding: 0;
  background: none;
}
header.sticky .logo img,
header.sticky .logo svg {
  transition: all 0.2s;
  width: 100%;
  height: auto;
  max-height: 100%;
}
@media (min-width: 900px) {
  .home header.sticky .logo img,
.home header.sticky .logo svg {
    display: block;
  }
}
header.sticky .header__right .header__right__top {
  display: none;
}
header.sticky .header__right nav.header__nav:not(.mmenu__active) ul.menu {
  padding-bottom: 0 !important;
}
header.sticky .header__right nav.header__nav:not(.mmenu__active) ul.menu:after {
  content: none !important;
}
header.sticky .header__right nav.header__nav:not(.mmenu__active) ul.menu li a {
  color: #fb7321;
  position: relative;
  transition: none;
}
header.sticky .header__right nav.header__nav:not(.mmenu__active) ul.menu li a:hover {
  color: #000;
}
header.sticky .header__right nav.header__nav:not(.mmenu__active) ul.menu li.current-menu-item > a {
  color: black;
  position: relative;
  transition: none;
}
header.sticky .header__right nav.header__nav:not(.mmenu__active) ul.menu li svg,
header.sticky .header__right nav.header__nav:not(.mmenu__active) ul.menu li path {
  fill: white;
}
header.sticky .header__right nav.header__nav:not(.mmenu__active) ul.menu ul:not(.sub-menu) li a:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: url(../img/icons/underline-orange.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -5px;
  left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header.sticky .header__right nav.header__nav:not(.mmenu__active) ul.menu ul:not(.sub-menu) li a:hover:after {
    background: url("../img/icons/underline-orange.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
  }
}
header.sticky .header__right nav.header__nav:not(.mmenu__active) ul.menu ul:not(.sub-menu) li.current-menu-item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: url(../img/icons/underline-orange.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -5px;
  left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header.sticky .header__right nav.header__nav:not(.mmenu__active) ul.menu ul:not(.sub-menu) li.current-menu-item > a::after {
    background: url("../img/icons/underline-orange.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
  }
}
header .logo {
  transition: all 0.2s;
  background: none;
  width: 22rem;
  height: 100%;
  margin-bottom: 0;
  padding: 0;
  max-width: 80%;
}
@media (min-width: 400px) {
  header .logo {
    max-width: initial;
  }
}
@media (min-width: 900px) {
  header .logo {
    width: 17rem;
  }
}
@media (min-width: 1000px) {
  header .logo {
    width: 18rem;
  }
}
@media (min-width: 1200px) {
  header .logo {
    width: 25rem;
  }
}
@media (min-width: 1400px) {
  header .logo {
    width: 28rem;
  }
}
header .logo a {
  padding: 0;
  background: none;
  display: block;
}
header .logo a img,
header .logo a svg {
  transition: all 0.3s;
  height: auto;
  width: 100%;
}
header .logo img,
header .logo svg {
  width: 100%;
}
header .logo img path,
header .logo svg path {
  transition: fill 0.3s ease-in-out;
}
header .tagline {
  display: block;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  padding: 0.4rem 0 0 0;
  opacity: 0.6;
}
@media (min-width: 900px) {
  header .tagline {
    font-size: 18px;
    line-height: 28px;
  }
}
header .header__right {
  display: block;
  z-index: 2;
  overflow: visible;
  float: right;
  position: relative;
}
header .header__right nav.header__nav:not(.mmenu__active) {
  transition: all 0.5s ease;
  right: -9999px;
  top: -100%;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  position: fixed;
}
@media (min-width: 900px) {
  header .header__right nav.header__nav:not(.mmenu__active) {
    position: relative;
    background: none;
    right: inherit;
    top: inherit;
    visibility: visible;
    opacity: 1;
    z-index: inherit;
    display: inline-block;
    vertical-align: middle;
  }
}
header .header__right nav.header__nav:not(.mmenu__active) > ul {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  padding: 0;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul:hover:after {
  height: 0;
  background: transparent;
  transition: all 0.4s ease;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul > li:first-child a {
  color: transparent !important;
  width: 18px;
  height: 22px;
  background: url(../img/icons/home-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
  margin-bottom: 0;
}
@media (min-width: 1300px) {
  header .header__right nav.header__nav:not(.mmenu__active) > ul li {
    padding: 0 1.2rem;
  }
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li:first-child {
  border-left: 0;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li a {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  color: #fb7321;
  text-transform: uppercase;
  position: relative;
}
@media (min-width: 1100px) {
  header .header__right nav.header__nav:not(.mmenu__active) > ul li a {
    font-size: 1.7rem;
  }
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li a:hover {
  color: #000;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li a:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: url(../img/icons/underline-orange.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -5px;
  left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header .header__right nav.header__nav:not(.mmenu__active) > ul li a:hover::after {
    background: url("../img/icons/underline-orange.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
  }
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li.current-menu-item > a, header .header__right nav.header__nav:not(.mmenu__active) > ul li.current-page-parent > a {
  color: #000;
  position: relative;
  transition: none;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li.current-menu-item > a::after, header .header__right nav.header__nav:not(.mmenu__active) > ul li.current-page-parent > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: url(../img/icons/underline-orange.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -5px;
  left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header .header__right nav.header__nav:not(.mmenu__active) > ul li.current-menu-item > a::after, header .header__right nav.header__nav:not(.mmenu__active) > ul li.current-page-parent > a::after {
    background: url("../img/icons/underline-orange.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
  }
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li:hover > ul {
  display: flex;
  flex-direction: column;
  left: -1rem;
  transition: all 0.4s ease;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li:hover > ul > li > ul {
  left: 100%;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li ul {
  display: none;
  transition: all 0.4s ease;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  min-width: 300px;
  background: white;
  z-index: 3;
  text-align: left;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  padding: 0;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li ul li {
  border-top: none;
  position: relative;
  margin: 0;
  padding: 0;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li ul li.menu-item-has-children {
  position: relative;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li ul li.menu-item-has-children:before {
  content: "";
  position: absolute;
  right: 15px;
  height: 100%;
  width: 10px;
  background-image: url(//cdn.brighterir.com/img/angle-down.png) !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  left: unset;
  border: 0 !important;
  background-color: transparent;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li ul li:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 80%;
  background: #eeeeef;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li ul li a {
  color: #fb7321;
  font-size: inherit;
  padding: 15px 20px;
  border-bottom: none;
  line-height: 23px;
  opacity: 1 !important;
  text-shadow: none;
  font-size: 1.5rem;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li ul li a:hover::after {
  display: none;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li ul li.current-menu-item a {
  color: #000;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li ul li.current-menu-item a:hover::after {
  display: none;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li ul li.current-menu-item:after {
  display: none;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li ul li:hover {
  border-top: 0;
  margin-top: unset;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li ul li ul {
  top: 0;
  left: 100%;
  background: white;
}
header .header__right nav.header__nav:not(.mmenu__active) > ul li ul.sub-menu li.current-menu-parent a:after {
  display: none;
}
header .header__right nav.header__nav.mmenu__active {
  z-index: 9998;
  visibility: visible;
  right: 0;
  top: 0;
  opacity: 1;
  overflow: auto;
  transition: opacity 0.5s ease;
  padding: 40px 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgb(10, 33, 49);
}
header .header__right nav.header__nav.mmenu__active ul {
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  height: auto;
  margin: 0;
}
header .header__right nav.header__nav.mmenu__active ul.menu {
  padding: 15%;
}
header .header__right nav.header__nav.mmenu__active ul:hover li:not(:hover) a {
  opacity: 1;
}
header .header__right nav.header__nav.mmenu__active ul li {
  position: relative;
}
header .header__right nav.header__nav.mmenu__active ul li.menu-item-has-children .sub-toggle {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
header .header__right nav.header__nav.mmenu__active ul li.menu-item-has-children .sub-toggle i.fas {
  color: white;
}
header .header__right nav.header__nav.mmenu__active ul li:hover > ul {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
header .header__right nav.header__nav.mmenu__active ul li.current-menu-item > a {
  color: #fb7321;
  opacity: 1 !important;
}
header .header__right nav.header__nav.mmenu__active ul li.current-menu-parent > a {
  background: none;
  color: white;
}
header .header__right nav.header__nav.mmenu__active ul li a {
  text-align: center;
  text-shadow: none;
  font-size: 20px;
  color: white;
}
header .header__right nav.header__nav.mmenu__active ul li ul.sub-menu {
  display: none;
  background: none;
  position: static;
  min-width: auto;
  box-shadow: none;
  margin-bottom: 15px;
  align-items: normal;
}
header .header__right nav.header__nav.mmenu__active ul li ul.sub-menu li:after {
  content: none;
}
header .header__right nav.header__nav.mmenu__active ul li ul.sub-menu li a {
  padding: inherit;
  line-height: inherit;
  border: 0;
  color: white;
  font-size: 17px;
  padding: 0 5px 5px 5px;
  opacity: 0.7 !important;
}
header .header__right .burger__menu {
  width: 40px;
  padding: 9px;
  z-index: 9999;
  position: relative;
}
@media (min-width: 900px) {
  header .header__right .burger__menu {
    display: none;
    position: initial;
  }
}
header .header__right .burger__menu span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fb7321;
  margin-bottom: 5px;
}
header .header__right .burger__menu span:last-child {
  margin-bottom: 0;
}

.no__scroll header .header__right .burger__menu {
  font-family: "Font Awesome 5 Free";
}
.no__scroll header .header__right .burger__menu::before {
  content: "\f057";
  display: block;
  color: #fff;
  font-size: 3rem;
  margin-left: -5px;
}
.no__scroll header .header__right .burger__menu span {
  display: none;
}

body.fancybox-active .fancybox-infobar {
  display: none;
}

/* -------------------------------------------
***** Custom *****
------------------------------------------- */
.careers-sidebar {
  background: linear-gradient(210deg, #f9f9f9, #fdf4d4);
  padding: 20px 25px;
}

.careers .job {
  display: flex;
  padding: 1.3rem 1.6rem;
}
.careers .job > * {
  width: 50%;
}
.careers .job > *:last-child, .careers .job > *:nth-child(2) {
  width: 25%;
}
.careers .job > *.linkedin, .careers .job > *.pdf {
  width: 10%;
}
.careers .job h3 {
  font-size: 1.8rem;
  color: black;
  font-weight: 500;
  margin: 0;
}
.careers .job h3.head {
  color: #fb7321;
}
.careers .job .link {
  padding-left: 2rem;
  font-size: 2rem;
}
.careers .job .link.head {
  color: #fb7321;
}
.careers .job .link.pdf i:before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.careers .job:nth-child(odd) {
  background-color: #f8f8f8;
}

.fy h4 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

/* -------------------------------------------
***** Footer *****
------------------------------------------- */
footer {
  color: #fff;
  background: linear-gradient(255deg, rgba(72, 72, 72, 0.65), #484848);
  margin-top: 50px;
}
footer a {
  color: #fff;
  font-weight: 300;
}
footer a:hover {
  color: #fb7321;
}
footer .footer__columns {
  padding: 5rem 0;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  line-height: 1.4;
}
footer .footer__columns .wrap {
  padding: 0;
}
@media (min-width: 550px) {
  footer .footer__columns .wrap {
    flex-wrap: wrap;
    display: flex;
  }
}
footer .footer__columns .wrap .col {
  display: flex;
  flex-direction: column;
}
@media (min-width: 700px) {
  footer .footer__columns .wrap .col {
    padding-left: 2.5rem;
  }
}
footer .footer__columns .wrap .col .copyright {
  position: relative;
}
footer .footer__columns .wrap .col .copyright::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../img/icons/copyright-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 2px;
  left: -2rem;
}
footer .footer__columns .wrap .col .bir a {
  color: #f69510;
}
footer .footer__columns .wrap .col .bir a:hover {
  color: #fb7321;
}
footer .footer__columns .wrap .col .address {
  position: relative;
}
footer .footer__columns .wrap .col .address::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/icons/location-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 2px;
  left: -2.2rem;
}
footer .footer__columns .wrap .col .phone {
  position: relative;
}
footer .footer__columns .wrap .col .phone::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/icons/phone-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 5px;
  left: -2.2rem;
}
@media (min-width: 1100px) {
  footer .footer__columns .wrap .col {
    width: 33%;
  }
}
@media (min-width: 1100px) {
  footer .footer__columns .wrap .col:nth-child(2), footer .footer__columns .wrap .col:nth-child(3) {
    padding-left: 5rem;
  }
}
footer .footer__columns .wrap .col .footer-social {
  padding: 0;
  margin-bottom: 2.7rem;
}
footer .footer__columns .wrap .col .footer-social li {
  list-style: none;
  display: inline-block;
}
footer .footer__columns .wrap .col .footer-social li .fab {
  color: #f69510;
  padding-right: 1rem;
  font-size: 3.5rem;
}
footer .footer__columns .wrap .col .footer-social li .fab:hover {
  color: #fff;
}
footer .footer__columns .wrap .col .footer-social li a {
  color: #fff;
}
footer .footer__columns .wrap .col .footer-social li a:hover {
  color: #fb7321;
}
footer .sub__footer {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.15);
}
footer .sub__footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media (min-width: 1100px) {
  footer .sub__footer .wrap {
    flex-direction: row;
    align-items: center;
  }
}
footer .sub__footer .wrap .copyright {
  font-size: 16px;
}
footer .sub__footer .wrap .legal {
  padding: 1rem 0;
  width: 100%;
}
footer .sub__footer .wrap .legal > div,
footer .sub__footer .wrap .legal p {
  display: inline-block;
}
footer .sub__footer .wrap .legal p.brigter-ir {
  float: right;
}
footer .sub__footer .wrap .legal p.brigter-ir a {
  color: #fb7321;
}
footer .sub__footer .wrap .legal ul {
  margin-bottom: 0;
  padding: 0;
}
@media (min-width: 1100px) {
  footer .sub__footer .wrap .legal ul {
    flex-direction: row;
    display: flex;
  }
}
footer .sub__footer .wrap .legal ul li {
  list-style: none;
  margin-bottom: 0;
}
footer .sub__footer .wrap .legal ul li a {
  color: #fff;
}
footer .sub__footer .wrap .legal ul li a:hover {
  color: #fb7321;
}
@media (min-width: 1100px) {
  footer .sub__footer .wrap .legal ul li {
    padding: 0 3rem 0 0;
  }
}
@media (min-width: 1100px) {
  footer .sub__footer .wrap .legal ul li:last-child {
    padding-right: 0;
    border-right: 0;
  }
}
footer .sub__footer .wrap .credit {
  order: 1;
}

.home footer {
  margin-top: 0;
}

footer {
  text-align: center;
}
footer h3.widget-title + div.textwidget {
  display: none;
}
footer h3.widget-title + div.textwidget .address:before,
footer h3.widget-title + div.textwidget .phone:before {
  display: none !important;
}
@media (min-width: 700px) {
  footer h3.widget-title + div.textwidget {
    display: block !important;
  }
  footer h3.widget-title + div.textwidget .address:before,
footer h3.widget-title + div.textwidget .phone:before {
    display: block !important;
  }
}
footer h3.widget-title:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  color: white;
  padding-left: 1rem;
  font-size: 1.3rem;
  vertical-align: 1px;
}
@media (min-width: 700px) {
  footer {
    text-align: left;
  }
  footer h3.widget-title:after {
    display: none;
  }
}

.center-register > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.center-register > div .btn.heading-read-more {
  margin-top: 0;
}

/*# sourceMappingURL=style-base.css.map */