@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger:hover {
  opacity: 0.7; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease; }

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block; }

.hamburger-inner::before {
  top: -10px; }

.hamburger-inner::after {
  bottom: -10px; }

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%; }

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

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.28571em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center; }
  .fa-li.fa-lg {
    left: -1.85714em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  -webkit-border-radius: .1em;
          border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

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

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

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

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

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

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

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-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);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

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

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

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

.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-glass:before {
  content: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

.fa-envelope-o:before {
  content: ""; }

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

.fa-star-o:before {
  content: ""; }

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

.fa-th-large:before {
  content: ""; }

.fa-th:before {
  content: ""; }

.fa-th-list:before {
  content: ""; }

.fa-check:before {
  content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: ""; }

.fa-search-plus:before {
  content: ""; }

.fa-search-minus:before {
  content: ""; }

.fa-power-off:before {
  content: ""; }

.fa-signal:before {
  content: ""; }

.fa-gear:before,
.fa-cog:before {
  content: ""; }

.fa-trash-o:before {
  content: ""; }

.fa-home:before {
  content: ""; }

.fa-file-o:before {
  content: ""; }

.fa-clock-o:before {
  content: ""; }

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

.fa-arrow-circle-o-down:before {
  content: ""; }

.fa-arrow-circle-o-up:before {
  content: ""; }

.fa-inbox:before {
  content: ""; }

.fa-play-circle-o:before {
  content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: ""; }

.fa-refresh:before {
  content: ""; }

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

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

.fa-volume-off:before {
  content: ""; }

.fa-volume-down:before {
  content: ""; }

.fa-volume-up:before {
  content: ""; }

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

.fa-text-height:before {
  content: ""; }

.fa-text-width:before {
  content: ""; }

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

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

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

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

.fa-list:before {
  content: ""; }

.fa-dedent:before,
.fa-outdent:before {
  content: ""; }

.fa-indent:before {
  content: ""; }

.fa-video-camera:before {
  content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: ""; }

.fa-pencil:before {
  content: ""; }

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

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: ""; }

.fa-share-square-o:before {
  content: ""; }

.fa-check-square-o:before {
  content: ""; }

.fa-arrows:before {
  content: ""; }

.fa-step-backward:before {
  content: ""; }

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

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

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

.fa-step-forward:before {
  content: ""; }

.fa-eject:before {
  content: ""; }

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

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

.fa-plus-circle:before {
  content: ""; }

.fa-minus-circle:before {
  content: ""; }

.fa-times-circle:before {
  content: ""; }

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

.fa-question-circle:before {
  content: ""; }

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

.fa-crosshairs:before {
  content: ""; }

.fa-times-circle-o:before {
  content: ""; }

.fa-check-circle-o:before {
  content: ""; }

.fa-ban:before {
  content: ""; }

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

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

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

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

.fa-mail-forward:before,
.fa-share:before {
  content: ""; }

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

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

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

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

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: ""; }

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

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

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

.fa-retweet:before {
  content: ""; }

.fa-shopping-cart:before {
  content: ""; }

.fa-folder:before {
  content: ""; }

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

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

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

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: ""; }

.fa-twitter-square:before {
  content: ""; }

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

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

.fa-key:before {
  content: ""; }

.fa-gears:before,
.fa-cogs:before {
  content: ""; }

.fa-comments:before {
  content: ""; }

.fa-thumbs-o-up:before {
  content: ""; }

.fa-thumbs-o-down:before {
  content: ""; }

.fa-star-half:before {
  content: ""; }

.fa-heart-o:before {
  content: ""; }

.fa-sign-out:before {
  content: ""; }

.fa-linkedin-square:before {
  content: ""; }

.fa-thumb-tack:before {
  content: ""; }

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

.fa-sign-in:before {
  content: ""; }

.fa-trophy:before {
  content: ""; }

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

.fa-upload:before {
  content: ""; }

.fa-lemon-o:before {
  content: ""; }

.fa-phone:before {
  content: ""; }

.fa-square-o:before {
  content: ""; }

.fa-bookmark-o:before {
  content: ""; }

.fa-phone-square:before {
  content: ""; }

.fa-twitter:before {
  content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: ""; }

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

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

.fa-feed:before,
.fa-rss:before {
  content: ""; }

.fa-hdd-o:before {
  content: ""; }

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

.fa-hand-o-right:before {
  content: ""; }

.fa-hand-o-left:before {
  content: ""; }

.fa-hand-o-up:before {
  content: ""; }

.fa-hand-o-down:before {
  content: ""; }

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

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

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

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

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

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

.fa-group:before,
.fa-users:before {
  content: ""; }

.fa-chain:before,
.fa-link:before {
  content: ""; }

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

.fa-cut:before,
.fa-scissors:before {
  content: ""; }

.fa-copy:before,
.fa-files-o:before {
  content: ""; }

.fa-paperclip:before {
  content: ""; }

.fa-save:before,
.fa-floppy-o:before {
  content: ""; }

.fa-square:before {
  content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: ""; }

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

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

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

.fa-pinterest-square:before {
  content: ""; }

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

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

.fa-money:before {
  content: ""; }

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

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

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

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

.fa-columns:before {
  content: ""; }

.fa-unsorted:before,
.fa-sort:before {
  content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: ""; }

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
  content: ""; }

.fa-legal:before,
.fa-gavel:before {
  content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: ""; }

.fa-comment-o:before {
  content: ""; }

.fa-comments-o:before {
  content: ""; }

.fa-flash:before,
.fa-bolt:before {
  content: ""; }

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

.fa-paste:before,
.fa-clipboard:before {
  content: ""; }

.fa-lightbulb-o:before {
  content: ""; }

.fa-exchange:before {
  content: ""; }

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

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

.fa-user-md:before {
  content: ""; }

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

.fa-bell-o:before {
  content: ""; }

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

.fa-file-text-o:before {
  content: ""; }

.fa-building-o:before {
  content: ""; }

.fa-hospital-o:before {
  content: ""; }

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

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

.fa-beer:before {
  content: ""; }

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

.fa-plus-square:before {
  content: ""; }

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

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

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

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

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

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

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

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

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: ""; }

.fa-circle-o:before {
  content: ""; }

.fa-quote-left:before {
  content: ""; }

.fa-quote-right:before {
  content: ""; }

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
  content: ""; }

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

.fa-folder-o:before {
  content: ""; }

.fa-folder-open-o:before {
  content: ""; }

.fa-smile-o:before {
  content: ""; }

.fa-frown-o:before {
  content: ""; }

.fa-meh-o:before {
  content: ""; }

.fa-gamepad:before {
  content: ""; }

.fa-keyboard-o:before {
  content: ""; }

.fa-flag-o:before {
  content: ""; }

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

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: ""; }

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

.fa-crop:before {
  content: ""; }

.fa-code-fork:before {
  content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: ""; }

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

.fa-puzzle-piece:before {
  content: ""; }

.fa-microphone:before {
  content: ""; }

.fa-microphone-slash:before {
  content: ""; }

.fa-shield:before {
  content: ""; }

.fa-calendar-o:before {
  content: ""; }

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

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

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

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

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

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

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

.fa-unlock-alt:before {
  content: ""; }

.fa-bullseye:before {
  content: ""; }

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

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

.fa-rss-square:before {
  content: ""; }

.fa-play-circle:before {
  content: ""; }

.fa-ticket:before {
  content: ""; }

.fa-minus-square:before {
  content: ""; }

.fa-minus-square-o:before {
  content: ""; }

.fa-level-up:before {
  content: ""; }

.fa-level-down:before {
  content: ""; }

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

.fa-pencil-square:before {
  content: ""; }

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

.fa-share-square:before {
  content: ""; }

.fa-compass:before {
  content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: ""; }

.fa-euro:before,
.fa-eur:before {
  content: ""; }

.fa-gbp:before {
  content: ""; }

.fa-dollar:before,
.fa-usd:before {
  content: ""; }

.fa-rupee:before,
.fa-inr:before {
  content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: ""; }

.fa-won:before,
.fa-krw:before {
  content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
  content: ""; }

.fa-file:before {
  content: ""; }

.fa-file-text:before {
  content: ""; }

.fa-sort-alpha-asc:before {
  content: ""; }

.fa-sort-alpha-desc:before {
  content: ""; }

.fa-sort-amount-asc:before {
  content: ""; }

.fa-sort-amount-desc:before {
  content: ""; }

.fa-sort-numeric-asc:before {
  content: ""; }

.fa-sort-numeric-desc:before {
  content: ""; }

.fa-thumbs-up:before {
  content: ""; }

.fa-thumbs-down:before {
  content: ""; }

.fa-youtube-square:before {
  content: ""; }

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

.fa-xing-square:before {
  content: ""; }

.fa-youtube-play:before {
  content: ""; }

.fa-dropbox:before {
  content: ""; }

.fa-stack-overflow:before {
  content: ""; }

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

.fa-bitbucket-square:before {
  content: ""; }

.fa-tumblr:before {
  content: ""; }

.fa-tumblr-square:before {
  content: ""; }

.fa-long-arrow-down:before {
  content: ""; }

.fa-long-arrow-up:before {
  content: ""; }

.fa-long-arrow-left:before {
  content: ""; }

.fa-long-arrow-right:before {
  content: ""; }

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
  content: ""; }

.fa-sun-o:before {
  content: ""; }

.fa-moon-o:before {
  content: ""; }

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

.fa-stack-exchange:before {
  content: ""; }

.fa-arrow-circle-o-right:before {
  content: ""; }

.fa-arrow-circle-o-left:before {
  content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: ""; }

.fa-dot-circle-o:before {
  content: ""; }

.fa-wheelchair:before {
  content: ""; }

.fa-vimeo-square:before {
  content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
  content: ""; }

.fa-plus-square-o:before {
  content: ""; }

.fa-space-shuttle:before {
  content: ""; }

.fa-slack:before {
  content: ""; }

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

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: ""; }

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

.fa-reddit-square:before {
  content: ""; }

.fa-stumbleupon-circle:before {
  content: ""; }

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

.fa-pied-piper-pp:before {
  content: ""; }

.fa-pied-piper-alt:before {
  content: ""; }

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

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

.fa-steam:before {
  content: ""; }

.fa-steam-square:before {
  content: ""; }

.fa-recycle:before {
  content: ""; }

.fa-automobile:before,
.fa-car:before {
  content: ""; }

.fa-cab:before,
.fa-taxi:before {
  content: ""; }

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

.fa-file-pdf-o:before {
  content: ""; }

.fa-file-word-o:before {
  content: ""; }

.fa-file-excel-o:before {
  content: ""; }

.fa-file-powerpoint-o:before {
  content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: ""; }

.fa-file-code-o:before {
  content: ""; }

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: ""; }

.fa-circle-o-notch:before {
  content: ""; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: ""; }

.fa-ge:before,
.fa-empire:before {
  content: ""; }

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

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

.fa-tencent-weibo:before {
  content: ""; }

.fa-qq:before {
  content: ""; }

.fa-wechat:before,
.fa-weixin:before {
  content: ""; }

.fa-send:before,
.fa-paper-plane:before {
  content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: ""; }

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

.fa-share-alt:before {
  content: ""; }

.fa-share-alt-square:before {
  content: ""; }

.fa-bomb:before {
  content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: ""; }

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

.fa-newspaper-o:before {
  content: ""; }

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

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

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

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

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

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

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

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

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

.fa-bell-slash-o:before {
  content: ""; }

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

.fa-paint-brush:before {
  content: ""; }

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

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

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

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

.fa-lastfm:before {
  content: ""; }

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

.fa-toggle-off:before {
  content: ""; }

.fa-toggle-on:before {
  content: ""; }

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: ""; }

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

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

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

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

.fa-user-secret:before {
  content: ""; }

.fa-motorcycle:before {
  content: ""; }

.fa-street-view:before {
  content: ""; }

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

.fa-transgender-alt:before {
  content: ""; }

.fa-venus-double:before {
  content: ""; }

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

.fa-venus-mars:before {
  content: ""; }

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

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

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

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

.fa-facebook-official:before {
  content: ""; }

.fa-pinterest-p:before {
  content: ""; }

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

.fa-user-plus:before {
  content: ""; }

.fa-user-times:before {
  content: ""; }

.fa-hotel:before,
.fa-bed:before {
  content: ""; }

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

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

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

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

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

.fa-clone:before {
  content: ""; }

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

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

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

.fa-gg:before {
  content: ""; }

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

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

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

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

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

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

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

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

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

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

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

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

.fa-fonticons:before {
  content: ""; }

.fa-reddit-alien:before {
  content: ""; }

.fa-edge:before {
  content: ""; }

.fa-credit-card-alt:before {
  content: ""; }

.fa-codiepie:before {
  content: ""; }

.fa-modx:before {
  content: ""; }

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

.fa-usb:before {
  content: ""; }

.fa-product-hunt:before {
  content: ""; }

.fa-mixcloud:before {
  content: ""; }

.fa-scribd:before {
  content: ""; }

.fa-pause-circle:before {
  content: ""; }

.fa-pause-circle-o:before {
  content: ""; }

.fa-stop-circle:before {
  content: ""; }

.fa-stop-circle-o:before {
  content: ""; }

.fa-shopping-bag:before {
  content: ""; }

.fa-shopping-basket:before {
  content: ""; }

.fa-hashtag:before {
  content: ""; }

.fa-bluetooth:before {
  content: ""; }

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

.fa-percent:before {
  content: ""; }

.fa-gitlab:before {
  content: ""; }

.fa-wpbeginner:before {
  content: ""; }

.fa-wpforms:before {
  content: ""; }

.fa-envira:before {
  content: ""; }

.fa-universal-access:before {
  content: ""; }

.fa-wheelchair-alt:before {
  content: ""; }

.fa-question-circle-o:before {
  content: ""; }

.fa-blind:before {
  content: ""; }

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

.fa-volume-control-phone:before {
  content: ""; }

.fa-braille:before {
  content: ""; }

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

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: ""; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: ""; }

.fa-glide:before {
  content: ""; }

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

.fa-signing:before,
.fa-sign-language:before {
  content: ""; }

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

.fa-viadeo:before {
  content: ""; }

.fa-viadeo-square:before {
  content: ""; }

.fa-snapchat:before {
  content: ""; }

.fa-snapchat-ghost:before {
  content: ""; }

.fa-snapchat-square:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

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

.fa-yoast:before {
  content: ""; }

.fa-themeisle:before {
  content: ""; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: ""; }

.fa-fa:before,
.fa-font-awesome:before {
  content: ""; }

.fa-handshake-o:before {
  content: ""; }

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

.fa-envelope-open-o:before {
  content: ""; }

.fa-linode:before {
  content: ""; }

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

.fa-address-book-o:before {
  content: ""; }

.fa-vcard:before,
.fa-address-card:before {
  content: ""; }

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: ""; }

.fa-user-circle:before {
  content: ""; }

.fa-user-circle-o:before {
  content: ""; }

.fa-user-o:before {
  content: ""; }

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

.fa-drivers-license:before,
.fa-id-card:before {
  content: ""; }

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: ""; }

.fa-quora:before {
  content: ""; }

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

.fa-telegram:before {
  content: ""; }

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: ""; }

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: ""; }

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: ""; }

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: ""; }

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: ""; }

.fa-shower:before {
  content: ""; }

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: ""; }

.fa-podcast:before {
  content: ""; }

.fa-window-maximize:before {
  content: ""; }

.fa-window-minimize:before {
  content: ""; }

.fa-window-restore:before {
  content: ""; }

.fa-times-rectangle:before,
.fa-window-close:before {
  content: ""; }

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: ""; }

.fa-bandcamp:before {
  content: ""; }

.fa-grav:before {
  content: ""; }

.fa-etsy:before {
  content: ""; }

.fa-imdb:before {
  content: ""; }

.fa-ravelry:before {
  content: ""; }

.fa-eercast:before {
  content: ""; }

.fa-microchip:before {
  content: ""; }

.fa-snowflake-o:before {
  content: ""; }

.fa-superpowers:before {
  content: ""; }

.fa-wpexplorer:before {
  content: ""; }

.fa-meetup:before {
  content: ""; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

@font-face {
  font-family: "dripicons-v2";
  src: url("../fonts/dripicons/dripicons-v2.eot");
  src: url("../fonts/dripicons/dripicons-v2.eot?#iefix") format("embedded-opentype"), url("../fonts/dripicons/dripicons-v2.woff") format("woff"), url("../fonts/dripicons/dripicons-v2.ttf") format("truetype"), url("../fonts/dripicons/dripicons-v2.svg#dripicons-v2") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

[data-icon]:before {
  font-family: "dripicons-v2" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[class^="dripicons-"]:before,
[class*=" dripicons-"]:before {
  font-family: "dripicons-v2" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.dripicons-alarm:before {
  content: "\61"; }

.dripicons-align-center:before {
  content: "\62"; }

.dripicons-align-justify:before {
  content: "\63"; }

.dripicons-align-left:before {
  content: "\64"; }

.dripicons-align-right:before {
  content: "\65"; }

.dripicons-anchor:before {
  content: "\66"; }

.dripicons-archive:before {
  content: "\67"; }

.dripicons-arrow-down:before {
  content: "\68"; }

.dripicons-arrow-left:before {
  content: "\69"; }

.dripicons-arrow-right:before {
  content: "\6a"; }

.dripicons-arrow-thin-down:before {
  content: "\6b"; }

.dripicons-arrow-thin-left:before {
  content: "\6c"; }

.dripicons-arrow-thin-right:before {
  content: "\6d"; }

.dripicons-arrow-thin-up:before {
  content: "\6e"; }

.dripicons-arrow-up:before {
  content: "\6f"; }

.dripicons-article:before {
  content: "\70"; }

.dripicons-backspace:before {
  content: "\71"; }

.dripicons-basket:before {
  content: "\72"; }

.dripicons-basketball:before {
  content: "\73"; }

.dripicons-battery-empty:before {
  content: "\74"; }

.dripicons-battery-full:before {
  content: "\75"; }

.dripicons-battery-low:before {
  content: "\76"; }

.dripicons-battery-medium:before {
  content: "\77"; }

.dripicons-bell:before {
  content: "\78"; }

.dripicons-blog:before {
  content: "\79"; }

.dripicons-bluetooth:before {
  content: "\7a"; }

.dripicons-bold:before {
  content: "\41"; }

.dripicons-bookmark:before {
  content: "\42"; }

.dripicons-bookmarks:before {
  content: "\43"; }

.dripicons-box:before {
  content: "\44"; }

.dripicons-briefcase:before {
  content: "\45"; }

.dripicons-brightness-low:before {
  content: "\46"; }

.dripicons-brightness-max:before {
  content: "\47"; }

.dripicons-brightness-medium:before {
  content: "\48"; }

.dripicons-broadcast:before {
  content: "\49"; }

.dripicons-browser:before {
  content: "\4a"; }

.dripicons-browser-upload:before {
  content: "\4b"; }

.dripicons-brush:before {
  content: "\4c"; }

.dripicons-calendar:before {
  content: "\4d"; }

.dripicons-camcorder:before {
  content: "\4e"; }

.dripicons-camera:before {
  content: "\4f"; }

.dripicons-card:before {
  content: "\50"; }

.dripicons-cart:before {
  content: "\51"; }

.dripicons-checklist:before {
  content: "\52"; }

.dripicons-checkmark:before {
  content: "\53"; }

.dripicons-chevron-down:before {
  content: "\54"; }

.dripicons-chevron-left:before {
  content: "\55"; }

.dripicons-chevron-right:before {
  content: "\56"; }

.dripicons-chevron-up:before {
  content: "\57"; }

.dripicons-clipboard:before {
  content: "\58"; }

.dripicons-clock:before {
  content: "\59"; }

.dripicons-clockwise:before {
  content: "\5a"; }

.dripicons-cloud:before {
  content: "\30"; }

.dripicons-cloud-download:before {
  content: "\31"; }

.dripicons-cloud-upload:before {
  content: "\32"; }

.dripicons-code:before {
  content: "\33"; }

.dripicons-contract:before {
  content: "\34"; }

.dripicons-contract-2:before {
  content: "\35"; }

.dripicons-conversation:before {
  content: "\36"; }

.dripicons-copy:before {
  content: "\37"; }

.dripicons-crop:before {
  content: "\38"; }

.dripicons-cross:before {
  content: "\39"; }

.dripicons-crosshair:before {
  content: "\21"; }

.dripicons-cutlery:before {
  content: "\22"; }

.dripicons-device-desktop:before {
  content: "\23"; }

.dripicons-device-mobile:before {
  content: "\24"; }

.dripicons-device-tablet:before {
  content: "\25"; }

.dripicons-direction:before {
  content: "\26"; }

.dripicons-disc:before {
  content: "\27"; }

.dripicons-document:before {
  content: "\28"; }

.dripicons-document-delete:before {
  content: "\29"; }

.dripicons-document-edit:before {
  content: "\2a"; }

.dripicons-document-new:before {
  content: "\2b"; }

.dripicons-document-remove:before {
  content: "\2c"; }

.dripicons-dot:before {
  content: "\2d"; }

.dripicons-dots-2:before {
  content: "\2e"; }

.dripicons-dots-3:before {
  content: "\2f"; }

.dripicons-download:before {
  content: "\3a"; }

.dripicons-duplicate:before {
  content: "\3b"; }

.dripicons-enter:before {
  content: "\3c"; }

.dripicons-exit:before {
  content: "\3d"; }

.dripicons-expand:before {
  content: "\3e"; }

.dripicons-expand-2:before {
  content: "\3f"; }

.dripicons-experiment:before {
  content: "\40"; }

.dripicons-export:before {
  content: "\5b"; }

.dripicons-feed:before {
  content: "\5d"; }

.dripicons-flag:before {
  content: "\5e"; }

.dripicons-flashlight:before {
  content: "\5f"; }

.dripicons-folder:before {
  content: "\60"; }

.dripicons-folder-open:before {
  content: "\7b"; }

.dripicons-forward:before {
  content: "\7c"; }

.dripicons-gaming:before {
  content: "\7d"; }

.dripicons-gear:before {
  content: "\7e"; }

.dripicons-graduation:before {
  content: "\5c"; }

.dripicons-graph-bar:before {
  content: "\e000"; }

.dripicons-graph-line:before {
  content: "\e001"; }

.dripicons-graph-pie:before {
  content: "\e002"; }

.dripicons-headset:before {
  content: "\e003"; }

.dripicons-heart:before {
  content: "\e004"; }

.dripicons-help:before {
  content: "\e005"; }

.dripicons-home:before {
  content: "\e006"; }

.dripicons-hourglass:before {
  content: "\e007"; }

.dripicons-inbox:before {
  content: "\e008"; }

.dripicons-information:before {
  content: "\e009"; }

.dripicons-italic:before {
  content: "\e00a"; }

.dripicons-jewel:before {
  content: "\e00b"; }

.dripicons-lifting:before {
  content: "\e00c"; }

.dripicons-lightbulb:before {
  content: "\e00d"; }

.dripicons-link:before {
  content: "\e00e"; }

.dripicons-link-broken:before {
  content: "\e00f"; }

.dripicons-list:before {
  content: "\e010"; }

.dripicons-loading:before {
  content: "\e011"; }

.dripicons-location:before {
  content: "\e012"; }

.dripicons-lock:before {
  content: "\e013"; }

.dripicons-lock-open:before {
  content: "\e014"; }

.dripicons-mail:before {
  content: "\e015"; }

.dripicons-map:before {
  content: "\e016"; }

.dripicons-media-loop:before {
  content: "\e017"; }

.dripicons-media-next:before {
  content: "\e018"; }

.dripicons-media-pause:before {
  content: "\e019"; }

.dripicons-media-play:before {
  content: "\e01a"; }

.dripicons-media-previous:before {
  content: "\e01b"; }

.dripicons-media-record:before {
  content: "\e01c"; }

.dripicons-media-shuffle:before {
  content: "\e01d"; }

.dripicons-media-stop:before {
  content: "\e01e"; }

.dripicons-medical:before {
  content: "\e01f"; }

.dripicons-menu:before {
  content: "\e020"; }

.dripicons-message:before {
  content: "\e021"; }

.dripicons-meter:before {
  content: "\e022"; }

.dripicons-microphone:before {
  content: "\e023"; }

.dripicons-minus:before {
  content: "\e024"; }

.dripicons-monitor:before {
  content: "\e025"; }

.dripicons-move:before {
  content: "\e026"; }

.dripicons-music:before {
  content: "\e027"; }

.dripicons-network-1:before {
  content: "\e028"; }

.dripicons-network-2:before {
  content: "\e029"; }

.dripicons-network-3:before {
  content: "\e02a"; }

.dripicons-network-4:before {
  content: "\e02b"; }

.dripicons-network-5:before {
  content: "\e02c"; }

.dripicons-pamphlet:before {
  content: "\e02d"; }

.dripicons-paperclip:before {
  content: "\e02e"; }

.dripicons-pencil:before {
  content: "\e02f"; }

.dripicons-phone:before {
  content: "\e030"; }

.dripicons-photo:before {
  content: "\e031"; }

.dripicons-photo-group:before {
  content: "\e032"; }

.dripicons-pill:before {
  content: "\e033"; }

.dripicons-pin:before {
  content: "\e034"; }

.dripicons-plus:before {
  content: "\e035"; }

.dripicons-power:before {
  content: "\e036"; }

.dripicons-preview:before {
  content: "\e037"; }

.dripicons-print:before {
  content: "\e038"; }

.dripicons-pulse:before {
  content: "\e039"; }

.dripicons-question:before {
  content: "\e03a"; }

.dripicons-reply:before {
  content: "\e03b"; }

.dripicons-reply-all:before {
  content: "\e03c"; }

.dripicons-return:before {
  content: "\e03d"; }

.dripicons-retweet:before {
  content: "\e03e"; }

.dripicons-rocket:before {
  content: "\e03f"; }

.dripicons-scale:before {
  content: "\e040"; }

.dripicons-search:before {
  content: "\e041"; }

.dripicons-shopping-bag:before {
  content: "\e042"; }

.dripicons-skip:before {
  content: "\e043"; }

.dripicons-stack:before {
  content: "\e044"; }

.dripicons-star:before {
  content: "\e045"; }

.dripicons-stopwatch:before {
  content: "\e046"; }

.dripicons-store:before {
  content: "\e047"; }

.dripicons-suitcase:before {
  content: "\e048"; }

.dripicons-swap:before {
  content: "\e049"; }

.dripicons-tag:before {
  content: "\e04a"; }

.dripicons-tag-delete:before {
  content: "\e04b"; }

.dripicons-tags:before {
  content: "\e04c"; }

.dripicons-thumbs-down:before {
  content: "\e04d"; }

.dripicons-thumbs-up:before {
  content: "\e04e"; }

.dripicons-ticket:before {
  content: "\e04f"; }

.dripicons-time-reverse:before {
  content: "\e050"; }

.dripicons-to-do:before {
  content: "\e051"; }

.dripicons-toggles:before {
  content: "\e052"; }

.dripicons-trash:before {
  content: "\e053"; }

.dripicons-trophy:before {
  content: "\e054"; }

.dripicons-upload:before {
  content: "\e055"; }

.dripicons-user:before {
  content: "\e056"; }

.dripicons-user-group:before {
  content: "\e057"; }

.dripicons-user-id:before {
  content: "\e058"; }

.dripicons-vibrate:before {
  content: "\e059"; }

.dripicons-view-apps:before {
  content: "\e05a"; }

.dripicons-view-list:before {
  content: "\e05b"; }

.dripicons-view-list-large:before {
  content: "\e05c"; }

.dripicons-view-thumb:before {
  content: "\e05d"; }

.dripicons-volume-full:before {
  content: "\e05e"; }

.dripicons-volume-low:before {
  content: "\e05f"; }

.dripicons-volume-medium:before {
  content: "\e060"; }

.dripicons-volume-off:before {
  content: "\e061"; }

.dripicons-wallet:before {
  content: "\e062"; }

.dripicons-warning:before {
  content: "\e063"; }

.dripicons-web:before {
  content: "\e064"; }

.dripicons-weight:before {
  content: "\e065"; }

.dripicons-wifi:before {
  content: "\e066"; }

.dripicons-wrong:before {
  content: "\e067"; }

.dripicons-zoom-in:before {
  content: "\e068"; }

.dripicons-zoom-out:before {
  content: "\e069"; }

@font-face {
  font-family: 'Pe-icon-7-stroke';
  src: url("../fonts/pixeden/Pe-icon-7-stroke.eot?d7yf1v");
  src: url("../fonts/pixeden/Pe-icon-7-stroke.eot?#iefixd7yf1v") format("embedded-opentype"), url("../fonts/pixeden/Pe-icon-7-stroke.woff?d7yf1v") format("woff"), url("../fonts/pixeden/Pe-icon-7-stroke.ttf?d7yf1v") format("truetype"), url("../fonts/pixeden/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

[class^="pe-7s-"], [class*=" pe-7s-"] {
  display: inline-block;
  font-family: 'Pe-icon-7-stroke';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.pe-7s-album:before {
  content: "\e6aa"; }

.pe-7s-arc:before {
  content: "\e6ab"; }

.pe-7s-back-2:before {
  content: "\e6ac"; }

.pe-7s-bandaid:before {
  content: "\e6ad"; }

.pe-7s-car:before {
  content: "\e6ae"; }

.pe-7s-diamond:before {
  content: "\e6af"; }

.pe-7s-door-lock:before {
  content: "\e6b0"; }

.pe-7s-eyedropper:before {
  content: "\e6b1"; }

.pe-7s-female:before {
  content: "\e6b2"; }

.pe-7s-gym:before {
  content: "\e6b3"; }

.pe-7s-hammer:before {
  content: "\e6b4"; }

.pe-7s-headphones:before {
  content: "\e6b5"; }

.pe-7s-helm:before {
  content: "\e6b6"; }

.pe-7s-hourglass:before {
  content: "\e6b7"; }

.pe-7s-leaf:before {
  content: "\e6b8"; }

.pe-7s-magic-wand:before {
  content: "\e6b9"; }

.pe-7s-male:before {
  content: "\e6ba"; }

.pe-7s-map-2:before {
  content: "\e6bb"; }

.pe-7s-next-2:before {
  content: "\e6bc"; }

.pe-7s-paint-bucket:before {
  content: "\e6bd"; }

.pe-7s-pendrive:before {
  content: "\e6be"; }

.pe-7s-photo:before {
  content: "\e6bf"; }

.pe-7s-piggy:before {
  content: "\e6c0"; }

.pe-7s-plugin:before {
  content: "\e6c1"; }

.pe-7s-refresh-2:before {
  content: "\e6c2"; }

.pe-7s-rocket:before {
  content: "\e6c3"; }

.pe-7s-settings:before {
  content: "\e6c4"; }

.pe-7s-shield:before {
  content: "\e6c5"; }

.pe-7s-smile:before {
  content: "\e6c6"; }

.pe-7s-usb:before {
  content: "\e6c7"; }

.pe-7s-vector:before {
  content: "\e6c8"; }

.pe-7s-wine:before {
  content: "\e6c9"; }

.pe-7s-cloud-upload:before {
  content: "\e68a"; }

.pe-7s-cash:before {
  content: "\e68c"; }

.pe-7s-close:before {
  content: "\e680"; }

.pe-7s-bluetooth:before {
  content: "\e68d"; }

.pe-7s-cloud-download:before {
  content: "\e68b"; }

.pe-7s-way:before {
  content: "\e68e"; }

.pe-7s-close-circle:before {
  content: "\e681"; }

.pe-7s-id:before {
  content: "\e68f"; }

.pe-7s-angle-up:before {
  content: "\e682"; }

.pe-7s-wristwatch:before {
  content: "\e690"; }

.pe-7s-angle-up-circle:before {
  content: "\e683"; }

.pe-7s-world:before {
  content: "\e691"; }

.pe-7s-angle-right:before {
  content: "\e684"; }

.pe-7s-volume:before {
  content: "\e692"; }

.pe-7s-angle-right-circle:before {
  content: "\e685"; }

.pe-7s-users:before {
  content: "\e693"; }

.pe-7s-angle-left:before {
  content: "\e686"; }

.pe-7s-user-female:before {
  content: "\e694"; }

.pe-7s-angle-left-circle:before {
  content: "\e687"; }

.pe-7s-up-arrow:before {
  content: "\e695"; }

.pe-7s-angle-down:before {
  content: "\e688"; }

.pe-7s-switch:before {
  content: "\e696"; }

.pe-7s-angle-down-circle:before {
  content: "\e689"; }

.pe-7s-scissors:before {
  content: "\e697"; }

.pe-7s-wallet:before {
  content: "\e600"; }

.pe-7s-safe:before {
  content: "\e698"; }

.pe-7s-volume2:before {
  content: "\e601"; }

.pe-7s-volume1:before {
  content: "\e602"; }

.pe-7s-voicemail:before {
  content: "\e603"; }

.pe-7s-video:before {
  content: "\e604"; }

.pe-7s-user:before {
  content: "\e605"; }

.pe-7s-upload:before {
  content: "\e606"; }

.pe-7s-unlock:before {
  content: "\e607"; }

.pe-7s-umbrella:before {
  content: "\e608"; }

.pe-7s-trash:before {
  content: "\e609"; }

.pe-7s-tools:before {
  content: "\e60a"; }

.pe-7s-timer:before {
  content: "\e60b"; }

.pe-7s-ticket:before {
  content: "\e60c"; }

.pe-7s-target:before {
  content: "\e60d"; }

.pe-7s-sun:before {
  content: "\e60e"; }

.pe-7s-study:before {
  content: "\e60f"; }

.pe-7s-stopwatch:before {
  content: "\e610"; }

.pe-7s-star:before {
  content: "\e611"; }

.pe-7s-speaker:before {
  content: "\e612"; }

.pe-7s-signal:before {
  content: "\e613"; }

.pe-7s-shuffle:before {
  content: "\e614"; }

.pe-7s-shopbag:before {
  content: "\e615"; }

.pe-7s-share:before {
  content: "\e616"; }

.pe-7s-server:before {
  content: "\e617"; }

.pe-7s-search:before {
  content: "\e618"; }

.pe-7s-film:before {
  content: "\e6a5"; }

.pe-7s-science:before {
  content: "\e619"; }

.pe-7s-disk:before {
  content: "\e6a6"; }

.pe-7s-ribbon:before {
  content: "\e61a"; }

.pe-7s-repeat:before {
  content: "\e61b"; }

.pe-7s-refresh:before {
  content: "\e61c"; }

.pe-7s-add-user:before {
  content: "\e6a9"; }

.pe-7s-refresh-cloud:before {
  content: "\e61d"; }

.pe-7s-paperclip:before {
  content: "\e69c"; }

.pe-7s-radio:before {
  content: "\e61e"; }

.pe-7s-note2:before {
  content: "\e69d"; }

.pe-7s-print:before {
  content: "\e61f"; }

.pe-7s-network:before {
  content: "\e69e"; }

.pe-7s-prev:before {
  content: "\e620"; }

.pe-7s-mute:before {
  content: "\e69f"; }

.pe-7s-power:before {
  content: "\e621"; }

.pe-7s-medal:before {
  content: "\e6a0"; }

.pe-7s-portfolio:before {
  content: "\e622"; }

.pe-7s-like2:before {
  content: "\e6a1"; }

.pe-7s-plus:before {
  content: "\e623"; }

.pe-7s-left-arrow:before {
  content: "\e6a2"; }

.pe-7s-play:before {
  content: "\e624"; }

.pe-7s-key:before {
  content: "\e6a3"; }

.pe-7s-plane:before {
  content: "\e625"; }

.pe-7s-joy:before {
  content: "\e6a4"; }

.pe-7s-photo-gallery:before {
  content: "\e626"; }

.pe-7s-pin:before {
  content: "\e69b"; }

.pe-7s-phone:before {
  content: "\e627"; }

.pe-7s-plug:before {
  content: "\e69a"; }

.pe-7s-pen:before {
  content: "\e628"; }

.pe-7s-right-arrow:before {
  content: "\e699"; }

.pe-7s-paper-plane:before {
  content: "\e629"; }

.pe-7s-delete-user:before {
  content: "\e6a7"; }

.pe-7s-paint:before {
  content: "\e62a"; }

.pe-7s-bottom-arrow:before {
  content: "\e6a8"; }

.pe-7s-notebook:before {
  content: "\e62b"; }

.pe-7s-note:before {
  content: "\e62c"; }

.pe-7s-next:before {
  content: "\e62d"; }

.pe-7s-news-paper:before {
  content: "\e62e"; }

.pe-7s-musiclist:before {
  content: "\e62f"; }

.pe-7s-music:before {
  content: "\e630"; }

.pe-7s-mouse:before {
  content: "\e631"; }

.pe-7s-more:before {
  content: "\e632"; }

.pe-7s-moon:before {
  content: "\e633"; }

.pe-7s-monitor:before {
  content: "\e634"; }

.pe-7s-micro:before {
  content: "\e635"; }

.pe-7s-menu:before {
  content: "\e636"; }

.pe-7s-map:before {
  content: "\e637"; }

.pe-7s-map-marker:before {
  content: "\e638"; }

.pe-7s-mail:before {
  content: "\e639"; }

.pe-7s-mail-open:before {
  content: "\e63a"; }

.pe-7s-mail-open-file:before {
  content: "\e63b"; }

.pe-7s-magnet:before {
  content: "\e63c"; }

.pe-7s-loop:before {
  content: "\e63d"; }

.pe-7s-look:before {
  content: "\e63e"; }

.pe-7s-lock:before {
  content: "\e63f"; }

.pe-7s-lintern:before {
  content: "\e640"; }

.pe-7s-link:before {
  content: "\e641"; }

.pe-7s-like:before {
  content: "\e642"; }

.pe-7s-light:before {
  content: "\e643"; }

.pe-7s-less:before {
  content: "\e644"; }

.pe-7s-keypad:before {
  content: "\e645"; }

.pe-7s-junk:before {
  content: "\e646"; }

.pe-7s-info:before {
  content: "\e647"; }

.pe-7s-home:before {
  content: "\e648"; }

.pe-7s-help2:before {
  content: "\e649"; }

.pe-7s-help1:before {
  content: "\e64a"; }

.pe-7s-graph3:before {
  content: "\e64b"; }

.pe-7s-graph2:before {
  content: "\e64c"; }

.pe-7s-graph1:before {
  content: "\e64d"; }

.pe-7s-graph:before {
  content: "\e64e"; }

.pe-7s-global:before {
  content: "\e64f"; }

.pe-7s-gleam:before {
  content: "\e650"; }

.pe-7s-glasses:before {
  content: "\e651"; }

.pe-7s-gift:before {
  content: "\e652"; }

.pe-7s-folder:before {
  content: "\e653"; }

.pe-7s-flag:before {
  content: "\e654"; }

.pe-7s-filter:before {
  content: "\e655"; }

.pe-7s-file:before {
  content: "\e656"; }

.pe-7s-expand1:before {
  content: "\e657"; }

.pe-7s-exapnd2:before {
  content: "\e658"; }

.pe-7s-edit:before {
  content: "\e659"; }

.pe-7s-drop:before {
  content: "\e65a"; }

.pe-7s-drawer:before {
  content: "\e65b"; }

.pe-7s-download:before {
  content: "\e65c"; }

.pe-7s-display2:before {
  content: "\e65d"; }

.pe-7s-display1:before {
  content: "\e65e"; }

.pe-7s-diskette:before {
  content: "\e65f"; }

.pe-7s-date:before {
  content: "\e660"; }

.pe-7s-cup:before {
  content: "\e661"; }

.pe-7s-culture:before {
  content: "\e662"; }

.pe-7s-crop:before {
  content: "\e663"; }

.pe-7s-credit:before {
  content: "\e664"; }

.pe-7s-copy-file:before {
  content: "\e665"; }

.pe-7s-config:before {
  content: "\e666"; }

.pe-7s-compass:before {
  content: "\e667"; }

.pe-7s-comment:before {
  content: "\e668"; }

.pe-7s-coffee:before {
  content: "\e669"; }

.pe-7s-cloud:before {
  content: "\e66a"; }

.pe-7s-clock:before {
  content: "\e66b"; }

.pe-7s-check:before {
  content: "\e66c"; }

.pe-7s-chat:before {
  content: "\e66d"; }

.pe-7s-cart:before {
  content: "\e66e"; }

.pe-7s-camera:before {
  content: "\e66f"; }

.pe-7s-call:before {
  content: "\e670"; }

.pe-7s-calculator:before {
  content: "\e671"; }

.pe-7s-browser:before {
  content: "\e672"; }

.pe-7s-box2:before {
  content: "\e673"; }

.pe-7s-box1:before {
  content: "\e674"; }

.pe-7s-bookmarks:before {
  content: "\e675"; }

.pe-7s-bicycle:before {
  content: "\e676"; }

.pe-7s-bell:before {
  content: "\e677"; }

.pe-7s-battery:before {
  content: "\e678"; }

.pe-7s-ball:before {
  content: "\e679"; }

.pe-7s-back:before {
  content: "\e67a"; }

.pe-7s-attention:before {
  content: "\e67b"; }

.pe-7s-anchor:before {
  content: "\e67c"; }

.pe-7s-albums:before {
  content: "\e67d"; }

.pe-7s-alarm:before {
  content: "\e67e"; }

.pe-7s-airplay:before {
  content: "\e67f"; }

/**
 * Swiper 3.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2017, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: March 10, 2017
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px; }

/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5); }

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff; }

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000; }

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-right {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-top {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-bottom {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */ }

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible; }

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; }

/* Scrollbar */
.swiper-scrollbar {
  -webkit-border-radius: 10px;
          border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  cursor: pointer;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 10px;
          border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
      transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@font-face {
  font-family: 'Linearicons';
  src: url("../fonts/linearicons/Linearicons.eot");
  src: url("../fonts/linearicons/Linearicons.eot") format("embedded-opentype"), url("../fonts/linearicons/Linearicons.woff") format("woff"), url("../fonts/linearicons/Linearicons.ttf") format("truetype"), url("../fonts/linearicons/Linearicons.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

.lnr {
  font-family: 'Linearicons';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.lnr-home:before {
  content: "\e600"; }

.lnr-home2:before {
  content: "\e601"; }

.lnr-home3:before {
  content: "\e602"; }

.lnr-home4:before {
  content: "\e603"; }

.lnr-home5:before {
  content: "\e604"; }

.lnr-home6:before {
  content: "\e605"; }

.lnr-bathtub:before {
  content: "\e606"; }

.lnr-toothbrush:before {
  content: "\e607"; }

.lnr-bed:before {
  content: "\e608"; }

.lnr-couch:before {
  content: "\e609"; }

.lnr-chair:before {
  content: "\e60a"; }

.lnr-city:before {
  content: "\e60b"; }

.lnr-apartment:before {
  content: "\e60c"; }

.lnr-pencil:before {
  content: "\e60d"; }

.lnr-pencil2:before {
  content: "\e60e"; }

.lnr-pen:before {
  content: "\e60f"; }

.lnr-pencil3:before {
  content: "\e610"; }

.lnr-eraser:before {
  content: "\e611"; }

.lnr-pencil4:before {
  content: "\e612"; }

.lnr-pencil5:before {
  content: "\e613"; }

.lnr-feather:before {
  content: "\e614"; }

.lnr-feather2:before {
  content: "\e615"; }

.lnr-feather3:before {
  content: "\e616"; }

.lnr-pen2:before {
  content: "\e617"; }

.lnr-pen-add:before {
  content: "\e618"; }

.lnr-pen-remove:before {
  content: "\e619"; }

.lnr-vector:before {
  content: "\e61a"; }

.lnr-pen3:before {
  content: "\e61b"; }

.lnr-blog:before {
  content: "\e61c"; }

.lnr-brush:before {
  content: "\e61d"; }

.lnr-brush2:before {
  content: "\e61e"; }

.lnr-spray:before {
  content: "\e61f"; }

.lnr-paint-roller:before {
  content: "\e620"; }

.lnr-stamp:before {
  content: "\e621"; }

.lnr-tape:before {
  content: "\e622"; }

.lnr-desk-tape:before {
  content: "\e623"; }

.lnr-texture:before {
  content: "\e624"; }

.lnr-eye-dropper:before {
  content: "\e625"; }

.lnr-palette:before {
  content: "\e626"; }

.lnr-color-sampler:before {
  content: "\e627"; }

.lnr-bucket:before {
  content: "\e628"; }

.lnr-gradient:before {
  content: "\e629"; }

.lnr-gradient2:before {
  content: "\e62a"; }

.lnr-magic-wand:before {
  content: "\e62b"; }

.lnr-magnet:before {
  content: "\e62c"; }

.lnr-pencil-ruler:before {
  content: "\e62d"; }

.lnr-pencil-ruler2:before {
  content: "\e62e"; }

.lnr-compass:before {
  content: "\e62f"; }

.lnr-aim:before {
  content: "\e630"; }

.lnr-gun:before {
  content: "\e631"; }

.lnr-bottle:before {
  content: "\e632"; }

.lnr-drop:before {
  content: "\e633"; }

.lnr-drop-crossed:before {
  content: "\e634"; }

.lnr-drop2:before {
  content: "\e635"; }

.lnr-snow:before {
  content: "\e636"; }

.lnr-snow2:before {
  content: "\e637"; }

.lnr-fire:before {
  content: "\e638"; }

.lnr-lighter:before {
  content: "\e639"; }

.lnr-knife:before {
  content: "\e63a"; }

.lnr-dagger:before {
  content: "\e63b"; }

.lnr-tissue:before {
  content: "\e63c"; }

.lnr-toilet-paper:before {
  content: "\e63d"; }

.lnr-poop:before {
  content: "\e63e"; }

.lnr-umbrella:before {
  content: "\e63f"; }

.lnr-umbrella2:before {
  content: "\e640"; }

.lnr-rain:before {
  content: "\e641"; }

.lnr-tornado:before {
  content: "\e642"; }

.lnr-wind:before {
  content: "\e643"; }

.lnr-fan:before {
  content: "\e644"; }

.lnr-contrast:before {
  content: "\e645"; }

.lnr-sun-small:before {
  content: "\e646"; }

.lnr-sun:before {
  content: "\e647"; }

.lnr-sun2:before {
  content: "\e648"; }

.lnr-moon:before {
  content: "\e649"; }

.lnr-cloud:before {
  content: "\e64a"; }

.lnr-cloud-upload:before {
  content: "\e64b"; }

.lnr-cloud-download:before {
  content: "\e64c"; }

.lnr-cloud-rain:before {
  content: "\e64d"; }

.lnr-cloud-hailstones:before {
  content: "\e64e"; }

.lnr-cloud-snow:before {
  content: "\e64f"; }

.lnr-cloud-windy:before {
  content: "\e650"; }

.lnr-sun-wind:before {
  content: "\e651"; }

.lnr-cloud-fog:before {
  content: "\e652"; }

.lnr-cloud-sun:before {
  content: "\e653"; }

.lnr-cloud-lightning:before {
  content: "\e654"; }

.lnr-cloud-sync:before {
  content: "\e655"; }

.lnr-cloud-lock:before {
  content: "\e656"; }

.lnr-cloud-gear:before {
  content: "\e657"; }

.lnr-cloud-alert:before {
  content: "\e658"; }

.lnr-cloud-check:before {
  content: "\e659"; }

.lnr-cloud-cross:before {
  content: "\e65a"; }

.lnr-cloud-crossed:before {
  content: "\e65b"; }

.lnr-cloud-database:before {
  content: "\e65c"; }

.lnr-database:before {
  content: "\e65d"; }

.lnr-database-add:before {
  content: "\e65e"; }

.lnr-database-remove:before {
  content: "\e65f"; }

.lnr-database-lock:before {
  content: "\e660"; }

.lnr-database-refresh:before {
  content: "\e661"; }

.lnr-database-check:before {
  content: "\e662"; }

.lnr-database-history:before {
  content: "\e663"; }

.lnr-database-upload:before {
  content: "\e664"; }

.lnr-database-download:before {
  content: "\e665"; }

.lnr-server:before {
  content: "\e666"; }

.lnr-shield:before {
  content: "\e667"; }

.lnr-shield-check:before {
  content: "\e668"; }

.lnr-shield-alert:before {
  content: "\e669"; }

.lnr-shield-cross:before {
  content: "\e66a"; }

.lnr-lock:before {
  content: "\e66b"; }

.lnr-rotation-lock:before {
  content: "\e66c"; }

.lnr-unlock:before {
  content: "\e66d"; }

.lnr-key:before {
  content: "\e66e"; }

.lnr-key-hole:before {
  content: "\e66f"; }

.lnr-toggle-off:before {
  content: "\e670"; }

.lnr-toggle-on:before {
  content: "\e671"; }

.lnr-cog:before {
  content: "\e672"; }

.lnr-cog2:before {
  content: "\e673"; }

.lnr-wrench:before {
  content: "\e674"; }

.lnr-screwdriver:before {
  content: "\e675"; }

.lnr-hammer-wrench:before {
  content: "\e676"; }

.lnr-hammer:before {
  content: "\e677"; }

.lnr-saw:before {
  content: "\e678"; }

.lnr-axe:before {
  content: "\e679"; }

.lnr-axe2:before {
  content: "\e67a"; }

.lnr-shovel:before {
  content: "\e67b"; }

.lnr-pickaxe:before {
  content: "\e67c"; }

.lnr-factory:before {
  content: "\e67d"; }

.lnr-factory2:before {
  content: "\e67e"; }

.lnr-recycle:before {
  content: "\e67f"; }

.lnr-trash:before {
  content: "\e680"; }

.lnr-trash2:before {
  content: "\e681"; }

.lnr-trash3:before {
  content: "\e682"; }

.lnr-broom:before {
  content: "\e683"; }

.lnr-game:before {
  content: "\e684"; }

.lnr-gamepad:before {
  content: "\e685"; }

.lnr-joystick:before {
  content: "\e686"; }

.lnr-dice:before {
  content: "\e687"; }

.lnr-spades:before {
  content: "\e688"; }

.lnr-diamonds:before {
  content: "\e689"; }

.lnr-clubs:before {
  content: "\e68a"; }

.lnr-hearts:before {
  content: "\e68b"; }

.lnr-heart:before {
  content: "\e68c"; }

.lnr-star:before {
  content: "\e68d"; }

.lnr-star-half:before {
  content: "\e68e"; }

.lnr-star-empty:before {
  content: "\e68f"; }

.lnr-flag:before {
  content: "\e690"; }

.lnr-flag2:before {
  content: "\e691"; }

.lnr-flag3:before {
  content: "\e692"; }

.lnr-mailbox-full:before {
  content: "\e693"; }

.lnr-mailbox-empty:before {
  content: "\e694"; }

.lnr-at-sign:before {
  content: "\e695"; }

.lnr-envelope:before {
  content: "\e696"; }

.lnr-envelope-open:before {
  content: "\e697"; }

.lnr-paperclip:before {
  content: "\e698"; }

.lnr-paper-plane:before {
  content: "\e699"; }

.lnr-reply:before {
  content: "\e69a"; }

.lnr-reply-all:before {
  content: "\e69b"; }

.lnr-inbox:before {
  content: "\e69c"; }

.lnr-inbox2:before {
  content: "\e69d"; }

.lnr-outbox:before {
  content: "\e69e"; }

.lnr-box:before {
  content: "\e69f"; }

.lnr-archive:before {
  content: "\e6a0"; }

.lnr-archive2:before {
  content: "\e6a1"; }

.lnr-drawers:before {
  content: "\e6a2"; }

.lnr-drawers2:before {
  content: "\e6a3"; }

.lnr-drawers3:before {
  content: "\e6a4"; }

.lnr-eye:before {
  content: "\e6a5"; }

.lnr-eye-crossed:before {
  content: "\e6a6"; }

.lnr-eye-plus:before {
  content: "\e6a7"; }

.lnr-eye-minus:before {
  content: "\e6a8"; }

.lnr-binoculars:before {
  content: "\e6a9"; }

.lnr-binoculars2:before {
  content: "\e6aa"; }

.lnr-hdd:before {
  content: "\e6ab"; }

.lnr-hdd-down:before {
  content: "\e6ac"; }

.lnr-hdd-up:before {
  content: "\e6ad"; }

.lnr-floppy-disk:before {
  content: "\e6ae"; }

.lnr-disc:before {
  content: "\e6af"; }

.lnr-tape2:before {
  content: "\e6b0"; }

.lnr-printer:before {
  content: "\e6b1"; }

.lnr-shredder:before {
  content: "\e6b2"; }

.lnr-file-empty:before {
  content: "\e6b3"; }

.lnr-file-add:before {
  content: "\e6b4"; }

.lnr-file-check:before {
  content: "\e6b5"; }

.lnr-file-lock:before {
  content: "\e6b6"; }

.lnr-files:before {
  content: "\e6b7"; }

.lnr-copy:before {
  content: "\e6b8"; }

.lnr-compare:before {
  content: "\e6b9"; }

.lnr-folder:before {
  content: "\e6ba"; }

.lnr-folder-search:before {
  content: "\e6bb"; }

.lnr-folder-plus:before {
  content: "\e6bc"; }

.lnr-folder-minus:before {
  content: "\e6bd"; }

.lnr-folder-download:before {
  content: "\e6be"; }

.lnr-folder-upload:before {
  content: "\e6bf"; }

.lnr-folder-star:before {
  content: "\e6c0"; }

.lnr-folder-heart:before {
  content: "\e6c1"; }

.lnr-folder-user:before {
  content: "\e6c2"; }

.lnr-folder-shared:before {
  content: "\e6c3"; }

.lnr-folder-music:before {
  content: "\e6c4"; }

.lnr-folder-picture:before {
  content: "\e6c5"; }

.lnr-folder-film:before {
  content: "\e6c6"; }

.lnr-scissors:before {
  content: "\e6c7"; }

.lnr-paste:before {
  content: "\e6c8"; }

.lnr-clipboard-empty:before {
  content: "\e6c9"; }

.lnr-clipboard-pencil:before {
  content: "\e6ca"; }

.lnr-clipboard-text:before {
  content: "\e6cb"; }

.lnr-clipboard-check:before {
  content: "\e6cc"; }

.lnr-clipboard-down:before {
  content: "\e6cd"; }

.lnr-clipboard-left:before {
  content: "\e6ce"; }

.lnr-clipboard-alert:before {
  content: "\e6cf"; }

.lnr-clipboard-user:before {
  content: "\e6d0"; }

.lnr-register:before {
  content: "\e6d1"; }

.lnr-enter:before {
  content: "\e6d2"; }

.lnr-exit:before {
  content: "\e6d3"; }

.lnr-papers:before {
  content: "\e6d4"; }

.lnr-news:before {
  content: "\e6d5"; }

.lnr-reading:before {
  content: "\e6d6"; }

.lnr-typewriter:before {
  content: "\e6d7"; }

.lnr-document:before {
  content: "\e6d8"; }

.lnr-document2:before {
  content: "\e6d9"; }

.lnr-graduation-hat:before {
  content: "\e6da"; }

.lnr-license:before {
  content: "\e6db"; }

.lnr-license2:before {
  content: "\e6dc"; }

.lnr-medal-empty:before {
  content: "\e6dd"; }

.lnr-medal-first:before {
  content: "\e6de"; }

.lnr-medal-second:before {
  content: "\e6df"; }

.lnr-medal-third:before {
  content: "\e6e0"; }

.lnr-podium:before {
  content: "\e6e1"; }

.lnr-trophy:before {
  content: "\e6e2"; }

.lnr-trophy2:before {
  content: "\e6e3"; }

.lnr-music-note:before {
  content: "\e6e4"; }

.lnr-music-note2:before {
  content: "\e6e5"; }

.lnr-music-note3:before {
  content: "\e6e6"; }

.lnr-playlist:before {
  content: "\e6e7"; }

.lnr-playlist-add:before {
  content: "\e6e8"; }

.lnr-guitar:before {
  content: "\e6e9"; }

.lnr-trumpet:before {
  content: "\e6ea"; }

.lnr-album:before {
  content: "\e6eb"; }

.lnr-shuffle:before {
  content: "\e6ec"; }

.lnr-repeat-one:before {
  content: "\e6ed"; }

.lnr-repeat:before {
  content: "\e6ee"; }

.lnr-headphones:before {
  content: "\e6ef"; }

.lnr-headset:before {
  content: "\e6f0"; }

.lnr-loudspeaker:before {
  content: "\e6f1"; }

.lnr-equalizer:before {
  content: "\e6f2"; }

.lnr-theater:before {
  content: "\e6f3"; }

.lnr-3d-glasses:before {
  content: "\e6f4"; }

.lnr-ticket:before {
  content: "\e6f5"; }

.lnr-presentation:before {
  content: "\e6f6"; }

.lnr-play:before {
  content: "\e6f7"; }

.lnr-film-play:before {
  content: "\e6f8"; }

.lnr-clapboard-play:before {
  content: "\e6f9"; }

.lnr-media:before {
  content: "\e6fa"; }

.lnr-film:before {
  content: "\e6fb"; }

.lnr-film2:before {
  content: "\e6fc"; }

.lnr-surveillance:before {
  content: "\e6fd"; }

.lnr-surveillance2:before {
  content: "\e6fe"; }

.lnr-camera:before {
  content: "\e6ff"; }

.lnr-camera-crossed:before {
  content: "\e700"; }

.lnr-camera-play:before {
  content: "\e701"; }

.lnr-time-lapse:before {
  content: "\e702"; }

.lnr-record:before {
  content: "\e703"; }

.lnr-camera2:before {
  content: "\e704"; }

.lnr-camera-flip:before {
  content: "\e705"; }

.lnr-panorama:before {
  content: "\e706"; }

.lnr-time-lapse2:before {
  content: "\e707"; }

.lnr-shutter:before {
  content: "\e708"; }

.lnr-shutter2:before {
  content: "\e709"; }

.lnr-face-detection:before {
  content: "\e70a"; }

.lnr-flare:before {
  content: "\e70b"; }

.lnr-convex:before {
  content: "\e70c"; }

.lnr-concave:before {
  content: "\e70d"; }

.lnr-picture:before {
  content: "\e70e"; }

.lnr-picture2:before {
  content: "\e70f"; }

.lnr-picture3:before {
  content: "\e710"; }

.lnr-pictures:before {
  content: "\e711"; }

.lnr-book:before {
  content: "\e712"; }

.lnr-audio-book:before {
  content: "\e713"; }

.lnr-book2:before {
  content: "\e714"; }

.lnr-bookmark:before {
  content: "\e715"; }

.lnr-bookmark2:before {
  content: "\e716"; }

.lnr-label:before {
  content: "\e717"; }

.lnr-library:before {
  content: "\e718"; }

.lnr-library2:before {
  content: "\e719"; }

.lnr-contacts:before {
  content: "\e71a"; }

.lnr-profile:before {
  content: "\e71b"; }

.lnr-portrait:before {
  content: "\e71c"; }

.lnr-portrait2:before {
  content: "\e71d"; }

.lnr-user:before {
  content: "\e71e"; }

.lnr-user-plus:before {
  content: "\e71f"; }

.lnr-user-minus:before {
  content: "\e720"; }

.lnr-user-lock:before {
  content: "\e721"; }

.lnr-users:before {
  content: "\e722"; }

.lnr-users2:before {
  content: "\e723"; }

.lnr-users-plus:before {
  content: "\e724"; }

.lnr-users-minus:before {
  content: "\e725"; }

.lnr-group-work:before {
  content: "\e726"; }

.lnr-woman:before {
  content: "\e727"; }

.lnr-man:before {
  content: "\e728"; }

.lnr-baby:before {
  content: "\e729"; }

.lnr-baby2:before {
  content: "\e72a"; }

.lnr-baby3:before {
  content: "\e72b"; }

.lnr-baby-bottle:before {
  content: "\e72c"; }

.lnr-walk:before {
  content: "\e72d"; }

.lnr-hand-waving:before {
  content: "\e72e"; }

.lnr-jump:before {
  content: "\e72f"; }

.lnr-run:before {
  content: "\e730"; }

.lnr-woman2:before {
  content: "\e731"; }

.lnr-man2:before {
  content: "\e732"; }

.lnr-man-woman:before {
  content: "\e733"; }

.lnr-height:before {
  content: "\e734"; }

.lnr-weight:before {
  content: "\e735"; }

.lnr-scale:before {
  content: "\e736"; }

.lnr-button:before {
  content: "\e737"; }

.lnr-bow-tie:before {
  content: "\e738"; }

.lnr-tie:before {
  content: "\e739"; }

.lnr-socks:before {
  content: "\e73a"; }

.lnr-shoe:before {
  content: "\e73b"; }

.lnr-shoes:before {
  content: "\e73c"; }

.lnr-hat:before {
  content: "\e73d"; }

.lnr-pants:before {
  content: "\e73e"; }

.lnr-shorts:before {
  content: "\e73f"; }

.lnr-flip-flops:before {
  content: "\e740"; }

.lnr-shirt:before {
  content: "\e741"; }

.lnr-hanger:before {
  content: "\e742"; }

.lnr-laundry:before {
  content: "\e743"; }

.lnr-store:before {
  content: "\e744"; }

.lnr-haircut:before {
  content: "\e745"; }

.lnr-store-24:before {
  content: "\e746"; }

.lnr-barcode:before {
  content: "\e747"; }

.lnr-barcode2:before {
  content: "\e748"; }

.lnr-barcode3:before {
  content: "\e749"; }

.lnr-cashier:before {
  content: "\e74a"; }

.lnr-bag:before {
  content: "\e74b"; }

.lnr-bag2:before {
  content: "\e74c"; }

.lnr-cart:before {
  content: "\e74d"; }

.lnr-cart-empty:before {
  content: "\e74e"; }

.lnr-cart-full:before {
  content: "\e74f"; }

.lnr-cart-plus:before {
  content: "\e750"; }

.lnr-cart-plus2:before {
  content: "\e751"; }

.lnr-cart-add:before {
  content: "\e752"; }

.lnr-cart-remove:before {
  content: "\e753"; }

.lnr-cart-exchange:before {
  content: "\e754"; }

.lnr-tag:before {
  content: "\e755"; }

.lnr-tags:before {
  content: "\e756"; }

.lnr-receipt:before {
  content: "\e757"; }

.lnr-wallet:before {
  content: "\e758"; }

.lnr-credit-card:before {
  content: "\e759"; }

.lnr-cash-dollar:before {
  content: "\e75a"; }

.lnr-cash-euro:before {
  content: "\e75b"; }

.lnr-cash-pound:before {
  content: "\e75c"; }

.lnr-cash-yen:before {
  content: "\e75d"; }

.lnr-bag-dollar:before {
  content: "\e75e"; }

.lnr-bag-euro:before {
  content: "\e75f"; }

.lnr-bag-pound:before {
  content: "\e760"; }

.lnr-bag-yen:before {
  content: "\e761"; }

.lnr-coin-dollar:before {
  content: "\e762"; }

.lnr-coin-euro:before {
  content: "\e763"; }

.lnr-coin-pound:before {
  content: "\e764"; }

.lnr-coin-yen:before {
  content: "\e765"; }

.lnr-calculator:before {
  content: "\e766"; }

.lnr-calculator2:before {
  content: "\e767"; }

.lnr-abacus:before {
  content: "\e768"; }

.lnr-vault:before {
  content: "\e769"; }

.lnr-telephone:before {
  content: "\e76a"; }

.lnr-phone-lock:before {
  content: "\e76b"; }

.lnr-phone-wave:before {
  content: "\e76c"; }

.lnr-phone-pause:before {
  content: "\e76d"; }

.lnr-phone-outgoing:before {
  content: "\e76e"; }

.lnr-phone-incoming:before {
  content: "\e76f"; }

.lnr-phone-in-out:before {
  content: "\e770"; }

.lnr-phone-error:before {
  content: "\e771"; }

.lnr-phone-sip:before {
  content: "\e772"; }

.lnr-phone-plus:before {
  content: "\e773"; }

.lnr-phone-minus:before {
  content: "\e774"; }

.lnr-voicemail:before {
  content: "\e775"; }

.lnr-dial:before {
  content: "\e776"; }

.lnr-telephone2:before {
  content: "\e777"; }

.lnr-pushpin:before {
  content: "\e778"; }

.lnr-pushpin2:before {
  content: "\e779"; }

.lnr-map-marker:before {
  content: "\e77a"; }

.lnr-map-marker-user:before {
  content: "\e77b"; }

.lnr-map-marker-down:before {
  content: "\e77c"; }

.lnr-map-marker-check:before {
  content: "\e77d"; }

.lnr-map-marker-crossed:before {
  content: "\e77e"; }

.lnr-radar:before {
  content: "\e77f"; }

.lnr-compass2:before {
  content: "\e780"; }

.lnr-map:before {
  content: "\e781"; }

.lnr-map2:before {
  content: "\e782"; }

.lnr-location:before {
  content: "\e783"; }

.lnr-road-sign:before {
  content: "\e784"; }

.lnr-calendar-empty:before {
  content: "\e785"; }

.lnr-calendar-check:before {
  content: "\e786"; }

.lnr-calendar-cross:before {
  content: "\e787"; }

.lnr-calendar-31:before {
  content: "\e788"; }

.lnr-calendar-full:before {
  content: "\e789"; }

.lnr-calendar-insert:before {
  content: "\e78a"; }

.lnr-calendar-text:before {
  content: "\e78b"; }

.lnr-calendar-user:before {
  content: "\e78c"; }

.lnr-mouse:before {
  content: "\e78d"; }

.lnr-mouse-left:before {
  content: "\e78e"; }

.lnr-mouse-right:before {
  content: "\e78f"; }

.lnr-mouse-both:before {
  content: "\e790"; }

.lnr-keyboard:before {
  content: "\e791"; }

.lnr-keyboard-up:before {
  content: "\e792"; }

.lnr-keyboard-down:before {
  content: "\e793"; }

.lnr-delete:before {
  content: "\e794"; }

.lnr-spell-check:before {
  content: "\e795"; }

.lnr-escape:before {
  content: "\e796"; }

.lnr-enter2:before {
  content: "\e797"; }

.lnr-screen:before {
  content: "\e798"; }

.lnr-aspect-ratio:before {
  content: "\e799"; }

.lnr-signal:before {
  content: "\e79a"; }

.lnr-signal-lock:before {
  content: "\e79b"; }

.lnr-signal-80:before {
  content: "\e79c"; }

.lnr-signal-60:before {
  content: "\e79d"; }

.lnr-signal-40:before {
  content: "\e79e"; }

.lnr-signal-20:before {
  content: "\e79f"; }

.lnr-signal-0:before {
  content: "\e7a0"; }

.lnr-signal-blocked:before {
  content: "\e7a1"; }

.lnr-sim:before {
  content: "\e7a2"; }

.lnr-flash-memory:before {
  content: "\e7a3"; }

.lnr-usb-drive:before {
  content: "\e7a4"; }

.lnr-phone:before {
  content: "\e7a5"; }

.lnr-smartphone:before {
  content: "\e7a6"; }

.lnr-smartphone-notification:before {
  content: "\e7a7"; }

.lnr-smartphone-vibration:before {
  content: "\e7a8"; }

.lnr-smartphone-embed:before {
  content: "\e7a9"; }

.lnr-smartphone-waves:before {
  content: "\e7aa"; }

.lnr-tablet:before {
  content: "\e7ab"; }

.lnr-tablet2:before {
  content: "\e7ac"; }

.lnr-laptop:before {
  content: "\e7ad"; }

.lnr-laptop-phone:before {
  content: "\e7ae"; }

.lnr-desktop:before {
  content: "\e7af"; }

.lnr-launch:before {
  content: "\e7b0"; }

.lnr-new-tab:before {
  content: "\e7b1"; }

.lnr-window:before {
  content: "\e7b2"; }

.lnr-cable:before {
  content: "\e7b3"; }

.lnr-cable2:before {
  content: "\e7b4"; }

.lnr-tv:before {
  content: "\e7b5"; }

.lnr-radio:before {
  content: "\e7b6"; }

.lnr-remote-control:before {
  content: "\e7b7"; }

.lnr-power-switch:before {
  content: "\e7b8"; }

.lnr-power:before {
  content: "\e7b9"; }

.lnr-power-crossed:before {
  content: "\e7ba"; }

.lnr-flash-auto:before {
  content: "\e7bb"; }

.lnr-lamp:before {
  content: "\e7bc"; }

.lnr-flashlight:before {
  content: "\e7bd"; }

.lnr-lampshade:before {
  content: "\e7be"; }

.lnr-cord:before {
  content: "\e7bf"; }

.lnr-outlet:before {
  content: "\e7c0"; }

.lnr-battery-power:before {
  content: "\e7c1"; }

.lnr-battery-empty:before {
  content: "\e7c2"; }

.lnr-battery-alert:before {
  content: "\e7c3"; }

.lnr-battery-error:before {
  content: "\e7c4"; }

.lnr-battery-low1:before {
  content: "\e7c5"; }

.lnr-battery-low2:before {
  content: "\e7c6"; }

.lnr-battery-low3:before {
  content: "\e7c7"; }

.lnr-battery-mid1:before {
  content: "\e7c8"; }

.lnr-battery-mid2:before {
  content: "\e7c9"; }

.lnr-battery-mid3:before {
  content: "\e7ca"; }

.lnr-battery-full:before {
  content: "\e7cb"; }

.lnr-battery-charging:before {
  content: "\e7cc"; }

.lnr-battery-charging2:before {
  content: "\e7cd"; }

.lnr-battery-charging3:before {
  content: "\e7ce"; }

.lnr-battery-charging4:before {
  content: "\e7cf"; }

.lnr-battery-charging5:before {
  content: "\e7d0"; }

.lnr-battery-charging6:before {
  content: "\e7d1"; }

.lnr-battery-charging7:before {
  content: "\e7d2"; }

.lnr-chip:before {
  content: "\e7d3"; }

.lnr-chip-x64:before {
  content: "\e7d4"; }

.lnr-chip-x86:before {
  content: "\e7d5"; }

.lnr-bubble:before {
  content: "\e7d6"; }

.lnr-bubbles:before {
  content: "\e7d7"; }

.lnr-bubble-dots:before {
  content: "\e7d8"; }

.lnr-bubble-alert:before {
  content: "\e7d9"; }

.lnr-bubble-question:before {
  content: "\e7da"; }

.lnr-bubble-text:before {
  content: "\e7db"; }

.lnr-bubble-pencil:before {
  content: "\e7dc"; }

.lnr-bubble-picture:before {
  content: "\e7dd"; }

.lnr-bubble-video:before {
  content: "\e7de"; }

.lnr-bubble-user:before {
  content: "\e7df"; }

.lnr-bubble-quote:before {
  content: "\e7e0"; }

.lnr-bubble-heart:before {
  content: "\e7e1"; }

.lnr-bubble-emoticon:before {
  content: "\e7e2"; }

.lnr-bubble-attachment:before {
  content: "\e7e3"; }

.lnr-phone-bubble:before {
  content: "\e7e4"; }

.lnr-quote-open:before {
  content: "\e7e5"; }

.lnr-quote-close:before {
  content: "\e7e6"; }

.lnr-dna:before {
  content: "\e7e7"; }

.lnr-heart-pulse:before {
  content: "\e7e8"; }

.lnr-pulse:before {
  content: "\e7e9"; }

.lnr-syringe:before {
  content: "\e7ea"; }

.lnr-pills:before {
  content: "\e7eb"; }

.lnr-first-aid:before {
  content: "\e7ec"; }

.lnr-lifebuoy:before {
  content: "\e7ed"; }

.lnr-bandage:before {
  content: "\e7ee"; }

.lnr-bandages:before {
  content: "\e7ef"; }

.lnr-thermometer:before {
  content: "\e7f0"; }

.lnr-microscope:before {
  content: "\e7f1"; }

.lnr-brain:before {
  content: "\e7f2"; }

.lnr-beaker:before {
  content: "\e7f3"; }

.lnr-skull:before {
  content: "\e7f4"; }

.lnr-bone:before {
  content: "\e7f5"; }

.lnr-construction:before {
  content: "\e7f6"; }

.lnr-construction-cone:before {
  content: "\e7f7"; }

.lnr-pie-chart:before {
  content: "\e7f8"; }

.lnr-pie-chart2:before {
  content: "\e7f9"; }

.lnr-graph:before {
  content: "\e7fa"; }

.lnr-chart-growth:before {
  content: "\e7fb"; }

.lnr-chart-bars:before {
  content: "\e7fc"; }

.lnr-chart-settings:before {
  content: "\e7fd"; }

.lnr-cake:before {
  content: "\e7fe"; }

.lnr-gift:before {
  content: "\e7ff"; }

.lnr-balloon:before {
  content: "\e800"; }

.lnr-rank:before {
  content: "\e801"; }

.lnr-rank2:before {
  content: "\e802"; }

.lnr-rank3:before {
  content: "\e803"; }

.lnr-crown:before {
  content: "\e804"; }

.lnr-lotus:before {
  content: "\e805"; }

.lnr-diamond:before {
  content: "\e806"; }

.lnr-diamond2:before {
  content: "\e807"; }

.lnr-diamond3:before {
  content: "\e808"; }

.lnr-diamond4:before {
  content: "\e809"; }

.lnr-linearicons:before {
  content: "\e80a"; }

.lnr-teacup:before {
  content: "\e80b"; }

.lnr-teapot:before {
  content: "\e80c"; }

.lnr-glass:before {
  content: "\e80d"; }

.lnr-bottle2:before {
  content: "\e80e"; }

.lnr-glass-cocktail:before {
  content: "\e80f"; }

.lnr-glass2:before {
  content: "\e810"; }

.lnr-dinner:before {
  content: "\e811"; }

.lnr-dinner2:before {
  content: "\e812"; }

.lnr-chef:before {
  content: "\e813"; }

.lnr-scale2:before {
  content: "\e814"; }

.lnr-egg:before {
  content: "\e815"; }

.lnr-egg2:before {
  content: "\e816"; }

.lnr-eggs:before {
  content: "\e817"; }

.lnr-platter:before {
  content: "\e818"; }

.lnr-steak:before {
  content: "\e819"; }

.lnr-hamburger:before {
  content: "\e81a"; }

.lnr-hotdog:before {
  content: "\e81b"; }

.lnr-pizza:before {
  content: "\e81c"; }

.lnr-sausage:before {
  content: "\e81d"; }

.lnr-chicken:before {
  content: "\e81e"; }

.lnr-fish:before {
  content: "\e81f"; }

.lnr-carrot:before {
  content: "\e820"; }

.lnr-cheese:before {
  content: "\e821"; }

.lnr-bread:before {
  content: "\e822"; }

.lnr-ice-cream:before {
  content: "\e823"; }

.lnr-ice-cream2:before {
  content: "\e824"; }

.lnr-candy:before {
  content: "\e825"; }

.lnr-lollipop:before {
  content: "\e826"; }

.lnr-coffee-bean:before {
  content: "\e827"; }

.lnr-coffee-cup:before {
  content: "\e828"; }

.lnr-cherry:before {
  content: "\e829"; }

.lnr-grapes:before {
  content: "\e82a"; }

.lnr-citrus:before {
  content: "\e82b"; }

.lnr-apple:before {
  content: "\e82c"; }

.lnr-leaf:before {
  content: "\e82d"; }

.lnr-landscape:before {
  content: "\e82e"; }

.lnr-pine-tree:before {
  content: "\e82f"; }

.lnr-tree:before {
  content: "\e830"; }

.lnr-cactus:before {
  content: "\e831"; }

.lnr-paw:before {
  content: "\e832"; }

.lnr-footprint:before {
  content: "\e833"; }

.lnr-speed-slow:before {
  content: "\e834"; }

.lnr-speed-medium:before {
  content: "\e835"; }

.lnr-speed-fast:before {
  content: "\e836"; }

.lnr-rocket:before {
  content: "\e837"; }

.lnr-hammer2:before {
  content: "\e838"; }

.lnr-balance:before {
  content: "\e839"; }

.lnr-briefcase:before {
  content: "\e83a"; }

.lnr-luggage-weight:before {
  content: "\e83b"; }

.lnr-dolly:before {
  content: "\e83c"; }

.lnr-plane:before {
  content: "\e83d"; }

.lnr-plane-crossed:before {
  content: "\e83e"; }

.lnr-helicopter:before {
  content: "\e83f"; }

.lnr-traffic-lights:before {
  content: "\e840"; }

.lnr-siren:before {
  content: "\e841"; }

.lnr-road:before {
  content: "\e842"; }

.lnr-engine:before {
  content: "\e843"; }

.lnr-oil-pressure:before {
  content: "\e844"; }

.lnr-coolant-temperature:before {
  content: "\e845"; }

.lnr-car-battery:before {
  content: "\e846"; }

.lnr-gas:before {
  content: "\e847"; }

.lnr-gallon:before {
  content: "\e848"; }

.lnr-transmission:before {
  content: "\e849"; }

.lnr-car:before {
  content: "\e84a"; }

.lnr-car-wash:before {
  content: "\e84b"; }

.lnr-car-wash2:before {
  content: "\e84c"; }

.lnr-bus:before {
  content: "\e84d"; }

.lnr-bus2:before {
  content: "\e84e"; }

.lnr-car2:before {
  content: "\e84f"; }

.lnr-parking:before {
  content: "\e850"; }

.lnr-car-lock:before {
  content: "\e851"; }

.lnr-taxi:before {
  content: "\e852"; }

.lnr-car-siren:before {
  content: "\e853"; }

.lnr-car-wash3:before {
  content: "\e854"; }

.lnr-car-wash4:before {
  content: "\e855"; }

.lnr-ambulance:before {
  content: "\e856"; }

.lnr-truck:before {
  content: "\e857"; }

.lnr-trailer:before {
  content: "\e858"; }

.lnr-scale-truck:before {
  content: "\e859"; }

.lnr-train:before {
  content: "\e85a"; }

.lnr-ship:before {
  content: "\e85b"; }

.lnr-ship2:before {
  content: "\e85c"; }

.lnr-anchor:before {
  content: "\e85d"; }

.lnr-boat:before {
  content: "\e85e"; }

.lnr-bicycle:before {
  content: "\e85f"; }

.lnr-bicycle2:before {
  content: "\e860"; }

.lnr-dumbbell:before {
  content: "\e861"; }

.lnr-bench-press:before {
  content: "\e862"; }

.lnr-swim:before {
  content: "\e863"; }

.lnr-football:before {
  content: "\e864"; }

.lnr-baseball-bat:before {
  content: "\e865"; }

.lnr-baseball:before {
  content: "\e866"; }

.lnr-tennis:before {
  content: "\e867"; }

.lnr-tennis2:before {
  content: "\e868"; }

.lnr-ping-pong:before {
  content: "\e869"; }

.lnr-hockey:before {
  content: "\e86a"; }

.lnr-8ball:before {
  content: "\e86b"; }

.lnr-bowling:before {
  content: "\e86c"; }

.lnr-bowling-pins:before {
  content: "\e86d"; }

.lnr-golf:before {
  content: "\e86e"; }

.lnr-golf2:before {
  content: "\e86f"; }

.lnr-archery:before {
  content: "\e870"; }

.lnr-slingshot:before {
  content: "\e871"; }

.lnr-soccer:before {
  content: "\e872"; }

.lnr-basketball:before {
  content: "\e873"; }

.lnr-cube:before {
  content: "\e874"; }

.lnr-3d-rotate:before {
  content: "\e875"; }

.lnr-puzzle:before {
  content: "\e876"; }

.lnr-glasses:before {
  content: "\e877"; }

.lnr-glasses2:before {
  content: "\e878"; }

.lnr-accessibility:before {
  content: "\e879"; }

.lnr-wheelchair:before {
  content: "\e87a"; }

.lnr-wall:before {
  content: "\e87b"; }

.lnr-fence:before {
  content: "\e87c"; }

.lnr-wall2:before {
  content: "\e87d"; }

.lnr-icons:before {
  content: "\e87e"; }

.lnr-resize-handle:before {
  content: "\e87f"; }

.lnr-icons2:before {
  content: "\e880"; }

.lnr-select:before {
  content: "\e881"; }

.lnr-select2:before {
  content: "\e882"; }

.lnr-site-map:before {
  content: "\e883"; }

.lnr-earth:before {
  content: "\e884"; }

.lnr-earth-lock:before {
  content: "\e885"; }

.lnr-network:before {
  content: "\e886"; }

.lnr-network-lock:before {
  content: "\e887"; }

.lnr-planet:before {
  content: "\e888"; }

.lnr-happy:before {
  content: "\e889"; }

.lnr-smile:before {
  content: "\e88a"; }

.lnr-grin:before {
  content: "\e88b"; }

.lnr-tongue:before {
  content: "\e88c"; }

.lnr-sad:before {
  content: "\e88d"; }

.lnr-wink:before {
  content: "\e88e"; }

.lnr-dream:before {
  content: "\e88f"; }

.lnr-shocked:before {
  content: "\e890"; }

.lnr-shocked2:before {
  content: "\e891"; }

.lnr-tongue2:before {
  content: "\e892"; }

.lnr-neutral:before {
  content: "\e893"; }

.lnr-happy-grin:before {
  content: "\e894"; }

.lnr-cool:before {
  content: "\e895"; }

.lnr-mad:before {
  content: "\e896"; }

.lnr-grin-evil:before {
  content: "\e897"; }

.lnr-evil:before {
  content: "\e898"; }

.lnr-wow:before {
  content: "\e899"; }

.lnr-annoyed:before {
  content: "\e89a"; }

.lnr-wondering:before {
  content: "\e89b"; }

.lnr-confused:before {
  content: "\e89c"; }

.lnr-zipped:before {
  content: "\e89d"; }

.lnr-grumpy:before {
  content: "\e89e"; }

.lnr-mustache:before {
  content: "\e89f"; }

.lnr-tombstone-hipster:before {
  content: "\e8a0"; }

.lnr-tombstone:before {
  content: "\e8a1"; }

.lnr-ghost:before {
  content: "\e8a2"; }

.lnr-ghost-hipster:before {
  content: "\e8a3"; }

.lnr-halloween:before {
  content: "\e8a4"; }

.lnr-christmas:before {
  content: "\e8a5"; }

.lnr-easter-egg:before {
  content: "\e8a6"; }

.lnr-mustache2:before {
  content: "\e8a7"; }

.lnr-mustache-glasses:before {
  content: "\e8a8"; }

.lnr-pipe:before {
  content: "\e8a9"; }

.lnr-alarm:before {
  content: "\e8aa"; }

.lnr-alarm-add:before {
  content: "\e8ab"; }

.lnr-alarm-snooze:before {
  content: "\e8ac"; }

.lnr-alarm-ringing:before {
  content: "\e8ad"; }

.lnr-bullhorn:before {
  content: "\e8ae"; }

.lnr-hearing:before {
  content: "\e8af"; }

.lnr-volume-high:before {
  content: "\e8b0"; }

.lnr-volume-medium:before {
  content: "\e8b1"; }

.lnr-volume-low:before {
  content: "\e8b2"; }

.lnr-volume:before {
  content: "\e8b3"; }

.lnr-mute:before {
  content: "\e8b4"; }

.lnr-lan:before {
  content: "\e8b5"; }

.lnr-lan2:before {
  content: "\e8b6"; }

.lnr-wifi:before {
  content: "\e8b7"; }

.lnr-wifi-lock:before {
  content: "\e8b8"; }

.lnr-wifi-blocked:before {
  content: "\e8b9"; }

.lnr-wifi-mid:before {
  content: "\e8ba"; }

.lnr-wifi-low:before {
  content: "\e8bb"; }

.lnr-wifi-low2:before {
  content: "\e8bc"; }

.lnr-wifi-alert:before {
  content: "\e8bd"; }

.lnr-wifi-alert-mid:before {
  content: "\e8be"; }

.lnr-wifi-alert-low:before {
  content: "\e8bf"; }

.lnr-wifi-alert-low2:before {
  content: "\e8c0"; }

.lnr-stream:before {
  content: "\e8c1"; }

.lnr-stream-check:before {
  content: "\e8c2"; }

.lnr-stream-error:before {
  content: "\e8c3"; }

.lnr-stream-alert:before {
  content: "\e8c4"; }

.lnr-communication:before {
  content: "\e8c5"; }

.lnr-communication-crossed:before {
  content: "\e8c6"; }

.lnr-broadcast:before {
  content: "\e8c7"; }

.lnr-antenna:before {
  content: "\e8c8"; }

.lnr-satellite:before {
  content: "\e8c9"; }

.lnr-satellite2:before {
  content: "\e8ca"; }

.lnr-mic:before {
  content: "\e8cb"; }

.lnr-mic-mute:before {
  content: "\e8cc"; }

.lnr-mic2:before {
  content: "\e8cd"; }

.lnr-spotlights:before {
  content: "\e8ce"; }

.lnr-hourglass:before {
  content: "\e8cf"; }

.lnr-loading:before {
  content: "\e8d0"; }

.lnr-loading2:before {
  content: "\e8d1"; }

.lnr-loading3:before {
  content: "\e8d2"; }

.lnr-refresh:before {
  content: "\e8d3"; }

.lnr-refresh2:before {
  content: "\e8d4"; }

.lnr-undo:before {
  content: "\e8d5"; }

.lnr-redo:before {
  content: "\e8d6"; }

.lnr-jump2:before {
  content: "\e8d7"; }

.lnr-undo2:before {
  content: "\e8d8"; }

.lnr-redo2:before {
  content: "\e8d9"; }

.lnr-sync:before {
  content: "\e8da"; }

.lnr-repeat-one2:before {
  content: "\e8db"; }

.lnr-sync-crossed:before {
  content: "\e8dc"; }

.lnr-sync2:before {
  content: "\e8dd"; }

.lnr-repeat-one3:before {
  content: "\e8de"; }

.lnr-sync-crossed2:before {
  content: "\e8df"; }

.lnr-return:before {
  content: "\e8e0"; }

.lnr-return2:before {
  content: "\e8e1"; }

.lnr-refund:before {
  content: "\e8e2"; }

.lnr-history:before {
  content: "\e8e3"; }

.lnr-history2:before {
  content: "\e8e4"; }

.lnr-self-timer:before {
  content: "\e8e5"; }

.lnr-clock:before {
  content: "\e8e6"; }

.lnr-clock2:before {
  content: "\e8e7"; }

.lnr-clock3:before {
  content: "\e8e8"; }

.lnr-watch:before {
  content: "\e8e9"; }

.lnr-alarm2:before {
  content: "\e8ea"; }

.lnr-alarm-add2:before {
  content: "\e8eb"; }

.lnr-alarm-remove:before {
  content: "\e8ec"; }

.lnr-alarm-check:before {
  content: "\e8ed"; }

.lnr-alarm-error:before {
  content: "\e8ee"; }

.lnr-timer:before {
  content: "\e8ef"; }

.lnr-timer-crossed:before {
  content: "\e8f0"; }

.lnr-timer2:before {
  content: "\e8f1"; }

.lnr-timer-crossed2:before {
  content: "\e8f2"; }

.lnr-download:before {
  content: "\e8f3"; }

.lnr-upload:before {
  content: "\e8f4"; }

.lnr-download2:before {
  content: "\e8f5"; }

.lnr-upload2:before {
  content: "\e8f6"; }

.lnr-enter-up:before {
  content: "\e8f7"; }

.lnr-enter-down:before {
  content: "\e8f8"; }

.lnr-enter-left:before {
  content: "\e8f9"; }

.lnr-enter-right:before {
  content: "\e8fa"; }

.lnr-exit-up:before {
  content: "\e8fb"; }

.lnr-exit-down:before {
  content: "\e8fc"; }

.lnr-exit-left:before {
  content: "\e8fd"; }

.lnr-exit-right:before {
  content: "\e8fe"; }

.lnr-enter-up2:before {
  content: "\e8ff"; }

.lnr-enter-down2:before {
  content: "\e900"; }

.lnr-enter-vertical:before {
  content: "\e901"; }

.lnr-enter-left2:before {
  content: "\e902"; }

.lnr-enter-right2:before {
  content: "\e903"; }

.lnr-enter-horizontal:before {
  content: "\e904"; }

.lnr-exit-up2:before {
  content: "\e905"; }

.lnr-exit-down2:before {
  content: "\e906"; }

.lnr-exit-left2:before {
  content: "\e907"; }

.lnr-exit-right2:before {
  content: "\e908"; }

.lnr-cli:before {
  content: "\e909"; }

.lnr-bug:before {
  content: "\e90a"; }

.lnr-code:before {
  content: "\e90b"; }

.lnr-file-code:before {
  content: "\e90c"; }

.lnr-file-image:before {
  content: "\e90d"; }

.lnr-file-zip:before {
  content: "\e90e"; }

.lnr-file-audio:before {
  content: "\e90f"; }

.lnr-file-video:before {
  content: "\e910"; }

.lnr-file-preview:before {
  content: "\e911"; }

.lnr-file-charts:before {
  content: "\e912"; }

.lnr-file-stats:before {
  content: "\e913"; }

.lnr-file-spreadsheet:before {
  content: "\e914"; }

.lnr-link:before {
  content: "\e915"; }

.lnr-unlink:before {
  content: "\e916"; }

.lnr-link2:before {
  content: "\e917"; }

.lnr-unlink2:before {
  content: "\e918"; }

.lnr-thumbs-up:before {
  content: "\e919"; }

.lnr-thumbs-down:before {
  content: "\e91a"; }

.lnr-thumbs-up2:before {
  content: "\e91b"; }

.lnr-thumbs-down2:before {
  content: "\e91c"; }

.lnr-thumbs-up3:before {
  content: "\e91d"; }

.lnr-thumbs-down3:before {
  content: "\e91e"; }

.lnr-share:before {
  content: "\e91f"; }

.lnr-share2:before {
  content: "\e920"; }

.lnr-share3:before {
  content: "\e921"; }

.lnr-magnifier:before {
  content: "\e922"; }

.lnr-file-search:before {
  content: "\e923"; }

.lnr-find-replace:before {
  content: "\e924"; }

.lnr-zoom-in:before {
  content: "\e925"; }

.lnr-zoom-out:before {
  content: "\e926"; }

.lnr-loupe:before {
  content: "\e927"; }

.lnr-loupe-zoom-in:before {
  content: "\e928"; }

.lnr-loupe-zoom-out:before {
  content: "\e929"; }

.lnr-cross:before {
  content: "\e92a"; }

.lnr-menu:before {
  content: "\e92b"; }

.lnr-list:before {
  content: "\e92c"; }

.lnr-list2:before {
  content: "\e92d"; }

.lnr-list3:before {
  content: "\e92e"; }

.lnr-menu2:before {
  content: "\e92f"; }

.lnr-list4:before {
  content: "\e930"; }

.lnr-menu3:before {
  content: "\e931"; }

.lnr-exclamation:before {
  content: "\e932"; }

.lnr-question:before {
  content: "\e933"; }

.lnr-check:before {
  content: "\e934"; }

.lnr-cross2:before {
  content: "\e935"; }

.lnr-plus:before {
  content: "\e936"; }

.lnr-minus:before {
  content: "\e937"; }

.lnr-percent:before {
  content: "\e938"; }

.lnr-chevron-up:before {
  content: "\e939"; }

.lnr-chevron-down:before {
  content: "\e93a"; }

.lnr-chevron-left:before {
  content: "\e93b"; }

.lnr-chevron-right:before {
  content: "\e93c"; }

.lnr-chevrons-expand-vertical:before {
  content: "\e93d"; }

.lnr-chevrons-expand-horizontal:before {
  content: "\e93e"; }

.lnr-chevrons-contract-vertical:before {
  content: "\e93f"; }

.lnr-chevrons-contract-horizontal:before {
  content: "\e940"; }

.lnr-arrow-up:before {
  content: "\e941"; }

.lnr-arrow-down:before {
  content: "\e942"; }

.lnr-arrow-left:before {
  content: "\e943"; }

.lnr-arrow-right:before {
  content: "\e944"; }

.lnr-arrow-up-right:before {
  content: "\e945"; }

.lnr-arrows-merge:before {
  content: "\e946"; }

.lnr-arrows-split:before {
  content: "\e947"; }

.lnr-arrow-divert:before {
  content: "\e948"; }

.lnr-arrow-return:before {
  content: "\e949"; }

.lnr-expand:before {
  content: "\e94a"; }

.lnr-contract:before {
  content: "\e94b"; }

.lnr-expand2:before {
  content: "\e94c"; }

.lnr-contract2:before {
  content: "\e94d"; }

.lnr-move:before {
  content: "\e94e"; }

.lnr-tab:before {
  content: "\e94f"; }

.lnr-arrow-wave:before {
  content: "\e950"; }

.lnr-expand3:before {
  content: "\e951"; }

.lnr-expand4:before {
  content: "\e952"; }

.lnr-contract3:before {
  content: "\e953"; }

.lnr-notification:before {
  content: "\e954"; }

.lnr-warning:before {
  content: "\e955"; }

.lnr-notification-circle:before {
  content: "\e956"; }

.lnr-question-circle:before {
  content: "\e957"; }

.lnr-menu-circle:before {
  content: "\e958"; }

.lnr-checkmark-circle:before {
  content: "\e959"; }

.lnr-cross-circle:before {
  content: "\e95a"; }

.lnr-plus-circle:before {
  content: "\e95b"; }

.lnr-circle-minus:before {
  content: "\e95c"; }

.lnr-percent-circle:before {
  content: "\e95d"; }

.lnr-arrow-up-circle:before {
  content: "\e95e"; }

.lnr-arrow-down-circle:before {
  content: "\e95f"; }

.lnr-arrow-left-circle:before {
  content: "\e960"; }

.lnr-arrow-right-circle:before {
  content: "\e961"; }

.lnr-chevron-up-circle:before {
  content: "\e962"; }

.lnr-chevron-down-circle:before {
  content: "\e963"; }

.lnr-chevron-left-circle:before {
  content: "\e964"; }

.lnr-chevron-right-circle:before {
  content: "\e965"; }

.lnr-backward-circle:before {
  content: "\e966"; }

.lnr-first-circle:before {
  content: "\e967"; }

.lnr-previous-circle:before {
  content: "\e968"; }

.lnr-stop-circle:before {
  content: "\e969"; }

.lnr-play-circle:before {
  content: "\e96a"; }

.lnr-pause-circle:before {
  content: "\e96b"; }

.lnr-next-circle:before {
  content: "\e96c"; }

.lnr-last-circle:before {
  content: "\e96d"; }

.lnr-forward-circle:before {
  content: "\e96e"; }

.lnr-eject-circle:before {
  content: "\e96f"; }

.lnr-crop:before {
  content: "\e970"; }

.lnr-frame-expand:before {
  content: "\e971"; }

.lnr-frame-contract:before {
  content: "\e972"; }

.lnr-focus:before {
  content: "\e973"; }

.lnr-transform:before {
  content: "\e974"; }

.lnr-grid:before {
  content: "\e975"; }

.lnr-grid-crossed:before {
  content: "\e976"; }

.lnr-layers:before {
  content: "\e977"; }

.lnr-layers-crossed:before {
  content: "\e978"; }

.lnr-toggle:before {
  content: "\e979"; }

.lnr-rulers:before {
  content: "\e97a"; }

.lnr-ruler:before {
  content: "\e97b"; }

.lnr-funnel:before {
  content: "\e97c"; }

.lnr-flip-horizontal:before {
  content: "\e97d"; }

.lnr-flip-vertical:before {
  content: "\e97e"; }

.lnr-flip-horizontal2:before {
  content: "\e97f"; }

.lnr-flip-vertical2:before {
  content: "\e980"; }

.lnr-angle:before {
  content: "\e981"; }

.lnr-angle2:before {
  content: "\e982"; }

.lnr-subtract:before {
  content: "\e983"; }

.lnr-combine:before {
  content: "\e984"; }

.lnr-intersect:before {
  content: "\e985"; }

.lnr-exclude:before {
  content: "\e986"; }

.lnr-align-center-vertical:before {
  content: "\e987"; }

.lnr-align-right:before {
  content: "\e988"; }

.lnr-align-bottom:before {
  content: "\e989"; }

.lnr-align-left:before {
  content: "\e98a"; }

.lnr-align-center-horizontal:before {
  content: "\e98b"; }

.lnr-align-top:before {
  content: "\e98c"; }

.lnr-square:before {
  content: "\e98d"; }

.lnr-plus-square:before {
  content: "\e98e"; }

.lnr-minus-square:before {
  content: "\e98f"; }

.lnr-percent-square:before {
  content: "\e990"; }

.lnr-arrow-up-square:before {
  content: "\e991"; }

.lnr-arrow-down-square:before {
  content: "\e992"; }

.lnr-arrow-left-square:before {
  content: "\e993"; }

.lnr-arrow-right-square:before {
  content: "\e994"; }

.lnr-chevron-up-square:before {
  content: "\e995"; }

.lnr-chevron-down-square:before {
  content: "\e996"; }

.lnr-chevron-left-square:before {
  content: "\e997"; }

.lnr-chevron-right-square:before {
  content: "\e998"; }

.lnr-check-square:before {
  content: "\e999"; }

.lnr-cross-square:before {
  content: "\e99a"; }

.lnr-menu-square:before {
  content: "\e99b"; }

.lnr-prohibited:before {
  content: "\e99c"; }

.lnr-circle:before {
  content: "\e99d"; }

.lnr-radio-button:before {
  content: "\e99e"; }

.lnr-ligature:before {
  content: "\e99f"; }

.lnr-text-format:before {
  content: "\e9a0"; }

.lnr-text-format-remove:before {
  content: "\e9a1"; }

.lnr-text-size:before {
  content: "\e9a2"; }

.lnr-bold:before {
  content: "\e9a3"; }

.lnr-italic:before {
  content: "\e9a4"; }

.lnr-underline:before {
  content: "\e9a5"; }

.lnr-strikethrough:before {
  content: "\e9a6"; }

.lnr-highlight:before {
  content: "\e9a7"; }

.lnr-text-align-left:before {
  content: "\e9a8"; }

.lnr-text-align-center:before {
  content: "\e9a9"; }

.lnr-text-align-right:before {
  content: "\e9aa"; }

.lnr-text-align-justify:before {
  content: "\e9ab"; }

.lnr-line-spacing:before {
  content: "\e9ac"; }

.lnr-indent-increase:before {
  content: "\e9ad"; }

.lnr-indent-decrease:before {
  content: "\e9ae"; }

.lnr-text-wrap:before {
  content: "\e9af"; }

.lnr-pilcrow:before {
  content: "\e9b0"; }

.lnr-direction-ltr:before {
  content: "\e9b1"; }

.lnr-direction-rtl:before {
  content: "\e9b2"; }

.lnr-page-break:before {
  content: "\e9b3"; }

.lnr-page-break2:before {
  content: "\e9b4"; }

.lnr-sort-alpha-asc:before {
  content: "\e9b5"; }

.lnr-sort-alpha-desc:before {
  content: "\e9b6"; }

.lnr-sort-numeric-asc:before {
  content: "\e9b7"; }

.lnr-sort-numeric-desc:before {
  content: "\e9b8"; }

.lnr-sort-amount-asc:before {
  content: "\e9b9"; }

.lnr-sort-amount-desc:before {
  content: "\e9ba"; }

.lnr-sort-time-asc:before {
  content: "\e9bb"; }

.lnr-sort-time-desc:before {
  content: "\e9bc"; }

.lnr-sigma:before {
  content: "\e9bd"; }

.lnr-pencil-line:before {
  content: "\e9be"; }

.lnr-hand:before {
  content: "\e9bf"; }

.lnr-pointer-up:before {
  content: "\e9c0"; }

.lnr-pointer-right:before {
  content: "\e9c1"; }

.lnr-pointer-down:before {
  content: "\e9c2"; }

.lnr-pointer-left:before {
  content: "\e9c3"; }

.lnr-finger-tap:before {
  content: "\e9c4"; }

.lnr-fingers-tap:before {
  content: "\e9c5"; }

.lnr-reminder:before {
  content: "\e9c6"; }

.lnr-fingers-crossed:before {
  content: "\e9c7"; }

.lnr-fingers-victory:before {
  content: "\e9c8"; }

.lnr-gesture-zoom:before {
  content: "\e9c9"; }

.lnr-gesture-pinch:before {
  content: "\e9ca"; }

.lnr-fingers-scroll-horizontal:before {
  content: "\e9cb"; }

.lnr-fingers-scroll-vertical:before {
  content: "\e9cc"; }

.lnr-fingers-scroll-left:before {
  content: "\e9cd"; }

.lnr-fingers-scroll-right:before {
  content: "\e9ce"; }

.lnr-hand2:before {
  content: "\e9cf"; }

.lnr-pointer-up2:before {
  content: "\e9d0"; }

.lnr-pointer-right2:before {
  content: "\e9d1"; }

.lnr-pointer-down2:before {
  content: "\e9d2"; }

.lnr-pointer-left2:before {
  content: "\e9d3"; }

.lnr-finger-tap2:before {
  content: "\e9d4"; }

.lnr-fingers-tap2:before {
  content: "\e9d5"; }

.lnr-reminder2:before {
  content: "\e9d6"; }

.lnr-gesture-zoom2:before {
  content: "\e9d7"; }

.lnr-gesture-pinch2:before {
  content: "\e9d8"; }

.lnr-fingers-scroll-horizontal2:before {
  content: "\e9d9"; }

.lnr-fingers-scroll-vertical2:before {
  content: "\e9da"; }

.lnr-fingers-scroll-left2:before {
  content: "\e9db"; }

.lnr-fingers-scroll-right2:before {
  content: "\e9dc"; }

.lnr-fingers-scroll-vertical3:before {
  content: "\e9dd"; }

.lnr-border-style:before {
  content: "\e9de"; }

.lnr-border-all:before {
  content: "\e9df"; }

.lnr-border-outer:before {
  content: "\e9e0"; }

.lnr-border-inner:before {
  content: "\e9e1"; }

.lnr-border-top:before {
  content: "\e9e2"; }

.lnr-border-horizontal:before {
  content: "\e9e3"; }

.lnr-border-bottom:before {
  content: "\e9e4"; }

.lnr-border-left:before {
  content: "\e9e5"; }

.lnr-border-vertical:before {
  content: "\e9e6"; }

.lnr-border-right:before {
  content: "\e9e7"; }

.lnr-border-none:before {
  content: "\e9e8"; }

.lnr-ellipsis:before {
  content: "\e9e9"; }

.lnr-uni21:before {
  content: "\21"; }

.lnr-uni22:before {
  content: "\22"; }

.lnr-uni23:before {
  content: "\23"; }

.lnr-uni24:before {
  content: "\24"; }

.lnr-uni25:before {
  content: "\25"; }

.lnr-uni26:before {
  content: "\26"; }

.lnr-uni27:before {
  content: "\27"; }

.lnr-uni28:before {
  content: "\28"; }

.lnr-uni29:before {
  content: "\29"; }

.lnr-uni2a:before {
  content: "\2a"; }

.lnr-uni2b:before {
  content: "\2b"; }

.lnr-uni2c:before {
  content: "\2c"; }

.lnr-uni2d:before {
  content: "\2d"; }

.lnr-uni2e:before {
  content: "\2e"; }

.lnr-uni2f:before {
  content: "\2f"; }

.lnr-uni30:before {
  content: "\30"; }

.lnr-uni31:before {
  content: "\31"; }

.lnr-uni32:before {
  content: "\32"; }

.lnr-uni33:before {
  content: "\33"; }

.lnr-uni34:before {
  content: "\34"; }

.lnr-uni35:before {
  content: "\35"; }

.lnr-uni36:before {
  content: "\36"; }

.lnr-uni37:before {
  content: "\37"; }

.lnr-uni38:before {
  content: "\38"; }

.lnr-uni39:before {
  content: "\39"; }

.lnr-uni3a:before {
  content: "\3a"; }

.lnr-uni3b:before {
  content: "\3b"; }

.lnr-uni3c:before {
  content: "\3c"; }

.lnr-uni3d:before {
  content: "\3d"; }

.lnr-uni3e:before {
  content: "\3e"; }

.lnr-uni3f:before {
  content: "\3f"; }

.lnr-uni40:before {
  content: "\40"; }

.lnr-uni41:before {
  content: "\41"; }

.lnr-uni42:before {
  content: "\42"; }

.lnr-uni43:before {
  content: "\43"; }

.lnr-uni44:before {
  content: "\44"; }

.lnr-uni45:before {
  content: "\45"; }

.lnr-uni46:before {
  content: "\46"; }

.lnr-uni47:before {
  content: "\47"; }

.lnr-uni48:before {
  content: "\48"; }

.lnr-uni49:before {
  content: "\49"; }

.lnr-uni4a:before {
  content: "\4a"; }

.lnr-uni4b:before {
  content: "\4b"; }

.lnr-uni4c:before {
  content: "\4c"; }

.lnr-uni4d:before {
  content: "\4d"; }

.lnr-uni4e:before {
  content: "\4e"; }

.lnr-uni4f:before {
  content: "\4f"; }

.lnr-uni50:before {
  content: "\50"; }

.lnr-uni51:before {
  content: "\51"; }

.lnr-uni52:before {
  content: "\52"; }

.lnr-uni53:before {
  content: "\53"; }

.lnr-uni54:before {
  content: "\54"; }

.lnr-uni55:before {
  content: "\55"; }

.lnr-uni56:before {
  content: "\56"; }

.lnr-uni57:before {
  content: "\57"; }

.lnr-uni58:before {
  content: "\58"; }

.lnr-uni59:before {
  content: "\59"; }

.lnr-uni5a:before {
  content: "\5a"; }

.lnr-uni5b:before {
  content: "\5b"; }

.lnr-uni5c:before {
  content: "\5c"; }

.lnr-uni5d:before {
  content: "\5d"; }

.lnr-uni5e:before {
  content: "\5e"; }

.lnr-uni5f:before {
  content: "\5f"; }

.lnr-uni60:before {
  content: "\60"; }

.lnr-uni61:before {
  content: "\61"; }

.lnr-uni62:before {
  content: "\62"; }

.lnr-uni63:before {
  content: "\63"; }

.lnr-uni64:before {
  content: "\64"; }

.lnr-uni65:before {
  content: "\65"; }

.lnr-uni66:before {
  content: "\66"; }

.lnr-uni67:before {
  content: "\67"; }

.lnr-uni68:before {
  content: "\68"; }

.lnr-uni69:before {
  content: "\69"; }

.lnr-uni6a:before {
  content: "\6a"; }

.lnr-uni6b:before {
  content: "\6b"; }

.lnr-uni6c:before {
  content: "\6c"; }

.lnr-uni6d:before {
  content: "\6d"; }

.lnr-uni6e:before {
  content: "\6e"; }

.lnr-uni6f:before {
  content: "\6f"; }

.lnr-uni70:before {
  content: "\70"; }

.lnr-uni71:before {
  content: "\71"; }

.lnr-uni72:before {
  content: "\72"; }

.lnr-uni73:before {
  content: "\73"; }

.lnr-uni74:before {
  content: "\74"; }

.lnr-uni75:before {
  content: "\75"; }

.lnr-uni76:before {
  content: "\76"; }

.lnr-uni77:before {
  content: "\77"; }

.lnr-uni78:before {
  content: "\78"; }

.lnr-uni79:before {
  content: "\79"; }

.lnr-uni7a:before {
  content: "\7a"; }

.lnr-uni7b:before {
  content: "\7b"; }

.lnr-uni7c:before {
  content: "\7c"; }

.lnr-uni7d:before {
  content: "\7d"; }

.lnr-uni7e:before {
  content: "\7e"; }

.lnr-copyright:before {
  content: "\a9"; }

/* Accessibility: hide screen reader texts (and prefer "top" for RTL languages).
Reference: http://blog.rrwd.nl/2015/04/04/the-screen-reader-text-class-why-and-how/ */
.mejs__offscreen {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal; }

.mejs__container {
  background: #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Helvetica', Arial, serif;
  position: relative;
  text-align: left;
  text-indent: 0;
  vertical-align: top; }

.mejs__container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

/* Hide native play button and control bar from iOS to favor plugin button */
.mejs__container video::-webkit-media-controls,
.mejs__container video::-webkit-media-controls-panel,
.mejs__container video::-webkit-media-controls-panel-container,
.mejs__container video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important; }

.mejs__fill-container,
.mejs__fill-container .mejs__container {
  height: 100%;
  width: 100%; }

.mejs__fill-container {
  background: transparent;
  margin: 0 auto;
  overflow: hidden;
  position: relative; }

.mejs__container:focus {
  outline: none; }

.mejs__iframe-overlay {
  height: 100%;
  position: absolute;
  width: 100%; }

.mejs__embed,
.mejs__embed body {
  background: #000;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

.mejs__fullscreen {
  overflow: hidden !important; }

.mejs__container-fullscreen {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000; }

/* Start: LAYERS */
.mejs__background {
  left: 0;
  position: absolute;
  top: 0; }

.mejs__mediaelement {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0; }

.mejs__poster {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 1; }

:root .mejs__poster-img {
  display: none; }

.mejs__poster-img {
  border: 0;
  padding: 0; }

.mejs__overlay {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0; }

.mejs__layer {
  z-index: 1; }

.mejs__overlay-play {
  cursor: pointer; }

.mejs__overlay-button {
  background: url("../images/ui/mejs-controls.svg") no-repeat;
  background-position: 0 -39px;
  height: 80px;
  width: 80px; }

.mejs__overlay:hover > .mejs__overlay-button {
  background-position: -80px -39px; }

.mejs__overlay-loading {
  height: 80px;
  width: 80px; }

.mejs__overlay-loading-bg-img {
  -webkit-animation: mejs__loading-spinner 1s linear infinite;
  animation: mejs__loading-spinner 1s linear infinite;
  background: transparent url("../images/ui/mejs-controls.svg") -160px -40px no-repeat;
  display: block;
  height: 80px;
  width: 80px;
  z-index: 1; }

@-webkit-keyframes mejs__loading-spinner {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes mejs__loading-spinner {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* End: LAYERS */
/* Start: CONTROL BAR */
.mejs__controls {
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  left: 0;
  list-style-type: none;
  margin: 0;
  padding: 0 10px;
  position: absolute;
  width: 100%;
  z-index: 3; }

.mejs__controls:not([style*='display: none']) {
  background: rgba(255, 0, 0, 0.7);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.35)));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.35)); }

.mejs__button,
.mejs__time,
.mejs__time-rail {
  font-size: 10px;
  height: 40px;
  line-height: 10px;
  margin: 0;
  width: 32px; }

.mejs__button > button {
  background: transparent url("../images/ui/mejs-controls.svg");
  border: 0;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  margin: 10px 6px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  text-decoration: none;
  width: 20px; }

/* :focus for accessibility */
.mejs__button > button:focus {
  outline: dotted 1px #999; }

.mejs__container-keyboard-inactive a,
.mejs__container-keyboard-inactive a:focus,
.mejs__container-keyboard-inactive button,
.mejs__container-keyboard-inactive button:focus,
.mejs__container-keyboard-inactive [role=slider],
.mejs__container-keyboard-inactive [role=slider]:focus {
  outline: 0; }

/* End: CONTROL BAR */
/* Start: Time (Current / Duration) */
.mejs__time {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  height: 24px;
  overflow: hidden;
  padding: 16px 6px 0;
  text-align: center;
  width: auto; }

/* End: Time (Current / Duration) */
/* Start: Play/Pause/Stop */
.mejs__play > button {
  background-position: 0 0; }

.mejs__pause > button {
  background-position: -20px 0; }

.mejs__replay > button {
  background-position: -160px 0; }

/* End: Play/Pause/Stop */
/* Start: Progress Bar */
.mejs__time-rail {
  direction: ltr;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 40px;
  margin: 0 10px;
  padding-top: 10px;
  position: relative; }

.mejs__time-total,
.mejs__time-buffering,
.mejs__time-loaded,
.mejs__time-current,
.mejs__time-float,
.mejs__time-hovered,
.mejs__time-float-current,
.mejs__time-float-corner,
.mejs__time-marker {
  -webkit-border-radius: 2px;
          border-radius: 2px;
  cursor: pointer;
  display: block;
  height: 10px;
  position: absolute; }

.mejs__time-total {
  background: rgba(255, 255, 255, 0.3);
  margin: 5px 0 0;
  width: 100%; }

.mejs__time-buffering {
  -webkit-animation: buffering-stripes 2s linear infinite;
  animation: buffering-stripes 2s linear infinite;
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
  background-size: 15px 15px;
  width: 100%; }

@-webkit-keyframes buffering-stripes {
  from {
    background-position: 0 0; }
  to {
    background-position: 30px 0; } }

@keyframes buffering-stripes {
  from {
    background-position: 0 0; }
  to {
    background-position: 30px 0; } }

.mejs__time-loaded {
  background: rgba(255, 255, 255, 0.3); }

.mejs__time-current,
.mejs__time-handle-content {
  background: rgba(255, 255, 255, 0.9); }

.mejs__time-hovered {
  background: rgba(255, 255, 255, 0.5);
  z-index: 10; }

.mejs__time-hovered.negative {
  background: rgba(0, 0, 0, 0.2); }

.mejs__time-current,
.mejs__time-buffering,
.mejs__time-loaded,
.mejs__time-hovered {
  left: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: 0.15s ease-in all;
  transition: 0.15s ease-in all;
  width: 100%; }

.mejs__time-buffering {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1); }

.mejs__time-hovered {
  -webkit-transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
  transition: height 0.1s cubic-bezier(0.44, 0, 1, 1); }

.mejs__time-hovered.no-hover {
  -webkit-transform: scaleX(0) !important;
  -ms-transform: scaleX(0) !important;
  transform: scaleX(0) !important; }

.mejs__time-handle,
.mejs__time-handle-content {
  border: 4px solid transparent;
  cursor: pointer;
  left: 0;
  position: absolute;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  z-index: 11; }

.mejs__time-handle-content {
  border: 4px solid rgba(255, 255, 255, 0.9);
  -webkit-border-radius: 50%;
          border-radius: 50%;
  height: 10px;
  left: -7px;
  top: -4px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  width: 10px; }

.mejs__time-rail:hover .mejs__time-handle-content,
.mejs__time-rail .mejs__time-handle-content:focus,
.mejs__time-rail .mejs__time-handle-content:active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.mejs__time-float {
  background: #eee;
  border: solid 1px #333;
  bottom: 100%;
  color: #111;
  display: none;
  height: 17px;
  margin-bottom: 9px;
  position: absolute;
  text-align: center;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 36px; }

.mejs__time-float-current {
  display: block;
  left: 0;
  margin: 2px;
  text-align: center;
  width: 30px; }

.mejs__time-float-corner {
  border: solid 5px #eee;
  border-color: #eee transparent transparent;
  -webkit-border-radius: 0;
          border-radius: 0;
  display: block;
  height: 0;
  left: 50%;
  line-height: 0;
  position: absolute;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0; }

.mejs__long-video .mejs__time-float {
  margin-left: -23px;
  width: 64px; }

.mejs__long-video .mejs__time-float-current {
  width: 60px; }

.mejs__broadcast {
  color: #fff;
  height: 10px;
  position: absolute;
  top: 15px;
  width: 100%; }

/* End: Progress Bar */
/* Start: Fullscreen */
.mejs__fullscreen-button > button {
  background-position: -80px 0; }

.mejs__unfullscreen > button {
  background-position: -100px 0; }

/* End: Fullscreen */
/* Start: Mute/Volume */
.mejs__mute > button {
  background-position: -60px 0; }

.mejs__unmute > button {
  background-position: -40px 0; }

.mejs__volume-button {
  position: relative; }

.mejs__volume-button > .mejs__volume-slider {
  background: rgba(50, 50, 50, 0.7);
  -webkit-border-radius: 0;
          border-radius: 0;
  bottom: 100%;
  display: none;
  height: 115px;
  left: 50%;
  margin: 0;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 25px;
  z-index: 1; }

.mejs__volume-button:hover {
  -webkit-border-radius: 0 0 4px 4px;
          border-radius: 0 0 4px 4px; }

.mejs__volume-total {
  background: rgba(255, 255, 255, 0.5);
  height: 100px;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 8px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 2px; }

.mejs__volume-current {
  background: rgba(255, 255, 255, 0.9);
  left: 0;
  margin: 0;
  position: absolute;
  width: 100%; }

.mejs__volume-handle {
  background: rgba(255, 255, 255, 0.9);
  -webkit-border-radius: 1px;
          border-radius: 1px;
  cursor: ns-resize;
  height: 6px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 16px; }

.mejs__horizontal-volume-slider {
  display: block;
  height: 36px;
  position: relative;
  vertical-align: middle;
  width: 56px; }

.mejs__horizontal-volume-total {
  background: rgba(50, 50, 50, 0.8);
  -webkit-border-radius: 2px;
          border-radius: 2px;
  font-size: 1px;
  height: 8px;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 16px;
  width: 50px; }

.mejs__horizontal-volume-current {
  background: rgba(255, 255, 255, 0.8);
  -webkit-border-radius: 2px;
          border-radius: 2px;
  font-size: 1px;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%; }

.mejs__horizontal-volume-handle {
  display: none; }

/* End: Mute/Volume */
/* Start: Track (Captions and Chapters) */
.mejs__captions-button,
.mejs__chapters-button {
  position: relative; }

.mejs__captions-button > button {
  background-position: -140px 0; }

.mejs__chapters-button > button {
  background-position: -180px 0; }

.mejs__captions-button > .mejs__captions-selector,
.mejs__chapters-button > .mejs__chapters-selector {
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  -webkit-border-radius: 0;
          border-radius: 0;
  bottom: 100%;
  margin-right: -43px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 50%;
  visibility: visible;
  width: 86px; }

.mejs__chapters-button > .mejs__chapters-selector {
  margin-right: -55px;
  width: 110px; }

.mejs__captions-selector-list,
.mejs__chapters-selector-list {
  list-style-type: none !important;
  margin: 0;
  overflow: hidden;
  padding: 0; }

.mejs__captions-selector-list-item,
.mejs__chapters-selector-list-item {
  color: #fff;
  cursor: pointer;
  display: block;
  list-style-type: none !important;
  margin: 0 0 6px;
  overflow: hidden;
  padding: 0 10px; }

.mejs__captions-selector-list-item:hover,
.mejs__chapters-selector-list-item:hover {
  background-color: #c8c8c8 !important;
  background-color: rgba(255, 255, 255, 0.4) !important; }

.mejs__captions-selector-input,
.mejs__chapters-selector-input {
  clear: both;
  float: left;
  left: -1000px;
  margin: 3px 3px 0 5px;
  position: absolute; }

.mejs__captions-selector-label,
.mejs__chapters-selector-label {
  cursor: pointer;
  float: left;
  font-size: 10px;
  line-height: 15px;
  padding: 4px 0 0; }

.mejs__captions-selected,
.mejs__chapters-selected {
  color: #21f8f8; }

.mejs__captions-translations {
  font-size: 10px;
  margin: 0 0 5px; }

.mejs__captions-layer {
  bottom: 0;
  color: #fff;
  font-size: 16px;
  left: 0;
  line-height: 20px;
  position: absolute;
  text-align: center; }

.mejs__captions-layer a {
  color: #fff;
  text-decoration: underline; }

.mejs__captions-layer[lang=ar] {
  font-size: 20px;
  font-weight: normal; }

.mejs__captions-position {
  bottom: 15px;
  left: 0;
  position: absolute;
  width: 100%; }

.mejs__captions-position-hover {
  bottom: 35px; }

.mejs__captions-text,
.mejs__captions-text * {
  background: rgba(20, 20, 20, 0.5);
  -webkit-box-shadow: 5px 0 0 rgba(20, 20, 20, 0.5), -5px 0 0 rgba(20, 20, 20, 0.5);
          box-shadow: 5px 0 0 rgba(20, 20, 20, 0.5), -5px 0 0 rgba(20, 20, 20, 0.5);
  padding: 0;
  white-space: pre-wrap; }

.mejs__container.mejs__hide-cues video::-webkit-media-text-track-container {
  display: none; }

/* End: Track (Captions and Chapters) */
/* Start: Error */
.mejs__overlay-error {
  position: relative; }

.mejs__overlay-error > img {
  left: 0;
  position: absolute;
  top: 0;
  z-index: -1; }

.mejs__cannotplay,
.mejs__cannotplay a {
  color: #fff;
  font-size: 0.8em; }

.mejs__cannotplay {
  position: relative; }

.mejs__cannotplay p,
.mejs__cannotplay a {
  display: inline-block;
  padding: 0 15px;
  width: 100%; }

/* End: Error */
/*!
 * fullPage 2.9.4
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: transparent; }

#superContainer {
  height: 100%;
  position: relative;
  /* Touch detection for Windows 8 */
  -ms-touch-action: none;
  /* IE 11 on Windows Phone 8.1*/
  touch-action: none; }

.fp-section {
  position: relative;
  -webkit-box-sizing: border-box;
  /* Safari<=5 Android<=3 */
  /* <=28 */
  box-sizing: border-box; }

.fp-slide {
  float: left; }

.fp-slide, .fp-slidesContainer {
  height: 100%;
  display: block; }

.fp-slides {
  z-index: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  /* Safari<=6 Android<=4.3 */
  transition: all 0.3s ease-out; }

.fp-section.fp-table, .fp-slide.fp-table {
  display: table;
  table-layout: fixed;
  width: 100%; }

.fp-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%; }

.fp-slidesContainer {
  float: left;
  position: relative; }

.fp-controlArrow {
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */
  position: absolute;
  z-index: 4;
  top: 50%;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -38px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.fp-controlArrow.fp-prev {
  left: 15px;
  width: 0;
  border-width: 38.5px 34px 38.5px 0;
  border-color: transparent #fff transparent transparent; }

.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff; }

.fp-scrollable {
  overflow: hidden;
  position: relative; }

.fp-scroller {
  overflow: hidden; }

.iScrollIndicator {
  border: 0 !important; }

.fp-notransition {
  -webkit-transition: none !important;
  transition: none !important; }

#fp-nav {
  position: fixed;
  z-index: 100;
  margin-top: -32px;
  top: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0); }

#fp-nav.right {
  right: 17px; }

#fp-nav.left {
  left: 17px; }

.fp-slidesNav {
  position: absolute;
  z-index: 4;
  left: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.fp-slidesNav.bottom {
  bottom: 17px; }

.fp-slidesNav.top {
  top: 17px; }

#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0; }

#fp-nav ul li,
.fp-slidesNav ul li {
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
  position: relative; }

.fp-slidesNav ul li {
  display: inline-block; }

#fp-nav ul li a,
.fp-slidesNav ul li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none; }

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  -webkit-border-radius: 100%;
          border-radius: 100%; }

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  -webkit-border-radius: 50%;
          border-radius: 50%;
  position: absolute;
  z-index: 1;
  height: 4px;
  width: 4px;
  border: 0;
  background: #333;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  width: 10px;
  height: 10px;
  margin: -5px 0px 0px -5px; }

#fp-nav ul li .fp-tooltip {
  position: absolute;
  top: -2px;
  color: #fff;
  font-size: 14px;
  font-family: arial, helvetica, sans-serif;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  display: block;
  opacity: 0;
  width: 0;
  cursor: pointer; }

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: auto;
  opacity: 1; }

#fp-nav ul li .fp-tooltip.right {
  right: 20px; }

#fp-nav ul li .fp-tooltip.left {
  left: 20px; }

.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
  height: auto !important; }

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
  height: auto !important; }

/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/
/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/
/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/
.mCustomScrollbar {
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
  /* direct pointer events to js */ }

.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
  -ms-touch-action: auto;
  touch-action: auto; }

.mCustomScrollBox {
  /* contains plugin's markup */
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr; }

.mCSB_container {
  /* contains the original content */
  overflow: hidden;
  width: auto;
  height: auto; }

/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_inside > .mCSB_container {
  margin-right: 30px; }

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0; }

/* non-visible scrollbar */
.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px; }

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0; }

/* RTL direction/left-side scrollbar */
.mCSB_scrollTools {
  /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0; }

.mCSB_outside + .mCSB_scrollTools {
  right: -26px; }

/* scrollbar position: outside */
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  /* RTL direction/left-side scrollbar */
  right: auto;
  left: 0; }

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -26px; }

/* RTL direction/left-side scrollbar (scrollbar position: outside) */
.mCSB_scrollTools .mCSB_draggerContainer {
  /* contains the draggable element and dragger rail markup */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto; }

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0; }

.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  -webkit-border-radius: 16px;
  border-radius: 16px; }

.mCSB_scrollTools .mCSB_dragger {
  /* the draggable element */
  cursor: pointer;
  width: 100%;
  height: 30px;
  /* minimum dragger height */
  z-index: 1; }

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  /* the dragger element */
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  text-align: center; }

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 12px;
  /* auto-expanded scrollbar */ }

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 8px;
  /* auto-expanded scrollbar */ }

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer; }

.mCSB_scrollTools .mCSB_buttonDown {
  bottom: 0; }

/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-bottom: 30px; }

.mCSB_horizontal.mCSB_outside > .mCSB_container {
  min-height: 100%; }

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0; }

/* non-visible scrollbar */
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  width: auto;
  height: 16px;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0; }

.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: -26px; }

/* scrollbar position: outside */
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
  margin: 0 20px; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 2px;
  margin: 7px 0; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 30px;
  /* minimum dragger width */
  height: 100%;
  left: 0; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto; }

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  /* auto-expanded scrollbar */
  margin: 2px auto; }

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 8px;
  /* auto-expanded scrollbar */
  margin: 4px 0; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  left: 0; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  right: 0; }

/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_container_wrapper {
  position: absolute;
  height: auto;
  width: auto;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 30px;
  margin-bottom: 30px; }

.mCSB_container_wrapper > .mCSB_container {
  padding-right: 30px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 20px; }

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 20px; }

/* non-visible horizontal scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 0; }

/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 0; }

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 20px; }

/* non-visible scrollbar/RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 0; }

.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px; }

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
  padding-right: 0; }

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
  padding-bottom: 0; }

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
  /* non-visible scrollbar */
  margin-left: 0; }

/* non-visible horizontal scrollbar */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0; }

/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: opacity .2s ease-in-out, background-color .2s ease-in-out; }

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
  -webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s,  margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,  margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: width .2s ease-out .2s, height .2s ease-out .2s,  margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,  margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out; }

/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/
/* 
	----------------------------------------
	6.1 THEMES 
	----------------------------------------
	*/
/* default theme ("light") */
.mCSB_scrollTools {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)"; }

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)"; }

.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)"; }

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)"; }

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)"; }

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
  filter: "alpha(opacity=85)";
  -ms-filter: "alpha(opacity=85)"; }

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)"; }

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  background-image: url(mCSB_buttons.png);
  /* css sprites */
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)"; }

.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 0;
  /* 
		sprites locations 
		light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
		dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
		*/ }

.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -20px;
  /* 
		sprites locations
		light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
		dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
		*/ }

.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -40px;
  /* 
		sprites locations 
		light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
		dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
		*/ }

.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -56px;
  /* 
		sprites locations 
		light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
		dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
		*/ }

.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)"; }

.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
  opacity: 0.9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)"; }

/* theme: "dark" */
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15); }

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75); }

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0; }

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px; }

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px; }

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px; }

/* ---------------------------------------- */
/* theme: "light-2", "dark-2" */
.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 1px;
  border-radius: 1px; }

.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 1px;
  border-radius: 1px; }

.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto; }

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85); }

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9); }

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px 0; }

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -20px; }

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -40px; }

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -56px; }

/* theme: "dark-2" */
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 1px;
  border-radius: 1px; }

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-border-radius: 1px;
  border-radius: 1px; }

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px 0; }

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -20px; }

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -40px; }

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -56px; }

/* ---------------------------------------- */
/* theme: "light-thick", "dark-thick" */
.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 2px;
  border-radius: 2px; }

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 2px;
  border-radius: 2px; }

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0; }

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px auto; }

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85); }

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9); }

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px 0; }

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -20px; }

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -40px; }

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -56px; }

/* theme: "dark-thick" */
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 2px;
  border-radius: 2px; }

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-border-radius: 2px;
  border-radius: 2px; }

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px 0; }

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -20px; }

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -40px; }

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -56px; }

/* ---------------------------------------- */
/* theme: "light-thin", "dark-thin" */
.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1); }

.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px; }

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%; }

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 2px;
  margin: 7px auto; }

/* theme "dark-thin" */
.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15); }

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75); }

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0; }

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px; }

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px; }

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px; }

/* ---------------------------------------- */
/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.15); }

.mCS-rounded.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger {
  height: 14px; }

.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 14px;
  margin: 0 1px; }

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 14px; }

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 1px 0; }

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 16px;
  /* auto-expanded scrollbar */
  height: 16px;
  margin: -1px 0; }

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 4px;
  /* auto-expanded scrollbar */ }

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 16px;
  /* auto-expanded scrollbar */
  width: 16px;
  margin: 0 -1px; }

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 4px;
  /* auto-expanded scrollbar */
  margin: 6px 0; }

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 -72px; }

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -92px; }

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -112px; }

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -128px; }

/* theme "rounded-dark", "rounded-dots-dark" */
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75); }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15); }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px -72px; }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -92px; }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -112px; }

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -128px; }

/* theme "rounded-dots", "rounded-dots-dark" */
.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail {
  width: 4px; }

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  background-color: transparent;
  background-position: center; }

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
  background-repeat: repeat-y;
  opacity: 0.3;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)"; }

.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
  background-repeat: repeat-x; }

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px -72px; }

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -92px; }

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -112px; }

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -128px; }

/* theme "rounded-dots-dark" */
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII="); }

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px -72px; }

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -92px; }

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -112px; }

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -128px; }

/* ---------------------------------------- */
/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-y;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%); }

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%); }

/* theme "3d", "3d-dark" */
.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 70px; }

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 70px; }

.mCS-3d.mCSB_scrollTools,
.mCS-3d-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)"; }

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-border-radius: 16px;
  border-radius: 16px; }

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 8px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2); }

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555; }

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 8px; }

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 8px;
  margin: 4px 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2); }

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 8px;
  margin: 4px auto; }

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px; }

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px; }

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px; }

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px; }

/* theme "3d-dark" */
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1); }

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1); }

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px; }

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px; }

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px; }

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px; }

/* ---------------------------------------- */
/* theme: "3d-thick", "3d-thick-dark" */
.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)"; }

.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  -webkit-border-radius: 7px;
  border-radius: 7px; }

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-border-radius: 5px;
  border-radius: 5px; }

.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical,
.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  right: 1px; }

.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5); }

.mCS-3d-thick.mCSB_scrollTools_horizontal,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  bottom: 1px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5); }

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
  width: 12px;
  margin: 2px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4); }

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555; }

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  width: auto; }

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1); }

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent; }

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px; }

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px; }

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px; }

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px; }

/* theme: "3d-thick-dark" */
.mCS-3d-thick-dark.mCSB_scrollTools {
  -webkit-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2); }

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2); }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2); }

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2); }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #777; }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #fff;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1); }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent; }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px; }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px; }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px; }

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px; }

/* ---------------------------------------- */
/* theme: "minimal", "minimal-dark" */
.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  right: 0;
  margin: 12px 0; }

.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: 0;
  margin: 0 12px; }

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  left: 0;
  right: auto; }

.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent; }

.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 50px; }

.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 50px; }

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)"; }

.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)"; }

/* theme: "minimal-dark" */
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)"; }

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)"; }

/* ---------------------------------------- */
/* theme "light-3", "dark-3" */
.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  width: 6px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2); }

.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px; }

.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 6px;
  margin: 5px 0; }

.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 12px; }

.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 12px;
  margin: 2px 0; }

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px; }

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px; }

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px; }

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px; }

/* theme "dark-3" */
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75); }

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1); }

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px; }

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px; }

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px; }

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px; }

/* ---------------------------------------- */
/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
.mCS-inset.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2); }

.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0; }

.mCS-inset.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px; }

.mCS-inset.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px; }

.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px; }

.mCS-inset.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px; }

/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75); }

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1); }

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px; }

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px; }

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px; }

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px; }

/* theme "inset-2", "inset-2-dark" */
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  border-color: #000;
  border-color: rgba(0, 0, 0, 0.2); }

/* theme "inset-3", "inset-3-dark" */
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6); }

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6); }

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75); }

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9); }

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75); }

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85); }

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9); }

/* ---------------------------------------- */
/*!
 * # Semantic UI 2.2.10 - Dropdown
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */
/*******************************
            Dropdown
*******************************/
.ui.dropdown {
  cursor: pointer;
  position: relative;
  display: inline-block;
  outline: none;
  text-align: left;
  -webkit-transition: box-shadow 0.1s ease, width 0.1s ease;
  -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: box-shadow 0.1s ease, width 0.1s ease;
  transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease;
  -webkit-tap-highlight-color: transparent; }

/*******************************
            Content
*******************************/
/*--------------
      Menu
---------------*/
.ui.dropdown .menu {
  cursor: auto;
  position: absolute;
  display: none;
  outline: none;
  top: 100%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  margin: 0em;
  padding: 0em 0em;
  background: #FFFFFF;
  font-size: 1em;
  text-shadow: none;
  text-align: left;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
          box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
  border: 1px solid rgba(34, 36, 38, 0.15);
  -webkit-border-radius: 0.28571429rem;
          border-radius: 0.28571429rem;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  z-index: 11;
  will-change: transform, opacity; }

.ui.dropdown .menu > * {
  white-space: nowrap; }

/*--------------
  Hidden Input
---------------*/
.ui.dropdown > input:not(.search):first-child,
.ui.dropdown > select {
  display: none !important; }

/*--------------
 Dropdown Icon
---------------*/
.ui.dropdown > .dropdown.icon {
  position: relative;
  width: auto;
  font-size: 0.85714286em;
  margin: 0em 0em 0em 1em; }

.ui.dropdown .menu > .item .dropdown.icon {
  width: auto;
  float: right;
  margin: 0em 0em 0em 1em; }

.ui.dropdown .menu > .item .dropdown.icon + .text {
  margin-right: 1em; }

/*--------------
      Text
---------------*/
.ui.dropdown > .text {
  display: inline-block;
  -webkit-transition: none;
  transition: none; }

/*--------------
    Menu Item
---------------*/
.ui.dropdown .menu > .item {
  position: relative;
  cursor: pointer;
  display: block;
  border: none;
  height: auto;
  text-align: left;
  border-top: none;
  line-height: 1em;
  color: rgba(0, 0, 0, 0.87);
  padding: 1em;
  font-size: 1rem;
  text-transform: none;
  font-weight: normal;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-touch-callout: none; }

.ui.dropdown .menu > .item:first-child {
  border-top-width: 0px; }

/*--------------
  Floated Content
---------------*/
.ui.dropdown > .text > [class*="right floated"],
.ui.dropdown .menu .item > [class*="right floated"] {
  float: right !important;
  margin-right: 0em !important;
  margin-left: 1em !important; }

.ui.dropdown > .text > [class*="left floated"],
.ui.dropdown .menu .item > [class*="left floated"] {
  float: left !important;
  margin-left: 0em !important;
  margin-right: 1em !important; }

.ui.dropdown .menu .item > .icon.floated,
.ui.dropdown .menu .item > .flag.floated,
.ui.dropdown .menu .item > .image.floated,
.ui.dropdown .menu .item > img.floated {
  margin-top: 0em; }

/*--------------
  Menu Divider
---------------*/
.ui.dropdown .menu > .header {
  margin: 1rem 0rem 0.75rem;
  padding: 0em 1.14285714rem;
  color: rgba(0, 0, 0, 0.85);
  font-size: 0.78571429em;
  font-weight: bold;
  text-transform: uppercase; }

.ui.dropdown .menu > .divider {
  border-top: 1px solid rgba(34, 36, 38, 0.1);
  height: 0em;
  margin: 0.5em 0em; }

.ui.dropdown .menu > .input {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 1.14285714rem 0.78571429rem;
  min-width: 10rem; }

.ui.dropdown .menu > .header + .input {
  margin-top: 0em; }

.ui.dropdown .menu > .input:not(.transparent) input {
  padding: 0.5em 1em; }

.ui.dropdown .menu > .input:not(.transparent) .button,
.ui.dropdown .menu > .input:not(.transparent) .icon,
.ui.dropdown .menu > .input:not(.transparent) .label {
  padding-top: 0.5em;
  padding-bottom: 0.5em; }

/*-----------------
  Item Description
-------------------*/
.ui.dropdown > .text > .description,
.ui.dropdown .menu > .item > .description {
  float: right;
  margin: 0em 0em 0em 1em;
  color: rgba(0, 0, 0, 0.4); }

/*-----------------
       Message
-------------------*/
.ui.dropdown .menu > .message {
  padding: 0.78571429rem 1.14285714rem;
  font-weight: normal; }

.ui.dropdown .menu > .message:not(.ui) {
  color: rgba(0, 0, 0, 0.4); }

/*--------------
    Sub Menu
---------------*/
.ui.dropdown .menu .menu {
  top: 0% !important;
  left: 100% !important;
  right: auto !important;
  margin: 0em 0em 0em -0.5em !important;
  -webkit-border-radius: 0.28571429rem !important;
          border-radius: 0.28571429rem !important;
  z-index: 21 !important; }

/* Hide Arrow */
.ui.dropdown .menu .menu:after {
  display: none; }

/*--------------
   Sub Elements
---------------*/
/* Icons / Flags / Labels / Image */
.ui.dropdown > .text > .icon,
.ui.dropdown > .text > .label,
.ui.dropdown > .text > .flag,
.ui.dropdown > .text > img,
.ui.dropdown > .text > .image {
  margin-top: 0em; }

.ui.dropdown .menu > .item > .icon,
.ui.dropdown .menu > .item > .label,
.ui.dropdown .menu > .item > .flag,
.ui.dropdown .menu > .item > .image,
.ui.dropdown .menu > .item > img {
  margin-top: 0em; }

.ui.dropdown > .text > .icon,
.ui.dropdown > .text > .label,
.ui.dropdown > .text > .flag,
.ui.dropdown > .text > img,
.ui.dropdown > .text > .image,
.ui.dropdown .menu > .item > .icon,
.ui.dropdown .menu > .item > .label,
.ui.dropdown .menu > .item > .flag,
.ui.dropdown .menu > .item > .image,
.ui.dropdown .menu > .item > img {
  margin-left: 0em;
  float: none;
  margin-right: 0.78571429rem; }

/*--------------
     Image
---------------*/
.ui.dropdown > .text > img,
.ui.dropdown > .text > .image,
.ui.dropdown .menu > .item > .image,
.ui.dropdown .menu > .item > img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  max-height: 2em; }

/*******************************
            Coupling
*******************************/
/*--------------
      Menu
---------------*/
/* Remove Menu Item Divider */
.ui.dropdown .ui.menu > .item:before,
.ui.menu .ui.dropdown .menu > .item:before {
  display: none; }

/* Prevent Menu Item Border */
.ui.menu .ui.dropdown .menu .active.item {
  border-left: none; }

/* Automatically float dropdown menu right on last menu item */
.ui.menu .right.menu .dropdown:last-child .menu,
.ui.menu .right.dropdown.item .menu,
.ui.buttons > .ui.dropdown:last-child .menu {
  left: auto;
  right: 0em; }

/*--------------
      Label
---------------*/
/* Dropdown Menu */
.ui.label.dropdown .menu {
  min-width: 100%; }

/*--------------
     Button
---------------*/
/* No Margin On Icon Button */
.ui.dropdown.icon.button > .dropdown.icon {
  margin: 0em; }

.ui.button.dropdown .menu {
  min-width: 100%; }

/*******************************
              Types
*******************************/
/*--------------
    Selection
---------------*/
/* Displays like a select box */
.ui.selection.dropdown {
  cursor: pointer;
  word-wrap: break-word;
  line-height: 1em;
  white-space: normal;
  outline: 0;
  -webkit-transform: rotateZ(0deg);
  -ms-transform: rotate(0deg);
      transform: rotateZ(0deg);
  min-width: 14em;
  min-height: 2.71428571em;
  background: #FFFFFF;
  display: inline-block;
  padding: 1em;
  color: rgba(0, 0, 0, 0.87);
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid rgba(34, 36, 38, 0.15);
  -webkit-border-radius: 0.28571429rem;
          border-radius: 0.28571429rem;
  -webkit-transition: box-shadow 0.1s ease, width 0.1s ease;
  -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: box-shadow 0.1s ease, width 0.1s ease;
  transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease; }

.ui.selection.dropdown.visible,
.ui.selection.dropdown.active {
  z-index: 10; }

select.ui.dropdown {
  height: 38px;
  padding: 0.5em;
  border: 1px solid rgba(34, 36, 38, 0.15);
  visibility: visible; }

.ui.selection.dropdown > .search.icon,
.ui.selection.dropdown > .delete.icon,
.ui.selection.dropdown > .dropdown.icon {
  cursor: pointer;
  position: absolute;
  width: auto;
  height: auto;
  line-height: 1.21428571em;
  top: 0.78571429em;
  right: 1em;
  z-index: 3;
  margin: -0.78571429em;
  padding: 0.78571429em;
  opacity: 0.8;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease; }

/* Compact */
.ui.compact.selection.dropdown {
  min-width: 0px; }

/*  Selection Menu */
.ui.selection.dropdown .menu {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  border-top-width: 0px !important;
  width: auto;
  outline: none;
  margin: 0px -1px;
  min-width: -webkit-calc(100% +  2px);
  min-width: calc(100% +  2px);
  width: -webkit-calc(100% +  2px);
  width: calc(100% +  2px);
  -webkit-border-radius: 0em 0em 0.28571429rem 0.28571429rem;
          border-radius: 0em 0em 0.28571429rem 0.28571429rem;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
          box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease; }

.ui.selection.dropdown .menu:after,
.ui.selection.dropdown .menu:before {
  display: none; }

/*--------------
    Message
---------------*/
.ui.selection.dropdown .menu > .message {
  padding: 0.78571429rem 1.14285714rem; }

@media only screen and (max-width: 767px) {
  .ui.selection.dropdown .menu {
    max-height: 8.01428571rem; } }

@media only screen and (min-width: 768px) {
  .ui.selection.dropdown .menu {
    max-height: 10.68571429rem; } }

@media only screen and (min-width: 992px) {
  .ui.selection.dropdown .menu {
    max-height: 16.02857143rem; } }

@media only screen and (min-width: 1920px) {
  .ui.selection.dropdown .menu {
    max-height: 21.37142857rem; } }

/* Menu Item */
.ui.selection.dropdown .menu > .item {
  border-top: 1px solid #FAFAFA;
  padding: 1em;
  white-space: normal;
  word-wrap: normal; }

/* User Item */
.ui.selection.dropdown .menu > .hidden.addition.item {
  display: none; }

/* Hover */
.ui.selection.dropdown:hover {
  border-color: rgba(34, 36, 38, 0.35);
  -webkit-box-shadow: none;
          box-shadow: none; }

/* Active */
.ui.selection.active.dropdown {
  border-color: #96C8DA;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
          box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); }

.ui.selection.active.dropdown .menu {
  border-color: #96C8DA;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
          box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); }

/* Focus */
.ui.selection.dropdown:focus {
  border-color: #96C8DA;
  -webkit-box-shadow: none;
          box-shadow: none; }

.ui.selection.dropdown:focus .menu {
  border-color: #96C8DA;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
          box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); }

/* Visible */
.ui.selection.visible.dropdown > .text:not(.default) {
  font-weight: normal;
  color: rgba(0, 0, 0, 0.8); }

/* Visible Hover */
.ui.selection.active.dropdown:hover {
  border-color: #96C8DA;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
          box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); }

.ui.selection.active.dropdown:hover .menu {
  border-color: #96C8DA;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
          box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); }

/* Dropdown Icon */
.ui.active.selection.dropdown > .dropdown.icon,
.ui.visible.selection.dropdown > .dropdown.icon {
  opacity: 1;
  z-index: 3; }

/* Connecting Border */
.ui.active.selection.dropdown {
  -webkit-border-bottom-left-radius: 0em !important;
          border-bottom-left-radius: 0em !important;
  -webkit-border-bottom-right-radius: 0em !important;
          border-bottom-right-radius: 0em !important; }

/* Empty Connecting Border */
.ui.active.empty.selection.dropdown {
  -webkit-border-radius: 0.28571429rem !important;
          border-radius: 0.28571429rem !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important; }

.ui.active.empty.selection.dropdown .menu {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important; }

/*--------------
   Searchable
---------------*/
/* Search Selection */
.ui.search.dropdown {
  min-width: ''; }

/* Search Dropdown */
.ui.search.dropdown > input.search {
  background: none transparent !important;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  cursor: text;
  top: 0em;
  left: 1px;
  width: 100%;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  padding: inherit; }

/* Text Layering */
.ui.search.dropdown > input.search {
  position: absolute;
  z-index: 2; }

.ui.search.dropdown > .text {
  cursor: text;
  position: relative;
  left: 1px;
  z-index: 3; }

/* Search Selection */
.ui.search.selection.dropdown > input.search {
  line-height: 1.21428571em;
  padding: 0.67857143em 2.1em 0.67857143em 1em; }

/* Used to size multi select input to character width */
.ui.search.selection.dropdown > span.sizer {
  line-height: 1.21428571em;
  padding: 0.67857143em 2.1em 0.67857143em 1em;
  display: none;
  white-space: pre; }

/* Active/Visible Search */
.ui.search.dropdown.active > input.search,
.ui.search.dropdown.visible > input.search {
  cursor: auto; }

.ui.search.dropdown.active > .text,
.ui.search.dropdown.visible > .text {
  pointer-events: none; }

/* Filtered Text */
.ui.active.search.dropdown input.search:focus + .text .icon,
.ui.active.search.dropdown input.search:focus + .text .flag {
  opacity: 0.45; }

.ui.active.search.dropdown input.search:focus + .text {
  color: rgba(115, 115, 115, 0.87) !important; }

/* Search Menu */
.ui.search.dropdown .menu {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch; }

@media only screen and (max-width: 767px) {
  .ui.search.dropdown .menu {
    max-height: 8.01428571rem; } }

@media only screen and (min-width: 768px) {
  .ui.search.dropdown .menu {
    max-height: 10.68571429rem; } }

@media only screen and (min-width: 992px) {
  .ui.search.dropdown .menu {
    max-height: 16.02857143rem; } }

@media only screen and (min-width: 1920px) {
  .ui.search.dropdown .menu {
    max-height: 21.37142857rem; } }

/*--------------
    Multiple
---------------*/
/* Multiple Selection */
.ui.multiple.dropdown {
  padding: 0.22619048em 2.1em 0.22619048em 0.35714286em; }

.ui.multiple.dropdown .menu {
  cursor: auto; }

/* Multiple Search Selection */
.ui.multiple.search.dropdown,
.ui.multiple.search.dropdown > input.search {
  cursor: text; }

/* Selection Label */
.ui.multiple.dropdown > .label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  font-size: 1em;
  padding: 0.35714286em 0.78571429em;
  margin: 0.14285714rem 0.28571429rem 0.14285714rem 0em;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
          box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; }

/* Dropdown Icon */
.ui.multiple.dropdown .dropdown.icon {
  margin: '';
  padding: ''; }

/* Text */
.ui.multiple.dropdown > .text {
  position: static;
  padding: 0;
  max-width: 100%;
  margin: 0.45238095em 0em 0.45238095em 0.64285714em;
  line-height: 1.21428571em; }

.ui.multiple.dropdown > .label ~ input.search {
  margin-left: 0.14285714em !important; }

.ui.multiple.dropdown > .label ~ .text {
  display: none; }

/*-----------------
  Multiple Search
-----------------*/
/* Prompt Text */
.ui.multiple.search.dropdown > .text {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: inherit;
  margin: 0.45238095em 0em 0.45238095em 0.64285714em;
  line-height: 1.21428571em; }

.ui.multiple.search.dropdown > .label ~ .text {
  display: none; }

/* Search */
.ui.multiple.search.dropdown > input.search {
  position: static;
  padding: 0;
  max-width: 100%;
  margin: 0.45238095em 0em 0.45238095em 0.64285714em;
  width: 2.2em;
  line-height: 1.21428571em; }

/*--------------
     Inline
---------------*/
.ui.inline.dropdown {
  cursor: pointer;
  display: inline-block;
  color: inherit; }

.ui.inline.dropdown .dropdown.icon {
  margin: 0em 0.5em 0em 0.21428571em;
  vertical-align: baseline; }

.ui.inline.dropdown > .text {
  font-weight: bold; }

.ui.inline.dropdown .menu {
  cursor: auto;
  margin-top: 0.21428571em;
  -webkit-border-radius: 0.28571429rem;
          border-radius: 0.28571429rem; }

/*******************************
            States
*******************************/
/*--------------------
        Active
----------------------*/
/* Menu Item Active */
.ui.dropdown .menu .active.item {
  background: transparent;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.95);
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 12; }

/*--------------------
        Hover
----------------------*/
/* Menu Item Hover */
.ui.dropdown .menu > .item:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.95);
  z-index: 13; }

/*--------------------
       Loading
---------------------*/
.ui.loading.dropdown > i.icon {
  height: 1em !important;
  padding: 1.14285714em 1.07142857em !important; }

.ui.loading.dropdown > i.icon:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  margin: -0.64285714em 0em 0em -0.64285714em;
  width: 1.28571429em;
  height: 1.28571429em;
  -webkit-border-radius: 500rem;
          border-radius: 500rem;
  border: 0.2em solid rgba(0, 0, 0, 0.1); }

.ui.loading.dropdown > i.icon:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  -webkit-box-shadow: 0px 0px 0px 1px transparent;
          box-shadow: 0px 0px 0px 1px transparent;
  margin: -0.64285714em 0em 0em -0.64285714em;
  width: 1.28571429em;
  height: 1.28571429em;
  -webkit-animation: dropdown-spin 0.6s linear;
  animation: dropdown-spin 0.6s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-border-radius: 500rem;
          border-radius: 500rem;
  border-color: #767676 transparent transparent;
  border-style: solid;
  border-width: 0.2em; }

/* Coupling */
.ui.loading.dropdown.button > i.icon:before,
.ui.loading.dropdown.button > i.icon:after {
  display: none; }

@-webkit-keyframes dropdown-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes dropdown-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/*--------------------
     Default Text
----------------------*/
.ui.dropdown:not(.button) > .default.text,
.ui.default.dropdown:not(.button) > .text {
  color: rgba(191, 191, 191, 0.87); }

.ui.dropdown:not(.button) > input:focus + .default.text,
.ui.default.dropdown:not(.button) > input:focus + .text {
  color: rgba(115, 115, 115, 0.87); }

/*--------------------
        Loading
----------------------*/
.ui.loading.dropdown > .text {
  -webkit-transition: none;
  transition: none; }

/* Used To Check Position */
.ui.dropdown .loading.menu {
  display: block;
  visibility: hidden;
  z-index: -1; }

/*--------------------
    Keyboard Select
----------------------*/
/* Selected Item */
.ui.dropdown.selected,
.ui.dropdown .menu .selected.item {
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.95); }

/*--------------------
    Search Filtered
----------------------*/
/* Filtered Item */
.ui.dropdown > .filtered.text {
  visibility: hidden; }

.ui.dropdown .filtered.item {
  display: none !important; }

/*--------------------
        Error
----------------------*/
.ui.dropdown.error,
.ui.dropdown.error > .text,
.ui.dropdown.error > .default.text {
  color: #9F3A38; }

.ui.selection.dropdown.error {
  background: #FFF6F6;
  border-color: #E0B4B4; }

.ui.selection.dropdown.error:hover {
  border-color: #E0B4B4; }

.ui.dropdown.error > .menu,
.ui.dropdown.error > .menu .menu {
  border-color: #E0B4B4; }

.ui.dropdown.error > .menu > .item {
  color: #9F3A38; }

.ui.multiple.selection.error.dropdown > .label {
  border-color: #E0B4B4; }

/* Item Hover */
.ui.dropdown.error > .menu > .item:hover {
  background-color: #FFF2F2; }

/* Item Active */
.ui.dropdown.error > .menu .active.item {
  background-color: #FDCFCF; }

/*--------------------
        Disabled
----------------------*/
/* Disabled */
.ui.disabled.dropdown,
.ui.dropdown .menu > .disabled.item {
  cursor: default;
  pointer-events: none;
  opacity: 0.45; }

/*******************************
           Variations
*******************************/
/*--------------
    Direction
---------------*/
/* Flyout Direction */
.ui.dropdown .menu {
  left: 0px; }

/* Default Side (Right) */
.ui.dropdown .right.menu > .menu,
.ui.dropdown .menu .right.menu {
  left: 100% !important;
  right: auto !important;
  -webkit-border-radius: 0.28571429rem !important;
          border-radius: 0.28571429rem !important; }

/* Left Flyout Menu */
.ui.dropdown > .left.menu .menu,
.ui.dropdown .menu .left.menu {
  left: auto !important;
  right: 100% !important;
  -webkit-border-radius: 0.28571429rem !important;
          border-radius: 0.28571429rem !important; }

.ui.dropdown .item .left.dropdown.icon,
.ui.dropdown .left.menu .item .dropdown.icon {
  width: auto;
  float: left;
  margin: 0em 0.78571429rem 0em 0em; }

.ui.dropdown .item .left.dropdown.icon,
.ui.dropdown .left.menu .item .dropdown.icon {
  width: auto;
  float: left;
  margin: 0em 0.78571429rem 0em 0em; }

.ui.dropdown .item .left.dropdown.icon + .text,
.ui.dropdown .left.menu .item .dropdown.icon + .text {
  margin-left: 1em; }

/*--------------
     Upward
---------------*/
/* Upward Main Menu */
.ui.upward.dropdown > .menu {
  top: auto;
  bottom: 100%;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
  -webkit-border-radius: 0.28571429rem 0.28571429rem 0em 0em;
          border-radius: 0.28571429rem 0.28571429rem 0em 0em; }

/* Upward Sub Menu */
.ui.dropdown .upward.menu {
  top: auto !important;
  bottom: 0 !important; }

/* Active Upward */
.ui.simple.upward.active.dropdown,
.ui.simple.upward.dropdown:hover {
  -webkit-border-radius: 0.28571429rem 0.28571429rem 0em 0em !important;
          border-radius: 0.28571429rem 0.28571429rem 0em 0em !important; }

.ui.upward.dropdown.button:not(.pointing):not(.floating).active {
  -webkit-border-radius: 0.28571429rem 0.28571429rem 0em 0em;
          border-radius: 0.28571429rem 0.28571429rem 0em 0em; }

/* Selection */
.ui.upward.selection.dropdown .menu {
  border-top-width: 1px !important;
  border-bottom-width: 0px !important;
  -webkit-box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); }

.ui.upward.selection.dropdown:hover {
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05); }

/* Active Upward */
.ui.active.upward.selection.dropdown {
  -webkit-border-radius: 0em 0em 0.28571429rem 0.28571429rem !important;
          border-radius: 0em 0em 0.28571429rem 0.28571429rem !important; }

/* Visible Upward */
.ui.upward.selection.dropdown.visible {
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
  -webkit-border-radius: 0em 0em 0.28571429rem 0.28571429rem !important;
          border-radius: 0em 0em 0.28571429rem 0.28571429rem !important; }

/* Visible Hover Upward */
.ui.upward.active.selection.dropdown:hover {
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05); }

.ui.upward.active.selection.dropdown:hover .menu {
  -webkit-box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); }

/*--------------
     Simple
---------------*/
/*  Selection Menu */
.ui.scrolling.dropdown .menu,
.ui.dropdown .scrolling.menu {
  overflow-x: hidden;
  overflow-y: auto; }

.ui.scrolling.dropdown .menu {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  min-width: 100% !important;
  width: auto !important; }

.ui.dropdown .scrolling.menu {
  position: static;
  overflow-y: auto;
  border: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-border-radius: 0 !important;
          border-radius: 0 !important;
  margin: 0 !important;
  min-width: 100% !important;
  width: auto !important;
  border-top: 1px solid rgba(34, 36, 38, 0.15); }

.ui.scrolling.dropdown .menu .item.item.item,
.ui.dropdown .scrolling.menu > .item.item.item {
  border-top: none; }

.ui.scrolling.dropdown .menu .item:first-child,
.ui.dropdown .scrolling.menu .item:first-child {
  border-top: none; }

.ui.dropdown > .animating.menu .scrolling.menu,
.ui.dropdown > .visible.menu .scrolling.menu {
  display: block; }

/* Scrollbar in IE */
@media all and (-ms-high-contrast: none) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    min-width: -webkit-calc(100% -  17px);
    min-width: calc(100% -  17px); } }

@media only screen and (max-width: 767px) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    max-height: 10.28571429rem; } }

@media only screen and (min-width: 768px) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    max-height: 15.42857143rem; } }

@media only screen and (min-width: 992px) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    max-height: 20.57142857rem; } }

@media only screen and (min-width: 1920px) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    max-height: 20.57142857rem; } }

/*--------------
     Simple
---------------*/
/* Displays without javascript */
.ui.simple.dropdown .menu:before,
.ui.simple.dropdown .menu:after {
  display: none; }

.ui.simple.dropdown .menu {
  position: absolute;
  display: block;
  overflow: hidden;
  top: -9999px !important;
  opacity: 0;
  width: 0;
  height: 0;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease; }

.ui.simple.active.dropdown,
.ui.simple.dropdown:hover {
  -webkit-border-bottom-left-radius: 0em !important;
          border-bottom-left-radius: 0em !important;
  -webkit-border-bottom-right-radius: 0em !important;
          border-bottom-right-radius: 0em !important; }

.ui.simple.active.dropdown > .menu,
.ui.simple.dropdown:hover > .menu {
  overflow: visible;
  width: auto;
  height: auto;
  top: 100% !important;
  opacity: 1; }

.ui.simple.dropdown > .menu > .item:active > .menu,
.ui.simple.dropdown:hover > .menu > .item:hover > .menu {
  overflow: visible;
  width: auto;
  height: auto;
  top: 0% !important;
  left: 100% !important;
  opacity: 1; }

.ui.simple.disabled.dropdown:hover .menu {
  display: none;
  height: 0px;
  width: 0px;
  overflow: hidden; }

/* Visible */
.ui.simple.visible.dropdown > .menu {
  display: block; }

/*--------------
      Fluid
---------------*/
.ui.fluid.dropdown {
  display: block;
  width: 100%;
  min-width: 0em; }

.ui.fluid.dropdown > .dropdown.icon {
  float: right; }

/*--------------
    Floating
---------------*/
.ui.floating.dropdown .menu {
  left: 0;
  right: auto;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15) !important;
          box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15) !important;
  -webkit-border-radius: 0.28571429rem !important;
          border-radius: 0.28571429rem !important; }

.ui.floating.dropdown > .menu {
  margin-top: 0.5em !important;
  -webkit-border-radius: 0.28571429rem !important;
          border-radius: 0.28571429rem !important; }

/*--------------
     Pointing
---------------*/
.ui.pointing.dropdown > .menu {
  top: 100%;
  margin-top: 0.78571429rem;
  -webkit-border-radius: 0.28571429rem;
          border-radius: 0.28571429rem; }

.ui.pointing.dropdown > .menu:after {
  display: block;
  position: absolute;
  pointer-events: none;
  content: '';
  visibility: visible;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  -webkit-box-shadow: -1px -1px 0px 1px rgba(34, 36, 38, 0.15);
          box-shadow: -1px -1px 0px 1px rgba(34, 36, 38, 0.15);
  background: #FFFFFF;
  z-index: 2; }

.ui.pointing.dropdown > .menu:after {
  top: -0.25em;
  left: 50%;
  margin: 0em 0em 0em -0.25em; }

/* Top Left Pointing */
.ui.top.left.pointing.dropdown > .menu {
  top: 100%;
  bottom: auto;
  left: 0%;
  right: auto;
  margin: 1em 0em 0em; }

.ui.top.left.pointing.dropdown > .menu {
  top: 100%;
  bottom: auto;
  left: 0%;
  right: auto;
  margin: 1em 0em 0em; }

.ui.top.left.pointing.dropdown > .menu:after {
  top: -0.25em;
  left: 1em;
  right: auto;
  margin: 0em;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg); }

/* Top Right  Pointing */
.ui.top.right.pointing.dropdown > .menu {
  top: 100%;
  bottom: auto;
  right: 0%;
  left: auto;
  margin: 1em 0em 0em; }

.ui.top.right.pointing.dropdown > .menu:after {
  top: -0.25em;
  left: auto;
  right: 1em;
  margin: 0em;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg); }

/* Left Pointing */
.ui.left.pointing.dropdown > .menu {
  top: 0%;
  left: 100%;
  right: auto;
  margin: 0em 0em 0em 1em; }

.ui.left.pointing.dropdown > .menu:after {
  top: 1em;
  left: -0.25em;
  margin: 0em 0em 0em 0em;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }

/* Right Pointing */
.ui.right.pointing.dropdown > .menu {
  top: 0%;
  left: auto;
  right: 100%;
  margin: 0em 1em 0em 0em; }

.ui.right.pointing.dropdown > .menu:after {
  top: 1em;
  left: auto;
  right: -0.25em;
  margin: 0em 0em 0em 0em;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
      transform: rotate(135deg); }

/* Bottom Pointing */
.ui.bottom.pointing.dropdown > .menu {
  top: auto;
  bottom: 100%;
  left: 0%;
  right: auto;
  margin: 0em 0em 1em; }

.ui.bottom.pointing.dropdown > .menu:after {
  top: auto;
  bottom: -0.25em;
  right: auto;
  margin: 0em;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
      transform: rotate(-135deg); }

/* Reverse Sub-Menu Direction */
.ui.bottom.pointing.dropdown > .menu .menu {
  top: auto !important;
  bottom: 0px !important; }

/* Bottom Left */
.ui.bottom.left.pointing.dropdown > .menu {
  left: 0%;
  right: auto; }

.ui.bottom.left.pointing.dropdown > .menu:after {
  left: 1em;
  right: auto; }

/* Bottom Right */
.ui.bottom.right.pointing.dropdown > .menu {
  right: 0%;
  left: auto; }

.ui.bottom.right.pointing.dropdown > .menu:after {
  left: auto;
  right: 1em; }

/* Upward pointing */
.ui.upward.pointing.dropdown > .menu,
.ui.upward.top.pointing.dropdown > .menu {
  top: auto;
  bottom: 100%;
  margin: 0em 0em 0.78571429rem;
  -webkit-border-radius: 0.28571429rem;
          border-radius: 0.28571429rem; }

.ui.upward.pointing.dropdown > .menu:after,
.ui.upward.top.pointing.dropdown > .menu:after {
  top: 100%;
  bottom: auto;
  -webkit-box-shadow: 1px 1px 0px 1px rgba(34, 36, 38, 0.15);
          box-shadow: 1px 1px 0px 1px rgba(34, 36, 38, 0.15);
  margin: -0.25em 0em 0em; }

/* Right Pointing Upward */
.ui.upward.right.pointing.dropdown:not(.top):not(.bottom) > .menu {
  top: auto;
  bottom: 0;
  margin: 0em 1em 0em 0em; }

.ui.upward.right.pointing.dropdown:not(.top):not(.bottom) > .menu:after {
  top: auto;
  bottom: 0;
  margin: 0em 0em 1em 0em;
  -webkit-box-shadow: -1px -1px 0px 1px rgba(34, 36, 38, 0.15);
          box-shadow: -1px -1px 0px 1px rgba(34, 36, 38, 0.15); }

/* Left Pointing Upward */
.ui.upward.left.pointing.dropdown:not(.top):not(.bottom) > .menu {
  top: auto;
  bottom: 0;
  margin: 0em 0em 0em 1em; }

.ui.upward.left.pointing.dropdown:not(.top):not(.bottom) > .menu:after {
  top: auto;
  bottom: 0;
  margin: 0em 0em 1em 0em;
  -webkit-box-shadow: -1px -1px 0px 1px rgba(34, 36, 38, 0.15);
          box-shadow: -1px -1px 0px 1px rgba(34, 36, 38, 0.15); }

/*******************************
         Theme Overrides
*******************************/
/* Dropdown Carets */
@font-face {
  font-family: 'Dropdown';
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfuIIAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zjo82LgAAAFwAAABVGhlYWQAQ88bAAACxAAAADZoaGVhAwcB6QAAAvwAAAAkaG10eAS4ABIAAAMgAAAAIGxvY2EBNgDeAAADQAAAABJtYXhwAAoAFgAAA1QAAAAgbmFtZVcZpu4AAAN0AAABRXBvc3QAAwAAAAAEvAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDX//3//wAB/+MPLQADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAIABJQElABMAABM0NzY3BTYXFhUUDwEGJwYvASY1AAUGBwEACAUGBoAFCAcGgAUBEgcGBQEBAQcECQYHfwYBAQZ/BwYAAQAAAG4BJQESABMAADc0PwE2MzIfARYVFAcGIyEiJyY1AAWABgcIBYAGBgUI/wAHBgWABwaABQWABgcHBgUFBgcAAAABABIASQC3AW4AEwAANzQ/ATYXNhcWHQEUBwYnBi8BJjUSBoAFCAcFBgYFBwgFgAbbBwZ/BwEBBwQJ/wgEBwEBB38GBgAAAAABAAAASQClAW4AEwAANxE0NzYzMh8BFhUUDwEGIyInJjUABQYHCAWABgaABQgHBgVbAQAIBQYGgAUIBwWABgYFBwAAAAEAAAABAADZuaKOXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAAAAACgAUAB4AQgBkAIgAqgAAAAEAAAAIABQAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgA0AGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgA0AGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVwAAoAAAAABSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAdkAAAHZLDXE/09TLzIAAALQAAAAYAAAAGAIIweQY21hcAAAAzAAAABMAAAATA9+4ghnYXNwAAADfAAAAAgAAAAIAAAAEGhlYWQAAAOEAAAANgAAADYAQ88baGhlYQAAA7wAAAAkAAAAJAMHAelobXR4AAAD4AAAACAAAAAgBLgAEm1heHAAAAQAAAAABgAAAAYACFAAbmFtZQAABAgAAAFFAAABRVcZpu5wb3N0AAAFUAAAACAAAAAgAAMAAAEABAQAAQEBCGljb21vb24AAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHi2v4lPh0BR0AAACIDx0AAACNER0AAAAJHQAAAdASAAkBAQgPERMWGyAlKmljb21vb25pY29tb29udTB1MXUyMHVGMEQ3dUYwRDh1RjBEOXVGMERBAAACAYkABgAIAgABAAQABwAKAA0AVgCfAOgBL/yUDvyUDvyUDvuUDvtvi/emFYuQjZCOjo+Pj42Qiwj3lIsFkIuQiY6Hj4iNhouGi4aJh4eHCPsU+xQFiIiGiYaLhouHjYeOCPsU9xQFiI+Jj4uQCA77b4v3FBWLkI2Pjo8I9xT3FAWPjo+NkIuQi5CJjogI9xT7FAWPh42Hi4aLhomHh4eIiIaJhosI+5SLBYaLh42HjoiPiY+LkAgO+92d928Vi5CNkI+OCPcU9xQFjo+QjZCLkIuPiY6Hj4iNhouGCIv7lAWLhomHh4iIh4eJhouGi4aNiI8I+xT3FAWHjomPi5AIDvvdi+YVi/eUBYuQjZCOjo+Pj42Qi5CLkImOhwj3FPsUBY+IjYaLhouGiYeHiAj7FPsUBYiHhomGi4aLh42Hj4iOiY+LkAgO+JQU+JQViwwKAAAAAAMCAAGQAAUAAAFMAWYAAABHAUwBZgAAAPUAGQCEAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8NoB4P/g/+AB4AAgAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDw2v/9//8AAAAAACDw1//9//8AAf/jDy0AAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAA5emozXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAUAAACAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

.ui.dropdown > .dropdown.icon {
  font-family: 'Dropdown';
  line-height: 1;
  height: 1em;
  width: 1.23em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-weight: normal;
  font-style: normal;
  text-align: center; }

.ui.dropdown > .dropdown.icon {
  width: auto; }

.ui.dropdown > .dropdown.icon:before {
  content: '\f0d7'; }

/* Sub Menu */
.ui.dropdown .menu .item .dropdown.icon:before {
  content: ""; }

.ui.dropdown .item .left.dropdown.icon:before,
.ui.dropdown .left.menu .item .dropdown.icon:before {
  content: ""; }

/* Vertical Menu Dropdown */
.ui.vertical.menu .dropdown.item > .dropdown.icon:before {
  content: ""; }

/* Icons for Reference
.dropdown.down.icon {
  content: "\f0d7";
}
.dropdown.up.icon {
  content: "\f0d8";
}
.dropdown.left.icon {
  content: "\f0d9";
}
.dropdown.icon.icon {
  content: "\f0da";
}
*/
/*******************************
        User Overrides
*******************************/
/*!
 * # Semantic UI 2.2.10 - Transition
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */
/*******************************
          Transitions
*******************************/
.transition {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

/*******************************
            States
*******************************/
/* Animating */
.animating.transition {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  visibility: visible !important; }

/* Loading */
.loading.transition {
  position: absolute;
  top: -99999px;
  left: -99999px; }

/* Hidden */
.hidden.transition {
  display: none;
  visibility: hidden; }

/* Visible */
.visible.transition {
  display: block !important;
  visibility: visible !important;
  /*  backface-visibility: @backfaceVisibility;
  transform: @use3DAcceleration;*/ }

/* Disabled */
.disabled.transition {
  -webkit-animation-play-state: paused;
  animation-play-state: paused; }

/*******************************
          Variations
*******************************/
.looping.transition {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

/*******************************
          Transitions
*******************************/
/*
  Some transitions adapted from Animate CSS
  https://github.com/daneden/animate.css

  Additional transitions adapted from Glide
  by Nick Pettit - https://github.com/nickpettit/glide
*/
/*--------------
     Browse
---------------*/
.transition.browse {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms; }

.transition.browse.in {
  -webkit-animation-name: browseIn;
  animation-name: browseIn; }

.transition.browse.out,
.transition.browse.left.out {
  -webkit-animation-name: browseOutLeft;
  animation-name: browseOutLeft; }

.transition.browse.right.out {
  -webkit-animation-name: browseOutRight;
  animation-name: browseOutRight; }

/* In */
@-webkit-keyframes browseIn {
  0% {
    -webkit-transform: scale(0.8) translateZ(0px);
    transform: scale(0.8) translateZ(0px);
    z-index: -1; }
  10% {
    -webkit-transform: scale(0.8) translateZ(0px);
    transform: scale(0.8) translateZ(0px);
    z-index: -1;
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1.05) translateZ(0px);
    transform: scale(1.05) translateZ(0px);
    opacity: 1;
    z-index: 999; }
  100% {
    -webkit-transform: scale(1) translateZ(0px);
    transform: scale(1) translateZ(0px);
    z-index: 999; } }

@keyframes browseIn {
  0% {
    -webkit-transform: scale(0.8) translateZ(0px);
    transform: scale(0.8) translateZ(0px);
    z-index: -1; }
  10% {
    -webkit-transform: scale(0.8) translateZ(0px);
    transform: scale(0.8) translateZ(0px);
    z-index: -1;
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1.05) translateZ(0px);
    transform: scale(1.05) translateZ(0px);
    opacity: 1;
    z-index: 999; }
  100% {
    -webkit-transform: scale(1) translateZ(0px);
    transform: scale(1) translateZ(0px);
    z-index: 999; } }

/* Out */
@-webkit-keyframes browseOutLeft {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
    transform: translateX(0%) rotateY(0deg) rotateX(0deg); }
  50% {
    z-index: -1;
    -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
    transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); }
  80% {
    opacity: 1; }
  100% {
    z-index: -1;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
    transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
    opacity: 0; } }

@keyframes browseOutLeft {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
    transform: translateX(0%) rotateY(0deg) rotateX(0deg); }
  50% {
    z-index: -1;
    -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
    transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); }
  80% {
    opacity: 1; }
  100% {
    z-index: -1;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
    transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
    opacity: 0; } }

@-webkit-keyframes browseOutRight {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
    transform: translateX(0%) rotateY(0deg) rotateX(0deg); }
  50% {
    z-index: 1;
    -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
    transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); }
  80% {
    opacity: 1; }
  100% {
    z-index: 1;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
    transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
    opacity: 0; } }

@keyframes browseOutRight {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
    transform: translateX(0%) rotateY(0deg) rotateX(0deg); }
  50% {
    z-index: 1;
    -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
    transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); }
  80% {
    opacity: 1; }
  100% {
    z-index: 1;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
    transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
    opacity: 0; } }

/*--------------
     Drop
---------------*/
.drop.transition {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-duration: 400ms;
  animation-duration: 400ms;
  -webkit-animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1);
  animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1); }

.drop.transition.in {
  -webkit-animation-name: dropIn;
  animation-name: dropIn; }

.drop.transition.out {
  -webkit-animation-name: dropOut;
  animation-name: dropOut; }

/* Drop */
@-webkit-keyframes dropIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes dropIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes dropOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); } }

@keyframes dropOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); } }

/*--------------
      Fade
---------------*/
.transition.fade.in {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

.transition[class*="fade up"].in {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

.transition[class*="fade down"].in {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

.transition[class*="fade left"].in {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

.transition[class*="fade right"].in {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

.transition.fade.out {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

.transition[class*="fade up"].out {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

.transition[class*="fade down"].out {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

.transition[class*="fade left"].out {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

.transition[class*="fade right"].out {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

/* In */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
    transform: translateX(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
    transform: translateX(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

/* Out */
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(5%);
    transform: translateY(5%); } }

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(5%);
    transform: translateY(5%); } }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%); } }

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%); } }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(5%);
    transform: translateX(5%); } }

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(5%);
    transform: translateX(5%); } }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%); } }

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%); } }

/*--------------
     Flips
---------------*/
.flip.transition.in,
.flip.transition.out {
  -webkit-animation-duration: 600ms;
  animation-duration: 600ms; }

.horizontal.flip.transition.in {
  -webkit-animation-name: horizontalFlipIn;
  animation-name: horizontalFlipIn; }

.horizontal.flip.transition.out {
  -webkit-animation-name: horizontalFlipOut;
  animation-name: horizontalFlipOut; }

.vertical.flip.transition.in {
  -webkit-animation-name: verticalFlipIn;
  animation-name: verticalFlipIn; }

.vertical.flip.transition.out {
  -webkit-animation-name: verticalFlipOut;
  animation-name: verticalFlipOut; }

/* In */
@-webkit-keyframes horizontalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-90deg);
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0deg);
    transform: perspective(2000px) rotateY(0deg);
    opacity: 1; } }

@keyframes horizontalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-90deg);
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0deg);
    transform: perspective(2000px) rotateY(0deg);
    opacity: 1; } }

@-webkit-keyframes verticalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(2000px) rotateX(0deg);
    transform: perspective(2000px) rotateX(0deg);
    opacity: 1; } }

@keyframes verticalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(2000px) rotateX(0deg);
    transform: perspective(2000px) rotateX(0deg);
    opacity: 1; } }

/* Out */
@-webkit-keyframes horizontalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0deg);
    transform: perspective(2000px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
    opacity: 0; } }

@keyframes horizontalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0deg);
    transform: perspective(2000px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
    opacity: 0; } }

@-webkit-keyframes verticalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateX(0deg);
    transform: perspective(2000px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0; } }

@keyframes verticalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateX(0deg);
    transform: perspective(2000px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0; } }

/*--------------
      Scale
---------------*/
.scale.transition.in {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn; }

.scale.transition.out {
  -webkit-animation-name: scaleOut;
  animation-name: scaleOut; }

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

/* Out */
@-webkit-keyframes scaleOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9); } }

@keyframes scaleOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9); } }

/*--------------
      Fly
---------------*/
/* Inward */
.transition.fly {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.transition.fly.in {
  -webkit-animation-name: flyIn;
  animation-name: flyIn; }

.transition[class*="fly up"].in {
  -webkit-animation-name: flyInUp;
  animation-name: flyInUp; }

.transition[class*="fly down"].in {
  -webkit-animation-name: flyInDown;
  animation-name: flyInDown; }

.transition[class*="fly left"].in {
  -webkit-animation-name: flyInLeft;
  animation-name: flyInLeft; }

.transition[class*="fly right"].in {
  -webkit-animation-name: flyInRight;
  animation-name: flyInRight; }

/* Outward */
.transition.fly.out {
  -webkit-animation-name: flyOut;
  animation-name: flyOut; }

.transition[class*="fly up"].out {
  -webkit-animation-name: flyOutUp;
  animation-name: flyOutUp; }

.transition[class*="fly down"].out {
  -webkit-animation-name: flyOutDown;
  animation-name: flyOutDown; }

.transition[class*="fly left"].out {
  -webkit-animation-name: flyOutLeft;
  animation-name: flyOutLeft; }

.transition[class*="fly right"].out {
  -webkit-animation-name: flyOutRight;
  animation-name: flyOutRight; }

/* In */
@-webkit-keyframes flyIn {
  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); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes flyIn {
  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); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@-webkit-keyframes flyInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 1500px, 0);
    transform: translate3d(0, 1500px, 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); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes flyInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 1500px, 0);
    transform: translate3d(0, 1500px, 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); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@-webkit-keyframes flyInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -1500px, 0);
    transform: translate3d(0, -1500px, 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); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes flyInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -1500px, 0);
    transform: translate3d(0, -1500px, 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); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@-webkit-keyframes flyInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(1500px, 0, 0);
    transform: translate3d(1500px, 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); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes flyInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(1500px, 0, 0);
    transform: translate3d(1500px, 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); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@-webkit-keyframes flyInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-1500px, 0, 0);
    transform: translate3d(-1500px, 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); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes flyInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-1500px, 0, 0);
    transform: translate3d(-1500px, 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); }
  100% {
    -webkit-transform: none;
    transform: none; } }

/* Out */
@-webkit-keyframes flyOut {
  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); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes flyOut {
  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); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@-webkit-keyframes flyOutUp {
  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); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes flyOutUp {
  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); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@-webkit-keyframes flyOutDown {
  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); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes flyOutDown {
  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); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@-webkit-keyframes flyOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes flyOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@-webkit-keyframes flyOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes flyOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

/*--------------
     Slide
---------------*/
.transition.slide.in,
.transition[class*="slide down"].in {
  -webkit-animation-name: slideInY;
  animation-name: slideInY;
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center; }

.transition[class*="slide up"].in {
  -webkit-animation-name: slideInY;
  animation-name: slideInY;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
      transform-origin: bottom center; }

.transition[class*="slide left"].in {
  -webkit-animation-name: slideInX;
  animation-name: slideInX;
  -webkit-transform-origin: center right;
  -ms-transform-origin: center right;
      transform-origin: center right; }

.transition[class*="slide right"].in {
  -webkit-animation-name: slideInX;
  animation-name: slideInX;
  -webkit-transform-origin: center left;
  -ms-transform-origin: center left;
      transform-origin: center left; }

.transition.slide.out,
.transition[class*="slide down"].out {
  -webkit-animation-name: slideOutY;
  animation-name: slideOutY;
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center; }

.transition[class*="slide up"].out {
  -webkit-animation-name: slideOutY;
  animation-name: slideOutY;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
      transform-origin: bottom center; }

.transition[class*="slide left"].out {
  -webkit-animation-name: slideOutX;
  animation-name: slideOutX;
  -webkit-transform-origin: center right;
  -ms-transform-origin: center right;
      transform-origin: center right; }

.transition[class*="slide right"].out {
  -webkit-animation-name: slideOutX;
  animation-name: slideOutX;
  -webkit-transform-origin: center left;
  -ms-transform-origin: center left;
      transform-origin: center left; }

/* In */
@-webkit-keyframes slideInY {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1); } }

@keyframes slideInY {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1); } }

@-webkit-keyframes slideInX {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }

@keyframes slideInX {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }

/* Out */
@-webkit-keyframes slideOutY {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1); }
  100% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0); } }

@keyframes slideOutY {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1); }
  100% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0); } }

@-webkit-keyframes slideOutX {
  0% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  100% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0); } }

@keyframes slideOutX {
  0% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  100% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0); } }

/*--------------
     Swing
---------------*/
.transition.swing {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms; }

.transition[class*="swing down"].in {
  -webkit-animation-name: swingInX;
  animation-name: swingInX;
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center; }

.transition[class*="swing up"].in {
  -webkit-animation-name: swingInX;
  animation-name: swingInX;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
      transform-origin: bottom center; }

.transition[class*="swing left"].in {
  -webkit-animation-name: swingInY;
  animation-name: swingInY;
  -webkit-transform-origin: center right;
  -ms-transform-origin: center right;
      transform-origin: center right; }

.transition[class*="swing right"].in {
  -webkit-animation-name: swingInY;
  animation-name: swingInY;
  -webkit-transform-origin: center left;
  -ms-transform-origin: center left;
      transform-origin: center left; }

.transition.swing.out,
.transition[class*="swing down"].out {
  -webkit-animation-name: swingOutX;
  animation-name: swingOutX;
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center; }

.transition[class*="swing up"].out {
  -webkit-animation-name: swingOutX;
  animation-name: swingOutX;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
      transform-origin: bottom center; }

.transition[class*="swing left"].out {
  -webkit-animation-name: swingOutY;
  animation-name: swingOutY;
  -webkit-transform-origin: center right;
  -ms-transform-origin: center right;
      transform-origin: center right; }

.transition[class*="swing right"].out {
  -webkit-animation-name: swingOutY;
  animation-name: swingOutY;
  -webkit-transform-origin: center left;
  -ms-transform-origin: center left;
      transform-origin: center left; }

/* In */
@-webkit-keyframes swingInX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
    transform: perspective(1000px) rotateX(-30deg);
    opacity: 1; }
  60% {
    -webkit-transform: perspective(1000px) rotateX(15deg);
    transform: perspective(1000px) rotateX(15deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
    transform: perspective(1000px) rotateX(-7.5deg); }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg); } }

@keyframes swingInX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
    transform: perspective(1000px) rotateX(-30deg);
    opacity: 1; }
  60% {
    -webkit-transform: perspective(1000px) rotateX(15deg);
    transform: perspective(1000px) rotateX(15deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
    transform: perspective(1000px) rotateX(-7.5deg); }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg); } }

@-webkit-keyframes swingInY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
    transform: perspective(1000px) rotateY(30deg);
    opacity: 1; }
  60% {
    -webkit-transform: perspective(1000px) rotateY(-17.5deg);
    transform: perspective(1000px) rotateY(-17.5deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
    transform: perspective(1000px) rotateY(7.5deg); }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg); } }

@keyframes swingInY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
    transform: perspective(1000px) rotateY(30deg);
    opacity: 1; }
  60% {
    -webkit-transform: perspective(1000px) rotateY(-17.5deg);
    transform: perspective(1000px) rotateY(-17.5deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
    transform: perspective(1000px) rotateY(7.5deg); }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg); } }

/* Out */
@-webkit-keyframes swingOutX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg); }
  40% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
    transform: perspective(1000px) rotateX(-7.5deg); }
  60% {
    -webkit-transform: perspective(1000px) rotateX(17.5deg);
    transform: perspective(1000px) rotateX(17.5deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
    transform: perspective(1000px) rotateX(-30deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; } }

@keyframes swingOutX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg); }
  40% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
    transform: perspective(1000px) rotateX(-7.5deg); }
  60% {
    -webkit-transform: perspective(1000px) rotateX(17.5deg);
    transform: perspective(1000px) rotateX(17.5deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
    transform: perspective(1000px) rotateX(-30deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; } }

@-webkit-keyframes swingOutY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg); }
  40% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
    transform: perspective(1000px) rotateY(7.5deg); }
  60% {
    -webkit-transform: perspective(1000px) rotateY(-10deg);
    transform: perspective(1000px) rotateY(-10deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
    transform: perspective(1000px) rotateY(30deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0; } }

@keyframes swingOutY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg); }
  40% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
    transform: perspective(1000px) rotateY(7.5deg); }
  60% {
    -webkit-transform: perspective(1000px) rotateY(-10deg);
    transform: perspective(1000px) rotateY(-10deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
    transform: perspective(1000px) rotateY(30deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0; } }

/*******************************
       Static Animations
*******************************/
/*--------------
    Emphasis
---------------*/
.flash.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: flash;
  animation-name: flash; }

.shake.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: shake;
  animation-name: shake; }

.bounce.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: bounce;
  animation-name: bounce; }

.tada.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: tada;
  animation-name: tada; }

.pulse.transition {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -webkit-animation-name: pulse;
  animation-name: pulse; }

.jiggle.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: jiggle;
  animation-name: jiggle; }

/* Flash */
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

/* Shake */
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); } }

@keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); } }

/* Bounce */
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }

/* Tada */
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }

/* Pulse */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.7; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.7; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

/* Rubberband */
@-webkit-keyframes jiggle {
  0% {
    -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); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes jiggle {
  0% {
    -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); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

/*******************************
         Site Overrides
*******************************/
h2.title, h1.title {
  font-size: 4em;
  margin-bottom: 1em;
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  letter-spacing: 1px; }
  @media all and (max-width: 1440px) {
    h2.title, h1.title {
      font-size: 4em !important; } }
  @media all and (max-width: 1024px) {
    h2.title, h1.title {
      font-size: 3em !important; } }
  @media all and (max-width: 568px), (max-height: 400px) {
    h2.title, h1.title {
      font-size: 3em !important; } }

@-webkit-keyframes MoveUpDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px); } }

@keyframes MoveUpDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px); } }

@-webkit-keyframes MoveLeftRight {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px); } }

@keyframes MoveLeftRight {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px); } }

::-moz-selection {
  background-color: #4f81b0;
  color: #fff; }

::selection {
  background-color: #4f81b0;
  color: #fff; }

::-moz-selection {
  background-color: #4f81b0;
  color: #fff; }

::-o-selection {
  background-color: #4f81b0;
  color: #fff; }

::-ms-selection {
  background-color: #4f81b0;
  color: #fff; }

::-webkit-selection {
  background-color: #4f81b0;
  color: #fff; }

a {
  text-decoration: none;
  -webkit-transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
  transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
  color: white; }
  a .button {
    cursor: pointer;
    position: relative;
    background: none;
    border: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex; }
    a .button .label {
      color: white;
      font-family: "proxima-nova", sans-serif;
      font-weight: 400;
      letter-spacing: 1px;
      font-weight: 400;
      padding: 2em 2.5em;
      text-transform: uppercase;
      z-index: 1;
      -webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
      transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1); }
      @media all and (max-width: 568px), (max-height: 400px) {
        a .button .label {
          padding: 1.2em 2em 1.2em; } }

.cta-button {
  position: relative; }
  .cta-button:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 1px;
    width: 90%;
    left: 5%;
    z-index: -2;
    content: "";
    opacity: 0;
    background: DimGray;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    -webkit-box-shadow: 0px 0px 10px 3px DimGray;
            box-shadow: 0px 0px 10px 3px DimGray;
    top: initial;
    -webkit-transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
  .cta-button:hover:before {
    opacity: 0.2; }
  .cta-button .button {
    border: 1px solid #35abd7;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    .cta-button .button:after {
      content: '';
      position: absolute;
      z-index: 0;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #35abd7;
      -webkit-transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), background 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), background 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    .cta-button .button:hover {
      -webkit-transform: translateY(-10px);
          -ms-transform: translateY(-10px);
              transform: translateY(-10px); }
      .cta-button .button:hover:after {
        -webkit-transform: translateY(-110%);
            -ms-transform: translateY(-110%);
                transform: translateY(-110%); }
      .cta-button .button:hover .label {
        color: #35abd7; }
    .cta-button .button.white {
      border: 1px solid white; }
      .cta-button .button.white:after {
        background: white; }
      .cta-button .button.white .label {
        color: #35abd7; }
      .cta-button .button.white:hover .label {
        color: white; }
    @media all and (max-width: 568px), (max-height: 400px) {
      .cta-button .button.transparent {
        min-width: 12em; }
        .cta-button .button.transparent .label {
          width: 100%; } }
    .cta-button .button.transparent:after {
      background: transparent;
      -webkit-transform: translateY(110%);
          -ms-transform: translateY(110%);
              transform: translateY(110%); }
    .cta-button .button.transparent:hover:after {
      background: #35abd7;
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); }
    .cta-button .button.transparent:hover .label {
      color: white; }
    .cta-button .button.light {
      border: 1px solid rgba(255, 255, 255, 0.2); }
      .cta-button .button.light .label {
        color: white; }

.icon-button {
  margin: 0 1em; }
  .icon-button .button i {
    color: #35abd7;
    font-size: 1.6em;
    -webkit-transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    display: inline-block; }
    .icon-button .button i:before {
      -webkit-transition: text-shadow 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: text-shadow 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
  .icon-button .button .label {
    display: inline-block;
    margin-left: 0.5em;
    color: white;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.3em;
    letter-spacing: 2px;
    -webkit-transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    padding: 0;
    text-transform: none;
    line-height: 1.75; }
  .icon-button.white i {
    color: white; }
  .icon-button:hover .button i {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px); }
    .icon-button:hover .button i:before {
      text-shadow: 0 10px 10px rgba(0, 0, 0, 0.3); }
  .icon-button:hover .button .label {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
    text-shadow: 0 10px 10px rgba(0, 0, 0, 0.3); }

body {
  background: #1d2a39;
  font-family: "proxima-nova", sans-serif;
  color: white;
  visibility: hidden;
  opacity: 0; }

#views-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 2;
  display: block;
  background: black;
  -webkit-box-shadow: 0 22px 50px 0px rgba(0, 0, 0, 0.52);
          box-shadow: 0 22px 50px 0px rgba(0, 0, 0, 0.52); }

.page-view {
  display: none;
  visibility: hidden;
  opacity: 0; }

#content-container {
  -webkit-box-shadow: 0px 30px 120px 0px rgba(0, 0, 0, 0.72);
          box-shadow: 0px 30px 120px 0px rgba(0, 0, 0, 0.72);
  position: relative;
  overflow: hidden;
  z-index: 1; }
  @media all and (max-width: 568px), (max-height: 400px) {
    #content-container:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      width: 0px;
      right: 0;
      left: initial;
      z-index: 10;
      -webkit-transition: 1s all ease-in-out;
      transition: 1s all ease-in-out; }
    #content-container.open:after {
      background: rgba(29, 42, 57, 0.5);
      width: 10px; } }

h1, h2, h3, h4, h5, h6 {
  margin: 0; }

p {
  letter-spacing: 1px; }

.logo.disabled {
  pointer-events: none; }

input {
  outline-color: rgba(53, 171, 215, 0.5);
  outline-offset: 1em;
  display: inline-block; }

.backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  max-height: 120vh; }
  @media all and (max-width: 768px) {
    .backgrounds {
      max-height: initial; } }
  .backgrounds .background {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center center;
    background-repeat: no-repeat;
    display: none; }
  @media all and (max-width: 500px) {
    .backgrounds .size-large, .backgrounds .size-medium {
      background: none !important; }
    .backgrounds .size-small {
      display: block; } }
  @media all and (max-width: 1000px) and (min-width: 501px) {
    .backgrounds .size-large, .backgrounds .size-small {
      background: none !important; }
    .backgrounds .size-medium {
      display: block; } }
  @media all and (min-width: 1001px) {
    .backgrounds .size-small, .backgrounds .size-medium {
      background: none !important; }
    .backgrounds .size-large {
      display: block; } }

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: -1; }
  .background-video video {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .background-video_overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(62.44%, #fff));
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #fff 62.44%); }

header {
  position: fixed;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  padding: 3em 3em;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  left: 0;
  z-index: 1000; }
  header.hidden .menu-trigger .image {
    display: none; }
  header .page-title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -55%);
        -ms-transform: translate(-50%, -55%);
            transform: translate(-50%, -55%);
    text-transform: uppercase;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.5em;
    color: rgba(255, 255, 255, 0.3);
    opacity: 0;
    -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    @media all and (max-width: 1024px) {
      header .page-title {
        display: none; } }
  header .contactInfo {
    position: absolute;
    right: 9em;
    top: 0;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    @media all and (max-width: 568px), (max-height: 400px) {
      header .contactInfo {
        opacity: 0;
        font-size: 0.75em;
        display: none; } }
    header .contactInfo .icon-button .button .label {
      font-size: 1.2em; }
    header .contactInfo .icon-button.email {
      background: #F7AE25;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 2em;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      height: 100%;
      color: white !important; }
      @media all and (max-width: 768px) {
        header .contactInfo .icon-button.email {
          padding: 1em; } }
  header .logo {
    position: relative;
    z-index: 1;
    width: 50%; }
    header .logo object, header .logo img {
      width: 28.6em;
      width: auto;
      height: 3.1em;
      height: 3em;
      margin: -0.2em 0 0 -0.7em;
      -webkit-transition: opacity 0.15s cubic-bezier(0.56, 0, 0, 1.005);
      transition: opacity 0.15s cubic-bezier(0.56, 0, 0, 1.005); }
      header .logo object.dark, header .logo img.dark {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0; }
    header .logo a {
      display: inline-block;
      position: relative;
      cursor: pointer; }
      header .logo a:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
    @media all and (max-width: 768px) {
      header .logo object, header .logo img {
        width: auto;
        height: 2.7em; } }
    @media all and (max-width: 568px), (max-height: 400px) {
      header .logo object, header .logo img {
        width: 20em;
        height: auto; } }
    @media all and (max-width: 768px) {
      header .logo {
        width: 40%; } }
  header .menu-trigger {
    position: absolute;
    top: 3em;
    right: 3em;
    cursor: pointer;
    z-index: 1; }
    header .menu-trigger .image {
      position: absolute;
      z-index: -1;
      top: -3em;
      right: -10em;
      width: 15em;
      pointer-events: none;
      height: 12em;
      background: radial-gradient(ellipse, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%); }
    header .menu-trigger .hamburger {
      padding: 0.75em 0 0;
      opacity: 1 !important; }
      @media all and (max-width: 568px), (max-height: 400px) {
        header .menu-trigger .hamburger {
          padding: 0.4em 0 0; } }
      header .menu-trigger .hamburger .label {
        color: white;
        font-size: 1em;
        text-transform: uppercase;
        font-family: "proxima-nova", sans-serif;
        font-weight: 100;
        letter-spacing: 1px;
        margin-left: -0.2em;
        -webkit-transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      header .menu-trigger .hamburger .hamburger-inner {
        background: none; }
        header .menu-trigger .hamburger .hamburger-inner:before {
          -webkit-border-radius: 0;
                  border-radius: 0;
          background: white;
          height: 1px;
          -webkit-transform-origin: 0% 0%;
              -ms-transform-origin: 0% 0%;
                  transform-origin: 0% 0%;
          top: -22px;
          z-index: 2; }
        header .menu-trigger .hamburger .hamburger-inner:after {
          -webkit-border-radius: 0;
                  border-radius: 0;
          background: white;
          height: 1px;
          -webkit-transform-origin: 0% 0%;
              -ms-transform-origin: 0% 0%;
                  transform-origin: 0% 0%;
          -webkit-transform: scaleX(0.7);
              -ms-transform: scaleX(0.7);
                  transform: scaleX(0.7);
          transform-origin: 0% 0%;
          z-index: 1; }
      header .menu-trigger .hamburger.is-active {
        opacity: 1;
        -webkit-transform: scale(0.75);
            -ms-transform: scale(0.75);
                transform: scale(0.75); }
        header .menu-trigger .hamburger.is-active .hamburger-inner {
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none; }
          header .menu-trigger .hamburger.is-active .hamburger-inner:before {
            -webkit-transform: translate3d(0.5em, 31px, 0) rotate(-45deg);
                    transform: translate3d(0.5em, 31px, 0) rotate(-45deg);
            opacity: 1;
            height: 2px;
            background: white !important; }
          header .menu-trigger .hamburger.is-active .hamburger-inner:after {
            -webkit-transform: translate3d(0.5em, -31px, 0) rotate(45deg);
                    transform: translate3d(0.5em, -31px, 0) rotate(45deg);
            height: 2px;
            background: white !important; }
  header.dark .logo object, header.dark .logo img {
    opacity: 0; }
    header.dark .logo object.dark, header.dark .logo img.dark {
      opacity: 1; }
  header.dark .icon-button .button .label, header.dark .icon-button .button i {
    color: black; }
  header.dark .menu-trigger .hamburger .label {
    color: black; }
  header.dark .menu-trigger .hamburger .hamburger-inner:before, header.dark .menu-trigger .hamburger .hamburger-inner:after {
    background: rgba(0, 0, 0, 0.5); }
  header.dark.floating {
    background: white; }
    header.dark.floating .page-title {
      color: rgba(0, 0, 0, 0.3); }
  header.floating {
    background: #1d2a39; }
    header.floating .page-title {
      opacity: 1; }
  header.hideBg {
    background: transparent !important; }
    header.hideBg .page-title {
      opacity: 0; }
    header.hideBg .icon-button .button .label, header.hideBg .icon-button .button i {
      color: white; }
    @media all and (max-width: 568px), (max-height: 400px) {
      header.hideBg .contactInfo {
        opacity: 1; } }
  header.hidden {
    visibility: hidden; }
  header.force-hidden {
    visibility: hidden !important; }
  @media all and (max-width: 568px), (max-height: 400px) {
    header {
      padding: 2em;
      width: 100%; }
      header .page-title {
        opacity: 1 !important; }
      header .menu-trigger {
        top: 2em;
        right: 2em; }
        header .menu-trigger .hamburger .label {
          font-size: 0.75em; }
        header .menu-trigger .hamburger .hamburger-inner:before {
          top: -20px; }
        header .menu-trigger .hamburger .hamburger-inner:after {
          bottom: -4px; }
        header .menu-trigger .hamburger.is-active .hamburger-inner:after {
          bottom: -12px; } }
  header #smallMenu {
    position: absolute;
    right: 0;
    top: 0; }
    @media all and (max-width: 1024px) {
      header #smallMenu {
        width: 85px !important;
        height: 85px !important;
        top: 0.5em;
        right: 1em; } }
    @media all and (max-width: 568px), (max-height: 400px) {
      header #smallMenu {
        right: 0;
        top: 0;
        width: 70px !important;
        height: 70px !important; } }

nav {
  position: fixed;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  max-width: 750px;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  overflow: hidden;
  z-index: 0;
  visibility: hidden;
  -webkit-perspective: 100em;
          perspective: 100em;
  right: -750px; }
  nav .close-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 10em;
    height: 9em; }
    nav .close-bg .box {
      width: 100%;
      height: 100%;
      background: rgba(53, 171, 215, 0.1); }
  nav .vcenter {
    position: absolute; }
  nav .search-trigger {
    position: absolute;
    top: 0;
    cursor: pointer;
    -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    nav .search-trigger .icon-bg {
      width: 7em;
      padding: 5em 0;
      background: rgba(53, 171, 215, 0.1);
      -webkit-transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      margin-left: -5px; }
    nav .search-trigger .icon {
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      position: absolute;
      top: 0; }
      nav .search-trigger .icon.search {
        margin: 3.65em 0 0 2em;
        -webkit-transform: scaleX(-1);
            -ms-transform: scaleX(-1);
                transform: scaleX(-1); }
      nav .search-trigger .icon:before {
        font-size: 2.5em; }
      nav .search-trigger .icon.close {
        margin: 4.75em 0 0 2em;
        opacity: 0; }
        nav .search-trigger .icon.close:before, nav .search-trigger .icon.close:after {
          content: '';
          position: absolute;
          width: 25px;
          height: 2px;
          background: white; }
        nav .search-trigger .icon.close:before {
          -webkit-transform: rotate(-45deg);
              -ms-transform: rotate(-45deg);
                  transform: rotate(-45deg);
          z-index: 1; }
        nav .search-trigger .icon.close:after {
          -webkit-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
                  transform: rotate(45deg); }
    nav .search-trigger:hover {
      -webkit-transform: translateX(5px);
          -ms-transform: translateX(5px);
              transform: translateX(5px); }
      nav .search-trigger:hover .icon-bg {
        background: rgba(53, 171, 215, 0.3); }
  nav .form {
    position: relative;
    margin: 4em 0 10vh 15em; }
    nav .form .search-form {
      position: absolute;
      left: 0;
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transform-origin: 0% 0%;
          -ms-transform-origin: 0% 0%;
              transform-origin: 0% 0%; }
      nav .form .search-form input {
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(-100%);
            -ms-transform: translateY(-100%);
                transform: translateY(-100%);
        background: none;
        border: none;
        color: white;
        font-size: 1.6em;
        font-family: "proxima-nova", sans-serif;
        font-weight: 300;
        letter-spacing: 1px;
        width: 20em; }
      nav .form .search-form input::-webkit-input-placeholder {
        opacity: 1;
        color: white; }
      nav .form .search-form:after {
        content: '';
        position: absolute;
        bottom: -10px;
        background: rgba(255, 255, 255, 0.2);
        width: 100%;
        height: 1px; }
      nav .form .search-form .search {
        background: none;
        border: none;
        -webkit-transform: scaleX(-1);
            -ms-transform: scaleX(-1);
                transform: scaleX(-1);
        font-size: 2em;
        position: absolute;
        top: 0;
        right: 0;
        color: white;
        cursor: pointer;
        -webkit-transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        visibility: hidden;
        opacity: 0; }
        nav .form .search-form .search:hover {
          color: #c8ccd0; }
    nav .form .logo object, nav .form .logo img {
      width: 28.6em;
      width: auto;
      height: 3.1em;
      height: 3em;
      margin: -0.2em 0 0 -0.7em;
      -webkit-transition: opacity 0.15s cubic-bezier(0.56, 0, 0, 1.005);
      transition: opacity 0.15s cubic-bezier(0.56, 0, 0, 1.005); }
      nav .form .logo object.dark, nav .form .logo img.dark {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0; }
    nav .form .logo a {
      display: inline-block;
      position: relative;
      cursor: pointer; }
      nav .form .logo a:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
    @media all and (max-width: 768px) {
      nav .form .logo object, nav .form .logo img {
        width: auto;
        height: 2.7em; } }
    @media all and (max-width: 568px), (max-height: 400px) {
      nav .form .logo object, nav .form .logo img {
        width: 20em;
        height: auto; } }
    nav .form .logo object, nav .form .logo img {
      width: 30.3em;
      height: 2em;
      margin: 0; }
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0 0 0 15em;
    display: inline-block; }
    nav ul li {
      margin-bottom: 2.5em;
      position: relative; }
      nav ul li.current_page_item {
        pointer-events: none; }
      nav ul li .logo-icon {
        position: absolute;
        top: 0;
        left: -4em;
        opacity: 0;
        -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        -webkit-transition-delay: 0.1s;
                transition-delay: 0.1s; }
        nav ul li .logo-icon object, nav ul li .logo-icon img {
          width: 1.8em;
          height: 1.8em; }
        nav ul li .logo-icon:before {
          content: '';
          position: absolute;
          height: 1px;
          -webkit-transform: rotate(-45deg) scaleX(0);
              -ms-transform: rotate(-45deg) scaleX(0);
                  transform: rotate(-45deg) scaleX(0);
          -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          -webkit-backface-visibility: hidden;
                  backface-visibility: hidden;
          z-index: -1;
          top: 0.8em;
          left: -1.7em;
          width: 300%;
          background: white;
          background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, white), color-stop(100%, rgba(255, 255, 255, 0)));
          background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, white), to(rgba(255, 255, 255, 0)));
          background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 50%, rgba(255, 255, 255, 0) 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 ); }
      nav ul li a {
        color: white;
        text-transform: uppercase;
        font-family: "proxima-nova", sans-serif;
        font-weight: 100;
        letter-spacing: 1px;
        font-size: 1.8em;
        display: block;
        -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      nav ul li:hover .logo-icon, nav ul li.current_page_item .logo-icon {
        opacity: 0.4;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none; }
        nav ul li:hover .logo-icon:before, nav ul li.current_page_item .logo-icon:before {
          -webkit-transform: rotate(-45deg) scaleX(1);
              -ms-transform: rotate(-45deg) scaleX(1);
                  transform: rotate(-45deg) scaleX(1); }
      nav ul li:hover a, nav ul li.current_page_item a {
        color: white;
        -webkit-transform: translateX(0.6em);
            -ms-transform: translateX(0.6em);
                transform: translateX(0.6em); }
      nav ul li:last-child {
        margin-bottom: 0; }
  nav .social-links {
    margin: 10vh 0 0 15em; }
    nav .social-links li:hover a {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
  nav .nav-con {
    height: 100%;
    -webkit-transform-origin: 0%;
        -ms-transform-origin: 0%;
            transform-origin: 0%; }
  @media all and (max-width: 568px), (max-height: 400px) {
    nav {
      right: -100vw; }
      nav .vcenter {
        top: 80px !important;
        font-size: 0.9em; }
      nav .search-trigger .icon-bg {
        width: 5em;
        padding: 3em 0; }
      nav .search-trigger .icon.search {
        margin: 1.75em 0 0 1em; }
      nav .search-trigger .icon.close {
        margin: 3em 0 0 1em; }
      nav .form {
        margin: 2.2em 0 8vh 8em; }
        nav .form .search-form input {
          font-size: 1.4em;
          width: 18em; }
        nav .form .search-form .search {
          top: -0.2em; }
        nav .form .logo object, nav .form .logo img {
          width: 20em;
          height: auto; }
      nav ul {
        padding-left: 8em; }
        nav ul li {
          margin-bottom: 2em; }
          nav ul li a {
            font-size: 1.5em; }
      nav .close-bg {
        width: 7.5em;
        height: 6.3em; }
      nav .social-links {
        margin-top: 8vh;
        margin-left: 8em;
        display: block; }
        nav .social-links li {
          margin-right: 1.5em; } }

.social-links {
  position: relative;
  list-style-type: none;
  padding: 0;
  *zoom: 1; }
  .social-links:before, .social-links:after {
    content: " ";
    display: table; }
  .social-links:after {
    clear: both; }
  .social-links li {
    display: block;
    float: left;
    margin-right: 2.5em; }
    .social-links li:last-child {
      margin-right: 0 !important; }
  .social-links a {
    color: white;
    font-size: 1.4em;
    opacity: 0.8;
    -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    display: block; }
    .social-links a:hover {
      opacity: 1;
      -webkit-transform: translateY(-5px);
          -ms-transform: translateY(-5px);
              transform: translateY(-5px); }

footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  footer .footer__content {
    background: url("../images/footer/bg.jpg") no-repeat 50% 0%;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%; }
    footer .footer__content div {
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
  footer .footer__blog {
    height: 660px; }
    @media all and (max-width: 1440px) {
      footer .footer__blog {
        height: 500px; } }
    @media all and (max-width: 1024px) {
      footer .footer__blog {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1;
        height: 400px; } }
    footer .footer__blog:hover .footer__blog-img img {
      -webkit-transform: scale(1.02);
          -ms-transform: scale(1.02);
              transform: scale(1.02); }
    footer .footer__blog .swiper-button-prev {
      left: auto;
      right: 10vw;
      margin-right: 48px;
      margin-top: 0;
      top: auto;
      bottom: 13.2em; }
      @media all and (max-width: 1440px) {
        footer .footer__blog .swiper-button-prev {
          right: 7vw;
          bottom: 9.8em;
          margin-right: 40px; } }
      @media all and (max-width: 1024px) {
        footer .footer__blog .swiper-button-prev {
          right: 10vw;
          bottom: 8.8em; } }
      @media all and (max-width: 768px) {
        footer .footer__blog .swiper-button-prev {
          right: 2.5em;
          bottom: auto;
          -webkit-transform: scaleX(-1) translateY(-50%);
              -ms-transform: scaleX(-1) translateY(-50%);
                  transform: scaleX(-1) translateY(-50%); } }
    footer .footer__blog .swiper-button-next {
      right: 10vw;
      margin-top: 0;
      top: auto;
      bottom: 13.2em; }
      @media all and (max-width: 1440px) {
        footer .footer__blog .swiper-button-next {
          right: 7vw;
          bottom: 9.8em; } }
      @media all and (max-width: 1024px) {
        footer .footer__blog .swiper-button-next {
          right: 10vw;
          bottom: 8.8em; } }
      @media all and (max-width: 768px) {
        footer .footer__blog .swiper-button-next {
          right: 2.5em;
          bottom: auto;
          -webkit-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
                  transform: translateY(-50%); } }
    footer .footer__blog .swiper-button {
      padding: 14px !important; }
    footer .footer__blog .swiper-wrapper {
      -webkit-transition: -webkit-transform 0.3s ease-in-out !important;
      transition: -webkit-transform 0.3s ease-in-out !important;
      transition: transform 0.3s ease-in-out !important;
      transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out !important; }
    footer .footer__blog .swiper-container {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      width: 100%;
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    footer .footer__blog .slides {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap;
      -webkit-box-pack: stretch;
      -webkit-justify-content: stretch;
          -ms-flex-pack: stretch;
              justify-content: stretch; }
    footer .footer__blog .slide {
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      position: relative;
      -webkit-flex-shrink: 0;
          -ms-flex-negative: 0;
              flex-shrink: 0; }
    footer .footer__blog .wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      height: 100%;
      position: relative; }
      @media all and (max-width: 1024px) {
        footer .footer__blog .wrapper {
          height: 500px; } }
      @media all and (max-width: 768px) {
        footer .footer__blog .wrapper {
          height: 400px; } }
    footer .footer__blog-tag {
      position: absolute;
      top: 5.5em;
      left: 5.5em;
      padding: 1em;
      border: 1px solid rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      z-index: 2;
      color: #fff;
      font-size: 0.9em;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      font-family: "proxima-nova", sans-serif;
      font-weight: 100;
      letter-spacing: 1px; }
      footer .footer__blog-tag:hover {
        border: 1px solid white; }
      @media all and (max-width: 1440px) {
        footer .footer__blog-tag {
          top: 3.5em;
          left: 3.5em; } }
      @media all and (max-width: 1024px) {
        footer .footer__blog-tag {
          left: 10%; } }
      @media all and (max-width: 768px) {
        footer .footer__blog-tag {
          left: 3em;
          top: 5em; } }
    footer .footer__blog-img {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      overflow: hidden; }
      footer .footer__blog-img::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(187deg, transparent -40%, rgba(0, 0, 0, 0.9) 80%); }
      footer .footer__blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease; }
    footer .footer__blog-cont {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      position: relative;
      padding-left: 5.5em;
      padding-right: 15.5vw;
      padding-top: 7em;
      padding-bottom: 7em;
      width: 100%; }
      @media all and (max-width: 1440px) {
        footer .footer__blog-cont {
          padding-left: 3.5em;
          padding-top: 4em;
          padding-bottom: 4em; } }
      @media all and (max-width: 1024px) {
        footer .footer__blog-cont {
          padding-right: 22%;
          padding-left: 10%; } }
      @media all and (max-width: 768px) {
        footer .footer__blog-cont {
          padding-top: 5em;
          padding-right: 3em;
          padding-left: 3em;
          padding-bottom: 5em; } }
    footer .footer__blog-cat {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      footer .footer__blog-cat a {
        font-family: "proxima-nova", sans-serif;
        font-weight: 100;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        font-size: 1.45em;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        @media all and (max-width: 1440px) {
          footer .footer__blog-cat a {
            font-size: 1.1em; } }
        @media all and (max-width: 768px) {
          footer .footer__blog-cat a {
            font-size: 1em; } }
        footer .footer__blog-cat a:hover {
          color: #fff; }
    footer .footer__blog-data {
      font-family: "proxima-nova", sans-serif;
      font-weight: 100;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      font-size: 1.8em;
      margin-top: 15px;
      margin-top: 0.75em; }
      @media all and (max-width: 1440px) {
        footer .footer__blog-data {
          font-size: 1.35em; } }
      @media all and (max-width: 768px) {
        footer .footer__blog-data {
          font-size: 1.2em; } }
    footer .footer__blog-title {
      font-family: "proxima-nova", sans-serif;
      font-weight: 100;
      letter-spacing: 1px;
      color: #fff;
      font-size: 2.45em;
      margin-top: 20px;
      margin-top: 0.75em;
      position: relative;
      padding-top: 20px;
      padding-top: 0.75em;
      width: 100%;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      min-height: 82px;
      min-height: 3.043em;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      @media all and (max-width: 1440px) {
        footer .footer__blog-title {
          font-size: 2em; } }
      @media all and (max-width: 768px) {
        footer .footer__blog-title {
          font-size: 1.6em; } }
      footer .footer__blog-title:hover {
        color: rgba(255, 255, 255, 0.7); }
      footer .footer__blog-title::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: #fff; }
  footer .mini-map {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: auto;
    width: 100%; }
    @media all and (max-width: 1024px) {
      footer .mini-map {
        margin-left: 0; } }
    @media all and (max-width: 768px) {
      footer .mini-map {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; } }
    footer .mini-map__text {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      padding-right: 2em;
      padding-top: 3em; }
      @media all and (max-width: 1440px) {
        footer .mini-map__text {
          margin-top: auto; } }
      @media all and (max-width: 1024px) {
        footer .mini-map__text {
          padding-top: 0;
          padding-right: 0; } }
    footer .mini-map #map {
      width: 100%;
      height: 290px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      @media all and (max-width: 1024px) {
        footer .mini-map #map {
          display: none; } }
  footer .top-wrapper {
    width: 100%;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px; }
    footer .top-wrapper .row {
      margin-bottom: 1px !important;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: stretch;
      -webkit-justify-content: stretch;
          -ms-flex-pack: stretch;
              justify-content: stretch; }
      @media all and (max-width: 1024px) {
        footer .top-wrapper .row {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-pack: start;
          -webkit-justify-content: flex-start;
              -ms-flex-pack: start;
                  justify-content: flex-start;
          -webkit-box-align: start;
          -webkit-align-items: flex-start;
              -ms-flex-align: start;
                  align-items: flex-start; } }
      footer .top-wrapper .row .left, footer .top-wrapper .row .right {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: stretch;
        -webkit-justify-content: stretch;
            -ms-flex-pack: stretch;
                justify-content: stretch;
        float: left;
        width: 50%;
        max-width: 50%;
        vertical-align: top;
        background: rgba(10, 22, 38, 0.2);
        -webkit-box-flex: 1;
        -webkit-flex: 1;
            -ms-flex: 1;
                flex: 1;
        position: relative; }
        @media all and (max-width: 1024px) {
          footer .top-wrapper .row .left, footer .top-wrapper .row .right {
            width: 100%;
            max-width: 100%;
            -webkit-box-pack: start;
            -webkit-justify-content: flex-start;
                -ms-flex-pack: start;
                    justify-content: flex-start;
            -webkit-box-align: start;
            -webkit-align-items: flex-start;
                -ms-flex-align: start;
                    align-items: flex-start; } }
      footer .top-wrapper .row .left {
        margin-right: 1px;
        height: 660px; }
        @media all and (max-width: 1440px) {
          footer .top-wrapper .row .left {
            height: 500px; } }
        @media all and (max-width: 1024px) {
          footer .top-wrapper .row .left {
            -webkit-box-ordinal-group: 3;
            -webkit-order: 2;
                -ms-flex-order: 2;
                    order: 2;
            margin-right: 0;
            height: auto;
            padding-left: 10%;
            padding-right: 10%;
            padding-top: 5em;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center; } }
        @media all and (max-width: 768px) {
          footer .top-wrapper .row .left {
            height: auto;
            float: none;
            padding-left: 3em;
            padding-right: 3em; } }
        footer .top-wrapper .row .left.mCustomScrollbar {
          -ms-touch-action: auto;
              touch-action: auto; }
      footer .top-wrapper .row .title {
        position: relative;
        text-align: center; }
        footer .top-wrapper .row .title .shape {
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          margin: 0 auto;
          height: 100%; }
          footer .top-wrapper .row .title .shape img {
            height: 100%;
            width: auto;
            max-width: 20em; }
          footer .top-wrapper .row .title .shape a {
            height: 100%; }
        footer .top-wrapper .row .title .label {
          text-transform: uppercase;
          font-size: 0.9em;
          padding: 1em 1em;
          font-family: "proxima-nova", sans-serif;
          font-weight: 300;
          letter-spacing: 1px; }
        footer .top-wrapper .row .title .label {
          padding: 0; }
        footer .top-wrapper .row .title a {
          width: 19em;
          margin: 0 auto;
          display: inline-block; }
      footer .top-wrapper .row .text {
        padding: 0 10%;
        font-size: 1.4em;
        line-height: 1.75;
        opacity: 0.8; }
      footer .top-wrapper .row .source {
        text-align: center;
        margin-top: auto;
        padding-top: 3em;
        margin-bottom: 1em; }
        footer .top-wrapper .row .source .name, footer .top-wrapper .row .source .info {
          color: rgba(255, 255, 255, 0.5); }
        footer .top-wrapper .row .source .name {
          font-size: 1em;
          text-transform: uppercase;
          margin-bottom: 0.5em; }
        footer .top-wrapper .row .source .info {
          font-size: 0.8em;
          text-transform: uppercase;
          line-height: 1.75; }
          footer .top-wrapper .row .source .info a {
            color: rgba(255, 255, 255, 0.5); }
            footer .top-wrapper .row .source .info a:hover {
              color: white; }
      footer .top-wrapper .row.social-map-row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
        footer .top-wrapper .row.social-map-row .blog-map {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex; }
        footer .top-wrapper .row.social-map-row .social-feeds, footer .top-wrapper .row.social-map-row .blog-map {
          width: 50%; }
      footer .top-wrapper .row .footer__blog {
        width: -webkit-calc(50% - 1px) !important;
        width: calc(50% - 1px) !important; }
        @media all and (max-width: 1024px) {
          footer .top-wrapper .row .footer__blog {
            width: 100% !important; } }
        footer .top-wrapper .row .footer__blog .text {
          font-size: 2em;
          -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
          footer .top-wrapper .row .footer__blog .text:hover {
            opacity: 1; }
      @media all and (max-width: 768px) {
        footer .top-wrapper .row .review .mCSB_inside > .mCSB_container {
          margin-right: 0;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          top: 0 !important;
          left: 0 !important; } }
      footer .top-wrapper .row .review .wpac {
        font-family: "proxima-nova", sans-serif !important;
        font-weight: 100 !important;
        letter-spacing: 1px !important;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        overflow-y: auto !important;
        overflow-y: overlay !important; }
        @media all and (max-width: 1024px) {
          footer .top-wrapper .row .review .wpac {
            overflow-y: hidden !important; } }
        @supports not selector(*::-webkit-scrollbar) {
          footer .top-wrapper .row .review .wpac {
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.5) transparent; } }
        footer .top-wrapper .row .review .wpac::-webkit-scrollbar {
          height: 66px;
          width: 4px; }
        footer .top-wrapper .row .review .wpac::-webkit-scrollbar-track {
          background: transparent;
          -webkit-border-radius: 10px;
                  border-radius: 10px; }
        footer .top-wrapper .row .review .wpac::-webkit-scrollbar-thumb {
          background: rgba(255, 255, 255, 0.5);
          -webkit-border-radius: 10px;
                  border-radius: 10px;
          cursor: pointer;
          -webkit-transition: background 0.3s ease;
          transition: background 0.3s ease; }
          footer .top-wrapper .row .review .wpac::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.8); }
        footer .top-wrapper .row .review .wpac .wp-google-list {
          padding-bottom: 6.5em !important; }
          @media all and (max-width: 1024px) {
            footer .top-wrapper .row .review .wpac .wp-google-list {
              padding-bottom: 5em !important; } }
      footer .top-wrapper .row .review .mCustomScrollBox {
        padding-bottom: 6.5em; }
        @media all and (max-width: 768px) {
          footer .top-wrapper .row .review .mCustomScrollBox {
            padding-bottom: 0; } }
      footer .top-wrapper .row .review .title {
        padding-top: 6.5em;
        padding-bottom: 6.5em; }
        @media all and (max-width: 1440px) {
          footer .top-wrapper .row .review .title {
            padding-bottom: 3em; } }
        @media all and (max-width: 1024px) {
          footer .top-wrapper .row .review .title {
            padding-top: 0; } }
      footer .top-wrapper .row .review .label {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%; }
        footer .top-wrapper .row .review .label img {
          margin-top: 0.5em; }
        footer .top-wrapper .row .review .label div {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: start;
          -webkit-justify-content: flex-start;
              -ms-flex-pack: start;
                  justify-content: flex-start;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          width: 100%; }
      footer .top-wrapper .row .review .wp-google-rating {
        font-family: "proxima-nova", sans-serif;
        font-weight: 100;
        letter-spacing: 1px;
        color: #e7711b !important;
        font-size: 50px !important; }
    footer .top-wrapper .feed {
      width: -webkit-calc(50% - 1px);
      width: calc(50% - 1px);
      height: 100%;
      float: left;
      display: block;
      position: relative;
      background: rgba(10, 22, 38, 0.2); }
      footer .top-wrapper .feed .cff-shared-link, footer .top-wrapper .feed .cff-likebox, footer .top-wrapper .feed .cff-post-links, footer .top-wrapper .feed .cff-author-img, footer .top-wrapper .feed .cff-date {
        display: none; }
      footer .top-wrapper .feed:first-child {
        margin-right: 1px; }
      footer .top-wrapper .feed .background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%; }
      footer .top-wrapper .feed .background {
        opacity: 0.3;
        background-size: cover; }
      footer .top-wrapper .feed .wrapper, footer .top-wrapper .feed .cff-wrapper {
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        padding: 4em 0; }
      footer .top-wrapper .feed .title, footer .top-wrapper .feed .caption {
        font-size: 1.3em;
        display: block;
        position: relative;
        z-index: 1;
        margin-top: 0; }
      footer .top-wrapper .feed .title, footer .top-wrapper .feed .cff-author-text {
        padding: 0 4em !important;
        -webkit-box-sizing: border-box;
                box-sizing: border-box; }
        @media all and (max-width: 568px), (max-height: 400px) {
          footer .top-wrapper .feed .title, footer .top-wrapper .feed .cff-author-text {
            padding: 0 2em !important; } }
        footer .top-wrapper .feed .title span, footer .top-wrapper .feed .cff-author-text span {
          margin-left: 0.75em;
          text-transform: uppercase;
          font-size: 0.75em; }
        footer .top-wrapper .feed .title:hover, footer .top-wrapper .feed .cff-author-text:hover {
          color: #c8ccd0; }
      footer .top-wrapper .feed .caption, footer .top-wrapper .feed .cff-post-text {
        line-height: 1.8;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        padding: 0 4em;
        color: #c8ccd0;
        margin: 2em 0 0 !important; }
        @media all and (max-width: 568px), (max-height: 400px) {
          footer .top-wrapper .feed .caption, footer .top-wrapper .feed .cff-post-text {
            padding: 0 2em; } }
        footer .top-wrapper .feed .caption a, footer .top-wrapper .feed .cff-post-text a {
          display: block;
          margin-bottom: 0.5em;
          color: white;
          overflow-wrap: break-word;
          -webkit-transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
          footer .top-wrapper .feed .caption a:hover, footer .top-wrapper .feed .cff-post-text a:hover {
            color: #c8ccd0; }
        footer .top-wrapper .feed .caption .hashtag, footer .top-wrapper .feed .cff-post-text .hashtag {
          display: inline-block;
          margin-right: 1em; }
    footer .top-wrapper .social-feeds {
      *zoom: 1;
      margin-top: 1px; }
      footer .top-wrapper .social-feeds:before, footer .top-wrapper .social-feeds:after {
        content: " ";
        display: table; }
      footer .top-wrapper .social-feeds:after {
        clear: both; }
      footer .top-wrapper .social-feeds #facebook .feed {
        overflow: hidden;
        padding-bottom: 2.5em;
        -webkit-box-sizing: border-box;
                box-sizing: border-box; }
      footer .top-wrapper .social-feeds #facebook .cff-wrapper {
        position: relative;
        height: auto;
        overflow: hidden; }
      footer .top-wrapper .social-feeds #facebook .cff-item {
        border: none !important; }
        footer .top-wrapper .social-feeds #facebook .cff-item .cff-author-date .cff-story {
          display: none; }
        footer .top-wrapper .social-feeds #facebook .cff-item .cff-author-date a {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
          transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
          padding-top: 0 !important; }
        footer .top-wrapper .social-feeds #facebook .cff-item .cff-author {
          float: none;
          width: 100%;
          margin: 0; }
        footer .top-wrapper .social-feeds #facebook .cff-item .cff-text {
          text-transform: none !important;
          font-size: 1.3em !important;
          margin-left: 0;
          line-height: 1.8; }
          footer .top-wrapper .social-feeds #facebook .cff-item .cff-text a {
            display: inline-block; }
        footer .top-wrapper .social-feeds #facebook .cff-item .cff-post-text, footer .top-wrapper .social-feeds #facebook .cff-item .cff-media-link {
          padding: 0 4em;
          font-size: 1em !important;
          color: #c8ccd0; }
          @media all and (max-width: 568px), (max-height: 400px) {
            footer .top-wrapper .social-feeds #facebook .cff-item .cff-post-text, footer .top-wrapper .social-feeds #facebook .cff-item .cff-media-link {
              padding: 0 2em; } }
        footer .top-wrapper .social-feeds #facebook .cff-item .cff-media-link a {
          font-size: 1.3em !important; }
        footer .top-wrapper .social-feeds #facebook .cff-item .cff-page-name {
          margin: 0 !important;
          font-size: 1em;
          padding-left: 25px;
          position: relative;
          font-size: 1.3em; }
          footer .top-wrapper .social-feeds #facebook .cff-item .cff-page-name:after {
            font-family: FontAwesome;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            content: "\f082";
            z-index: -1; }
          footer .top-wrapper .social-feeds #facebook .cff-item .cff-page-name a {
            font-size: 0.8em;
            font-weight: 300;
            text-transform: uppercase;
            padding-left: 12px;
            position: relative; }
            footer .top-wrapper .social-feeds #facebook .cff-item .cff-page-name a:after {
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              width: 100%;
              height: 100%;
              content: "@"; }
        footer .top-wrapper .social-feeds #facebook .cff-item p {
          font-family: "proxima-nova", sans-serif;
          font-weight: 300;
          letter-spacing: 1px;
          font-size: 1.3em; }
      footer .top-wrapper .social-feeds #instafeed .feed {
        margin-right: 1px; }
      footer .top-wrapper .social-feeds #youtube {
        position: relative; }
        footer .top-wrapper .social-feeds #youtube iframe {
          opacity: 0.3; }
    @media all and (max-width: 1440px) {
      footer .top-wrapper {
        height: auto !important; }
        footer .top-wrapper .social-map-row {
          display: none !important; }
          footer .top-wrapper .social-map-row #instafeed .feed, footer .top-wrapper .social-map-row #facebook .feed {
            width: -webkit-calc(50% - 1px);
            width: calc(50% - 1px); }
          footer .top-wrapper .social-map-row #twitterfeed .feed:last-child {
            display: none; } }
    @media all and (max-width: 1024px) {
      footer .top-wrapper .social-feeds #instafeed .feed, footer .top-wrapper .social-feeds #facebook .feed {
        width: -webkit-calc(50% - 1px);
        width: calc(50% - 1px); }
        footer .top-wrapper .social-feeds #instafeed .feed:last-child, footer .top-wrapper .social-feeds #facebook .feed:last-child {
          display: none; } }
    @media all and (max-width: 768px) {
      footer .top-wrapper .social-feeds .feed {
        display: none; }
      footer .top-wrapper .social-feeds #instafeed .feed:first-child {
        display: block;
        width: 100%; } }
  footer .bottom-wrapper {
    overflow: auto;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    footer .bottom-wrapper .bottom {
      padding: 2em;
      position: relative;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    footer .bottom-wrapper .top {
      position: relative;
      padding-left: 2em;
      padding-bottom: 3em;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      background: rgba(0, 0, 0, 0.4);
      width: 100%; }
      @media all and (max-width: 1440px) {
        footer .bottom-wrapper .top {
          -webkit-box-align: stretch;
          -webkit-align-items: stretch;
              -ms-flex-align: stretch;
                  align-items: stretch; } }
      @media all and (max-width: 1024px) {
        footer .bottom-wrapper .top {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          padding: 2em; } }
      @media all and (max-width: 768px) {
        footer .bottom-wrapper .top {
          padding: 2em;
          padding-top: 4em; } }
      footer .bottom-wrapper .top__left {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 100%;
        padding-top: 8em; }
        @media all and (max-width: 1440px) {
          footer .bottom-wrapper .top__left {
            -webkit-flex-wrap: wrap;
                -ms-flex-wrap: wrap;
                    flex-wrap: wrap;
            padding-top: 3em; } }
        @media all and (max-width: 1024px) {
          footer .bottom-wrapper .top__left {
            padding-top: 0;
            padding-right: 0; } }
      footer .bottom-wrapper .top__right {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        width: 28vw;
        max-width: 450px;
        -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
                flex-shrink: 0; }
        @media all and (max-width: 1440px) {
          footer .bottom-wrapper .top__right {
            width: 32vw;
            -webkit-box-align: stretch;
            -webkit-align-items: stretch;
                -ms-flex-align: stretch;
                    align-items: stretch; } }
        @media all and (max-width: 1024px) {
          footer .bottom-wrapper .top__right {
            width: auto;
            max-width: none; } }
    footer .bottom-wrapper .block {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      @media all and (max-width: 1440px) {
        footer .bottom-wrapper .block {
          -webkit-box-ordinal-group: 3;
          -webkit-order: 2;
              -ms-flex-order: 2;
                  order: 2;
          padding-top: 0;
          margin-top: 4.5em; }
          footer .bottom-wrapper .block:first-child {
            width: 100%; } }
      @media all and (max-width: 1024px) {
        footer .bottom-wrapper .block {
          margin-top: 2em;
          -webkit-box-align: start;
          -webkit-align-items: flex-start;
              -ms-flex-align: start;
                  align-items: flex-start; } }
      @media all and (max-width: 768px) {
        footer .bottom-wrapper .block {
          -webkit-box-ordinal-group: 4;
          -webkit-order: 3;
              -ms-flex-order: 3;
                  order: 3;
          margin-top: 4em;
          width: 100%;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center; } }
      footer .bottom-wrapper .block .icon-button {
        margin: 0;
        margin-top: 2.5em;
        margin-top: 9px; }
        footer .bottom-wrapper .block .icon-button:first-child {
          margin-top: 0; }
        footer .bottom-wrapper .block .icon-button:hover .button i {
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none; }
          footer .bottom-wrapper .block .icon-button:hover .button i:before {
            text-shadow: none; }
        footer .bottom-wrapper .block .icon-button:hover .button .label {
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none;
          text-shadow: none; }
        @media all and (max-width: 768px) {
          footer .bottom-wrapper .block .icon-button {
            margin: 0 2.25em;
            margin-left: 0;
            margin-right: 0; }
            footer .bottom-wrapper .block .icon-button:first-child {
              -webkit-box-ordinal-group: 3;
              -webkit-order: 2;
                  -ms-flex-order: 2;
                      order: 2; }
            footer .bottom-wrapper .block .icon-button:last-child {
              margin-right: 0; } }
        @media all and (max-width: 400px) {
          footer .bottom-wrapper .block .icon-button {
            margin: 0;
            margin-bottom: 1em; }
            footer .bottom-wrapper .block .icon-button:last-child {
              margin-bottom: 0; } }
        footer .bottom-wrapper .block .icon-button:first-child {
          margin-left: 0; }
        @media all and (max-width: 768px) {
          footer .bottom-wrapper .block .icon-button.phone {
            margin-bottom: 1em; } }
        @media all and (max-width: 768px) {
          footer .bottom-wrapper .block .icon-button.address {
            -webkit-box-ordinal-group: 2;
            -webkit-order: 1;
                -ms-flex-order: 1;
                    order: 1;
            width: 100%;
            text-align: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
                -ms-flex-pack: center;
                    justify-content: center;
            margin-bottom: 1em;
            margin-left: 0;
            margin-right: 0; } }
        @media all and (max-width: 400px) {
          footer .bottom-wrapper .block .icon-button.address {
            margin-top: 0; } }
        @media all and (max-width: 768px) {
          footer .bottom-wrapper .block .icon-button.email {
            margin-right: 0;
            -webkit-box-ordinal-group: 4;
            -webkit-order: 3;
                -ms-flex-order: 3;
                    order: 3;
            margin-bottom: 0; } }
      @media all and (max-width: 1440px) {
        footer .bottom-wrapper .block.address-wrap {
          -webkit-box-ordinal-group: 2;
          -webkit-order: 1;
              -ms-flex-order: 1;
                  order: 1;
          margin-left: 0;
          margin-top: 0; } }
      @media all and (max-width: 768px) {
        footer .bottom-wrapper .block.address-wrap {
          -webkit-box-ordinal-group: 2;
          -webkit-order: 1;
              -ms-flex-order: 1;
                  order: 1; } }
    footer .bottom-wrapper .logo object, footer .bottom-wrapper .logo img {
      width: 28.6em;
      width: auto;
      height: 3.1em;
      height: 3em;
      margin: -0.2em 0 0 -0.7em;
      -webkit-transition: opacity 0.15s cubic-bezier(0.56, 0, 0, 1.005);
      transition: opacity 0.15s cubic-bezier(0.56, 0, 0, 1.005); }
      footer .bottom-wrapper .logo object.dark, footer .bottom-wrapper .logo img.dark {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0; }
    footer .bottom-wrapper .logo a {
      display: inline-block;
      position: relative;
      cursor: pointer; }
      footer .bottom-wrapper .logo a:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
    @media all and (max-width: 768px) {
      footer .bottom-wrapper .logo object, footer .bottom-wrapper .logo img {
        width: auto;
        height: 2.7em; } }
    @media all and (max-width: 568px), (max-height: 400px) {
      footer .bottom-wrapper .logo object, footer .bottom-wrapper .logo img {
        width: 20em;
        height: auto; } }
    @media all and (max-width: 768px) {
      footer .bottom-wrapper .logo {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2;
        margin-top: 1.5em; } }
    footer .bottom-wrapper .address i, footer .bottom-wrapper .phone i, footer .bottom-wrapper .email i, footer .bottom-wrapper .wrap i {
      float: left;
      margin-right: 0.5em;
      font-size: 1.2em; }
      footer .bottom-wrapper .address i:before, footer .bottom-wrapper .phone i:before, footer .bottom-wrapper .email i:before, footer .bottom-wrapper .wrap i:before {
        font-size: 1.2em; }
    footer .bottom-wrapper .address .label, footer .bottom-wrapper .phone .label, footer .bottom-wrapper .email .label, footer .bottom-wrapper .wrap .label {
      display: inline-block;
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      font-size: inherit;
      margin-left: 0; }
    footer .bottom-wrapper .address, footer .bottom-wrapper .wrap, footer .bottom-wrapper .address a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      footer .bottom-wrapper .address p, footer .bottom-wrapper .wrap p, footer .bottom-wrapper .address a p {
        display: inline-block;
        margin: 0;
        line-height: 1.5; }
    footer .bottom-wrapper .wrap {
      opacity: 1;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      margin-top: 13px; }
      @media all and (max-width: 768px) {
        footer .bottom-wrapper .wrap {
          -webkit-flex-wrap: wrap;
              -ms-flex-wrap: wrap;
                  flex-wrap: wrap;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-direction: row;
              -ms-flex-direction: row;
                  flex-direction: row;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center; } }
      @media all and (max-width: 400px) {
        footer .bottom-wrapper .wrap {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column; } }
    footer .bottom-wrapper .phone {
      margin-bottom: 0.25em; }
    footer .bottom-wrapper .social-links {
      margin: 0;
      margin-top: 30px;
      margin-top: 2.5em; }
      @media all and (max-width: 1024px) {
        footer .bottom-wrapper .social-links {
          margin-top: 1.5em; } }
      @media all and (max-width: 768px) {
        footer .bottom-wrapper .social-links {
          font-size: 1.2em;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-ordinal-group: 2;
          -webkit-order: 1;
              -ms-flex-order: 1;
                  order: 1; } }
      @media all and (max-width: 321px) {
        footer .bottom-wrapper .social-links {
          font-size: 1em; } }
      footer .bottom-wrapper .social-links li {
        margin: 0 1.091em 0.5em 0; }
      footer .bottom-wrapper .social-links a {
        font-size: 1.2em; }
    footer .bottom-wrapper .copyright, footer .bottom-wrapper .disclaimer, footer .bottom-wrapper .privacy-policy {
      font-family: "proxima-nova", sans-serif;
      font-weight: 100;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      display: inline-block;
      line-height: 1.75;
      margin-top: auto;
      margin-right: 8px; }
      @media all and (max-width: 768px) {
        footer .bottom-wrapper .copyright, footer .bottom-wrapper .disclaimer, footer .bottom-wrapper .privacy-policy {
          text-align: center; } }
    @media all and (max-width: 1440px) {
      footer .bottom-wrapper .copyright {
        margin-top: 2em; } }
    @media all and (max-width: 1280px) {
      footer .bottom-wrapper .copyright {
        display: block; } }
    @media all and (max-width: 1024px) {
      footer .bottom-wrapper .copyright {
        margin-top: 1em; } }
    @media all and (max-width: 768px) {
      footer .bottom-wrapper .copyright {
        margin-right: 0;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2; } }
    footer .bottom-wrapper .disclaimer {
      margin-right: 0; }
    footer .bottom-wrapper .disclaimer a, footer .bottom-wrapper .privacy-policy a {
      color: rgba(255, 255, 255, 0.5); }
    footer .bottom-wrapper .bottom {
      background: rgba(0, 0, 0, 0.8);
      display: none; }
      footer .bottom-wrapper .bottom .scroll-up {
        position: relative; }
      @media all and (max-width: 768px) {
        footer .bottom-wrapper .bottom {
          padding: 2em; } }
    @media all and (max-width: 1440px) {
      footer .bottom-wrapper .top .scroll-up {
        display: none; } }

.footer__contact {
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 1.37em;
  margin-top: 1.246em;
  letter-spacing: 0.04em;
  opacity: 0.8; }
  @media all and (max-width: 768px) {
    .footer__contact {
      opacity: 1;
      margin-top: 0;
      font-family: "proxima-nova", sans-serif;
      font-weight: 400;
      letter-spacing: 1px;
      letter-spacing: 1px;
      font-size: 1.6em; } }
  .footer__contact:first-child {
    margin-top: 0; }

.footer__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%; }
  @media all and (max-width: 1440px) {
    .footer__menu {
      margin-left: 0;
      margin-right: 2em;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }
  @media all and (max-width: 1024px) {
    .footer__menu {
      margin-right: 0; } }
  @media all and (max-width: 768px) {
    .footer__menu {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2;
      margin-right: 0;
      width: 100%;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-top: 3em; }
      .footer__menu:first-child {
        margin-top: 0; } }
  .footer__menu-label {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    letter-spacing: 1px;
    font-size: 1.91em; }
    @media all and (max-width: 768px) {
      .footer__menu-label {
        font-size: 1.6em;
        text-align: center; } }
  .footer__menu-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 12.5em; }
    @media all and (max-width: 1600px) {
      .footer__menu-nav {
        margin-right: 5vw; } }
    @media all and (max-width: 768px) {
      .footer__menu-nav {
        margin-right: 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        margin-top: 3em;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2; } }
    .footer__menu-nav:last-child {
      margin-right: 0; }
  .footer__menu-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-top: 16px; }
    @media all and (max-width: 768px) {
      .footer__menu-links {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; } }
    .footer__menu-links:first-child {
      margin-top: 0; }
  .footer__menu-link {
    list-style-type: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    margin-top: 12px; }
    @media all and (max-width: 768px) {
      .footer__menu-link {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    .footer__menu-link:first-child {
      margin-top: 0; }
  .footer__menu a {
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.2em;
    text-decoration: none;
    line-height: 100%;
    padding-top: 4px;
    padding-bottom: 4px;
    letter-spacing: 1px;
    opacity: 0.8;
    -webkit-transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    @media all and (max-width: 768px) {
      .footer__menu a {
        text-align: center; } }
    .footer__menu a:hover {
      opacity: 1;
      -webkit-transform: translateY(-5px);
          -ms-transform: translateY(-5px);
              transform: translateY(-5px); }

footer .row:nth-child(1) .wp-google-url {
  color: white !important;
  -webkit-transition: all ease-out 0.2s !important;
  transition: all ease-out 0.2s !important; }
  footer .row:nth-child(1) .wp-google-url:hover {
    color: #35abd7 !important; }

footer .row:nth-child(1) .wp-google-place {
  display: none; }

footer .row:nth-child(1) .wp-google-review {
  margin-top: 12px !important;
  margin-right: 35px !important; }
  @media all and (max-width: 1024px) {
    footer .row:nth-child(1) .wp-google-review {
      margin-right: 0 !important; } }

footer .row:nth-child(1) .wp-gr .wp-google-left {
  padding-left: 6em !important; }
  @media all and (max-width: 1024px) {
    footer .row:nth-child(1) .wp-gr .wp-google-left {
      padding-left: 0 !important; } }

footer .row:nth-child(1) .wp-gr .wp-google-text, footer .row:nth-child(1) .wp-gr .wp-google-text span, footer .row:nth-child(1) .wp-gr .wp-google-time, footer .row:nth-child(1) .wp-gr.wpac a.wp-google-name {
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: "proxima-nova", sans-serif !important;
  letter-spacing: 1px !important; }

footer .row:nth-child(1) .wp-gr .wp-google-text span.wp-more-toggle {
  color: #136aaf !important; }

footer.hidden {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  footer.hidden .testimonials, footer.hidden .top-wrapper {
    display: none; }

.item {
  -webkit-perspective: 150em;
          perspective: 150em; }
  @media all and (max-width: 568px), (max-height: 400px) {
    .item {
      -webkit-perspective: 0;
              perspective: 0; } }
  .item .overlay {
    height: 100%; }
    .item .overlay .middle {
      left: 50%;
      top: 50%;
      position: absolute; }

.scroll-up {
  cursor: pointer; }
  .scroll-up .circle {
    width: 3.5em;
    height: 3.5em;
    background: rgba(255, 255, 255, 0.6);
    -webkit-border-radius: 50%;
            border-radius: 50%;
    -webkit-transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .scroll-up .circle i {
      position: absolute;
      color: #1d2a39; }
      .scroll-up .circle i:before {
        font-size: 2em; }
  .scroll-up:hover .circle {
    background: white; }
  @media all and (max-width: 568px), (max-height: 400px) {
    .scroll-up .circle {
      width: 2em;
      height: 2em; }
      .scroll-up .circle i:before {
        font-size: 1em; } }

.selectors {
  position: absolute;
  top: 55%;
  left: 5%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  z-index: 2;
  min-width: 25em; }
  @media all and (max-width: 1024px) {
    .selectors {
      min-width: 20em; } }
  @media all and (max-width: 768px) {
    .selectors {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .selectors .swiper-container {
    height: 12.5em;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
  .selectors .swiper-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .selectors .selector {
    margin: 0 auto;
    font-size: 0.9em;
    text-transform: uppercase;
    padding: 1.75em;
    position: relative;
    opacity: 0.3;
    -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    cursor: pointer;
    height: auto !important;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    .selectors .selector:before, .selectors .selector:after {
      content: '';
      position: absolute;
      width: 100%;
      height: 1.1em;
      left: 0;
      background: url("../images/ui/featured_nav_highlight_down.png") no-repeat 0 0;
      background-size: contain;
      opacity: 0;
      -webkit-transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    .selectors .selector:before {
      top: -1.1em;
      -webkit-transform: scaleY(-1);
          -ms-transform: scaleY(-1);
              transform: scaleY(-1); }
    .selectors .selector:after {
      top: 100%; }
    .selectors .selector:hover {
      opacity: 1; }
    .selectors .selector.swiper-slide-active {
      z-index: 1;
      opacity: 1;
      padding: 1.5em;
      pointer-events: none;
      font-size: 1.1em; }
      .selectors .selector.swiper-slide-active:before, .selectors .selector.swiper-slide-active:after {
        opacity: 1; }
      @media all and (max-width: 568px), (max-height: 400px) {
        .selectors .selector.swiper-slide-active {
          font-size: 1em; } }
  .selectors .swiper-button-disabled {
    opacity: 1; }

#video-holder {
  position: fixed;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1001;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  padding: 0;
  text-align: center;
  cursor: pointer; }

.video-holder .mejs__container {
  min-width: initial !important; }

.video-holder .mejs__mediaelement video {
  position: absolute;
  height: 160% !important;
  margin-left: 0 !important;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  left: 50%;
  top: 50%;
  width: auto !important; }
  @media all and (max-width: 1024px) {
    .video-holder .mejs__mediaelement video {
      height: 145% !important; } }

.video-holder.front mediaelementwrapper {
  width: 100%; }

.video-holder.front .mejs__container {
  height: 100% !important; }

.video-holder.front .mejs__mediaelement {
  top: 0;
  overflow: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100% !important; }
  .video-holder.front .mejs__mediaelement video {
    width: 100% !important;
    height: auto !important;
    margin-left: 0 !important; }

.video-holder .video-wrapper {
  width: 100%;
  height: 100%;
  cursor: default;
  position: relative; }

.video-holder .hover {
  -webkit-transform: scale(0.98);
      -ms-transform: scale(0.98);
          transform: scale(0.98);
  z-index: 0; }

.video-holder:hover .close-button {
  visibility: visible; }

.video-holder .close-button {
  position: absolute;
  z-index: 5;
  top: 4vw;
  left: 5%;
  -webkit-transform: translateX(-5px);
      -ms-transform: translateX(-5px);
          transform: translateX(-5px);
  -webkit-transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005);
  transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005);
  cursor: pointer;
  visibility: hidden; }
  .video-holder .close-button .circle, .video-holder .close-button .label {
    display: inline-block;
    vertical-align: top; }
  .video-holder .close-button .circle {
    background: #a3a8ad;
    width: 3em;
    height: 3em;
    -webkit-border-radius: 1.5em;
            border-radius: 1.5em;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    .video-holder .close-button .circle .arrow {
      background: url("../images/ui/return_button_arrow.png") no-repeat 0 0;
      position: absolute;
      top: 0.9em;
      left: 1em;
      width: 0.8em;
      height: 1.5em; }
  .video-holder .close-button .label {
    text-transform: uppercase;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 0.9em;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    margin-left: 1em;
    padding: 1.3em 0; }
  .video-holder .close-button:hover .circle {
    -webkit-transform: translateX(-5px);
        -ms-transform: translateX(-5px);
            transform: translateX(-5px); }
  .video-holder .close-button:hover .label {
    -webkit-transform: translateX(-5px);
        -ms-transform: translateX(-5px);
            transform: translateX(-5px); }
  .video-holder .close-button.hide {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }

.video-holder .mejs__inner .hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
  transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
  transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
  transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%; }
  .video-holder .mejs__inner .hover div {
    display: block;
    height: 3.5em;
    width: 3.5em;
    position: absolute; }
  .video-holder .mejs__inner .hover .top {
    border-top: 1px solid white;
    top: 2.5vw; }
  .video-holder .mejs__inner .hover .bottom {
    bottom: 2.5vw;
    border-bottom: 1px solid white; }
  .video-holder .mejs__inner .hover .left {
    left: 2.5vw;
    border-left: 1px solid white; }
  .video-holder .mejs__inner .hover .right {
    right: 2.5vw;
    border-right: 1px solid white; }
  .video-holder .mejs__inner .hover .cross {
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: -4.66667em 0 -4.66667em;
    width: 5.25em;
    height: 5.25em; }
    .video-holder .mejs__inner .hover .cross:before, .video-holder .mejs__inner .hover .cross:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5.25em;
      height: 1px;
      background: white;
      top: 50%; }
    .video-holder .mejs__inner .hover .cross:after {
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg); }

.video-holder .mejs__inner:hover .hover {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 0.7; }

.video-holder .mejs__inner .hover {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  opacity: 0.5; }
  .video-holder .mejs__inner .hover:hover {
    opacity: 0.5; }
  .video-holder .mejs__inner .hover.hide {
    opacity: 0;
    -webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
            transform: scale(0.98); }

.video-holder .mejs__inner .mejs__layers {
  z-index: 1; }

.video-holder .mejs__inner .mejs__overlay-play {
  display: none; }

.video-holder .mejs__inner .mejs__controls {
  display: block;
  padding: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100%; }
  .video-holder .mejs__inner .mejs__controls .hover {
    pointer-events: none; }
  .video-holder .mejs__inner .mejs__controls .mejs__playpause-button button, .video-holder .mejs__inner .mejs__controls .mejs__fullscreen-button button {
    padding: 0;
    font-size: 1em;
    background-size: cover !important;
    background-position: center center;
    background-repeat: no-repeat; }
  .video-holder .mejs__inner .mejs__controls .mejs__fullscreen-button {
    position: absolute;
    right: 5%;
    bottom: 6.5vw;
    height: 2em;
    width: 2em;
    margin-right: 19em; }
    .video-holder .mejs__inner .mejs__controls .mejs__fullscreen-button button {
      background-image: url("../images/ui/video_fs.png");
      width: 2em;
      height: 2em;
      margin: 0; }
    .video-holder .mejs__inner .mejs__controls .mejs__fullscreen-button.mejs__unfullscreen button {
      background-image: url("../images/ui/video_fs_exit.png"); }
  .video-holder .mejs__inner .mejs__controls .mejs__playpause-button {
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 6em;
    height: 6em;
    position: absolute;
    left: 5%;
    bottom: 6.5vw;
    cursor: pointer; }
    .video-holder .mejs__inner .mejs__controls .mejs__playpause-button button {
      width: 6em;
      height: 6em; }
    .video-holder .mejs__inner .mejs__controls .mejs__playpause-button.mejs__play button {
      background-image: url("../images/ui/video_play.png");
      width: 1.5em;
      height: 2.8em;
      margin: 1.5em 0 0 2.25em; }
    .video-holder .mejs__inner .mejs__controls .mejs__playpause-button.mejs__pause button {
      background-image: url("../images/ui/video_pause.png");
      width: 1.7em;
      height: 2.7em;
      margin: 1.5em 0 0 2em; }
    .video-holder .mejs__inner .mejs__controls .mejs__playpause-button.mejs__replay button {
      background-image: url("../images/ui/video_replay.png");
      width: 2.25em;
      height: 2.25em;
      margin: 1.7em 0 0 1.6em;
      -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    .video-holder .mejs__inner .mejs__controls .mejs__playpause-button.mejs__replay:hover button {
      -webkit-transform: rotate(360deg);
          -ms-transform: rotate(360deg);
              transform: rotate(360deg); }
  .video-holder .mejs__inner .mejs__controls .mejs__time-rail {
    display: block;
    position: absolute;
    width: 90%;
    padding: 0;
    left: 5%;
    bottom: 5vw;
    margin: 0;
    height: auto; }
  .video-holder .mejs__inner .mejs__controls .mejs__time-handle-content {
    height: 1.4em;
    width: 1.4em;
    left: -7px;
    top: -1em; }
  .video-holder .mejs__inner .mejs__controls .mejs__time-total,
  .video-holder .mejs__inner .mejs__controls .mejs__time-buffering,
  .video-holder .mejs__inner .mejs__controls .mejs__time-loaded,
  .video-holder .mejs__inner .mejs__controls .mejs__time-current,
  .video-holder .mejs__inner .mejs__controls .mejs__time-hovered,
  .video-holder .mejs__inner .mejs__controls .mejs__time-float-corner,
  .video-holder .mejs__inner .mejs__controls .mejs__time-marker {
    height: 1px;
    -webkit-border-radius: 0;
            border-radius: 0; }
  .video-holder .mejs__inner .mejs__controls .mejs__time-current {
    margin-top: -1px;
    height: 3px; }
  .video-holder .mejs__inner .mejs__controls .mejs__time-float {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.2em;
    background: white;
    width: 4.4em;
    height: 2em;
    padding: 0.5em 0; }
  .video-holder .mejs__inner .mejs__controls .mejs__time-float-current {
    margin: 0 auto;
    text-align: center;
    width: 100%; }
  .video-holder .mejs__inner .mejs__controls .mejs__volume-button {
    position: absolute;
    bottom: 6.5vw;
    right: 5%;
    margin-bottom: -1em;
    margin-right: 14em; }
    .video-holder .mejs__inner .mejs__controls .mejs__volume-button button {
      background-image: url("../images/ui/video_volumn.png");
      background-size: cover !important;
      background-position: center center;
      background-repeat: no-repeat; }
    .video-holder .mejs__inner .mejs__controls .mejs__volume-button.mejs__unmute button {
      background-image: url("../images/ui/video_muted.png"); }
  .video-holder .mejs__inner .mejs__controls .mejs__time {
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.2em;
    position: absolute;
    bottom: 6.5vw;
    right: 5%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: visible; }
    .video-holder .mejs__inner .mejs__controls .mejs__time.mejs__currenttime-container {
      margin-right: 5em; }
    .video-holder .mejs__inner .mejs__controls .mejs__time.mejs__duration-container:before {
      content: '/ '; }

#fullpage-nav {
  position: fixed;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  top: 55%;
  left: 3em;
  z-index: 2;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), visiblity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
  transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), visiblity 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
  #fullpage-nav .pagination {
    list-style-type: none;
    padding: 0;
    margin: 0; }
    #fullpage-nav .pagination .dot {
      background: none;
      position: relative;
      width: 0.7em;
      height: 0.7em;
      -webkit-border-radius: 1em;
              border-radius: 1em;
      display: block;
      position: relative;
      cursor: pointer;
      text-align: center;
      margin: 0 auto 2em;
      -webkit-box-shadow: 0px 0px 0 5px rgba(53, 171, 215, 0);
              box-shadow: 0px 0px 0 5px rgba(53, 171, 215, 0); }
      #fullpage-nav .pagination .dot:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0.7em;
        height: 0.7em;
        border: 1px solid #35abd7;
        -webkit-border-radius: 1em;
                border-radius: 1em;
        -webkit-transition: -webkit-box-shadow 0.3s ease-in;
        transition: -webkit-box-shadow 0.3s ease-in;
        transition: box-shadow 0.3s ease-in;
        transition: box-shadow 0.3s ease-in, -webkit-box-shadow 0.3s ease-in; }
      #fullpage-nav .pagination .dot.selected:before, #fullpage-nav .pagination .dot:hover:before {
        width: 0.5em;
        height: 0.5em;
        top: 0.1em;
        left: 0.1em;
        -webkit-box-shadow: 0px 0px 0 5px #35abd7;
                box-shadow: 0px 0px 0 5px #35abd7; }
      #fullpage-nav .pagination .dot.selected {
        pointer-events: none; }
  #fullpage-nav .swiper-button-prev {
    top: -2em  !important; }
  #fullpage-nav .swiper-button-next {
    top: 125%  !important; }
  #fullpage-nav.shown {
    visibility: visible;
    opacity: 1; }
  @media all and (max-width: 768px) {
    #fullpage-nav {
      display: none; } }

#floating-cta {
  position: fixed;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  right: 3em;
  bottom: 0;
  pointer-events: none;
  z-index: 555;
  -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), visibility 0.5s cubic-bezier(0.56, 0, 0, 1.005);
  transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), visibility 0.5s cubic-bezier(0.56, 0, 0, 1.005);
  text-align: right; }
  #floating-cta .buttons {
    position: relative;
    margin-bottom: 3em;
    display: table;
    margin-left: auto; }
    #floating-cta .buttons .button {
      pointer-events: all;
      position: relative;
      padding: 0;
      margin-bottom: 2em;
      cursor: pointer; }
      #floating-cta .buttons .button:last-child {
        margin-bottom: 0; }
      #floating-cta .buttons .button .icon {
        position: relative;
        background: #aaaaaa;
        width: 4em;
        height: 4em;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 1em;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        -webkit-border-radius: 50%;
                border-radius: 50%;
        float: right;
        cursor: pointer;
        text-align: left; }
        #floating-cta .buttons .button .icon i {
          font-size: 1.75em;
          color: black; }
      #floating-cta .buttons .button a {
        display: inline-block;
        width: 5em;
        height: 5em; }
      #floating-cta .buttons .button .label {
        position: absolute;
        width: 18em;
        text-align: right;
        top: 2.25em;
        right: 7.8em;
        font-family: "proxima-nova", sans-serif;
        font-weight: 300;
        letter-spacing: 1px;
        font-size: 0.9em;
        text-transform: uppercase;
        color: #c8ccd0;
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateX(5px);
            -ms-transform: translateX(5px);
                transform: translateX(5px);
        -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), visibility 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), visibility 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), visibility 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), visibility 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        padding: 0; }
      #floating-cta .buttons .button.hover .label {
        opacity: 1;
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);
        visibility: visible; }
    #floating-cta .buttons .search .icon i {
      font-size: 2.25em;
      -webkit-transform: scaleX(-1);
          -ms-transform: scaleX(-1);
              transform: scaleX(-1); }
    #floating-cta .buttons .search .label {
      right: 3em; }
  #floating-cta #signup {
    pointer-events: all;
    background: #1d2a39;
    position: relative;
    font-size: 1.1em;
    letter-spacing: 1px;
    width: 300px;
    color: white;
    padding: 1.5em 3em 0.5em;
    text-align: left;
    cursor: pointer; }
    #floating-cta #signup button {
      background: none;
      border: none;
      color: white;
      position: absolute;
      top: 1.25em;
      right: 1em;
      cursor: pointer; }
      #floating-cta #signup button i {
        font-size: 1.6em;
        position: relative; }
        #floating-cta #signup button i.hidden {
          position: absolute;
          opacity: 0; }
    #floating-cta #signup .closed {
      line-height: 1.75; }
    #floating-cta #signup .expanded {
      max-height: 0;
      opacity: 0;
      -webkit-transition: max-height 0.5s cubic-bezier(0.56, 0, 0, 1.005), opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: max-height 0.5s cubic-bezier(0.56, 0, 0, 1.005), opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    #floating-cta #signup .text {
      margin-top: -1em;
      line-height: 1.75; }
    #floating-cta #signup .forms {
      font-size: 0.75em; }
      #floating-cta #signup .forms input[type=submit] {
        margin-top: 0; }
      #floating-cta #signup .forms .wpcf7-response-output {
        text-align: left;
        line-height: 1.75; }
    #floating-cta #signup.open {
      cursor: default; }
      #floating-cta #signup.open .expanded {
        max-height: none;
        opacity: 1; }
  #floating-cta.dark .buttons .button .icon i {
    color: white; }
  #floating-cta.dark .buttons .button .label {
    color: #5a5a5a; }
  #floating-cta.hidden {
    opacity: 0;
    visibility: hidden; }
  #floating-cta.relative {
    position: relative;
    right: 4em;
    top: -webkit-calc(100% - 18.4em);
    top: calc(100% - 18.4em);
    bottom: auto; }
  @media all and (max-width: 568px), (max-height: 400px) {
    #floating-cta {
      display: none; } }

.forms .row {
  margin-bottom: 4em;
  *zoom: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end; }
  .forms .row:before, .forms .row:after {
    content: " ";
    display: table; }
  .forms .row:after {
    clear: both; }
  @media all and (max-width: 568px), (max-height: 400px) {
    .forms .row {
      display: block;
      margin-bottom: 2em; } }
  .forms .row .col {
    width: 100%;
    position: relative; }
    .forms .row .col:after {
      content: '';
      height: 1px;
      width: 100%;
      background: rgba(255, 255, 255, 0.3);
      position: absolute;
      left: 0; }
    .forms .row .col.half {
      width: 45%;
      display: inline-block;
      margin-right: 10%; }
    .forms .row .col.right {
      float: right;
      margin: 0; }
    @media all and (max-width: 568px), (max-height: 400px) {
      .forms .row .col.half {
        width: 100%;
        margin: 0;
        display: block; }
      .forms .row .col.right {
        float: none;
        margin-top: 2em; } }

.forms form {
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  letter-spacing: 1px; }
  .forms form label {
    text-align: left;
    text-transform: uppercase;
    font-size: 1em;
    display: block;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1em;
    opacity: 0;
    -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
    .forms form label.visible {
      opacity: 1;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
    .forms form label.force-visible {
      opacity: 1;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
  .forms form input, .forms form textarea, .forms form select {
    width: 100%;
    background: none;
    border: none;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    color: white;
    padding-bottom: 1em;
    font-size: 1.6em;
    line-height: 1.75; }
    .forms form input option, .forms form textarea option, .forms form select option {
      color: black; }
  .forms form textarea {
    max-height: 4.5em; }
  .forms form ::-webkit-input-placeholder {
    color: white;
    opacity: 0.7 !important; }
  .forms form ::-moz-placeholder {
    color: white;
    opacity: 0.7 !important; }
  .forms form :-ms-input-placeholder {
    color: white;
    opacity: 0.7 !important; }
  .forms form ::placeholder {
    color: white;
    opacity: 0.7 !important; }
  .forms form ::-webkit-input-placeholder {
    color: white;
    opacity: 0.7 !important; }
  .forms form :-moz-placeholder {
    color: white;
    opacity: 0.7 !important; }
  .forms form ::-moz-placeholder {
    color: white;
    opacity: 0.7 !important; }
  .forms form :-ms-input-placeholder {
    color: white;
    opacity: 0.7 !important; }
  .forms form input[type=file] {
    opacity: 0; }
  .forms form span.hear_other.wpcf7-form-control-wrap {
    display: none; }
  .forms form .register_newsletter {
    right: 0;
    position: absolute;
    top: -1em; }
  .forms form .bottom-margin {
    margin-bottom: 3em; }
  .forms form .wpcf7-checkbox, .forms form .wpcf7-radio {
    margin-bottom: 2em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    .forms form .wpcf7-checkbox .wpcf7-list-item, .forms form .wpcf7-radio .wpcf7-list-item {
      cursor: pointer; }
      .forms form .wpcf7-checkbox .wpcf7-list-item label, .forms form .wpcf7-radio .wpcf7-list-item label {
        cursor: pointer;
        opacity: 1; }
        .forms form .wpcf7-checkbox .wpcf7-list-item label input, .forms form .wpcf7-radio .wpcf7-list-item label input {
          opacity: 0;
          margin-bottom: 0.5em; }
          .forms form .wpcf7-checkbox .wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:before, .forms form .wpcf7-radio .wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:before {
            background: #35abd7;
            -webkit-transform: scale(1);
                -ms-transform: scale(1);
                    transform: scale(1); }
        .forms form .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label, .forms form .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          text-align: center; }
          .forms form .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label:after, .forms form .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            border: 1px solid rgba(53, 171, 215, 0.7);
            width: 14px;
            height: 14px;
            left: initial;
            right: initial;
            -webkit-box-sizing: border-box;
                    box-sizing: border-box; }
          .forms form .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label:before, .forms form .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background: rgba(53, 171, 215, 0.7);
            width: 8px;
            height: 8px;
            -webkit-transform: scale(0);
                -ms-transform: scale(0);
                    transform: scale(0);
            -webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
            transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
            left: initial;
            right: initial;
            -webkit-box-sizing: content-box;
                    box-sizing: content-box;
            top: 3px; }
  .forms form .upload-label {
    position: absolute;
    top: 1.5em;
    left: 0;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.6em;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.7); }
    .forms form .upload-label i {
      margin-left: 1em; }
  .forms form input[type=submit] {
    width: auto;
    padding: 2em 5em;
    background: transparent;
    border: 1px solid #35abd7;
    text-transform: uppercase;
    margin-top: 3em;
    font-size: 1em;
    cursor: pointer;
    -webkit-transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005), color 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005), color 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), color 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    .forms form input[type=submit]:hover {
      background: #35abd7;
      -webkit-box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
              box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
      -webkit-transform: translateY(-10px);
          -ms-transform: translateY(-10px);
              transform: translateY(-10px); }
  @media all and (max-width: 568px), (max-height: 400px) {
    .forms form label {
      font-size: 0.8em; }
    .forms form input, .forms form textarea {
      font-size: 1.4em; } }

.forms .wpcf7 .wpcf7-form-control-wrap {
  display: block; }

.forms .wpcf7 .wpcf7-response-output {
  border: none;
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 0;
  margin: 0;
  font-size: 1.6em;
  text-align: center; }
  .forms .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
    font-size: 2.5em;
    margin-top: 3em; }

.forms .wpcf7 .ajax-loader {
  display: table;
  margin: 0 auto; }
  .forms .wpcf7 .ajax-loader:nth-child(2) {
    display: none; }

.forms .wpcf7 .wpcf7-not-valid-tip {
  position: absolute;
  text-align: left;
  width: 100%;
  display: block;
  top: -webkit-calc(100% + 2em);
  top: calc(100% + 2em);
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255, 255, 0, 0.75); }

.forms .dropdown.ui {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: none;
  color: white;
  font-size: 1.6em;
  padding: 0;
  min-height: auto;
  line-height: initial; }
  @media all and (max-width: 568px), (max-height: 400px) {
    .forms .dropdown.ui {
      font-size: 1.4em; } }
  .forms .dropdown.ui i {
    right: 0;
    position: absolute;
    top: 0.4em;
    opacity: 0.6; }
  .forms .dropdown.ui .text {
    color: white !important;
    font-weight: 100 !important;
    opacity: 0.6;
    line-height: 1.75;
    padding: 1px 0;
    padding-bottom: 1em; }
  .forms .dropdown.ui .menu {
    -webkit-border-radius: 0;
            border-radius: 0;
    background: #35abd7;
    border: none; }
    .forms .dropdown.ui .menu .item {
      white-space: initial !important;
      padding: 1em;
      color: white;
      cursor: pointer;
      font-size: 0.9em;
      font-weight: 100;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      -webkit-transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      .forms .dropdown.ui .menu .item:hover {
        background: #207da0; }

.share-links {
  text-align: left;
  font-size: 2.4em;
  margin: 2em 0 0 -0.25em;
  padding: 0 !important;
  position: relative; }
  .share-links a {
    display: block;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    width: 50px;
    height: 48px; }
  .share-links .trigger {
    cursor: pointer;
    font-size: 1.1em;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    -webkit-border-radius: 25px;
            border-radius: 25px; }
    .share-links .trigger a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .share-links .trigger a span {
        color: #35abd7; }
        .share-links .trigger a span.text {
          position: absolute;
          left: 50px;
          font-size: 0.7em; }
  .share-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    *zoom: 1;
    background: transparent;
    -webkit-border-radius: 30px;
            border-radius: 30px;
    width: 50px;
    height: 50px;
    overflow: hidden;
    display: inline-block; }
    .share-links ul:before, .share-links ul:after {
      content: " ";
      display: table; }
    .share-links ul:after {
      clear: both; }
    .share-links ul.open {
      width: auto;
      background: #35abd7; }
    .share-links ul li {
      float: left;
      display: block;
      font-size: 0.7em;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      visibility: hidden;
      opacity: 0; }
      .share-links ul li a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        border: 1px solid rgba(53, 171, 215, 0);
        -webkit-transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      .share-links ul li i {
        color: white;
        -webkit-transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      .share-links ul li.facebook i:before {
        margin-left: 0.2em; }
      .share-links ul li.linkedin i:before {
        margin-left: 0.1em; }
      .share-links ul li:hover a {
        background: white;
        border: 1px solid #35abd7; }
      .share-links ul li:hover i {
        color: #35abd7; }
      .share-links ul li.hidden {
        visibility: hidden; }

.breadcrumb {
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 1.5em;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  display: block;
  color: rgba(255, 255, 255, 0.3); }
  .breadcrumb a {
    color: rgba(255, 255, 255, 0.6); }
    .breadcrumb a:hover {
      color: white; }

.get-in-touch {
  position: absolute;
  top: 50%;
  right: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5em 1.5em 1.5em;
  width: 9em;
  text-align: center;
  z-index: 5;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  margin-top: -10em;
  background: white; }
  .get-in-touch .title {
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    color: #5a5a5a;
    text-transform: uppercase;
    font-size: 0.8em;
    line-height: 1.75; }
  .get-in-touch .links .link {
    margin: 4em 0 0;
    position: relative; }
    .get-in-touch .links .link:after {
      content: '';
      position: absolute;
      left: 0;
      top: 150%;
      margin: 0 25%;
      height: 1px;
      width: 50%;
      background: rgba(90, 90, 90, 0.5); }
    .get-in-touch .links .link:first-child {
      margin-top: 2.5em; }
    .get-in-touch .links .link:last-child:after {
      background: none; }
    .get-in-touch .links .link i {
      color: #35abd7;
      font-size: 1.6em;
      -webkit-transition: text-shadow 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: text-shadow 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), text-shadow 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), text-shadow 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      display: block; }
    .get-in-touch .links .link .label {
      color: rgba(90, 90, 90, 0.5);
      text-transform: uppercase;
      margin: 1em 0;
      font-size: 0.9em; }
    .get-in-touch .links .link:hover i {
      -webkit-transform: translateY(-2px);
          -ms-transform: translateY(-2px);
              transform: translateY(-2px);
      text-shadow: 0 10px 10px rgba(0, 0, 0, 0.3); }

.text-block .divider {
  position: relative;
  margin-left: -10%; }
  .text-block .divider .arrow {
    width: 0;
    height: 0;
    border-bottom: 1em solid #35abd7;
    border-left: 1em solid transparent;
    display: inline; }
  .text-block .divider:after {
    top: 2.1em;
    left: -12em;
    width: 30em;
    background: #35abd7;
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(53, 171, 215, 0)), color-stop(50%, #35abd7), color-stop(100%, rgba(53, 171, 215, 0)));
    background: -webkit-gradient(linear, left top, right top, from(rgba(53, 171, 215, 0)), color-stop(50%, #35abd7), to(rgba(53, 171, 215, 0)));
    background: linear-gradient(to right, rgba(53, 171, 215, 0) 0%, #35abd7 50%, rgba(53, 171, 215, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$lightBlue, endColorstr=$lightBlue, GradientType=1 );
    content: '';
    position: absolute;
    height: 1px;
    -webkit-transform: rotate(-45deg) scaleX(0);
        -ms-transform: rotate(-45deg) scaleX(0);
            transform: rotate(-45deg) scaleX(0);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    z-index: -1; }
  .text-block .divider:after {
    left: -15em;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .text-block .divider.animate {
    -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
            transform: translateX(-10px); }
    .text-block .divider.animate .arrow {
      opacity: 0; }
    .text-block .divider.animate:after {
      -webkit-transform: rotate(-45deg) scaleX(0);
          -ms-transform: rotate(-45deg) scaleX(0);
              transform: rotate(-45deg) scaleX(0);
      -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      -webkit-transition-delay: 0.05s;
              transition-delay: 0.05s; }
    .text-block .divider.animate.shown {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
      .text-block .divider.animate.shown .arrow {
        opacity: 1; }
      .text-block .divider.animate.shown:after {
        -webkit-transform: rotate(-45deg) scaleX(1);
            -ms-transform: rotate(-45deg) scaleX(1);
                transform: rotate(-45deg) scaleX(1); }

.text-block h1 {
  padding-bottom: 1em; }

.text-block .text {
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 1.4em;
  line-height: 1.75;
  max-width: 900px; }
  .text-block .text a {
    color: #35abd7; }
    .text-block .text a:hover {
      color: #175c75; }
  @media all and (max-width: 768px) {
    .text-block .text {
      font-size: 1.2em; } }
  .text-block .text h2 {
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.2em;
    margin-bottom: 1em; }
  .text-block .text p {
    margin: 0 0 1em 0; }

@media all and (max-width: 1440px) {
  .text-block .divider {
    display: none; } }

.testimonials {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  position: relative;
  overflow: hidden; }
  .testimonials div {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .testimonials .swiper-button {
    padding: 14px !important; }
    .testimonials .swiper-button.swiper-button-prev {
      left: 10%;
      top: 35px;
      margin-top: 0; }
      @media all and (max-width: 768px) {
        .testimonials .swiper-button.swiper-button-prev {
          top: auto !important;
          bottom: 3em; } }
    .testimonials .swiper-button.swiper-button-next {
      right: 10%;
      top: 35px;
      margin-top: 0; }
      @media all and (max-width: 768px) {
        .testimonials .swiper-button.swiper-button-next {
          top: auto !important;
          bottom: 3em; } }
  .testimonials .backgrounds {
    max-height: none; }
    .testimonials .backgrounds::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(29, 42, 57, 0.8); }
  .testimonials .slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 10%;
    padding-right: 10%;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 100%; }
    @media all and (max-width: 1440px) {
      .testimonials .slide {
        padding-left: 15%;
        padding-right: 15%; } }
    @media all and (max-width: 768px) {
      .testimonials .slide {
        padding-left: 3em;
        padding-right: 3em; } }
  .testimonials .swiper-container {
    margin-top: 6.5em;
    width: 100%; }
    @media all and (max-width: 1440px) {
      .testimonials .swiper-container {
        margin-top: 3em; } }
  .testimonials__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding-top: 10%;
    padding-bottom: 10%; }
    @media all and (max-width: 1440px) {
      .testimonials__wrap {
        padding-bottom: 5em; } }
    @media all and (max-width: 1024px) {
      .testimonials__wrap {
        padding-top: 10em;
        padding-bottom: 5em; } }
    @media all and (max-width: 768px) {
      .testimonials__wrap {
        padding-top: 5em;
        padding-bottom: 5em; } }
  .testimonials__title {
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-size: 5em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 100;
    letter-spacing: 1px; }
    @media all and (max-width: 1440px) {
      .testimonials__title {
        font-size: 3em; } }
    @media all and (max-width: 1024px) {
      .testimonials__title {
        font-size: 3em; } }
    @media all and (max-width: 768px) {
      .testimonials__title {
        font-size: 2em; } }
  .testimonials__text {
    width: 100%;
    font-size: 2em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 100;
    letter-spacing: 1px;
    letter-spacing: 2px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    max-width: 990px;
    text-align: justify; }
    @media all and (max-width: 1440px) {
      .testimonials__text {
        font-size: 1.6em; } }
    @media all and (max-width: 768px) {
      .testimonials__text {
        font-size: 1.3em; } }
  .testimonials__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 80px;
    margin-top: 7em; }
    @media all and (max-width: 1440px) {
      .testimonials__info {
        margin-top: 3em; } }
    .testimonials__info-quotes {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .testimonials__info-name {
      font-size: 1.9em;
      font-family: "proxima-nova", sans-serif;
      font-weight: 100;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 10px;
      margin-top: 0.5em;
      text-transform: uppercase; }
      @media all and (max-width: 1440px) {
        .testimonials__info-name {
          font-size: 1.5em; } }
      @media all and (max-width: 1024px) {
        .testimonials__info-name {
          font-size: 1.4em; } }
      @media all and (max-width: 768px) {
        .testimonials__info-name {
          font-size: 1.3em; } }
    .testimonials__info-tag {
      font-size: 0.9em;
      font-family: "proxima-nova", sans-serif;
      font-weight: 100;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 8px;
      margin-top: 0.8em;
      text-transform: uppercase; }
      @media all and (max-width: 1440px) {
        .testimonials__info-tag {
          font-size: 0.8em; } }
      @media all and (max-width: 1024px) {
        .testimonials__info-tag {
          font-size: 0.7em; } }

.swiper-button {
  background: url("../images/ui/slider_arrow_next.png") no-repeat center center;
  background-size: contain;
  width: 0.8em;
  height: 0.5em;
  -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
  transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
  padding: 10px !important; }
  @media all and (max-width: 768px) {
    .swiper-button {
      top: 50% !important; } }
  .swiper-button.swiper-button-prev {
    left: 2em;
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1); }
  .swiper-button.swiper-button-next {
    right: 2em; }
  .swiper-button.arrow-vertical {
    background: url("../images/ui/slider_arrow_down.png") no-repeat center;
    background-size: contain;
    width: 0.5em;
    height: 0.8em;
    left: 50%;
    right: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    .swiper-button.arrow-vertical.swiper-button-prev {
      -webkit-transform: scaleY(-1) translateX(-50%);
          -ms-transform: scaleY(-1) translateX(-50%);
              transform: scaleY(-1) translateX(-50%);
      top: -1em; }
      .swiper-button.arrow-vertical.swiper-button-prev:hover {
        -webkit-transform: scaleY(-1) translate(-50%, 5px);
            -ms-transform: scaleY(-1) translate(-50%, 5px);
                transform: scaleY(-1) translate(-50%, 5px); }
    .swiper-button.arrow-vertical.swiper-button-next {
      top: -webkit-calc(100% + 2.5em);
      top: calc(100% + 2.5em); }
      .swiper-button.arrow-vertical.swiper-button-next:hover {
        -webkit-transform: translate(-50%, 5px);
            -ms-transform: translate(-50%, 5px);
                transform: translate(-50%, 5px); }

.cta-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .cta-row .icon-button {
    margin-left: 3em; }
    @media all and (max-width: 568px), (max-height: 400px) {
      .cta-row .icon-button {
        margin-right: 0;
        font-size: 0.7em; } }

.swiper-scrollbar-drag {
  background: white; }

.swiper-scrollbar {
  height: 8px !important; }

.hide, .hidden {
  display: none; }

#hero-video {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%; }
  #hero-video:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(29, 42, 57, 0.6); }
  #hero-video .mejs__controls {
    visibility: hidden; }
  #hero-video.front {
    z-index: 100000; }
    #hero-video.front .mejs__controls {
      visibility: visible; }

section.projects-scroller {
  padding: 0; }
  section.projects-scroller .swiper-container {
    overflow: unset; }
  section.projects-scroller h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 3.5em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 100;
    letter-spacing: 1px; }
    @media all and (max-width: 568px), (max-height: 400px) {
      section.projects-scroller h3 {
        font-size: 1.5em; } }
    section.projects-scroller h3.mainTitle {
      padding: 2.4em;
      background-image: url("../images/home/projects.jpg");
      background-size: cover !important;
      background-position: center center;
      background-repeat: no-repeat; }
  section.projects-scroller .scroller {
    display: block;
    text-align: center; }
    section.projects-scroller .scroller .item {
      width: 20%;
      height: 18vw;
      position: relative;
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      z-index: 0;
      -webkit-transition: z-index 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: z-index 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      -webkit-flex-shrink: 0;
          -ms-flex-negative: 0;
              flex-shrink: 0; }
      section.projects-scroller .scroller .item.lonely {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
            -ms-flex-positive: 0;
                flex-grow: 0; }
      @media all and (max-width: 1440px) {
        section.projects-scroller .scroller .item {
          height: 25em; } }
      @media all and (max-width: 1024px) {
        section.projects-scroller .scroller .item {
          width: 50%;
          height: 30em; } }
      @media all and (max-width: 568px), (max-height: 400px) {
        section.projects-scroller .scroller .item {
          overflow: hidden; } }
      section.projects-scroller .scroller .item a {
        display: block;
        width: 100%;
        height: 100%; }
      section.projects-scroller .scroller .item .tag {
        position: absolute;
        left: 50%;
        top: 3em;
        z-index: 1;
        opacity: 0;
        -webkit-transform: translateY(-5px);
            -ms-transform: translateY(-5px);
                transform: translateY(-5px);
        -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        -webkit-transition-delay: 0.1s;
                transition-delay: 0.1s; }
        @media all and (max-width: 768px) {
          section.projects-scroller .scroller .item .tag {
            top: 1em;
            opacity: 1;
            font-size: 0.8em; } }
        section.projects-scroller .scroller .item .tag .shape {
          margin-left: -50%;
          text-align: left; }
          @media all and (max-width: 768px) {
            section.projects-scroller .scroller .item .tag .shape img {
              max-width: 13em;
              height: 2.7em; } }
        section.projects-scroller .scroller .item .tag .label {
          position: absolute;
          text-transform: uppercase;
          top: 1em;
          left: -5em;
          font-size: 0.9em; }
      section.projects-scroller .scroller .item .thumb {
        width: 100%;
        height: 100%;
        -webkit-transition: -webkit-transform 0.5s ease-in-out;
        transition: -webkit-transform 0.5s ease-in-out;
        transition: transform 0.5s ease-in-out;
        transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
        background: black; }
        section.projects-scroller .scroller .item .thumb:after {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          z-index: -1;
          width: 100%;
          height: 100%;
          -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
                  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
          opacity: 0;
          -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
        section.projects-scroller .scroller .item .thumb .image {
          background-size: cover !important;
          background-position: center center;
          background-repeat: no-repeat;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          width: 100%;
          height: 100%;
          opacity: 0.3;
          -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      section.projects-scroller .scroller .item .arrow {
        position: absolute;
        top: 3.75em;
        left: 50%;
        pointer-events: none;
        margin-left: 11em;
        opacity: 0;
        -webkit-transform: translateX(-5px);
            -ms-transform: translateX(-5px);
                transform: translateX(-5px);
        -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        -webkit-transition-delay: 0.2s;
                transition-delay: 0.2s; }
        section.projects-scroller .scroller .item .arrow object, section.projects-scroller .scroller .item .arrow img {
          width: 2.9em;
          height: 1.4em; }
        @media all and (max-width: 768px) {
          section.projects-scroller .scroller .item .arrow {
            top: 1.75em; } }
        @media all and (max-width: 568px), (max-height: 400px) {
          section.projects-scroller .scroller .item .arrow {
            left: 30%;
            display: none; }
            section.projects-scroller .scroller .item .arrow object, section.projects-scroller .scroller .item .arrow img {
              width: 2em;
              height: 1em; } }
      section.projects-scroller .scroller .item .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        max-width: 60%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        opacity: 0.7;
        max-height: 40%; }
        @media all and (max-width: 568px), (max-height: 400px) {
          section.projects-scroller .scroller .item .logo {
            max-width: 50%; } }
      section.projects-scroller .scroller .item .info {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
        text-transform: uppercase;
        text-align: center;
        width: 100%;
        padding: 0 2em 3em;
        opacity: 0;
        -webkit-transform: translateY(1em);
            -ms-transform: translateY(1em);
                transform: translateY(1em);
        display: block;
        -webkit-box-sizing: border-box;
                box-sizing: border-box; }
        @media all and (max-width: 768px) {
          section.projects-scroller .scroller .item .info {
            opacity: 1 !important;
            padding: 0 1em;
            width: 100%;
            bottom: 3em;
            font-size: 0.7em; } }
      section.projects-scroller .scroller .item .title {
        font-size: 3em;
        margin-bottom: 0.5em;
        letter-spacing: 2px; }
        @media all and (max-width: 1440px) {
          section.projects-scroller .scroller .item .title {
            font-size: 2.7em; } }
        @media all and (max-width: 1024px) {
          section.projects-scroller .scroller .item .title {
            font-size: 2.4em; } }
        @media all and (max-width: 768px) {
          section.projects-scroller .scroller .item .title.logo-yes {
            display: none; } }
        @media all and (max-width: 568px), (max-height: 400px) {
          section.projects-scroller .scroller .item .title {
            font-size: 1.8em; } }
      section.projects-scroller .scroller .item .subtitle {
        font-size: 0.9em;
        line-height: 1.75; }
      section.projects-scroller .scroller .item:hover {
        z-index: 5; }
        section.projects-scroller .scroller .item:hover .thumb {
          -webkit-transform: scale(1.15);
              -ms-transform: scale(1.15);
                  transform: scale(1.15); }
          section.projects-scroller .scroller .item:hover .thumb:after {
            opacity: 1; }
          section.projects-scroller .scroller .item:hover .thumb .image {
            opacity: 0.5; }
          @media all and (max-width: 768px) {
            section.projects-scroller .scroller .item:hover .thumb {
              -webkit-transform: none;
                  -ms-transform: none;
                      transform: none; } }
        section.projects-scroller .scroller .item:hover .tag, section.projects-scroller .scroller .item:hover .arrow {
          opacity: 1;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none; }
      @media all and (max-width: 568px), (max-height: 400px) {
        section.projects-scroller .scroller .item {
          width: 50%;
          height: 48vw; } }
    section.projects-scroller .scroller .scroller-wrapper {
      margin: 0 auto; }
    section.projects-scroller .scroller .swiper-wrapper {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      grid-row-gap: 0;
      grid-column-gap: 0; }
  section.projects-scroller.home .scroller {
    margin: 0; }
  section.projects-scroller.notitle {
    padding: 0; }
    section.projects-scroller.notitle .scroller {
      padding: 0; }

section.hero .background {
  background-size: cover !important;
  background-position: center center;
  background-repeat: no-repeat; }

section.cta-block {
  background: #35abd7;
  padding: 5em 10%; }
  section.cta-block .wrap {
    max-width: 800px;
    margin: 0 auto;
    *zoom: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    section.cta-block .wrap:before, section.cta-block .wrap:after {
      content: " ";
      display: table; }
    section.cta-block .wrap:after {
      clear: both; }
    section.cta-block .wrap .text {
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      font-size: 2em;
      line-height: 1.75;
      width: -webkit-calc(100% - 11em);
      width: calc(100% - 11em);
      float: left;
      text-align: left;
      color: white;
      padding-right: 2em; }
    section.cta-block .wrap a {
      position: relative;
      z-index: 0;
      float: left; }
    @media all and (max-width: 768px) {
      section.cta-block .wrap {
        display: block;
        text-align: center; }
        section.cta-block .wrap .text, section.cta-block .wrap a {
          float: none;
          display: block; }
        section.cta-block .wrap .text {
          width: 100%;
          padding-right: 0; }
        section.cta-block .wrap a {
          margin: 2em auto 0; } }
  @media all and (max-width: 1024px) {
    section.cta-block .wrap .text {
      font-size: 1.6em; } }
  @media all and (max-width: 568px), (max-height: 400px) {
    section.cta-block .wrap .text {
      font-size: 1.4em; } }

.content-blocks {
  background: white;
  text-align: center;
  color: rgba(0, 0, 0, 0.8); }
  .content-blocks a {
    display: inline-block; }
  .content-blocks .wrap {
    margin: 0 auto;
    text-align: center; }
  .content-blocks .content-block {
    padding: 3vh 10%; }
    .content-blocks .content-block:last-child {
      margin-bottom: 0;
      padding-bottom: 6vh; }
    .content-blocks .content-block:first-child {
      padding-top: 6vh; }
    .content-blocks .content-block h2, .content-blocks .content-block .text {
      max-width: 800px;
      font-family: "proxima-nova", sans-serif;
      font-weight: 400;
      letter-spacing: 1px;
      text-align: left;
      margin: 0 auto; }
    .content-blocks .content-block h2 {
      font-size: 2.3em;
      line-height: 1.25; }
    .content-blocks .content-block .image {
      width: 100vw;
      max-width: 1000px;
      height: 40vw;
      max-height: 400px;
      margin: 0 auto;
      background-size: cover !important;
      background-position: center center;
      background-repeat: no-repeat; }
      @media all and (max-width: 1440px) {
        .content-blocks .content-block .image {
          max-width: 100%; } }
    .content-blocks .content-block .text {
      font-size: 1.6em;
      color: rgba(33, 33, 33, 0.8);
      margin: 2.5em auto;
      line-height: 1.75; }
      .content-blocks .content-block .text a {
        color: #35abd7; }
        .content-blocks .content-block .text a:hover {
          color: #175c75; }
      .content-blocks .content-block .text:last-child {
        margin-bottom: 0; }
    .content-blocks .content-block .highlights {
      max-width: 900px;
      margin: 5em auto 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap; }
      .content-blocks .content-block .highlights .highlight {
        -webkit-flex-basis: 33.33%;
            -ms-flex-preferred-size: 33.33%;
                flex-basis: 33.33%;
        margin-bottom: 5em; }
        .content-blocks .content-block .highlights .highlight i {
          color: rgba(53, 171, 215, 0.4);
          font-size: 3em; }
        .content-blocks .content-block .highlights .highlight h3 {
          text-transform: uppercase;
          font-size: 1.4em;
          font-family: "proxima-nova", sans-serif;
          font-weight: 300;
          letter-spacing: 1px;
          margin: 1.5em 0; }
        .content-blocks .content-block .highlights .highlight .text {
          text-align: center;
          font-size: 1.1em;
          padding: 0 3em 0; }
        @media all and (max-width: 768px) {
          .content-blocks .content-block .highlights .highlight {
            width: 100%;
            margin-bottom: 5em; }
            .content-blocks .content-block .highlights .highlight:last-child {
              margin-bottom: 0; } }
  @media all and (max-width: 1024px) {
    .content-blocks {
      padding: 5em 0; }
      .content-blocks .content-block h2 {
        font-size: 2.2em; } }
  @media all and (max-width: 768px) {
    .content-blocks .content-block {
      padding: 5vh 3em; }
      .content-blocks .content-block .highlights .highlight {
        -webkit-flex-basis: 50%;
            -ms-flex-preferred-size: 50%;
                flex-basis: 50%; } }
  @media all and (max-width: 568px), (max-height: 400px) {
    .content-blocks .content-block h2 {
      font-size: 1.6em; }
    .content-blocks .content-block .text {
      font-size: 1.4em; }
    .content-blocks .content-block .highlights .highlight {
      -webkit-flex-basis: 100%;
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%; } }

.filters {
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  *zoom: 1;
  position: relative;
  z-index: 10;
  margin-bottom: 3em; }
  .filters:before, .filters:after {
    content: " ";
    display: table; }
  .filters:after {
    clear: both; }
  .filters .filter {
    position: relative;
    display: block;
    float: left;
    min-width: 18em; }
    .filters .filter .label, .filters .filter ul {
      font-size: 1em;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-left: none; }
    .filters .filter .label {
      text-transform: uppercase;
      cursor: pointer;
      position: relative;
      padding: 2em 3em 2em 5em;
      -webkit-transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
      transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
      line-height: 1.75; }
      .filters .filter .label:before {
        content: '';
        position: absolute;
        top: 2.1em;
        left: 2em;
        width: 1.5em;
        height: 0.8em;
        background: url("../images/ui/arrow_down.png") no-repeat 0 0;
        background-size: cover;
        -webkit-transition: -webkit-transform 0.3s ease-in-out;
        transition: -webkit-transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
      @media all and (max-width: 568px), (max-height: 400px) {
        .filters .filter .label {
          padding: 1.5em 2.5em 1.5em 4em; }
          .filters .filter .label:before {
            left: 1.5em;
            top: 1.8em;
            width: 1.2em;
            height: 0.6em; } }
    .filters .filter ul {
      list-style-type: none;
      position: absolute;
      margin: 0;
      padding: 0;
      display: block;
      background: #35abd7;
      width: 100%;
      max-height: 30vh;
      border-top: none;
      -webkit-transform: scaleY(0);
          -ms-transform: scaleY(0);
              transform: scaleY(0);
      -webkit-transform-origin: 0 0;
          -ms-transform-origin: 0 0;
              transform-origin: 0 0;
      border: 1px solid #35abd7;
      border-left: none;
      left: 0;
      top: 100%;
      overflow-y: scroll; }
      .filters .filter ul li {
        font-size: 1em;
        cursor: pointer;
        line-height: 1.75;
        padding: 1.5em 3em 1.5em 2.25em;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateX(-10px);
            -ms-transform: translateX(-10px);
                transform: translateX(-10px);
        -webkit-transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: background 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        text-transform: uppercase; }
        .filters .filter ul li:hover {
          background: #207da0; }
    .filters .filter:first-child .label {
      border-left: 1px solid rgba(255, 255, 255, 0.3); }
    .filters .filter:first-child .ul {
      border-left: 1px solid rgba(255, 255, 255, 0); }
    .filters .filter.opened .label {
      border-color: rgba(255, 255, 255, 0);
      background: #35abd7; }
      .filters .filter.opened .label:before {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
    .filters .filter.opened ul {
      display: block; }

main.home {
  position: relative; }
  main.home .background {
    width: 100%;
    height: 100%; }
  @media all and (max-width: 568px), (max-height: 400px) {
    main.home .fp-tableCell {
      height: auto !important; } }
  main.home section {
    position: relative; }
    main.home section .text-block .text > ol {
      padding: 0;
      margin: 0;
      list-style-type: none; }
      main.home section .text-block .text > ol li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        background: rgba(255, 255, 255, 0);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: relative;
        border-top: 1px solid #8F8F8F;
        padding-right: 5em;
        cursor: pointer; }
        @media all and (max-width: 768px) {
          main.home section .text-block .text > ol li {
            padding-right: 0; } }
        main.home section .text-block .text > ol li:first-child {
          border-top: none; }
        main.home section .text-block .text > ol li::before {
          content: '';
          position: absolute;
          top: 0;
          left: -10vw;
          width: -webkit-calc(100% + 10vw);
          width: calc(100% + 10vw);
          height: 100%;
          background: rgba(255, 255, 255, 0.7);
          -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease;
          opacity: 0; }
          @media all and (max-width: 768px) {
            main.home section .text-block .text > ol li::before {
              left: -3em;
              width: -webkit-calc(100% + 6em);
              width: calc(100% + 6em); } }
        main.home section .text-block .text > ol li.active::before {
          opacity: 1;
          visibility: inherit; }
        main.home section .text-block .text > ol li.active p {
          opacity: 1;
          visibility: inherit; }
        main.home section .text-block .text > ol li.active h3::before {
          -webkit-transform: scaleY(0);
              -ms-transform: scaleY(0);
                  transform: scaleY(0); }
        main.home section .text-block .text > ol li.active h3::after {
          -webkit-transform: scaleX(0.6);
              -ms-transform: scaleX(0.6);
                  transform: scaleX(0.6); }
        main.home section .text-block .text > ol li.active:hover h3::before {
          -webkit-transform: scaleY(1);
              -ms-transform: scaleY(1);
                  transform: scaleY(1); }
        main.home section .text-block .text > ol li.active:hover h3::after {
          -webkit-transform: scaleX(1);
              -ms-transform: scaleX(1);
                  transform: scaleX(1); }
        main.home section .text-block .text > ol li p {
          overflow: hidden;
          opacity: 0;
          visibility: hidden;
          display: none;
          -webkit-box-align: start;
          -webkit-align-items: flex-start;
              -ms-flex-align: start;
                  align-items: flex-start;
          -webkit-box-pack: start;
          -webkit-justify-content: flex-start;
              -ms-flex-pack: start;
                  justify-content: flex-start;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
          transition: opacity 0.3s ease, visibility 0.3s ease;
          margin: 0;
          padding: 0;
          padding-bottom: 3.25em;
          position: relative; }
          @media all and (max-width: 768px) {
            main.home section .text-block .text > ol li p {
              padding-bottom: 3em; } }
        main.home section .text-block .text > ol li em {
          font-style: normal; }
        main.home section .text-block .text > ol li h3 {
          padding-top: 1.55em;
          padding-bottom: 1.55em;
          cursor: pointer;
          -webkit-user-select: none;
             -moz-user-select: none;
              -ms-user-select: none;
                  user-select: none;
          position: relative;
          font-size: 1.69em;
          line-height: 1.5;
          -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease; }
          @media all and (max-width: 1440px) {
            main.home section .text-block .text > ol li h3 {
              font-size: 1.17em; } }
          @media all and (max-width: 1024px) {
            main.home section .text-block .text > ol li h3 {
              padding-left: 1.7em; } }
          main.home section .text-block .text > ol li h3::before {
            content: '';
            position: absolute;
            top: 47px;
            left: -42px;
            width: 1px;
            height: 24px;
            background: #35abd7;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease; }
            @media all and (max-width: 1440px) {
              main.home section .text-block .text > ol li h3::before {
                top: 33px;
                left: -28px;
                height: 18px; } }
            @media all and (max-width: 1024px) {
              main.home section .text-block .text > ol li h3::before {
                left: 9px; } }
            @media all and (max-width: 768px) {
              main.home section .text-block .text > ol li h3::before {
                left: 8px;
                top: 29px;
                height: 16px; } }
          main.home section .text-block .text > ol li h3::after {
            content: '';
            position: absolute;
            top: 58px;
            left: -54px;
            width: 24px;
            height: 1px;
            background: #35abd7;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease; }
            @media all and (max-width: 1440px) {
              main.home section .text-block .text > ol li h3::after {
                top: 41px;
                left: -37px;
                width: 18px; } }
            @media all and (max-width: 1024px) {
              main.home section .text-block .text > ol li h3::after {
                left: 0px; } }
            @media all and (max-width: 768px) {
              main.home section .text-block .text > ol li h3::after {
                top: 36px;
                width: 16px; } }
        main.home section .text-block .text > ol li:hover h3 {
          color: #414141; }
          main.home section .text-block .text > ol li:hover h3::before {
            -webkit-transform: scaleY(0);
                -ms-transform: scaleY(0);
                    transform: scaleY(0); }
    main.home section.hero {
      z-index: 3;
      overflow: hidden;
      min-height: 100vh; }
      @media all and (max-height: 400px) {
        main.home section.hero {
          height: 200vh !important; } }
      @media all and (max-width: 568px), (max-height: 400px) {
        main.home section.hero .fp-tableCell {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-flex-wrap: wrap;
              -ms-flex-wrap: wrap;
                  flex-wrap: wrap;
          padding-top: 7em;
          height: 100% !important;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: start;
          -webkit-align-items: flex-start;
              -ms-flex-align: start;
                  align-items: flex-start; } }
      @media all and (max-height: 400px) {
        main.home section.hero .fp-tableCell {
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center; } }
      main.home section.hero #particle-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        pointer-events: none; }
      main.home section.hero .logo-icon {
        display: none;
        position: absolute;
        z-index: 1;
        top: 55%;
        left: 50%;
        margin: -1.2em 0 0 -1.2em; }
        main.home section.hero .logo-icon:after {
          top: 2.1em;
          left: -12em;
          width: 30em;
          background: #35abd7;
          background: -webkit-gradient(left top, right top, color-stop(0%, rgba(53, 171, 215, 0)), color-stop(50%, #35abd7), color-stop(100%, rgba(53, 171, 215, 0)));
          background: -webkit-gradient(linear, left top, right top, from(rgba(53, 171, 215, 0)), color-stop(50%, #35abd7), to(rgba(53, 171, 215, 0)));
          background: linear-gradient(to right, rgba(53, 171, 215, 0) 0%, #35abd7 50%, rgba(53, 171, 215, 0) 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$lightBlue, endColorstr=$lightBlue, GradientType=1 );
          content: '';
          position: absolute;
          height: 1px;
          -webkit-transform: rotate(-45deg) scaleX(0);
              -ms-transform: rotate(-45deg) scaleX(0);
                  transform: rotate(-45deg) scaleX(0);
          -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          -webkit-backface-visibility: hidden;
                  backface-visibility: hidden;
          z-index: -1; }
        main.home section.hero .logo-icon:after {
          -webkit-transform: rotate(-45deg);
              -ms-transform: rotate(-45deg);
                  transform: rotate(-45deg);
          background: white;
          background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, white), color-stop(100%, rgba(255, 255, 255, 0)));
          background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, white), to(rgba(255, 255, 255, 0)));
          background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 50%, rgba(255, 255, 255, 0) 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
          top: -0.6em;
          opacity: 0.5; }
        main.home section.hero .logo-icon object, main.home section.hero .logo-icon img {
          width: 2.4em;
          height: 2.4em; }
        @media all and (max-width: 1024px) {
          main.home section.hero .logo-icon {
            margin: -1em 0 0 -1em; }
            main.home section.hero .logo-icon:after {
              top: -1em; }
            main.home section.hero .logo-icon object, main.home section.hero .logo-icon img {
              width: 2em;
              height: 2em; } }
        @media all and (max-width: 568px), (max-height: 400px) {
          main.home section.hero .logo-icon {
            display: none; } }
      @media all and (max-width: 1440px) {
        main.home section.hero .selectors {
          left: 0%; } }
      @media all and (max-width: 768px) {
        main.home section.hero .selectors {
          top: 10em;
          left: 0;
          right: 0;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none;
          width: 70%;
          margin: 0 auto;
          min-height: 7em; }
          main.home section.hero .selectors .swiper-container {
            height: auto !important; }
          main.home section.hero .selectors .swiper-wrapper {
            padding: 1em 0; }
          main.home section.hero .selectors .selector {
            white-space: nowrap;
            height: 1em !important; }
          main.home section.hero .selectors .swiper-button {
            top: 50% !important;
            -webkit-box-sizing: border-box;
                    box-sizing: border-box;
            width: 2em;
            padding: 0; }
          main.home section.hero .selectors .swiper-button-prev {
            -webkit-transform: scaleY(-1) rotate(90deg) translateX(-50%) !important;
                -ms-transform: scaleY(-1) rotate(90deg) translateX(-50%) !important;
                    transform: scaleY(-1) rotate(90deg) translateX(-50%) !important;
            left: -3em !important; }
          main.home section.hero .selectors .swiper-button-next {
            -webkit-transform: rotate(-90deg) translateX(-50%) !important;
                -ms-transform: rotate(-90deg) translateX(-50%) !important;
                    transform: rotate(-90deg) translateX(-50%) !important;
            left: auto !important;
            right: -3em !important; } }
      @media all and (max-width: 568px), (max-height: 400px) {
        main.home section.hero .selectors {
          top: 1em;
          height: 7em;
          position: relative; } }
      main.home section.hero .content-slides {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%; }
        @media all and (max-width: 568px), (max-height: 400px) {
          main.home section.hero .content-slides {
            position: relative;
            height: auto;
            padding-top: 2em; } }
        main.home section.hero .content-slides .buttons {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: stretch;
          -webkit-align-items: stretch;
              -ms-flex-align: stretch;
                  align-items: stretch; }
          main.home section.hero .content-slides .buttons .button {
            height: 100%; }
        main.home section.hero .content-slides .content-slide {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          width: 100%;
          height: 100%;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          text-align: center;
          opacity: 0;
          visibility: hidden;
          -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
          transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out; }
          main.home section.hero .content-slides .content-slide.active {
            opacity: 1;
            visibility: visible;
            position: relative; }
          main.home section.hero .content-slides .content-slide .background {
            background-position: center 100%; }
          main.home section.hero .content-slides .content-slide .text-con {
            width: 50%;
            position: relative; }
            main.home section.hero .content-slides .content-slide .text-con .text {
              font-family: "proxima-nova", sans-serif;
              font-weight: 300;
              letter-spacing: 1px;
              font-size: 3.5em;
              text-transform: uppercase;
              letter-spacing: 2px;
              pointer-events: all;
              margin: 0 auto;
              max-width: 800px;
              left: 0;
              right: 0;
              line-height: 1.25; }
              main.home section.hero .content-slides .content-slide .text-con .text.blurred {
                pointer-events: none;
                position: absolute;
                -webkit-filter: blur(4px);
                        filter: blur(4px);
                color: rgba(255, 255, 255, 0.6); }
          main.home section.hero .content-slides .content-slide .blurb {
            position: relative;
            line-height: 1.75;
            margin-top: 0.3em;
            font-weight: 100;
            font-size: 1.4em;
            max-width: 600px; }
            @media all and (max-width: 568px), (max-height: 400px) {
              main.home section.hero .content-slides .content-slide .blurb {
                font-size: 1.2em;
                margin-top: 0 !important; } }
          main.home section.hero .content-slides .content-slide .watch-video {
            position: relative;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 1.5em; }
            @media all and (max-width: 568px), (max-height: 400px) {
              main.home section.hero .content-slides .content-slide .watch-video {
                margin-top: 1em; } }
            main.home section.hero .content-slides .content-slide .watch-video span {
              position: relative;
              left: 0;
              right: 0;
              top: 0;
              display: inline-block;
              -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
              transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
              transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
              transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
              cursor: pointer; }
            main.home section.hero .content-slides .content-slide .watch-video:hover span {
              -webkit-transform: translateY(-0.5em);
                  -ms-transform: translateY(-0.5em);
                      transform: translateY(-0.5em); }
          @media all and (max-width: 1440px) {
            main.home section.hero .content-slides .content-slide .text-con, main.home section.hero .content-slides .content-slide .blurb {
              width: 55%; }
              main.home section.hero .content-slides .content-slide .text-con .text, main.home section.hero .content-slides .content-slide .blurb .text {
                font-size: 3em; } }
          @media all and (max-width: 768px) {
            main.home section.hero .content-slides .content-slide .text-con, main.home section.hero .content-slides .content-slide .blurb {
              width: 80%; }
              main.home section.hero .content-slides .content-slide .text-con .text, main.home section.hero .content-slides .content-slide .blurb .text {
                font-size: 2.6em;
                width: 80%; } }
          @media all and (max-width: 568px), (max-height: 400px) {
            main.home section.hero .content-slides .content-slide .text-con {
              width: 90%; }
              main.home section.hero .content-slides .content-slide .text-con .text {
                font-size: 1.6em;
                line-height: 1.4;
                width: 100%; }
                main.home section.hero .content-slides .content-slide .text-con .text.blurred {
                  opacity: 1;
                  -webkit-filter: blur(3px);
                          filter: blur(3px); }
            main.home section.hero .content-slides .content-slide .blurb {
              width: 90%;
              margin-top: 1em;
              max-height: 27vh;
              overflow: auto; }
            main.home section.hero .content-slides .content-slide.active .background {
              opacity: 0.5; } }
          @media all and (max-height: 400px) {
            main.home section.hero .content-slides .content-slide .blurb {
              max-height: unset; } }
          @media all and (max-width: 321px) {
            main.home section.hero .content-slides .content-slide .text-con .text {
              font-size: 1.2em; } }
      main.home section.hero .video-trigger {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        right: 10%;
        z-index: 1;
        cursor: pointer; }
        main.home section.hero .video-trigger .label {
          font-family: "proxima-nova", sans-serif;
          font-weight: 300;
          letter-spacing: 1px;
          font-size: 1em;
          text-transform: uppercase;
          color: white;
          float: left;
          padding-top: 2em;
          margin-right: 2.5em;
          -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
          @media all and (max-width: 1440px) {
            main.home section.hero .video-trigger .label {
              margin-right: 1.5em; } }
          @media all and (max-width: 768px) {
            main.home section.hero .video-trigger .label {
              padding-top: 1.5em; } }
        main.home section.hero .video-trigger .arrow {
          background: #35abd7;
          padding: 1.5em 2em 1.5em 2.25em;
          display: inline-block;
          position: relative;
          -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
          main.home section.hero .video-trigger .arrow:after {
            top: 2.1em;
            left: -12em;
            width: 30em;
            background: #35abd7;
            background: -webkit-gradient(left top, right top, color-stop(0%, rgba(53, 171, 215, 0)), color-stop(50%, #35abd7), color-stop(100%, rgba(53, 171, 215, 0)));
            background: -webkit-gradient(linear, left top, right top, from(rgba(53, 171, 215, 0)), color-stop(50%, #35abd7), to(rgba(53, 171, 215, 0)));
            background: linear-gradient(to right, rgba(53, 171, 215, 0) 0%, #35abd7 50%, rgba(53, 171, 215, 0) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$lightBlue, endColorstr=$lightBlue, GradientType=1 );
            content: '';
            position: absolute;
            height: 1px;
            -webkit-transform: rotate(-45deg) scaleX(0);
                -ms-transform: rotate(-45deg) scaleX(0);
                    transform: rotate(-45deg) scaleX(0);
            -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
            transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
            transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
            transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
            -webkit-backface-visibility: hidden;
                    backface-visibility: hidden;
            z-index: -1; }
          main.home section.hero .video-trigger .arrow img {
            width: 1em;
            height: 2em;
            vertical-align: middle; }
          @media all and (max-width: 768px) {
            main.home section.hero .video-trigger .arrow {
              padding: 1em 1.4em 1em 1.8em; } }
        main.home section.hero .video-trigger:hover .arrow {
          -webkit-transform: translateX(5px);
              -ms-transform: translateX(5px);
                  transform: translateX(5px);
          -webkit-box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
                  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3); }
          main.home section.hero .video-trigger:hover .arrow:after {
            -webkit-transform: rotate(-45deg) scaleX(1);
                -ms-transform: rotate(-45deg) scaleX(1);
                    transform: rotate(-45deg) scaleX(1); }
        main.home section.hero .video-trigger:hover .label {
          -webkit-transform: translateX(5px);
              -ms-transform: translateX(5px);
                  transform: translateX(5px);
          text-shadow: 0 10px 10px rgba(0, 0, 0, 0.3); }
        @media all and (max-width: 1440px) {
          main.home section.hero .video-trigger {
            right: 5%; } }
        @media all and (max-width: 1024px) {
          main.home section.hero .video-trigger {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
                -ms-flex-direction: column;
                    flex-direction: column; }
            main.home section.hero .video-trigger .label {
              float: none;
              margin-right: 0;
              margin-bottom: 1em; } }
        @media all and (max-width: 768px) {
          main.home section.hero .video-trigger {
            display: block;
            top: 85%;
            left: 50%;
            right: auto;
            -webkit-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%); }
            main.home section.hero .video-trigger .label {
              float: left;
              margin-right: 1em; } }
        @media all and (max-width: 568px), (max-height: 400px) {
          main.home section.hero .video-trigger {
            left: initial;
            top: initial;
            bottom: 0;
            -webkit-transform: none;
                -ms-transform: none;
                    transform: none;
            width: auto;
            position: relative;
            margin-top: auto;
            -webkit-flex-wrap: nowrap;
                -ms-flex-wrap: nowrap;
                    flex-wrap: nowrap;
            margin-bottom: 7em;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-direction: row;
                -ms-flex-direction: row;
                    flex-direction: row; } }
    main.home section.projects-scroller {
      min-height: 100vh;
      padding-bottom: 10em;
      background-image: url("../images/footer/bg.jpg");
      background-size: cover !important;
      background-position: center center;
      background-repeat: no-repeat; }
    main.home section .cta-button {
      display: inline-block;
      margin: 2em 1em; }
    main.home section .scrolldown {
      position: absolute;
      bottom: 1.5em;
      z-index: 1;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      cursor: pointer;
      display: inline-block;
      width: 100%;
      text-align: center; }
      @media all and (max-width: 568px), (max-height: 400px) {
        main.home section .scrolldown {
          left: 0;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none;
          text-align: center;
          width: 100%;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box; } }
      main.home section .scrolldown .label {
        font-family: "proxima-nova", sans-serif;
        font-weight: 300;
        letter-spacing: 1px;
        font-size: 1.1em;
        text-transform: uppercase;
        padding-bottom: 2em;
        margin-left: -0.5em;
        -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
        display: inline-block;
        position: relative; }
        main.home section .scrolldown .label i {
          display: inline-block;
          position: absolute;
          top: 0;
          right: -1.5em;
          -webkit-animation: none;
                  animation: none; }
          main.home section .scrolldown .label i:before {
            padding: 0;
            font-size: 0.8em; }
        @media all and (max-width: 568px), (max-height: 400px) {
          main.home section .scrolldown .label {
            padding-bottom: 1.5em;
            margin-left: 0;
            width: 80%; }
            main.home section .scrolldown .label i {
              right: initial;
              display: none; } }
        main.home section .scrolldown .label:after {
          content: '';
          position: absolute;
          top: 2.5em;
          left: 50%;
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%);
          width: 0;
          height: 1px;
          background: white;
          background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, white), color-stop(100%, rgba(255, 255, 255, 0)));
          background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, white), to(rgba(255, 255, 255, 0)));
          background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 50%, rgba(255, 255, 255, 0) 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
          opacity: 0.5;
          -webkit-transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: all 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          -webkit-backface-visibility: hidden;
                  backface-visibility: hidden; }
          @media all and (max-width: 568px), (max-height: 400px) {
            main.home section .scrolldown .label:after {
              width: 80%;
              top: auto;
              bottom: 0.5em; } }
      main.home section .scrolldown:hover .label i {
        -webkit-animation: MoveUpDown 1s linear infinite;
                animation: MoveUpDown 1s linear infinite; }
      main.home section .scrolldown:hover .label:after {
        width: 180%; }
      main.home section .scrolldown .lines {
        position: relative;
        display: block;
        width: 2.5em;
        margin: 1em auto 0; }
        main.home section .scrolldown .lines:before, main.home section .scrolldown .lines:after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          background: #c8ccd0;
          width: 100%;
          height: 1px; }
        main.home section .scrolldown .lines:after {
          top: 5px; }
      main.home section .scrolldown.black {
        color: black; }
        main.home section .scrolldown.black .label:after {
          background: white;
          background: -webkit-gradient(left top, right top, color-stop(0%, transparent), color-stop(50%, black), color-stop(100%, transparent));
          background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, black), to(transparent));
          background: linear-gradient(to right, transparent 0%, black 50%, transparent 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 ); }
        main.home section .scrolldown.black .lines:before, main.home section .scrolldown.black .lines:after {
          background: black; }
    main.home section.text {
      min-height: 100vh; }
      main.home section.text .background {
        background-size: cover !important;
        background-position: center center;
        background-repeat: no-repeat; }
      main.home section.text .content {
        position: relative;
        z-index: 1;
        color: #5a5a5a;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start;
        *zoom: 1;
        padding: 10%; }
        main.home section.text .content:before, main.home section.text .content:after {
          content: " ";
          display: table; }
        main.home section.text .content:after {
          clear: both; }
        main.home section.text .content .left {
          width: 50%;
          padding-right: 7%;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: start;
          -webkit-align-items: flex-start;
              -ms-flex-align: start;
                  align-items: flex-start;
          -webkit-box-pack: start;
          -webkit-justify-content: flex-start;
              -ms-flex-pack: start;
                  justify-content: flex-start;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column; }
          main.home section.text .content .left img {
            margin-top: 1.5em;
            max-width: 100%;
            max-height: 62px;
            object-fit: contain;
            opacity: 0;
            visibility: hidden;
            -webkit-transform: translateY(10vh);
                -ms-transform: translateY(10vh);
                    transform: translateY(10vh); }
          main.home section.text .content .left h2, main.home section.text .content .left h1, main.home section.text .content .left h3 {
            font-family: "proxima-nova", sans-serif;
            font-weight: 300;
            letter-spacing: 1px;
            font-size: 2.72em;
            line-height: 1.6;
            opacity: 0;
            visibility: hidden;
            -webkit-transform: translateY(10vh);
                -ms-transform: translateY(10vh);
                    transform: translateY(10vh);
            font-weight: 100; }
            main.home section.text .content .left h2.text__title-big, main.home section.text .content .left h1.text__title-big, main.home section.text .content .left h3.text__title-big {
              font-size: 5em;
              line-height: 1.3; }
          @media all and (max-width: 1440px) {
            main.home section.text .content .left h1 {
              font-size: 2.4em; }
              main.home section.text .content .left h1.text__title-big {
                font-size: 3em; } }
          @media all and (max-width: 1024px) {
            main.home section.text .content .left h1 {
              font-size: 2.2em; }
              main.home section.text .content .left h1.text__title-big {
                font-size: 3em; } }
          @media all and (max-width: 768px) {
            main.home section.text .content .left h1 {
              font-size: 1.8em; }
              main.home section.text .content .left h1.text__title-big {
                font-size: 1.8em; } }
          @media all and (max-width: 1440px) {
            main.home section.text .content .left h2, main.home section.text .content .left h3 {
              font-size: 2.2em; }
              main.home section.text .content .left h2.text__title-big, main.home section.text .content .left h3.text__title-big {
                font-size: 3em; } }
          @media all and (max-width: 1024px) {
            main.home section.text .content .left h2, main.home section.text .content .left h3 {
              font-size: 2em; }
              main.home section.text .content .left h2.text__title-big, main.home section.text .content .left h3.text__title-big {
                font-size: 3em; } }
          @media all and (max-width: 768px) {
            main.home section.text .content .left h2, main.home section.text .content .left h3 {
              font-size: 1.6em; }
              main.home section.text .content .left h2.text__title-big, main.home section.text .content .left h3.text__title-big {
                font-size: 2em; } }
        main.home section.text .content .subtitle {
          font-family: "proxima-nova", sans-serif;
          font-weight: 300;
          letter-spacing: 1px;
          font-size: 2.72em;
          font-weight: 100;
          line-height: 1.6;
          opacity: 0;
          visibility: hidden;
          -webkit-transform: translateY(10vh);
              -ms-transform: translateY(10vh);
                  transform: translateY(10vh);
          margin-top: 1.4em;
          text-transform: uppercase; }
          main.home section.text .content .subtitle a {
            color: #5a5a5a;
            -webkit-transition: color 0.25s ease;
            transition: color 0.25s ease; }
            main.home section.text .content .subtitle a:hover {
              color: #000; }
          @media all and (max-width: 1440px) {
            main.home section.text .content .subtitle {
              font-size: 2.2em; } }
          @media all and (max-width: 1024px) {
            main.home section.text .content .subtitle {
              font-size: 2em;
              margin-top: 1em; } }
          @media all and (max-width: 768px) {
            main.home section.text .content .subtitle {
              font-size: 1.6em; } }
        main.home section.text .content .right {
          width: 50%;
          padding-top: 5em; }
          @media all and (max-width: 1440px) {
            main.home section.text .content .right .cta-button {
              margin-bottom: 5em; } }
          @media all and (max-width: 1024px) {
            main.home section.text .content .right .cta-button {
              margin-bottom: 0; } }
        main.home section.text .content .cta-button {
          margin: 4em 0 0 0;
          display: inline-block;
          opacity: 0;
          visibility: hidden;
          -webkit-transform: translateY(10vh);
              -ms-transform: translateY(10vh);
                  transform: translateY(10vh); }
        main.home section.text .content .text-block .text {
          opacity: 0;
          visibility: hidden;
          -webkit-transform: translateX(-5vw);
              -ms-transform: translateX(-5vw);
                  transform: translateX(-5vw); }
      main.home section.text .get-in-touch {
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(50px);
            -ms-transform: translateY(50px);
                transform: translateY(50px); }
      @media all and (max-width: 1440px) {
        main.home section.text .scrolldown {
          display: none; }
        main.home section.text .get-in-touch {
          position: relative;
          top: 0;
          right: auto;
          margin: 0 0 5em;
          width: 40%;
          left: 10%;
          padding: 0;
          max-width: 30em; }
          main.home section.text .get-in-touch .title {
            display: none; }
          main.home section.text .get-in-touch .links {
            *zoom: 1; }
            main.home section.text .get-in-touch .links:before, main.home section.text .get-in-touch .links:after {
              content: " ";
              display: table; }
            main.home section.text .get-in-touch .links:after {
              clear: both; }
            main.home section.text .get-in-touch .links .link {
              display: block;
              width: 50%;
              float: left;
              margin: 0;
              padding: 1.5em 0 1em; }
              main.home section.text .get-in-touch .links .link:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 1px;
                height: 100%;
                background: rgba(0, 0, 0, 0.3); }
              main.home section.text .get-in-touch .links .link:first-child {
                margin: 0; }
                main.home section.text .get-in-touch .links .link:first-child:before {
                  display: none; }
              main.home section.text .get-in-touch .links .link:after {
                display: none; }
          main.home section.text .get-in-touch .links .link:before {
            background: rgba(163, 163, 163, 0.2); }
        main.home section.text .content {
          padding-bottom: 0; }
          main.home section.text .content .left {
            padding-right: 10%;
            width: 60%; }
          main.home section.text .content .right {
            width: 60%;
            padding: 0;
            padding-top: 3em; }
          main.home section.text .content .cta-button {
            margin-top: 3em; } }
      @media all and (max-width: 1024px) {
        main.home section.text {
          min-height: 0; }
          main.home section.text .get-in-touch {
            border: none;
            width: 100%;
            left: 0;
            max-width: none;
            margin: 0; }
          main.home section.text .content {
            padding: 10em 10% 5em; }
            main.home section.text .content .left {
              width: 100%;
              padding: 0; }
            main.home section.text .content .right {
              width: 100%;
              padding-top: 0; }
            main.home section.text .content .text-block {
              text-align: left;
              margin-top: 3em; }
            main.home section.text .content .cta-button {
              margin-bottom: 0; } }
      @media all and (max-width: 768px) {
        main.home section.text .content {
          padding: 5em 3em 5em; } }
      main.home section.text .get-in-touch {
        background: rgba(70, 70, 70, 0.5);
        border: 1px solid rgba(163, 163, 163, 0.2); }
        main.home section.text .get-in-touch .title {
          color: white; }
        main.home section.text .get-in-touch .links .link .label {
          color: white; }
      main.home section.text_dark .background-video {
        background: white; }
      main.home section.text_white .content {
        color: white; }
      main.home section.text_white .scrolldown.black {
        color: white; }
        main.home section.text_white .scrolldown.black .lines:before, main.home section.text_white .scrolldown.black .lines:after {
          background: white; }

main.default .background, main.default-profile .background {
  background-position: 0% 100%; }

main.default .swiper-scrollbar, main.default-profile .swiper-scrollbar {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 5px; }

main.default .content, main.default-profile .content {
  position: relative;
  z-index: 1;
  padding: 20em 10% 20em;
  *zoom: 1;
  padding-bottom: 30em;
  height: -webkit-calc(100vh - 18vw);
  height: calc(100vh - 18vw);
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  @media all and (max-width: 1440px) {
    main.default .content, main.default-profile .content {
      padding-top: 15em;
      padding-bottom: 30em; } }
  main.default .content:before, main.default .content:after, main.default-profile .content:before, main.default-profile .content:after {
    content: " ";
    display: table; }
  main.default .content:after, main.default-profile .content:after {
    clear: both; }
  main.default .content .title, main.default-profile .content .title {
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 6em;
    margin-bottom: 1em; }
    @media all and (max-width: 1440px) {
      main.default .content .title, main.default-profile .content .title {
        font-size: 5em; } }
  main.default .content h1, main.default-profile .content h1 {
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.4em; }
  main.default .content .left, main.default .content .right, main.default-profile .content .left, main.default-profile .content .right {
    width: 50%;
    display: block;
    vertical-align: top;
    float: left; }
  main.default .content .right, main.default-profile .content .right {
    padding: 15em 0 4em; }
  main.default .content .text-block .text, main.default-profile .content .text-block .text {
    line-height: 2; }
  @media all and (max-width: 1440px) {
    main.default .content .right, main.default-profile .content .right {
      padding-top: 4em; } }
  @media all and (max-width: 1024px) {
    main.default .content h1, main.default-profile .content h1 {
      font-size: 1.6em;
      margin-bottom: 0.5em; }
    main.default .content .left, main.default-profile .content .left {
      width: 40%; }
    main.default .content .right, main.default-profile .content .right {
      width: 60%; } }
  @media all and (max-width: 768px) {
    main.default .content h1, main.default-profile .content h1 {
      font-size: 1.4em; }
    main.default .content .left, main.default .content .right, main.default-profile .content .left, main.default-profile .content .right {
      width: 100%;
      float: none; } }
  @media all and (max-width: 1440px) {
    main.default .content, main.default-profile .content {
      height: -webkit-calc(100vh - 25em);
      height: calc(100vh - 25em); } }
  @media all and (max-width: 1024px) {
    main.default .content, main.default-profile .content {
      height: auto;
      padding-bottom: 5em; } }
  main.default .content .left, main.default-profile .content .left {
    width: 40%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  main.default .content .right, main.default-profile .content .right {
    padding: 0 0 0 5%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media all and (max-width: 768px) {
      main.default .content .right, main.default-profile .content .right {
        padding: 7% 0 0; } }
  main.default .content .breadcrumb, main.default-profile .content .breadcrumb {
    margin-bottom: 5vh; }
  main.default .content h1, main.default-profile .content h1 {
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 2.5em;
    letter-spacing: 3px;
    line-height: 1.75;
    opacity: 0.8;
    margin-bottom: 0; }
  main.default .content .arrow, main.default-profile .content .arrow {
    position: absolute;
    top: 55%;
    left: 0;
    z-index: 5;
    position: relative; }
    main.default .content .arrow object, main.default .content .arrow img, main.default-profile .content .arrow object, main.default-profile .content .arrow img {
      width: 2.9em;
      height: 1.4em; }
    main.default .content .arrow a, main.default-profile .content .arrow a {
      display: inline-block;
      position: relative;
      cursor: pointer; }
      main.default .content .arrow a:after, main.default-profile .content .arrow a:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
    main.default .content .arrow a, main.default-profile .content .arrow a {
      -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      main.default .content .arrow a:hover, main.default-profile .content .arrow a:hover {
        -webkit-transform: translateX(5px);
            -ms-transform: translateX(5px);
                transform: translateX(5px); }
    main.default .content .arrow.next, main.default-profile .content .arrow.next {
      -webkit-animation: MoveLeftRight 1s linear infinite;
              animation: MoveLeftRight 1s linear infinite; }
      main.default .content .arrow.next:hover, main.default-profile .content .arrow.next:hover {
        -webkit-animation: none;
                animation: none; }
  main.default .content .text, main.default-profile .content .text {
    font-family: "proxima-nova", sans-serif;
    font-weight: 100;
    letter-spacing: 1px;
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    line-height: 1.75; }
    main.default .content .text p, main.default-profile .content .text p {
      margin: 0; }
    main.default .content .text strong, main.default-profile .content .text strong {
      font-family: "proxima-nova", sans-serif;
      font-weight: 400;
      letter-spacing: 1px; }

main.default .projects-scroller .item.no-logo .info, main.default-profile .projects-scroller .item.no-logo .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 0;
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
  opacity: 1 !important;
  bottom: 0; }
  main.default .projects-scroller .item.no-logo .info .title, main.default-profile .projects-scroller .item.no-logo .info .title {
    margin: 0; }

@media all and (max-width: 1440px) {
  main.default .content h1, main.default-profile .content h1 {
    font-size: 2em !important; } }

@media all and (max-width: 768px) {
  main.default .content .left, main.default-profile .content .left {
    width: -webkit-calc(100% - 7em);
    width: calc(100% - 7em);
    min-width: 0;
    padding-right: 5em; }
    main.default .content .left .wrapper, main.default-profile .content .left .wrapper {
      width: 100%; }
  main.default .content .arrow, main.default-profile .content .arrow {
    display: block;
    left: -12em; } }

@media all and (max-height: 768px) {
  main.default .content h1, main.default-profile .content h1 {
    font-size: 3vh !important; }
  main.default .content .text, main.default-profile .content .text {
    font-size: 2vh !important; } }

@media all and (max-width: 568px), (max-height: 400px) {
  main.default .content, main.default-profile .content {
    padding-bottom: 7em; }
    main.default .content .left, main.default-profile .content .left {
      padding-top: 0;
      width: 100%;
      padding-right: 0; }
    main.default .content h1, main.default-profile .content h1 {
      font-size: 2em;
      line-height: 1.25; }
    main.default .content .text, main.default-profile .content .text {
      font-size: 1.1em !important; }
      main.default .content .text h2, main.default-profile .content .text h2 {
        font-size: 1.1em; } }

main.default-profile .backgrounds {
  background: black; }
  main.default-profile .backgrounds .background {
    opacity: 0.6; }

main.default-profile .content {
  padding: 0;
  height: 100vh; }
  main.default-profile .content .left {
    padding: 10em 10vw;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%; }
    @media all and (max-width: 1024px) {
      main.default-profile .content .left {
        width: 80%;
        padding-left: 3em; } }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.default-profile .content .left {
        width: 100%;
        padding-top: 8em; } }
  main.default-profile .content .right {
    margin-left: 0;
    width: auto; }
  main.default-profile .content h1 {
    opacity: 1;
    margin-bottom: 1.5em; }
  main.default-profile .content .submenu {
    list-style-type: none;
    margin: 4em 0 0;
    padding: 0;
    display: inline-block;
    position: relative; }
    main.default-profile .content .submenu li {
      padding: 0;
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 1.5em;
      font-size: 1em;
      position: relative;
      line-height: 1.75; }
      main.default-profile .content .submenu li a {
        color: rgba(255, 255, 255, 0.6);
        -webkit-transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      main.default-profile .content .submenu li:before {
        content: '';
        background: url("../images/ui/arrow_solid_blue.png") no-repeat 50% 50%;
        background-size: cover;
        width: 0.6em;
        height: 1.2em;
        position: absolute;
        top: 0;
        left: -1.75em;
        opacity: 0;
        -webkit-transform: translateX(-0.25em);
            -ms-transform: translateX(-0.25em);
                transform: translateX(-0.25em);
        -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
        @media all and (max-width: 568px), (max-height: 400px) {
          main.default-profile .content .submenu li:before {
            left: -1em; } }
      main.default-profile .content .submenu li:last-child {
        margin-bottom: 0; }
      main.default-profile .content .submenu li:hover:before, main.default-profile .content .submenu li.selected:before {
        opacity: 1;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none; }
      main.default-profile .content .submenu li:hover a {
        color: white; }
      main.default-profile .content .submenu li.selected {
        pointer-events: none;
        font-weight: 400; }
  main.default-profile .content .arrow {
    display: block;
    left: -6em;
    position: absolute; }
  main.default-profile .content .swiper-wrapper {
    -webkit-box-pack: stretch;
    -webkit-justify-content: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch; }
  main.default-profile .content .image-menu {
    margin: 0;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
  main.default-profile .content li.swiper-slide {
    width: 25%;
    list-style: none;
    text-align: center;
    position: relative; }
    @media all and (max-width: 768px) {
      main.default-profile .content li.swiper-slide {
        width: 50%; } }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.default-profile .content li.swiper-slide {
        width: 70%; } }
    @media all and (max-width: 321px) {
      main.default-profile .content li.swiper-slide {
        width: 80%; } }
    main.default-profile .content li.swiper-slide .bg {
      position: relative;
      background: #1d2a39;
      opacity: 1;
      height: 100%;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
      main.default-profile .content li.swiper-slide .bg .image {
        background-size: cover !important;
        background-position: center center;
        background-repeat: no-repeat;
        height: 100%;
        opacity: 0.7;
        -webkit-transform-origin: 0% 50%;
            -ms-transform-origin: 0% 50%;
                transform-origin: 0% 50%;
        -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    main.default-profile .content li.swiper-slide .info {
      color: white;
      position: absolute;
      padding: 10em 0 3em;
      left: 0;
      bottom: 0;
      right: 0;
      margin: 0 auto;
      visibility: hidden;
      opacity: 0;
      background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, black));
      background: linear-gradient(to bottom, transparent 0%, black 70%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
      -webkit-transition: visibility 0.5s cubic-bezier(0.56, 0, 0, 1.005), opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: visibility 0.5s cubic-bezier(0.56, 0, 0, 1.005), opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), visibility 0.5s cubic-bezier(0.56, 0, 0, 1.005), opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), visibility 0.5s cubic-bezier(0.56, 0, 0, 1.005), opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      @media all and (max-width: 568px), (max-height: 400px) {
        main.default-profile .content li.swiper-slide .info {
          visibility: visible;
          opacity: 1;
          background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, black));
          background: linear-gradient(to bottom, transparent 0%, black 70%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); } }
      main.default-profile .content li.swiper-slide .info:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0; }
      main.default-profile .content li.swiper-slide .info .title {
        font-size: 1.6em;
        margin-bottom: 0.5em;
        position: relative; }
      main.default-profile .content li.swiper-slide .info .subtitle {
        font-size: 1em;
        position: relative;
        text-transform: uppercase;
        font-family: "proxima-nova", sans-serif;
        font-weight: 300;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.5);
        margin: 0.5em 0 3em; }
      main.default-profile .content li.swiper-slide .info .cta-button {
        display: inline-block;
        height: auto; }
      main.default-profile .content li.swiper-slide .info .social-links {
        position: absolute;
        right: 2em;
        bottom: 2em; }
        @media all and (max-width: 568px), (max-height: 400px) {
          main.default-profile .content li.swiper-slide .info .social-links {
            right: 0; }
            main.default-profile .content li.swiper-slide .info .social-links li {
              margin-right: 1em; } }
        main.default-profile .content li.swiper-slide .info .social-links li {
          float: none;
          text-align: left;
          min-width: 0;
          height: auto;
          margin-bottom: 2em; }
          main.default-profile .content li.swiper-slide .info .social-links li:last-child {
            margin-bottom: 0; }
    main.default-profile .content li.swiper-slide:hover .bg {
      opacity: 1; }
      main.default-profile .content li.swiper-slide:hover .bg .image {
        opacity: 1;
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1); }
    main.default-profile .content li.swiper-slide:hover .info {
      visibility: visible;
      opacity: 1;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
      main.default-profile .content li.swiper-slide:hover .info .label {
        opacity: 1; }

@media all and (max-width: 1440px) {
  main.default-profile .content .image-menu li.hover {
    min-width: 40vw; } }

@media all and (max-width: 1024px) {
  main.default-profile .onlyText {
    width: 60% !important; } }

@media all and (max-width: 768px) {
  main.default-profile .onlyText {
    width: 80% !important; }
  main.default-profile .content .left {
    padding-top: 10em; } }

@media all and (max-width: 568px), (max-height: 400px) {
  main.default-profile .onlyText {
    width: 100% !important; } }

main.category {
  min-height: 100vh; }
  main.category .backgrounds {
    background-size: cover !important;
    background-position: center center;
    background-repeat: no-repeat;
    background: black;
    z-index: -1; }
    main.category .backgrounds .background {
      background-size: cover !important;
      background-position: center center;
      background-repeat: no-repeat;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      opacity: 0.6; }
  main.category .content {
    padding: 20em 10% 20em;
    *zoom: 1;
    position: relative;
    overflow: inherit;
    z-index: 1;
    padding-bottom: 15em; }
    @media all and (max-width: 1440px) {
      main.category .content {
        padding-top: 15em;
        padding-bottom: 30em; } }
    main.category .content:before, main.category .content:after {
      content: " ";
      display: table; }
    main.category .content:after {
      clear: both; }
    main.category .content .title {
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      font-size: 6em;
      margin-bottom: 1em; }
      @media all and (max-width: 1440px) {
        main.category .content .title {
          font-size: 5em; } }
    main.category .content h1 {
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      line-height: 1.4em; }
    main.category .content .left, main.category .content .right {
      width: 50%;
      display: block;
      vertical-align: top;
      float: left; }
    main.category .content .right {
      padding: 15em 0 4em; }
    main.category .content .text-block .text {
      line-height: 2; }
    @media all and (max-width: 1440px) {
      main.category .content .right {
        padding-top: 4em; } }
    @media all and (max-width: 1024px) {
      main.category .content h1 {
        font-size: 1.6em;
        margin-bottom: 0.5em; }
      main.category .content .left {
        width: 40%; }
      main.category .content .right {
        width: 60%; } }
    @media all and (max-width: 768px) {
      main.category .content h1 {
        font-size: 1.4em; }
      main.category .content .left, main.category .content .right {
        width: 100%;
        float: none; } }
    main.category .content .right {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      padding: 0 0 0 5%; }
      @media all and (max-width: 568px), (max-height: 400px) {
        main.category .content .right {
          padding: 7% 0 0; } }
    main.category .content .menus {
      *zoom: 1; }
      main.category .content .menus:before, main.category .content .menus:after {
        content: " ";
        display: table; }
      main.category .content .menus:after {
        clear: both; }
      main.category .content .menus .submenu {
        display: block;
        float: left;
        max-width: 40%;
        list-style-type: none;
        margin: 4em 0 0;
        padding: 0;
        display: inline-block;
        position: relative;
        margin-right: 7em; }
        main.category .content .menus .submenu li {
          padding: 0;
          font-family: "proxima-nova", sans-serif;
          font-weight: 300;
          letter-spacing: 1px;
          text-transform: uppercase;
          margin-bottom: 1.5em;
          font-size: 1em;
          position: relative;
          line-height: 1.75; }
          main.category .content .menus .submenu li a {
            color: rgba(255, 255, 255, 0.6);
            -webkit-transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
            transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
          main.category .content .menus .submenu li:before {
            content: '';
            background: url("../images/ui/arrow_solid_blue.png") no-repeat 50% 50%;
            background-size: cover;
            width: 0.6em;
            height: 1.2em;
            position: absolute;
            top: 0;
            left: -1.75em;
            opacity: 0;
            -webkit-transform: translateX(-0.25em);
                -ms-transform: translateX(-0.25em);
                    transform: translateX(-0.25em);
            -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
            transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
            transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
            transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
            @media all and (max-width: 568px), (max-height: 400px) {
              main.category .content .menus .submenu li:before {
                left: -1em; } }
          main.category .content .menus .submenu li:last-child {
            margin-bottom: 0; }
          main.category .content .menus .submenu li:hover:before, main.category .content .menus .submenu li.selected:before {
            opacity: 1;
            -webkit-transform: none;
                -ms-transform: none;
                    transform: none; }
          main.category .content .menus .submenu li:hover a {
            color: white; }
          main.category .content .menus .submenu li.selected {
            pointer-events: none;
            font-weight: 400; }
  @media all and (max-width: 768px) {
    main.category .cta-row {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      main.category .cta-row .icon-button {
        margin: 0 0 0 3em;
        display: inline-block; } }
  @media all and (max-width: 568px), (max-height: 400px) {
    main.category .content {
      padding-top: 10em !important;
      padding-bottom: 7em; } }
  main.category .vimeography-gallery {
    margin: 0;
    width: 100%;
    background: black;
    min-height: 20em; }
    main.category .vimeography-gallery .scroller {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
    main.category .vimeography-gallery .vimeography-player-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      -webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
      transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
      background: rgba(0, 0, 0, 0.9);
      visibility: hidden;
      opacity: 0;
      -webkit-transition-duration: 0.6s;
              transition-duration: 0.6s;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      main.category .vimeography-gallery .vimeography-player-container.visible {
        visibility: visible;
        opacity: 1; }
      main.category .vimeography-gallery .vimeography-player-container .vimeography-player {
        width: 80%; }
        @media all and (max-height: 400px) {
          main.category .vimeography-gallery .vimeography-player-container .vimeography-player {
            width: 50%; } }
    main.category .vimeography-gallery .close-button {
      top: 10em;
      left: 2em; }
    main.category .vimeography-gallery .vimeography-info {
      display: none; }
    main.category .vimeography-gallery .swiper-wrapper {
      display: -webkit-box !important;
      display: -webkit-flex !important;
      display: -ms-flexbox !important;
      display: flex !important;
      margin: 0; }
    main.category .vimeography-gallery .load-more {
      background: #1d2a39;
      padding: 2.5em 0;
      font-size: 13px;
      text-align: center;
      color: #c8ccd0;
      -webkit-transition: color 0.15s linear;
      transition: color 0.15s linear;
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      text-transform: uppercase;
      width: 100%; }
      main.category .vimeography-gallery .load-more:hover {
        cursor: pointer;
        color: #fff;
        -webkit-transition: color 0.15s linear;
        transition: color 0.15s linear; }
  main.category .vimeography-thumbnail {
    display: none;
    height: 14vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer; }
    @media all and (max-width: 1440px) {
      main.category .vimeography-thumbnail {
        height: 20em; } }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.category .vimeography-thumbnail {
        height: 15em; } }
    main.category .vimeography-thumbnail .overlay .info {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      height: 100%;
      padding: 0;
      -webkit-transform: none !important;
          -ms-transform: none !important;
              transform: none !important;
      opacity: 1 !important;
      bottom: 0; }
      main.category .vimeography-thumbnail .overlay .info .title {
        margin: 0; }
    main.category .vimeography-thumbnail.shown {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
    main.category .vimeography-thumbnail h2 {
      color: white;
      font-weight: 400; }
    main.category .vimeography-thumbnail a {
      margin: 0;
      height: 100%;
      position: relative; }
      main.category .vimeography-thumbnail a .thumb {
        overflow: hidden; }
        main.category .vimeography-thumbnail a .thumb .image {
          background-size: auto 150%; }
        main.category .vimeography-thumbnail a .thumb img {
          display: none; }
    main.category .vimeography-thumbnail .info {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      font-size: 0.7em;
      padding: 2em !important; }
      main.category .vimeography-thumbnail .info .arrow {
        background: #35abd7;
        padding: 1.5em 2em 1.5em 2.25em;
        display: inline-block;
        position: relative;
        -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
        main.category .vimeography-thumbnail .info .arrow:after {
          top: 2.1em;
          left: -12em;
          width: 30em;
          background: #35abd7;
          background: -webkit-gradient(left top, right top, color-stop(0%, rgba(53, 171, 215, 0)), color-stop(50%, #35abd7), color-stop(100%, rgba(53, 171, 215, 0)));
          background: -webkit-gradient(linear, left top, right top, from(rgba(53, 171, 215, 0)), color-stop(50%, #35abd7), to(rgba(53, 171, 215, 0)));
          background: linear-gradient(to right, rgba(53, 171, 215, 0) 0%, #35abd7 50%, rgba(53, 171, 215, 0) 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$lightBlue, endColorstr=$lightBlue, GradientType=1 );
          content: '';
          position: absolute;
          height: 1px;
          -webkit-transform: rotate(-45deg) scaleX(0);
              -ms-transform: rotate(-45deg) scaleX(0);
                  transform: rotate(-45deg) scaleX(0);
          -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          -webkit-backface-visibility: hidden;
                  backface-visibility: hidden;
          z-index: -1; }
        main.category .vimeography-thumbnail .info .arrow img {
          width: 1em;
          height: 2em;
          vertical-align: middle; }
        @media all and (max-width: 768px) {
          main.category .vimeography-thumbnail .info .arrow {
            padding: 1em 1.4em 1em 1.8em; } }
      main.category .vimeography-thumbnail .info:hover .arrow {
        -webkit-transform: translateX(5px);
            -ms-transform: translateX(5px);
                transform: translateX(5px);
        -webkit-box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
                box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3); }
        main.category .vimeography-thumbnail .info:hover .arrow:after {
          -webkit-transform: rotate(-45deg) scaleX(1);
              -ms-transform: rotate(-45deg) scaleX(1);
                  transform: rotate(-45deg) scaleX(1); }
      main.category .vimeography-thumbnail .info .arrow {
        position: relative;
        opacity: 1;
        margin: 0;
        left: auto;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        top: 0;
        padding: 0;
        margin-bottom: 1em;
        background: none;
        font-size: 3em; }
        @media all and (max-width: 568px), (max-height: 400px) {
          main.category .vimeography-thumbnail .info .arrow {
            font-size: 2em;
            margin-bottom: 0.5em; } }
        main.category .vimeography-thumbnail .info .arrow:after {
          content: none; }

.fullscreen-vid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 111;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.9);
  visibility: hidden; }
  .fullscreen-vid div {
    min-width: 60%;
    background: none;
    max-height: 90%; }
    @media all and (max-width: 768px) {
      .fullscreen-vid div {
        min-width: 90%; } }
    @media all and (max-height: 400px) {
      .fullscreen-vid div {
        padding-top: 40% !important; } }
    .fullscreen-vid div iframe {
      max-height: 100% !important;
      top: 5% !important; }
  .fullscreen-vid .close {
    position: absolute;
    left: 80%;
    top: 7em;
    font-size: 2em;
    -webkit-transition: ease-out 0.3s all;
    transition: ease-out 0.3s all;
    min-width: 0;
    cursor: pointer; }
    @media all and (max-width: 768px) {
      .fullscreen-vid .close {
        left: 92%; } }
    .fullscreen-vid .close:hover {
      color: #F7AE25; }

main.info .breadcrumb {
  display: inline; }

main.info section.hero {
  min-height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  color: rgba(0, 0, 0, 0.8);
  position: relative; }
  main.info section.hero .content {
    width: 75%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    margin-left: 5%;
    padding: 10em 0 5em; }
    main.info section.hero .content .get-in-touch {
      display: none; }
  main.info section.hero .wrapper {
    display: inline-block;
    width: 60%; }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.info section.hero .wrapper {
        width: 100%; } }
  main.info section.hero .submenu {
    list-style-type: none;
    margin: 4em 0 0;
    padding: 0;
    display: inline-block;
    position: relative;
    width: 40%;
    float: left;
    margin: 0;
    margin-top: 7em;
    max-width: 18vw;
    padding-right: 3%; }
    main.info section.hero .submenu li {
      padding: 0;
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 1.5em;
      font-size: 1em;
      position: relative;
      line-height: 1.75; }
      main.info section.hero .submenu li a {
        color: rgba(255, 255, 255, 0.6);
        -webkit-transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      main.info section.hero .submenu li:before {
        content: '';
        background: url("../images/ui/arrow_solid_blue.png") no-repeat 50% 50%;
        background-size: cover;
        width: 0.6em;
        height: 1.2em;
        position: absolute;
        top: 0;
        left: -1.75em;
        opacity: 0;
        -webkit-transform: translateX(-0.25em);
            -ms-transform: translateX(-0.25em);
                transform: translateX(-0.25em);
        -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
        @media all and (max-width: 568px), (max-height: 400px) {
          main.info section.hero .submenu li:before {
            left: -1em; } }
      main.info section.hero .submenu li:last-child {
        margin-bottom: 0; }
      main.info section.hero .submenu li:hover:before, main.info section.hero .submenu li.selected:before {
        opacity: 1;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none; }
      main.info section.hero .submenu li:hover a {
        color: white; }
      main.info section.hero .submenu li.selected {
        pointer-events: none;
        font-weight: 400; }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.info section.hero .submenu {
        width: 100%; } }
    @media all and (max-width: 1024px) {
      main.info section.hero .submenu {
        max-width: none;
        padding: 0; } }
    main.info section.hero .submenu li {
      font-size: 1.1em; }
      main.info section.hero .submenu li a {
        color: #5a5a5a; }
        main.info section.hero .submenu li a:hover, main.info section.hero .submenu li a.selected {
          color: black !important; }
      main.info section.hero .submenu li:hover a {
        color: #5a5a5a; }
  main.info section.hero .breadcrumb {
    margin-top: 3em;
    color: black; }
    main.info section.hero .breadcrumb a {
      color: #35abd7; }
      main.info section.hero .breadcrumb a:hover {
        color: #175c75; }
  main.info section.hero h1, main.info section.hero .text {
    max-width: 800px; }
  main.info section.hero h1 {
    font-size: 3.3em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.25; }
  main.info section.hero .text {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.3em;
    line-height: 1.75;
    margin: 3em 0;
    color: rgba(33, 33, 33, 0.8); }
    main.info section.hero .text a {
      color: #35abd7; }
      main.info section.hero .text a:hover {
        color: #175c75; }
    main.info section.hero .text p {
      margin: 0 0 1em; }
  main.info section.hero .points p {
    font-size: 1.5em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.75; }
  main.info section.hero .points ul {
    list-style-type: none;
    color: #35abd7;
    margin-top: 2em;
    padding: 0; }
    main.info section.hero .points ul li {
      font-family: "proxima-nova", sans-serif;
      font-weight: 400;
      letter-spacing: 1px;
      font-size: 1.2em;
      padding: 1.25em 0 0.75em;
      border-top: 1px solid rgba(53, 171, 215, 0.25);
      display: table;
      line-height: 1.75; }
      main.info section.hero .points ul li i {
        margin-right: 0.5em; }
  @media all and (max-width: 1440px) {
    main.info section.hero {
      display: block; }
      main.info section.hero .content {
        width: 80%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
        main.info section.hero .content .get-in-touch {
          display: block;
          width: auto; }
      main.info section.hero .submenu {
        left: 0;
        position: relative; }
      main.info section.hero .get-in-touch {
        position: relative;
        top: 0;
        right: auto;
        margin: 0 0 5em;
        width: 40%;
        left: 10%;
        padding: 0;
        max-width: 30em;
        top: auto;
        right: auto;
        left: 0;
        display: block;
        margin: 5em 0;
        display: none; }
        main.info section.hero .get-in-touch .title {
          display: none; }
        main.info section.hero .get-in-touch .links {
          *zoom: 1; }
          main.info section.hero .get-in-touch .links:before, main.info section.hero .get-in-touch .links:after {
            content: " ";
            display: table; }
          main.info section.hero .get-in-touch .links:after {
            clear: both; }
          main.info section.hero .get-in-touch .links .link {
            display: block;
            width: 50%;
            float: left;
            margin: 0;
            padding: 1.5em 0 1em; }
            main.info section.hero .get-in-touch .links .link:before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              width: 1px;
              height: 100%;
              background: rgba(0, 0, 0, 0.3); }
            main.info section.hero .get-in-touch .links .link:first-child {
              margin: 0; }
              main.info section.hero .get-in-touch .links .link:first-child:before {
                display: none; }
            main.info section.hero .get-in-touch .links .link:after {
              display: none; } }
  @media all and (max-width: 1024px) {
    main.info section.hero {
      padding-bottom: 4em; }
      main.info section.hero .content {
        padding: 15em 0 3em;
        display: block; }
        main.info section.hero .content .get-in-touch {
          display: none; }
      main.info section.hero h1 {
        font-size: 3em; }
      main.info section.hero .submenu {
        margin: 0 0 5em; }
      main.info section.hero .get-in-touch {
        display: block;
        top: 0;
        left: 0;
        width: 80%;
        margin: 0 auto; } }
  @media all and (max-width: 568px), (max-height: 400px) {
    main.info section.hero .content {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      width: 90%;
      padding-top: 10em; }
    main.info section.hero h1 {
      font-size: 2.5em; }
    main.info section.hero .text {
      margin: 2em 0 2.5em;
      font-size: 1.2em; }
    main.info section.hero .points p {
      font-size: 1.2em; } }
  main.info section.hero .backgrounds {
    z-index: 0; }
  main.info section.hero .background {
    opacity: 0.05;
    height: 100%; }
  main.info section.hero h1 {
    font-size: 2.3em; }
  main.info section.hero .info-top-header {
    font-size: 1.5em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.25;
    display: inline;
    text-transform: uppercase; }
  main.info section.hero .text h1 {
    font-size: 1.6em;
    margin-bottom: 1em; }
  main.info section.hero .text h2 {
    font-size: 1.4em;
    margin-bottom: 1em;
    font-weight: 200; }

main.contact .icon-button {
  display: inline-block; }
  main.contact .icon-button i {
    position: relative; }
    main.contact .icon-button i.dripicons-mail {
      top: 0.18em; }
    main.contact .icon-button i.dripicons-location {
      top: 0.1em; }
  main.contact .icon-button .label br {
    display: none; }

main.contact .map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  visibility: hidden;
  opacity: 0; }
  main.contact .map .map-container {
    width: 100%;
    height: 100%; }
  main.contact .map .directions {
    position: absolute;
    bottom: 4em;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center; }
    main.contact .map .directions .icon {
      background: #35abd7;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      width: 8em;
      height: 5.75em;
      padding-top: 2.25em;
      margin: 0 auto;
      -webkit-transition: -webkit-transform 0.5s ease-in-out;
      transition: -webkit-transform 0.5s ease-in-out;
      transition: transform 0.5s ease-in-out;
      transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out; }
      main.contact .map .directions .icon i {
        font-size: 3.5em; }
    main.contact .map .directions .label {
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      font-size: 1em;
      text-transform: uppercase;
      margin-top: 2em;
      -webkit-transition: -webkit-transform 0.5s ease-in-out;
      transition: -webkit-transform 0.5s ease-in-out;
      transition: transform 0.5s ease-in-out;
      transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
      -webkit-transition-delay: 0.1s;
              transition-delay: 0.1s; }
    main.contact .map .directions:hover .icon {
      -webkit-transform: translateY(-5px);
          -ms-transform: translateY(-5px);
              transform: translateY(-5px); }
    main.contact .map .directions:hover .label {
      -webkit-transform: translateY(-5px);
          -ms-transform: translateY(-5px);
              transform: translateY(-5px); }
  main.contact .map .mapinfo {
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.2em;
    color: #5a5a5a; }

main.contact .close-button {
  position: absolute;
  background: url("../images/ui/close.png") no-repeat 0 0;
  background-size: cover;
  width: 3.6em;
  height: 3.6em;
  top: 10em;
  right: 10em;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  z-index: 2;
  visibility: hidden;
  opacity: 0; }
  main.contact .close-button:hover {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px); }
  @media all and (max-width: 568px), (max-height: 400px) {
    main.contact .close-button {
      top: 7em;
      right: 5em; } }

main.contact .content {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  padding-top: 15em;
  position: relative;
  z-index: 1; }
  main.contact .content h1, main.contact .content h2 {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.6em !important;
    margin: 0 0 2.5em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase; }
  main.contact .content .wrapper {
    padding: 0 5vw; }
    @media all and (max-width: 768px) {
      main.contact .content .wrapper {
        padding: 0; } }
  main.contact .content .email {
    margin-left: 3em; }
  main.contact .content .address {
    margin-top: 1.5em;
    display: inline-block;
    position: relative; }
    main.contact .content .address:after {
      content: '';
      position: absolute;
      width: -webkit-calc(100% - 2em);
      width: calc(100% - 2em);
      height: 1px;
      background: #35abd7;
      top: 100%;
      left: 1em;
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    main.contact .content .address.underlined:after {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
  main.contact .content .forms {
    position: relative; }
    main.contact .content .forms .content-slides {
      padding: 5em 0;
      position: relative; }
      main.contact .content .forms .content-slides .content-slide {
        width: 80%;
        max-width: 600px;
        margin: 0 auto;
        height: auto;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
        transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
        position: absolute;
        left: 0;
        right: 0; }
        main.contact .content .forms .content-slides .content-slide.active {
          opacity: 1;
          visibility: visible; }
    main.contact .content .forms .selectors {
      top: 2em;
      left: -10%;
      -webkit-transform: translate(-50%, 0);
          -ms-transform: translate(-50%, 0);
              transform: translate(-50%, 0); }
      main.contact .content .forms .selectors .swiper-container {
        height: 21em; }
      @media all and (max-width: 1440px) {
        main.contact .content .forms .selectors {
          left: 0; } }
      @media all and (max-width: 1024px) {
        main.contact .content .forms .selectors {
          position: relative;
          top: 2em;
          left: 0;
          right: 0;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none;
          width: 70%;
          margin: 0 auto;
          min-height: 7em; }
          main.contact .content .forms .selectors .swiper-container {
            height: auto !important; }
          main.contact .content .forms .selectors .swiper-wrapper {
            padding: 1em 0; }
          main.contact .content .forms .selectors .selector {
            white-space: nowrap;
            height: 1em !important; }
          main.contact .content .forms .selectors .swiper-button {
            top: 50% !important;
            -webkit-box-sizing: border-box;
                    box-sizing: border-box;
            width: 2em;
            padding: 0; }
          main.contact .content .forms .selectors .swiper-button-prev {
            -webkit-transform: scaleY(-1) rotate(90deg) translateX(-50%) !important;
                -ms-transform: scaleY(-1) rotate(90deg) translateX(-50%) !important;
                    transform: scaleY(-1) rotate(90deg) translateX(-50%) !important;
            left: -3em !important; }
          main.contact .content .forms .selectors .swiper-button-next {
            -webkit-transform: rotate(-90deg) translateX(-50%) !important;
                -ms-transform: rotate(-90deg) translateX(-50%) !important;
                    transform: rotate(-90deg) translateX(-50%) !important;
            left: auto !important;
            right: -3em !important; } }
  @media all and (max-width: 1280px) {
    main.contact .content {
      margin: 0 0 0 10%; } }
  @media all and (max-width: 1024px) {
    main.contact .content {
      margin: 0 auto; } }
  @media all and (max-height: 768px) {
    main.contact .content {
      padding-top: 10em !important; } }
  @media all and (max-width: 768px) {
    main.contact .content .wrapper {
      padding: 0 3em; }
    main.contact .content .email {
      margin: 0.5em 0 0 0;
      display: block; }
    main.contact .content .forms .content-slides .content-slide {
      width: auto;
      padding: 0 3em; }
    main.contact .content.mapview .icon-button {
      display: none; } }

main.general-listing .backgrounds {
  z-index: -1; }

main.general-listing .content {
  position: relative;
  padding: 20em 10% 20em;
  *zoom: 1;
  min-height: -webkit-calc(100vh - 18vw);
  min-height: calc(100vh - 18vw);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 10vh !important; }
  @media all and (max-width: 1440px) {
    main.general-listing .content {
      padding-top: 15em;
      padding-bottom: 30em; } }
  main.general-listing .content:before, main.general-listing .content:after {
    content: " ";
    display: table; }
  main.general-listing .content:after {
    clear: both; }
  main.general-listing .content .title {
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 6em;
    margin-bottom: 1em; }
    @media all and (max-width: 1440px) {
      main.general-listing .content .title {
        font-size: 5em; } }
  main.general-listing .content h1 {
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.4em; }
  main.general-listing .content .left, main.general-listing .content .right {
    width: 50%;
    display: block;
    vertical-align: top;
    float: left; }
  main.general-listing .content .right {
    padding: 15em 0 4em; }
  main.general-listing .content .text-block .text {
    line-height: 2; }
  @media all and (max-width: 1440px) {
    main.general-listing .content .right {
      padding-top: 4em; } }
  @media all and (max-width: 1024px) {
    main.general-listing .content h1 {
      font-size: 1.6em;
      margin-bottom: 0.5em; }
    main.general-listing .content .left {
      width: 40%; }
    main.general-listing .content .right {
      width: 60%; } }
  @media all and (max-width: 768px) {
    main.general-listing .content h1 {
      font-size: 1.4em; }
    main.general-listing .content .left, main.general-listing .content .right {
      width: 100%;
      float: none; } }
  @media all and (max-width: 1440px) {
    main.general-listing .content {
      min-height: -webkit-calc(100vh - 25em);
      min-height: calc(100vh - 25em); } }
  @media all and (max-width: 1024px) {
    main.general-listing .content {
      height: auto;
      padding-bottom: 5em; } }
  main.general-listing .content h1 {
    margin-top: -0.1em; }
  main.general-listing .content .left {
    width: 40%; }
  main.general-listing .content .right {
    width: 55%;
    padding: 0 0 0 5%; }
  main.general-listing .content .text-block .divider:after {
    width: 20em;
    left: -10em; }
  main.general-listing .content .text-block .text {
    font-family: "proxima-nova", sans-serif;
    font-weight: 100;
    letter-spacing: 1px; }

main.general-listing .items {
  width: 100%; }

main.general-listing .search-form {
  position: relative;
  width: 100%;
  margin-bottom: 10em;
  text-align: center; }
  main.general-listing .search-form form {
    width: 50%;
    max-width: 500px;
    position: relative;
    margin: 0 auto; }
    main.general-listing .search-form form:after {
      content: '';
      height: 1px;
      width: 100%;
      background: rgba(255, 255, 255, 0.2);
      position: absolute;
      top: 3em;
      left: 0; }
    main.general-listing .search-form form .search {
      background: none;
      border: none;
      -webkit-transform: scaleX(-1);
          -ms-transform: scaleX(-1);
              transform: scaleX(-1);
      font-size: 2em;
      position: absolute;
      top: 0;
      right: 0;
      color: white;
      cursor: pointer;
      -webkit-transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      main.general-listing .search-form form .search:hover {
        color: #c8ccd0; }

main.general-listing .items.empty {
  background: none; }

main.general-listing .load-more {
  background: #1d2a39;
  padding: 2.5em 0;
  font-size: 13px;
  text-align: center;
  color: #c8ccd0;
  -webkit-transition: color 0.15s linear;
  transition: color 0.15s linear;
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%; }
  main.general-listing .load-more:hover {
    cursor: pointer;
    color: #fff;
    -webkit-transition: color 0.15s linear;
    transition: color 0.15s linear; }

main.general-listing .noresults {
  padding: 0 10%;
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 1.6em; }
  main.general-listing .noresults p {
    margin: 0 0 5em; }

@media all and (max-height: 768px) {
  main.general-listing .search-form {
    margin-bottom: 5em; } }

@media all and (max-width: 1024px) {
  main.general-listing .content {
    padding-top: 15em !important; }
    main.general-listing .content .filters .filter {
      min-width: 0; } }

@media all and (max-width: 768px) {
  main.general-listing .content .left {
    width: 100%; }
  main.general-listing .content .right {
    padding: 4em 0 0;
    width: 100%; }
  main.general-listing .content .text-block {
    margin-top: 4em; }
  main.general-listing .cta-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    main.general-listing .cta-row .icon-button {
      margin: 0 0 0 3em;
      display: inline-block; }
  main.general-listing .search-form form {
    width: 100%; } }

@media all and (max-width: 568px), (max-height: 400px) {
  main.general-listing .content {
    padding-top: 10em !important;
    padding-bottom: 7em; } }

main.listing .items, main.clients .items {
  background: rgba(29, 42, 57, 0.7);
  *zoom: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }
  main.listing .items .item, main.clients .items .item {
    width: 20%;
    height: 18vw;
    position: relative;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    z-index: 0;
    -webkit-transition: z-index 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: z-index 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0; }
    main.listing .items .item.lonely, main.clients .items .item.lonely {
      -webkit-box-flex: 0;
      -webkit-flex-grow: 0;
          -ms-flex-positive: 0;
              flex-grow: 0; }
    @media all and (max-width: 1440px) {
      main.listing .items .item, main.clients .items .item {
        height: 25em; } }
    @media all and (max-width: 1024px) {
      main.listing .items .item, main.clients .items .item {
        width: 50%;
        height: 30em; } }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.listing .items .item, main.clients .items .item {
        overflow: hidden; } }
    main.listing .items .item a, main.clients .items .item a {
      display: block;
      width: 100%;
      height: 100%; }
    main.listing .items .item .tag, main.clients .items .item .tag {
      position: absolute;
      left: 50%;
      top: 3em;
      z-index: 1;
      opacity: 0;
      -webkit-transform: translateY(-5px);
          -ms-transform: translateY(-5px);
              transform: translateY(-5px);
      -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      -webkit-transition-delay: 0.1s;
              transition-delay: 0.1s; }
      @media all and (max-width: 768px) {
        main.listing .items .item .tag, main.clients .items .item .tag {
          top: 1em;
          opacity: 1;
          font-size: 0.8em; } }
      main.listing .items .item .tag .shape, main.clients .items .item .tag .shape {
        margin-left: -50%;
        text-align: left; }
        @media all and (max-width: 768px) {
          main.listing .items .item .tag .shape img, main.clients .items .item .tag .shape img {
            max-width: 13em;
            height: 2.7em; } }
      main.listing .items .item .tag .label, main.clients .items .item .tag .label {
        position: absolute;
        text-transform: uppercase;
        top: 1em;
        left: -5em;
        font-size: 0.9em; }
    main.listing .items .item .thumb, main.clients .items .item .thumb {
      width: 100%;
      height: 100%;
      -webkit-transition: -webkit-transform 0.5s ease-in-out;
      transition: -webkit-transform 0.5s ease-in-out;
      transition: transform 0.5s ease-in-out;
      transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
      background: black; }
      main.listing .items .item .thumb:after, main.clients .items .item .thumb:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
                box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
        opacity: 0;
        -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      main.listing .items .item .thumb .image, main.clients .items .item .thumb .image {
        background-size: cover !important;
        background-position: center center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        opacity: 0.3;
        -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    main.listing .items .item .arrow, main.clients .items .item .arrow {
      position: absolute;
      top: 3.75em;
      left: 50%;
      pointer-events: none;
      margin-left: 11em;
      opacity: 0;
      -webkit-transform: translateX(-5px);
          -ms-transform: translateX(-5px);
              transform: translateX(-5px);
      -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      -webkit-transition-delay: 0.2s;
              transition-delay: 0.2s; }
      main.listing .items .item .arrow object, main.listing .items .item .arrow img, main.clients .items .item .arrow object, main.clients .items .item .arrow img {
        width: 2.9em;
        height: 1.4em; }
      @media all and (max-width: 768px) {
        main.listing .items .item .arrow, main.clients .items .item .arrow {
          top: 1.75em; } }
      @media all and (max-width: 568px), (max-height: 400px) {
        main.listing .items .item .arrow, main.clients .items .item .arrow {
          left: 30%;
          display: none; }
          main.listing .items .item .arrow object, main.listing .items .item .arrow img, main.clients .items .item .arrow object, main.clients .items .item .arrow img {
            width: 2em;
            height: 1em; } }
    main.listing .items .item .logo, main.clients .items .item .logo {
      position: absolute;
      top: 50%;
      left: 50%;
      max-width: 60%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      opacity: 0.7;
      max-height: 40%; }
      @media all and (max-width: 568px), (max-height: 400px) {
        main.listing .items .item .logo, main.clients .items .item .logo {
          max-width: 50%; } }
    main.listing .items .item .info, main.clients .items .item .info {
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: 1;
      text-transform: uppercase;
      text-align: center;
      width: 100%;
      padding: 0 2em 3em;
      opacity: 0;
      -webkit-transform: translateY(1em);
          -ms-transform: translateY(1em);
              transform: translateY(1em);
      display: block;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      @media all and (max-width: 768px) {
        main.listing .items .item .info, main.clients .items .item .info {
          opacity: 1 !important;
          padding: 0 1em;
          width: 100%;
          bottom: 3em;
          font-size: 0.7em; } }
    main.listing .items .item .title, main.clients .items .item .title {
      font-size: 3em;
      margin-bottom: 0.5em;
      letter-spacing: 2px; }
      @media all and (max-width: 1440px) {
        main.listing .items .item .title, main.clients .items .item .title {
          font-size: 2.7em; } }
      @media all and (max-width: 1024px) {
        main.listing .items .item .title, main.clients .items .item .title {
          font-size: 2.4em; } }
      @media all and (max-width: 768px) {
        main.listing .items .item .title.logo-yes, main.clients .items .item .title.logo-yes {
          display: none; } }
      @media all and (max-width: 568px), (max-height: 400px) {
        main.listing .items .item .title, main.clients .items .item .title {
          font-size: 1.8em; } }
    main.listing .items .item .subtitle, main.clients .items .item .subtitle {
      font-size: 0.9em;
      line-height: 1.75; }
    main.listing .items .item:hover, main.clients .items .item:hover {
      z-index: 5; }
      main.listing .items .item:hover .thumb, main.clients .items .item:hover .thumb {
        -webkit-transform: scale(1.15);
            -ms-transform: scale(1.15);
                transform: scale(1.15); }
        main.listing .items .item:hover .thumb:after, main.clients .items .item:hover .thumb:after {
          opacity: 1; }
        main.listing .items .item:hover .thumb .image, main.clients .items .item:hover .thumb .image {
          opacity: 0.5; }
        @media all and (max-width: 768px) {
          main.listing .items .item:hover .thumb, main.clients .items .item:hover .thumb {
            -webkit-transform: none;
                -ms-transform: none;
                    transform: none; } }
      main.listing .items .item:hover .tag, main.listing .items .item:hover .arrow, main.clients .items .item:hover .tag, main.clients .items .item:hover .arrow {
        opacity: 1;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none; }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.listing .items .item, main.clients .items .item {
        width: 50%;
        height: 48vw; } }
  main.listing .items:before, main.listing .items:after, main.clients .items:before, main.clients .items:after {
    content: " ";
    display: table; }
  main.listing .items:after, main.clients .items:after {
    clear: both; }
  main.listing .items .item, main.clients .items .item {
    height: 18vw;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%; }
    @media all and (max-width: 1440px) {
      main.listing .items .item, main.clients .items .item {
        height: 22vw; } }
    @media all and (max-width: 1024px) {
      main.listing .items .item, main.clients .items .item {
        -webkit-flex-basis: 33.33%;
            -ms-flex-preferred-size: 33.33%;
                flex-basis: 33.33%;
        height: 30vw; } }
    @media all and (max-width: 768px) {
      main.listing .items .item, main.clients .items .item {
        -webkit-flex-basis: 50%;
            -ms-flex-preferred-size: 50%;
                flex-basis: 50%;
        height: 40vw; } }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.listing .items .item, main.clients .items .item {
        -webkit-flex-basis: 100%;
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%;
        height: 80vw; } }

main.clients .content .filters .filter {
  max-width: none; }

main.portfolio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  main.portfolio .swiper-wrapper {
    cursor: url("../images/scroll-side.png"), pointer; }
  main.portfolio .swiper-wrapper, main.portfolio .swiper-slide {
    height: 100vh; }
  main.portfolio .project-info {
    text-align: center;
    position: relative;
    padding: 2.5% 0 0 0;
    max-width: 1000px;
    width: 50vw;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    main.portfolio .project-info .background {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: 0.1;
      background-size: cover;
      background-position: center center; }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.portfolio .project-info {
        height: 100%;
        overflow: auto; }
        main.portfolio .project-info .background {
          position: fixed; } }
    main.portfolio .project-info .mCustomScrollBox {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    main.portfolio .project-info .mCSB_container {
      width: 100%; }
    main.portfolio .project-info .info-wrapper {
      padding: 0 6vw 0;
      width: 100%; }
    main.portfolio .project-info .title, main.portfolio .project-info .services, main.portfolio .project-info .categories {
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      text-transform: uppercase;
      display: block; }
      main.portfolio .project-info .title a, main.portfolio .project-info .services a, main.portfolio .project-info .categories a {
        color: rgba(255, 255, 255, 0.8); }
        main.portfolio .project-info .title a:hover, main.portfolio .project-info .services a:hover, main.portfolio .project-info .categories a:hover {
          color: white; }
    main.portfolio .project-info .title {
      font-size: 3em; }
      @media all and (max-width: 768px) {
        main.portfolio .project-info .title {
          font-size: 2em !important; } }
    main.portfolio .project-info .services {
      margin: 3em 0 3.5em;
      line-height: 1.75; }
    main.portfolio .project-info .link {
      display: block;
      margin: 2em 0 3em; }
    main.portfolio .project-info .logo {
      max-height: 15vh;
      width: auto;
      max-width: 70%;
      padding: 3vh 0; }
    main.portfolio .project-info .categories {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      margin: 4em 0 0; }
      main.portfolio .project-info .categories .category {
        text-align: center;
        margin: 0 2.5em 4.5em; }
        main.portfolio .project-info .categories .category .label, main.portfolio .project-info .categories .category .text {
          color: rgba(255, 255, 255, 0.6);
          font-size: 1em; }
        main.portfolio .project-info .categories .category .label {
          margin-bottom: 1em; }
    main.portfolio .project-info .body-text {
      font-family: "proxima-nova", sans-serif;
      font-weight: 100;
      letter-spacing: 1px;
      font-size: 1.3em;
      color: rgba(255, 255, 255, 0.9);
      text-align: left;
      line-height: 1.75; }
      main.portfolio .project-info .body-text p {
        margin: 0; }
      main.portfolio .project-info .body-text strong {
        font-family: "proxima-nova", sans-serif;
        font-weight: 400;
        letter-spacing: 1px; }
  main.portfolio .arrow {
    position: absolute;
    top: 55%;
    left: 0;
    z-index: 5; }
    main.portfolio .arrow object, main.portfolio .arrow img {
      width: 2.9em;
      height: 1.4em; }
    main.portfolio .arrow a {
      display: inline-block;
      position: relative;
      cursor: pointer; }
      main.portfolio .arrow a:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
    main.portfolio .arrow a {
      -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      main.portfolio .arrow a:hover {
        -webkit-transform: translateX(5px);
            -ms-transform: translateX(5px);
                transform: translateX(5px); }
    main.portfolio .arrow.next {
      -webkit-animation: MoveLeftRight 1s linear infinite;
              animation: MoveLeftRight 1s linear infinite; }
      main.portfolio .arrow.next:hover {
        -webkit-animation: none;
                animation: none; }
  main.portfolio .mainIMG {
    width: 65%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
    @media all and (max-width: 768px) {
      main.portfolio .mainIMG {
        width: 80%; } }
    main.portfolio .mainIMG .image {
      opacity: 0.7;
      position: absolute;
      width: 100%;
      background-position: center;
      height: 100%;
      background-repeat: no-repeat;
      background-size: cover; }
    main.portfolio .mainIMG img.logo {
      margin-top: 8vh;
      width: 33%;
      -webkit-filter: drop-shadow(5px 1px 6px #222);
      filter: drop-shadow(5px 1px 6px #222);
      position: relative; }
      @media all and (max-width: 1024px) {
        main.portfolio .mainIMG img.logo {
          width: 30em; } }
      @media all and (max-width: 568px), (max-height: 400px) {
        main.portfolio .mainIMG img.logo {
          width: 20em; } }
  main.portfolio .arrow-container .darkArrow {
    opacity: 0; }
  main.portfolio .image-block, main.portfolio .text-block, main.portfolio .video-block {
    width: auto;
    padding: 0 5vw 5em; }
    main.portfolio .image-block.white, main.portfolio .text-block.white, main.portfolio .video-block.white {
      background: white; }
    main.portfolio .image-block.divider, main.portfolio .text-block.divider, main.portfolio .video-block.divider {
      border-right: 1px solid rgba(255, 255, 255, 0.2); }
  main.portfolio .image-block {
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%; }
    main.portfolio .image-block img {
      height: auto;
      width: 100%;
      max-height: -webkit-calc(100vh - 5em);
      max-height: calc(100vh - 5em);
      -webkit-align-self: flex-end;
          -ms-flex-item-align: end;
              align-self: flex-end;
      margin-bottom: 5vh; }
    main.portfolio .image-block.full {
      padding: 0;
      height: 100vh;
      display: block; }
      main.portfolio .image-block.full img {
        height: 100%;
        width: auto;
        max-height: none; }
    main.portfolio .image-block.top {
      padding-top: 10vh;
      height: 90vh; }
    main.portfolio .image-block.middle {
      padding-top: 0;
      height: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
  main.portfolio .text-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 35%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media all and (max-width: 1024px) {
      main.portfolio .text-block {
        width: auto; } }
    @media all and (max-height: 768px) {
      main.portfolio .text-block {
        width: auto; } }
    main.portfolio .text-block .wrapper {
      padding-bottom: 10vh; }
    main.portfolio .text-block h1 {
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-size: 2em; }
    main.portfolio .text-block .text {
      font-family: "proxima-nova", sans-serif;
      font-weight: 100;
      letter-spacing: 1px;
      font-size: 1.3em;
      color: rgba(255, 255, 255, 0.9);
      text-align: left;
      line-height: 1.75;
      max-width: 500px; }
      main.portfolio .text-block .text p {
        margin: 0; }
      main.portfolio .text-block .text strong {
        font-family: "proxima-nova", sans-serif;
        font-weight: 400;
        letter-spacing: 1px; }
  main.portfolio .video-block {
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: block; }
    main.portfolio .video-block .video-preview, main.portfolio .video-block .backdrop {
      background-size: cover !important;
      background-position: center center;
      background-repeat: no-repeat;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%; }
    main.portfolio .video-block iframe {
      position: absolute;
      left: 20%;
      top: 0;
      width: 60%;
      height: 80%; }
      @media all and (max-width: 768px) {
        main.portfolio .video-block iframe {
          left: 10%;
          width: 80%; } }
      @media all and (max-width: 568px), (max-height: 400px) {
        main.portfolio .video-block iframe {
          left: 5%;
          width: 90%; } }
    main.portfolio .video-block .arrow-wrapper {
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -2.5em 0 0 -2.5em; }
      main.portfolio .video-block .arrow-wrapper .arrow {
        background: #35abd7;
        padding: 1.5em 2em 1.5em 2.25em;
        display: inline-block;
        position: relative;
        -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
        main.portfolio .video-block .arrow-wrapper .arrow:after {
          top: 2.1em;
          left: -12em;
          width: 30em;
          background: #35abd7;
          background: -webkit-gradient(left top, right top, color-stop(0%, rgba(53, 171, 215, 0)), color-stop(50%, #35abd7), color-stop(100%, rgba(53, 171, 215, 0)));
          background: -webkit-gradient(linear, left top, right top, from(rgba(53, 171, 215, 0)), color-stop(50%, #35abd7), to(rgba(53, 171, 215, 0)));
          background: linear-gradient(to right, rgba(53, 171, 215, 0) 0%, #35abd7 50%, rgba(53, 171, 215, 0) 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$lightBlue, endColorstr=$lightBlue, GradientType=1 );
          content: '';
          position: absolute;
          height: 1px;
          -webkit-transform: rotate(-45deg) scaleX(0);
              -ms-transform: rotate(-45deg) scaleX(0);
                  transform: rotate(-45deg) scaleX(0);
          -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          -webkit-backface-visibility: hidden;
                  backface-visibility: hidden;
          z-index: -1; }
        main.portfolio .video-block .arrow-wrapper .arrow img {
          width: 1em;
          height: 2em;
          vertical-align: middle; }
        @media all and (max-width: 768px) {
          main.portfolio .video-block .arrow-wrapper .arrow {
            padding: 1em 1.4em 1em 1.8em; } }
      main.portfolio .video-block .arrow-wrapper:hover .arrow {
        -webkit-transform: translateX(5px);
            -ms-transform: translateX(5px);
                transform: translateX(5px);
        -webkit-box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
                box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3); }
        main.portfolio .video-block .arrow-wrapper:hover .arrow:after {
          -webkit-transform: rotate(-45deg) scaleX(1);
              -ms-transform: rotate(-45deg) scaleX(1);
                  transform: rotate(-45deg) scaleX(1); }
  main.portfolio .related {
    padding-left: 10em;
    margin: 0;
    width: auto; }
    main.portfolio .related .arrow {
      -webkit-transform: scaleX(-1);
          -ms-transform: scaleX(-1);
              transform: scaleX(-1);
      right: auto;
      left: 1em; }
    main.portfolio .related .divider {
      position: absolute;
      top: 0;
      left: 5em;
      border-left: 1px solid rgba(255, 255, 255, 0.2);
      height: 100%; }
      main.portfolio .related .divider .label {
        text-transform: uppercase;
        font-family: "proxima-nova", sans-serif;
        font-weight: 300;
        letter-spacing: 1px;
        font-size: 0.9em;
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
        position: absolute;
        top: 55%;
        left: -1.5em;
        white-space: nowrap;
        -webkit-backface-visibility: hidden;
                backface-visibility: hidden; }
        main.portfolio .related .divider .label:before, main.portfolio .related .divider .label:after {
          content: '';
          position: absolute;
          height: 1px;
          background: rgba(255, 255, 255, 0.5);
          left: 25%; }
        main.portfolio .related .divider .label:before {
          top: -0.75em;
          width: 50%; }
        main.portfolio .related .divider .label:after {
          top: 1.5em;
          width: 25%; }
    main.portfolio .related .items .item {
      width: 20%;
      height: 18vw;
      position: relative;
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      z-index: 0;
      -webkit-transition: z-index 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: z-index 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      -webkit-flex-shrink: 0;
          -ms-flex-negative: 0;
              flex-shrink: 0; }
      main.portfolio .related .items .item.lonely {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
            -ms-flex-positive: 0;
                flex-grow: 0; }
      @media all and (max-width: 1440px) {
        main.portfolio .related .items .item {
          height: 25em; } }
      @media all and (max-width: 1024px) {
        main.portfolio .related .items .item {
          width: 50%;
          height: 30em; } }
      @media all and (max-width: 568px), (max-height: 400px) {
        main.portfolio .related .items .item {
          overflow: hidden; } }
      main.portfolio .related .items .item a {
        display: block;
        width: 100%;
        height: 100%; }
      main.portfolio .related .items .item .tag {
        position: absolute;
        left: 50%;
        top: 3em;
        z-index: 1;
        opacity: 0;
        -webkit-transform: translateY(-5px);
            -ms-transform: translateY(-5px);
                transform: translateY(-5px);
        -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        -webkit-transition-delay: 0.1s;
                transition-delay: 0.1s; }
        @media all and (max-width: 768px) {
          main.portfolio .related .items .item .tag {
            top: 1em;
            opacity: 1;
            font-size: 0.8em; } }
        main.portfolio .related .items .item .tag .shape {
          margin-left: -50%;
          text-align: left; }
          @media all and (max-width: 768px) {
            main.portfolio .related .items .item .tag .shape img {
              max-width: 13em;
              height: 2.7em; } }
        main.portfolio .related .items .item .tag .label {
          position: absolute;
          text-transform: uppercase;
          top: 1em;
          left: -5em;
          font-size: 0.9em; }
      main.portfolio .related .items .item .thumb {
        width: 100%;
        height: 100%;
        -webkit-transition: -webkit-transform 0.5s ease-in-out;
        transition: -webkit-transform 0.5s ease-in-out;
        transition: transform 0.5s ease-in-out;
        transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
        background: black; }
        main.portfolio .related .items .item .thumb:after {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          z-index: -1;
          width: 100%;
          height: 100%;
          -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
                  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
          opacity: 0;
          -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
        main.portfolio .related .items .item .thumb .image {
          background-size: cover !important;
          background-position: center center;
          background-repeat: no-repeat;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          width: 100%;
          height: 100%;
          opacity: 0.3;
          -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      main.portfolio .related .items .item .arrow {
        position: absolute;
        top: 3.75em;
        left: 50%;
        pointer-events: none;
        margin-left: 11em;
        opacity: 0;
        -webkit-transform: translateX(-5px);
            -ms-transform: translateX(-5px);
                transform: translateX(-5px);
        -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        -webkit-transition-delay: 0.2s;
                transition-delay: 0.2s; }
        main.portfolio .related .items .item .arrow object, main.portfolio .related .items .item .arrow img {
          width: 2.9em;
          height: 1.4em; }
        @media all and (max-width: 768px) {
          main.portfolio .related .items .item .arrow {
            top: 1.75em; } }
        @media all and (max-width: 568px), (max-height: 400px) {
          main.portfolio .related .items .item .arrow {
            left: 30%;
            display: none; }
            main.portfolio .related .items .item .arrow object, main.portfolio .related .items .item .arrow img {
              width: 2em;
              height: 1em; } }
      main.portfolio .related .items .item .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        max-width: 60%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        opacity: 0.7;
        max-height: 40%; }
        @media all and (max-width: 568px), (max-height: 400px) {
          main.portfolio .related .items .item .logo {
            max-width: 50%; } }
      main.portfolio .related .items .item .info {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
        text-transform: uppercase;
        text-align: center;
        width: 100%;
        padding: 0 2em 3em;
        opacity: 0;
        -webkit-transform: translateY(1em);
            -ms-transform: translateY(1em);
                transform: translateY(1em);
        display: block;
        -webkit-box-sizing: border-box;
                box-sizing: border-box; }
        @media all and (max-width: 768px) {
          main.portfolio .related .items .item .info {
            opacity: 1 !important;
            padding: 0 1em;
            width: 100%;
            bottom: 3em;
            font-size: 0.7em; } }
      main.portfolio .related .items .item .title {
        font-size: 3em;
        margin-bottom: 0.5em;
        letter-spacing: 2px; }
        @media all and (max-width: 1440px) {
          main.portfolio .related .items .item .title {
            font-size: 2.7em; } }
        @media all and (max-width: 1024px) {
          main.portfolio .related .items .item .title {
            font-size: 2.4em; } }
        @media all and (max-width: 768px) {
          main.portfolio .related .items .item .title.logo-yes {
            display: none; } }
        @media all and (max-width: 568px), (max-height: 400px) {
          main.portfolio .related .items .item .title {
            font-size: 1.8em; } }
      main.portfolio .related .items .item .subtitle {
        font-size: 0.9em;
        line-height: 1.75; }
      main.portfolio .related .items .item:hover {
        z-index: 5; }
        main.portfolio .related .items .item:hover .thumb {
          -webkit-transform: scale(1.15);
              -ms-transform: scale(1.15);
                  transform: scale(1.15); }
          main.portfolio .related .items .item:hover .thumb:after {
            opacity: 1; }
          main.portfolio .related .items .item:hover .thumb .image {
            opacity: 0.5; }
          @media all and (max-width: 768px) {
            main.portfolio .related .items .item:hover .thumb {
              -webkit-transform: none;
                  -ms-transform: none;
                      transform: none; } }
        main.portfolio .related .items .item:hover .tag, main.portfolio .related .items .item:hover .arrow {
          opacity: 1;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none; }
      @media all and (max-width: 568px), (max-height: 400px) {
        main.portfolio .related .items .item {
          width: 50%;
          height: 48vw; } }
    main.portfolio .related .items .item {
      width: 38vh;
      height: 33.33vh;
      margin: 0; }
  main.portfolio.dark .project-info {
    color: #1d2a39; }
    main.portfolio.dark .project-info .breadcrumb {
      color: #1d2a39; }
    main.portfolio.dark .project-info a {
      color: #35abd7; }
      main.portfolio.dark .project-info a:hover {
        color: #1d2a39; }
    main.portfolio.dark .project-info .categories .category .label, main.portfolio.dark .project-info .categories .category .text {
      color: #1d2a39; }
    main.portfolio.dark .project-info .body-text {
      color: #1d2a39; }
  main.portfolio.dark .arrow-container .darkArrow {
    opacity: 1; }
  main.portfolio.dark .arrow-container .lightArrow {
    opacity: 0; }
  main.portfolio.dark .image-block.divider, main.portfolio.dark .text-block.divider, main.portfolio.dark .video-block.divider {
    border-right: 1px solid rgba(29, 42, 57, 0.2); }
  main.portfolio.dark .text-block h2, main.portfolio.dark .text-block .text {
    color: #1d2a39; }
  main.portfolio.dark .related {
    background: #1d2a39; }
  @media all and (max-width: 1440px) {
    main.portfolio .text-block .text {
      padding-top: 2em; } }
  @media all and (max-height: 768px) {
    main.portfolio .project-info .mCustomScrollBox {
      display: block; }
    main.portfolio .project-info .info-wrapper {
      padding-top: 10em;
      padding-bottom: 5em; }
    main.portfolio .project-info .services {
      margin: 2em 0 2.5em; }
    main.portfolio .project-info .categories {
      margin: 2em 0 0; }
      main.portfolio .project-info .categories .category {
        margin: 0 1em 2.5em; }
    main.portfolio .image-block {
      padding: 8em 3em 2em !important;
      display: block; }
      main.portfolio .image-block img {
        height: -webkit-calc(100% - 10em);
        height: calc(100% - 10em);
        width: auto;
        max-height: none; }
      main.portfolio .image-block.full {
        padding: 0 !important; }
      main.portfolio .image-block.top, main.portfolio .image-block.middle {
        padding-top: 0;
        height: 100%;
        display: block; }
    main.portfolio .text-block .wrapper {
      padding-bottom: 2em !important; }
    main.portfolio .share-links {
      margin-top: 0.5em; } }
  @media all and (max-width: 1024px) {
    main.portfolio .project-info {
      width: 90%; }
      main.portfolio .project-info .info-wrapper {
        padding-right: 10%;
        padding-left: 3em; }
      main.portfolio .project-info h1 {
        font-size: 6em; }
    main.portfolio .text-block {
      max-width: 100%; }
      main.portfolio .text-block .wrapper {
        padding: 10em 10% 3em; } }
  @media all and (max-width: 768px) {
    main.portfolio .arrow {
      right: 2em; }
    main.portfolio .project-info h1 {
      font-size: 7vw; }
    main.portfolio .project-info .body-text {
      font-size: 1.2em; }
    main.portfolio .text-block .wrapper {
      padding-left: 3em;
      padding-right: 3em; }
    main.portfolio .text-block h2 {
      font-size: 1.8em; }
    main.portfolio .text-block .text {
      font-size: 1.2em; } }
  @media all and (max-width: 568px), (max-height: 400px) {
    main.portfolio .project-info {
      width: 100%; }
      main.portfolio .project-info h1 {
        font-size: 6vw; }
      main.portfolio .project-info .body-text {
        font-size: 1.1em; }
      main.portfolio .project-info .categories .category {
        font-size: 0.75em; }
      main.portfolio .project-info .info-wrapper {
        padding-top: 8em; } }

main.blog .content, main.search .content, main.archive .content {
  padding-top: 12em; }
  main.blog .content .filters .filter, main.search .content .filters .filter, main.archive .content .filters .filter {
    max-width: none; }

main.blog .items .row, main.search .items .row, main.archive .items .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch; }

main.blog .items .item, main.search .items .item, main.archive .items .item {
  width: 50%;
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  padding: 3em 0;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  display: table-cell;
  vertical-align: middle;
  background: rgba(29, 42, 57, 0.7);
  float: none; }
  main.blog .items .item .backgrounds, main.search .items .item .backgrounds, main.archive .items .item .backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
    background: #1d2a39;
    opacity: 0.5 !important;
    min-height: 0; }
    main.blog .items .item .backgrounds .background, main.search .items .item .backgrounds .background, main.archive .items .item .backgrounds .background {
      background-size: cover !important;
      background-position: center center;
      background-repeat: no-repeat;
      opacity: 0.2;
      background-position: 50% 0%; }
  main.blog .items .item .arrow, main.search .items .item .arrow, main.archive .items .item .arrow {
    position: absolute;
    top: 1em;
    left: auto;
    right: 4em;
    opacity: 0;
    -webkit-transform: translateX(-5px);
        -ms-transform: translateX(-5px);
            transform: translateX(-5px);
    -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s; }
    main.blog .items .item .arrow object, main.blog .items .item .arrow img, main.search .items .item .arrow object, main.search .items .item .arrow img, main.archive .items .item .arrow object, main.archive .items .item .arrow img {
      width: 2.9em;
      height: 1.4em; }
  main.blog .items .item .item-wrapper, main.search .items .item .item-wrapper, main.archive .items .item .item-wrapper {
    position: relative;
    z-index: 1; }
    main.blog .items .item .item-wrapper .title, main.blog .items .item .item-wrapper .blurb, main.search .items .item .item-wrapper .title, main.search .items .item .item-wrapper .blurb, main.archive .items .item .item-wrapper .title, main.archive .items .item .item-wrapper .blurb {
      max-width: 800px;
      margin: 0 auto; }
    main.blog .items .item .item-wrapper .title, main.search .items .item .item-wrapper .title, main.archive .items .item .item-wrapper .title {
      font-size: 2.4em;
      line-height: 1.75;
      padding: 0 10%;
      -webkit-transform: translateY(2em);
          -ms-transform: translateY(2em);
              transform: translateY(2em);
      -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    main.blog .items .item .item-wrapper .blurb, main.search .items .item .item-wrapper .blurb, main.archive .items .item .item-wrapper .blurb {
      min-height: 1em;
      margin: 2em auto;
      font-size: 1.6em;
      line-height: 1.75;
      padding: 0 5em;
      text-align: left;
      opacity: 0;
      -webkit-transform: translateY(1em);
          -ms-transform: translateY(1em);
              transform: translateY(1em);
      -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: opacity 0.3s ease-in-out, -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: opacity 0.3s ease-in-out, transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: opacity 0.3s ease-in-out, transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
    main.blog .items .item .item-wrapper a, main.search .items .item .item-wrapper a, main.archive .items .item .item-wrapper a {
      color: rgba(255, 255, 255, 0.7); }
      main.blog .items .item .item-wrapper a:hover, main.search .items .item .item-wrapper a:hover, main.archive .items .item .item-wrapper a:hover {
        color: white; }
        main.blog .items .item .item-wrapper a:hover .arrow, main.search .items .item .item-wrapper a:hover .arrow, main.archive .items .item .item-wrapper a:hover .arrow {
          opacity: 1;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none; }
    main.blog .items .item .item-wrapper .date, main.search .items .item .item-wrapper .date, main.archive .items .item .item-wrapper .date {
      font-size: 1em;
      text-transform: uppercase;
      margin-bottom: 0.5em; }
    main.blog .items .item .item-wrapper .categories, main.search .items .item .item-wrapper .categories, main.archive .items .item .item-wrapper .categories {
      font-size: 0.8em;
      text-transform: uppercase;
      line-height: 1.75; }
      main.blog .items .item .item-wrapper .categories span, main.search .items .item .item-wrapper .categories span, main.archive .items .item .item-wrapper .categories span {
        -webkit-transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
        main.blog .items .item .item-wrapper .categories span:hover, main.search .items .item .item-wrapper .categories span:hover, main.archive .items .item .item-wrapper .categories span:hover {
          color: white;
          cursor: pointer; }
  main.blog .items .item:hover .backgrounds, main.search .items .item:hover .backgrounds, main.archive .items .item:hover .backgrounds {
    opacity: 1 !important; }
  main.blog .items .item:hover .item-wrapper .title, main.search .items .item:hover .item-wrapper .title, main.archive .items .item:hover .item-wrapper .title {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }
  main.blog .items .item:hover .item-wrapper .blurb, main.search .items .item:hover .item-wrapper .blurb, main.archive .items .item:hover .item-wrapper .blurb {
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }

@media all and (max-width: 1280px) {
  main.blog .items .item .arrow, main.search .items .item .arrow, main.archive .items .item .arrow {
    opacity: 0 !important; }
  main.blog .items .item .item-wrapper, main.search .items .item .item-wrapper, main.archive .items .item .item-wrapper {
    padding: 0 3em; }
    main.blog .items .item .item-wrapper .title, main.blog .items .item .item-wrapper .blurb, main.search .items .item .item-wrapper .title, main.search .items .item .item-wrapper .blurb, main.archive .items .item .item-wrapper .title, main.archive .items .item .item-wrapper .blurb {
      padding: 0; } }

@media all and (max-width: 1024px) {
  main.blog .items .row, main.search .items .row, main.archive .items .row {
    display: block; }
  main.blog .items .item, main.search .items .item, main.archive .items .item {
    width: 100%;
    display: block; }
    main.blog .items .item .item-wrapper .title, main.blog .items .item .item-wrapper .blurb, main.search .items .item .item-wrapper .title, main.search .items .item .item-wrapper .blurb, main.archive .items .item .item-wrapper .title, main.archive .items .item .item-wrapper .blurb {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
    main.blog .items .item .item-wrapper .title, main.search .items .item .item-wrapper .title, main.archive .items .item .item-wrapper .title {
      margin-bottom: 1em; }
    main.blog .items .item .item-wrapper .blurb, main.search .items .item .item-wrapper .blurb, main.archive .items .item .item-wrapper .blurb {
      display: none; } }

main.search .content .left {
  width: 50%; }

main.search .content .right {
  width: 45%; }

main.search .content h1 {
  font-size: 6em;
  padding-right: 1em;
  color: rgba(200, 204, 208, 0.75); }
  main.search .content h1 span {
    color: white; }

@media all and (max-width: 1440px) {
  main.search .content .left {
    width: auto !important; }
  main.search .content .right {
    width: auto !important;
    padding: 0; } }

@media all and (max-width: 1280px) {
  main.search .cta-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    main.search .cta-row .icon-button {
      margin: 0 0 0 3em;
      display: inline-block; }
  main.search .content .filters {
    position: absolute; } }

@media all and (max-width: 1024px) {
  main.search .content .right {
    position: relative; }
  main.search .content .filters {
    top: 9em;
    right: -10em; }
    main.search .content .filters .filter {
      min-width: 20em; } }

@media all and (max-width: 910px) {
  main.search .content .filters {
    right: auto;
    left: -20em; } }

@media all and (max-width: 768px) {
  main.search .content h1 {
    padding: 0 !important; }
  main.search .content .filters {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    margin-top: 4em; } }

@media all and (max-width: 568px), (max-height: 400px) {
  main.search .content {
    padding-bottom: 8em !important; }
    main.search .content h1 {
      font-size: 5em !important; } }

main.single .clutch-widget {
  margin-top: 4em; }

main.single .backgrounds {
  z-index: 0; }

main.single .date, main.single .categories, main.single .tags {
  text-transform: uppercase;
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.75; }

main.single section.post {
  background: white;
  min-height: 100vh;
  *zoom: 1;
  padding-top: 20em; }
  main.single section.post:before, main.single section.post:after {
    content: " ";
    display: table; }
  main.single section.post:after {
    clear: both; }
  main.single section.post .backgrounds {
    max-height: 150vh; }
    main.single section.post .backgrounds .background {
      opacity: 0.1; }
  main.single section.post .left, main.single section.post .right {
    position: relative;
    z-index: 1;
    float: left; }
  main.single section.post .left {
    width: 65%;
    padding-bottom: 10em; }
    main.single section.post .left h1, main.single section.post .left div {
      padding: 0 10vw;
      max-width: 1200px; }
    main.single section.post .left div {
      font-family: "proxima-nova", sans-serif;
      color: #282828 !important;
      letter-spacing: 0;
      line-height: 1.875; }
    main.single section.post .left h1, main.single section.post .left h2, main.single section.post .left h3, main.single section.post .left h4 {
      font-family: "proxima-nova", sans-serif;
      margin-bottom: 1em; }
    main.single section.post .left .breadcrumb {
      color: black;
      margin-bottom: 30px; }
      main.single section.post .left .breadcrumb a {
        color: rgba(0, 0, 0, 0.7); }
        main.single section.post .left .breadcrumb a:hover {
          color: black; }
    main.single section.post .left h1 {
      color: rgba(0, 0, 0, 0.8);
      font-size: 3.3em;
      line-height: 1.25;
      font-family: "proxima-nova", sans-serif; }
    main.single section.post .left .date, main.single section.post .left .categories, main.single section.post .left .tags {
      color: rgba(0, 0, 0, 0.7); }
      main.single section.post .left .date a, main.single section.post .left .categories a, main.single section.post .left .tags a {
        color: rgba(0, 0, 0, 0.7); }
        main.single section.post .left .date a:hover, main.single section.post .left .categories a:hover, main.single section.post .left .tags a:hover {
          color: black; }
    main.single section.post .left .date {
      font-size: 1.2em;
      margin: 30px 0 0.25em; }
    main.single section.post .left .image {
      padding: 0;
      width: 100%;
      height: 20vw;
      background-size: cover !important;
      background-position: center center;
      background-repeat: no-repeat;
      background-position: 50% 0%;
      margin: 5em 0 0;
      max-width: none; }
      @media all and (max-width: 1024px) {
        main.single section.post .left .image {
          height: 20em; } }
    main.single section.post .left .content {
      margin-top: 3.125em;
      color: rgba(33, 33, 33, 0.8);
      font-size: 1.6em;
      line-height: 1.75; }
      main.single section.post .left .content a {
        color: #35abd7; }
        main.single section.post .left .content a:hover {
          color: #175c75; }
      main.single section.post .left .content img {
        max-width: 100%;
        height: auto; }
      main.single section.post .left .content p {
        margin: 0 0 1.875em;
        padding: 0 !important; }
      main.single section.post .left .content span {
        font-weight: 300 !important; }
      main.single section.post .left .content ul {
        padding: 0 0 0 1.1em;
        margin: 0 0 1.875em; }
    main.single section.post .left .wrapper .tags {
      padding: 0;
      margin-top: 1.5em; }
    main.single section.post .left .wrapper .share-links {
      color: #35abd7;
      margin: 1.5em 0 0 -0.25em; }
      main.single section.post .left .wrapper .share-links .trigger {
        padding: 0; }
      main.single section.post .left .wrapper .share-links a {
        color: #35abd7; }
    main.single section.post .left .wrapper .signup-form {
      color: rgba(33, 33, 33, 0.8);
      padding: 5em;
      margin: 4em 0 0;
      border: 1px solid rgba(0, 0, 0, 0.2);
      background: white; }
      main.single section.post .left .wrapper .signup-form h2 {
        font-size: 2em;
        line-height: 1.75; }
      main.single section.post .left .wrapper .signup-form .comment {
        padding: 0;
        margin: 1em 0;
        font-size: 1.6em;
        line-height: 1.75; }
      main.single section.post .left .wrapper .signup-form .row {
        max-width: 500px; }
        main.single section.post .left .wrapper .signup-form .row .col:after {
          background: rgba(0, 0, 0, 0.2); }
      main.single section.post .left .wrapper .signup-form form label {
        color: rgba(33, 33, 33, 0.8); }
      main.single section.post .left .wrapper .signup-form form input {
        color: rgba(33, 33, 33, 0.8);
        max-width: 500px; }
      main.single section.post .left .wrapper .signup-form form ::-webkit-input-placeholder {
        color: rgba(33, 33, 33, 0.8); }
      main.single section.post .left .wrapper .signup-form form ::-moz-placeholder {
        color: rgba(33, 33, 33, 0.8); }
      main.single section.post .left .wrapper .signup-form form :-ms-input-placeholder {
        color: rgba(33, 33, 33, 0.8); }
      main.single section.post .left .wrapper .signup-form form ::placeholder {
        color: rgba(33, 33, 33, 0.8); }
      main.single section.post .left .wrapper .signup-form form ::-webkit-input-placeholder {
        color: rgba(33, 33, 33, 0.8); }
      main.single section.post .left .wrapper .signup-form form :-moz-placeholder {
        color: rgba(33, 33, 33, 0.8); }
      main.single section.post .left .wrapper .signup-form form ::-moz-placeholder {
        color: rgba(33, 33, 33, 0.8); }
      main.single section.post .left .wrapper .signup-form form :-ms-input-placeholder {
        color: rgba(33, 33, 33, 0.8); }
      main.single section.post .left .wrapper .signup-form form input[type=submit] {
        margin-top: 0; }
        main.single section.post .left .wrapper .signup-form form input[type=submit]:hover {
          color: white;
          -webkit-box-shadow: none;
                  box-shadow: none; }
      main.single section.post .left .wrapper .signup-form .wpcf7 {
        padding: 0;
        margin-top: 2em; }
        main.single section.post .left .wrapper .signup-form .wpcf7 div {
          padding: 0; }
        main.single section.post .left .wrapper .signup-form .wpcf7 .wpcf7-not-valid-tip {
          color: #35abd7; }
        main.single section.post .left .wrapper .signup-form .wpcf7 .wpcf7-response-output {
          text-align: left; }
  main.single section.post .right {
    width: -webkit-calc(25% - 15em);
    width: calc(25% - 15em);
    padding: 0 10% 0 15em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px; }
    main.single section.post .right .recent-label {
      text-transform: uppercase;
      font-size: 1em;
      margin-bottom: 3em;
      color: black; }
    main.single section.post .right ul.posts {
      list-style-type: none;
      padding: 0;
      margin: 0; }
      main.single section.post .right ul.posts li {
        margin: 0 0 1em;
        font-size: 1.4em;
        line-height: 1.75; }
        main.single section.post .right ul.posts li a {
          color: #5a5a5a; }
          main.single section.post .right ul.posts li a:hover {
            color: black; }
    main.single section.post .right .get-in-touch {
      position: relative;
      left: 0;
      top: 0;
      margin-top: 3em; }
  @media all and (max-width: 1280px) {
    main.single section.post {
      padding-top: 15em; }
      main.single section.post .left {
        width: 60%; }
      main.single section.post .right {
        width: 25%;
        padding: 0 10% 0 5%; } }
  @media all and (max-width: 1024px) {
    main.single section.post .left {
      width: auto;
      padding-bottom: 5em; }
      main.single section.post .left h1 {
        font-size: 3em; }
    main.single section.post .right {
      width: auto;
      padding: 0 10% 8em; }
      main.single section.post .right .get-in-touch {
        position: relative;
        top: 0;
        right: auto;
        margin: 0 0 5em;
        width: 40%;
        left: 10%;
        padding: 0;
        max-width: 30em;
        left: 0;
        margin: 3em 0 0;
        width: auto; }
        main.single section.post .right .get-in-touch .title {
          display: none; }
        main.single section.post .right .get-in-touch .links {
          *zoom: 1; }
          main.single section.post .right .get-in-touch .links:before, main.single section.post .right .get-in-touch .links:after {
            content: " ";
            display: table; }
          main.single section.post .right .get-in-touch .links:after {
            clear: both; }
          main.single section.post .right .get-in-touch .links .link {
            display: block;
            width: 50%;
            float: left;
            margin: 0;
            padding: 1.5em 0 1em; }
            main.single section.post .right .get-in-touch .links .link:before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              width: 1px;
              height: 100%;
              background: rgba(0, 0, 0, 0.3); }
            main.single section.post .right .get-in-touch .links .link:first-child {
              margin: 0; }
              main.single section.post .right .get-in-touch .links .link:first-child:before {
                display: none; }
            main.single section.post .right .get-in-touch .links .link:after {
              display: none; } }
  @media all and (max-width: 768px) {
    main.single section.post .left {
      padding-left: 3em;
      padding-right: 3em; }
      main.single section.post .left h1, main.single section.post .left div {
        padding-left: 0;
        padding-right: 0; }
    main.single section.post .right {
      padding-left: 3em;
      padding-right: 3em; } }
  @media all and (max-width: 568px), (max-height: 400px) {
    main.single section.post {
      padding-top: 10em; }
      main.single section.post .left h1 {
        font-size: 2.5em; }
      main.single section.post .left .breadcrumb {
        margin-bottom: 2.5em; }
      main.single section.post .left .date {
        margin-top: 2.5em; }
      main.single section.post .left .image {
        margin-top: 3em; }
      main.single section.post .left .content {
        margin-top: 2.14286em;
        font-size: 1.4em; }
      main.single section.post .left .wrapper .signup-form {
        padding: 3em; }
        main.single section.post .left .wrapper .signup-form h2 {
          font-size: 1.6em; }
        main.single section.post .left .wrapper .signup-form .comment {
          font-size: 1.4em; } }

main.single section.next-post {
  background: #1d2a39;
  color: rgba(255, 255, 255, 0.7);
  padding: 5em 10% 3em; }
  main.single section.next-post .wrapper {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto; }
    main.single section.next-post .wrapper .shape {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      margin: 0 auto;
      height: 100%; }
      main.single section.next-post .wrapper .shape img {
        height: 100%;
        width: auto;
        max-width: 20em; }
      main.single section.next-post .wrapper .shape a {
        height: 100%; }
    main.single section.next-post .wrapper .label {
      text-transform: uppercase;
      font-size: 0.9em;
      padding: 1em 1em;
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px; }
    main.single section.next-post .wrapper a {
      color: rgba(255, 255, 255, 0.7); }
      main.single section.next-post .wrapper a:hover {
        color: white; }
    main.single section.next-post .wrapper .link {
      font-size: 2.4em;
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      line-height: 1.75;
      margin: 2em 0 3em; }
    main.single section.next-post .wrapper .date {
      font-size: 1em; }
    main.single section.next-post .wrapper .categories {
      font-size: 0.9em;
      margin-top: 0.25em; }
  @media all and (max-width: 768px) {
    main.single section.next-post {
      padding-left: 3em;
      padding-right: 3em; } }
  @media all and (max-width: 568px), (max-height: 400px) {
    main.single section.next-post .wrapper .link {
      font-size: 2em;
      margin: 2em 0; } }

main.career section.post {
  min-height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  color: rgba(0, 0, 0, 0.8);
  position: relative; }
  main.career section.post .content {
    width: 75%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    margin-left: 5%;
    padding: 10em 0 5em; }
    main.career section.post .content .get-in-touch {
      display: none; }
  main.career section.post .wrapper {
    display: inline-block;
    width: 60%; }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.career section.post .wrapper {
        width: 100%; } }
  main.career section.post .submenu {
    list-style-type: none;
    margin: 4em 0 0;
    padding: 0;
    display: inline-block;
    position: relative;
    width: 40%;
    float: left;
    margin: 0;
    margin-top: 7em;
    max-width: 18vw;
    padding-right: 3%; }
    main.career section.post .submenu li {
      padding: 0;
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 1.5em;
      font-size: 1em;
      position: relative;
      line-height: 1.75; }
      main.career section.post .submenu li a {
        color: rgba(255, 255, 255, 0.6);
        -webkit-transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      main.career section.post .submenu li:before {
        content: '';
        background: url("../images/ui/arrow_solid_blue.png") no-repeat 50% 50%;
        background-size: cover;
        width: 0.6em;
        height: 1.2em;
        position: absolute;
        top: 0;
        left: -1.75em;
        opacity: 0;
        -webkit-transform: translateX(-0.25em);
            -ms-transform: translateX(-0.25em);
                transform: translateX(-0.25em);
        -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
        @media all and (max-width: 568px), (max-height: 400px) {
          main.career section.post .submenu li:before {
            left: -1em; } }
      main.career section.post .submenu li:last-child {
        margin-bottom: 0; }
      main.career section.post .submenu li:hover:before, main.career section.post .submenu li.selected:before {
        opacity: 1;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none; }
      main.career section.post .submenu li:hover a {
        color: white; }
      main.career section.post .submenu li.selected {
        pointer-events: none;
        font-weight: 400; }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.career section.post .submenu {
        width: 100%; } }
    @media all and (max-width: 1024px) {
      main.career section.post .submenu {
        max-width: none;
        padding: 0; } }
    main.career section.post .submenu li {
      font-size: 1.1em; }
      main.career section.post .submenu li a {
        color: #5a5a5a; }
        main.career section.post .submenu li a:hover, main.career section.post .submenu li a.selected {
          color: black !important; }
      main.career section.post .submenu li:hover a {
        color: #5a5a5a; }
  main.career section.post .breadcrumb {
    margin-top: 3em;
    color: black; }
    main.career section.post .breadcrumb a {
      color: #35abd7; }
      main.career section.post .breadcrumb a:hover {
        color: #175c75; }
  main.career section.post h1, main.career section.post .text {
    max-width: 800px; }
  main.career section.post h1 {
    font-size: 3.3em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.25; }
  main.career section.post .text {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.3em;
    line-height: 1.75;
    margin: 3em 0;
    color: rgba(33, 33, 33, 0.8); }
    main.career section.post .text a {
      color: #35abd7; }
      main.career section.post .text a:hover {
        color: #175c75; }
    main.career section.post .text p {
      margin: 0 0 1em; }
  main.career section.post .points p {
    font-size: 1.5em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.75; }
  main.career section.post .points ul {
    list-style-type: none;
    color: #35abd7;
    margin-top: 2em;
    padding: 0; }
    main.career section.post .points ul li {
      font-family: "proxima-nova", sans-serif;
      font-weight: 400;
      letter-spacing: 1px;
      font-size: 1.2em;
      padding: 1.25em 0 0.75em;
      border-top: 1px solid rgba(53, 171, 215, 0.25);
      display: table;
      line-height: 1.75; }
      main.career section.post .points ul li i {
        margin-right: 0.5em; }
  @media all and (max-width: 1440px) {
    main.career section.post {
      display: block; }
      main.career section.post .content {
        width: 80%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
        main.career section.post .content .get-in-touch {
          display: block;
          width: auto; }
      main.career section.post .submenu {
        left: 0;
        position: relative; }
      main.career section.post .get-in-touch {
        position: relative;
        top: 0;
        right: auto;
        margin: 0 0 5em;
        width: 40%;
        left: 10%;
        padding: 0;
        max-width: 30em;
        top: auto;
        right: auto;
        left: 0;
        display: block;
        margin: 5em 0;
        display: none; }
        main.career section.post .get-in-touch .title {
          display: none; }
        main.career section.post .get-in-touch .links {
          *zoom: 1; }
          main.career section.post .get-in-touch .links:before, main.career section.post .get-in-touch .links:after {
            content: " ";
            display: table; }
          main.career section.post .get-in-touch .links:after {
            clear: both; }
          main.career section.post .get-in-touch .links .link {
            display: block;
            width: 50%;
            float: left;
            margin: 0;
            padding: 1.5em 0 1em; }
            main.career section.post .get-in-touch .links .link:before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              width: 1px;
              height: 100%;
              background: rgba(0, 0, 0, 0.3); }
            main.career section.post .get-in-touch .links .link:first-child {
              margin: 0; }
              main.career section.post .get-in-touch .links .link:first-child:before {
                display: none; }
            main.career section.post .get-in-touch .links .link:after {
              display: none; } }
  @media all and (max-width: 1024px) {
    main.career section.post {
      padding-bottom: 4em; }
      main.career section.post .content {
        padding: 15em 0 3em;
        display: block; }
        main.career section.post .content .get-in-touch {
          display: none; }
      main.career section.post h1 {
        font-size: 3em; }
      main.career section.post .submenu {
        margin: 0 0 5em; }
      main.career section.post .get-in-touch {
        display: block;
        top: 0;
        left: 0;
        width: 80%;
        margin: 0 auto; } }
  @media all and (max-width: 568px), (max-height: 400px) {
    main.career section.post .content {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      width: 90%;
      padding-top: 10em; }
    main.career section.post h1 {
      font-size: 2.5em; }
    main.career section.post .text {
      margin: 2em 0 2.5em;
      font-size: 1.2em; }
    main.career section.post .points p {
      font-size: 1.2em; } }
  main.career section.post .backgrounds {
    max-height: 150vh; }
    main.career section.post .backgrounds .background {
      opacity: 0.1; }
  main.career section.post .date {
    font-size: 1.1em;
    color: rgba(0, 0, 0, 0.5);
    margin: 4em 0 3.5em;
    text-transform: uppercase;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px; }
  main.career section.post .text {
    margin-top: 0;
    margin-bottom: 0; }
  main.career section.post .share-row {
    *zoom: 1;
    margin: 4em 0 4.5em; }
    main.career section.post .share-row:before, main.career section.post .share-row:after {
      content: " ";
      display: table; }
    main.career section.post .share-row:after {
      clear: both; }
    main.career section.post .share-row .share-links, main.career section.post .share-row .cta-button {
      float: left; }
    main.career section.post .share-row .cta-button {
      position: relative;
      z-index: 0; }
    main.career section.post .share-row .share-links {
      margin: 0 0 0 2em; }
  main.career section.post .description {
    font-family: "proxima-nova", sans-serif;
    font-weight: 100;
    letter-spacing: 1px;
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    line-height: 1.75;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.7);
    margin: 2.5em 0; }
    main.career section.post .description p {
      margin: 0; }
    main.career section.post .description strong {
      font-family: "proxima-nova", sans-serif;
      font-weight: 400;
      letter-spacing: 1px; }
    main.career section.post .description p {
      margin-bottom: 1.5em; }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.career section.post .description {
        font-size: 1.4em; } }

main.single-client .left h2.title {
  font-size: 5em; }

main.archive .content {
  padding-top: 20em; }
  main.archive .content .left {
    width: 50%; }
    @media all and (max-width: 768px) {
      main.archive .content .left {
        width: 100%; } }
  main.archive .content .right {
    width: 45%; }
    @media all and (max-width: 768px) {
      main.archive .content .right {
        width: 100%; } }
  main.archive .content h1 {
    font-size: 4em;
    padding-right: 1em;
    color: rgba(200, 204, 208, 0.75); }
    @media all and (max-width: 768px) {
      main.archive .content h1 {
        font-size: 3em; } }
    main.archive .content h1 span {
      color: white; }

main.profile {
  min-height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
  background: black; }
  main.profile .content {
    width: 75%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    margin-left: 5%;
    padding: 10em 0 5em; }
    main.profile .content .get-in-touch {
      display: none; }
  main.profile .wrapper {
    display: inline-block;
    width: 60%; }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.profile .wrapper {
        width: 100%; } }
  main.profile .submenu {
    list-style-type: none;
    margin: 4em 0 0;
    padding: 0;
    display: inline-block;
    position: relative;
    width: 40%;
    float: left;
    margin: 0;
    margin-top: 7em;
    max-width: 18vw;
    padding-right: 3%; }
    main.profile .submenu li {
      padding: 0;
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 1.5em;
      font-size: 1em;
      position: relative;
      line-height: 1.75; }
      main.profile .submenu li a {
        color: rgba(255, 255, 255, 0.6);
        -webkit-transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: color 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
      main.profile .submenu li:before {
        content: '';
        background: url("../images/ui/arrow_solid_blue.png") no-repeat 50% 50%;
        background-size: cover;
        width: 0.6em;
        height: 1.2em;
        position: absolute;
        top: 0;
        left: -1.75em;
        opacity: 0;
        -webkit-transform: translateX(-0.25em);
            -ms-transform: translateX(-0.25em);
                transform: translateX(-0.25em);
        -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
        transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005), transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
        @media all and (max-width: 568px), (max-height: 400px) {
          main.profile .submenu li:before {
            left: -1em; } }
      main.profile .submenu li:last-child {
        margin-bottom: 0; }
      main.profile .submenu li:hover:before, main.profile .submenu li.selected:before {
        opacity: 1;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none; }
      main.profile .submenu li:hover a {
        color: white; }
      main.profile .submenu li.selected {
        pointer-events: none;
        font-weight: 400; }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.profile .submenu {
        width: 100%; } }
    @media all and (max-width: 1024px) {
      main.profile .submenu {
        max-width: none;
        padding: 0; } }
    main.profile .submenu li {
      font-size: 1.1em; }
      main.profile .submenu li a {
        color: #5a5a5a; }
        main.profile .submenu li a:hover, main.profile .submenu li a.selected {
          color: black !important; }
      main.profile .submenu li:hover a {
        color: #5a5a5a; }
  main.profile .breadcrumb {
    margin-top: 3em;
    color: black; }
    main.profile .breadcrumb a {
      color: #35abd7; }
      main.profile .breadcrumb a:hover {
        color: #175c75; }
  main.profile h1, main.profile .text {
    max-width: 800px; }
  main.profile h1 {
    font-size: 3.3em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.25; }
  main.profile .text {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.3em;
    line-height: 1.75;
    margin: 3em 0;
    color: rgba(33, 33, 33, 0.8); }
    main.profile .text a {
      color: #35abd7; }
      main.profile .text a:hover {
        color: #175c75; }
    main.profile .text p {
      margin: 0 0 1em; }
  main.profile .points p {
    font-size: 1.5em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.75; }
  main.profile .points ul {
    list-style-type: none;
    color: #35abd7;
    margin-top: 2em;
    padding: 0; }
    main.profile .points ul li {
      font-family: "proxima-nova", sans-serif;
      font-weight: 400;
      letter-spacing: 1px;
      font-size: 1.2em;
      padding: 1.25em 0 0.75em;
      border-top: 1px solid rgba(53, 171, 215, 0.25);
      display: table;
      line-height: 1.75; }
      main.profile .points ul li i {
        margin-right: 0.5em; }
  @media all and (max-width: 1440px) {
    main.profile {
      display: block; }
      main.profile .content {
        width: 80%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
        main.profile .content .get-in-touch {
          display: block;
          width: auto; }
      main.profile .submenu {
        left: 0;
        position: relative; }
      main.profile .get-in-touch {
        position: relative;
        top: 0;
        right: auto;
        margin: 0 0 5em;
        width: 40%;
        left: 10%;
        padding: 0;
        max-width: 30em;
        top: auto;
        right: auto;
        left: 0;
        display: block;
        margin: 5em 0;
        display: none; }
        main.profile .get-in-touch .title {
          display: none; }
        main.profile .get-in-touch .links {
          *zoom: 1; }
          main.profile .get-in-touch .links:before, main.profile .get-in-touch .links:after {
            content: " ";
            display: table; }
          main.profile .get-in-touch .links:after {
            clear: both; }
          main.profile .get-in-touch .links .link {
            display: block;
            width: 50%;
            float: left;
            margin: 0;
            padding: 1.5em 0 1em; }
            main.profile .get-in-touch .links .link:before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              width: 1px;
              height: 100%;
              background: rgba(0, 0, 0, 0.3); }
            main.profile .get-in-touch .links .link:first-child {
              margin: 0; }
              main.profile .get-in-touch .links .link:first-child:before {
                display: none; }
            main.profile .get-in-touch .links .link:after {
              display: none; } }
  @media all and (max-width: 1024px) {
    main.profile {
      padding-bottom: 4em; }
      main.profile .content {
        padding: 15em 0 3em;
        display: block; }
        main.profile .content .get-in-touch {
          display: none; }
      main.profile h1 {
        font-size: 3em; }
      main.profile .submenu {
        margin: 0 0 5em; }
      main.profile .get-in-touch {
        display: block;
        top: 0;
        left: 0;
        width: 80%;
        margin: 0 auto; } }
  @media all and (max-width: 568px), (max-height: 400px) {
    main.profile .content {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      width: 90%;
      padding-top: 10em; }
    main.profile h1 {
      font-size: 2.5em; }
    main.profile .text {
      margin: 2em 0 2.5em;
      font-size: 1.2em; }
    main.profile .points p {
      font-size: 1.2em; } }
  main.profile .wrapper {
    width: 80%; }
    @media all and (max-width: 568px), (max-height: 400px) {
      main.profile .wrapper {
        width: 100%; } }
  main.profile .backgrounds {
    width: 50%;
    left: 50%;
    height: 100vh;
    z-index: 0;
    position: fixed;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    main.profile .backgrounds .background {
      height: 100%; }
      main.profile .backgrounds .background:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        left: -20%;
        background: -webkit-gradient(linear, left top, right top, color-stop(30%, black), color-stop(70%, transparent));
        background: linear-gradient(to right, black 30%, transparent 70%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); }
  main.profile .profile-nav {
    position: fixed;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    top: 50vh;
    right: 0;
    width: 100vw;
    z-index: 1; }
    main.profile .profile-nav .link {
      -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      transition: transform 0.5s cubic-bezier(0.56, 0, 0, 1.005), -webkit-transform 0.5s cubic-bezier(0.56, 0, 0, 1.005);
      position: absolute; }
      main.profile .profile-nav .link a {
        display: block; }
        main.profile .profile-nav .link a img {
          opacity: 0.5;
          -webkit-transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005);
          transition: opacity 0.5s cubic-bezier(0.56, 0, 0, 1.005); }
        main.profile .profile-nav .link a:hover img {
          opacity: 1; }
      main.profile .profile-nav .link.prev {
        -webkit-transform: translateX(5px);
            -ms-transform: translateX(5px);
                transform: translateX(5px);
        left: 50%;
        margin-left: 3em; }
      main.profile .profile-nav .link.next {
        right: 3em;
        -webkit-transform: translateX(-5px);
            -ms-transform: translateX(-5px);
                transform: translateX(-5px); }
      main.profile .profile-nav .link:hover {
        -webkit-transform: none;
            -ms-transform: none;
                transform: none; }
      main.profile .profile-nav .link.disabled {
        pointer-events: none;
        opacity: 0.3; }
  main.profile .title {
    color: #c8ccd0;
    font-size: 4em; }
  main.profile .breadcrumb {
    color: rgba(255, 255, 255, 0.4); }
    main.profile .breadcrumb a {
      color: #c8ccd0; }
      main.profile .breadcrumb a:hover {
        color: white; }
  main.profile .submenu {
    left: 5%;
    position: fixed;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    main.profile .submenu li a {
      color: #c8ccd0; }
    main.profile .submenu li:hover a {
      color: white !important; }
    main.profile .submenu .selected a {
      color: white; }
  main.profile .content {
    margin: 0 auto 0 15%;
    width: 40%;
    padding-top: 15em; }
    main.profile .content .backgrounds {
      display: none; }
    main.profile .content h1, main.profile .content .text, main.profile .content .date {
      color: rgba(255, 255, 255, 0.8); }
    main.profile .content .date {
      margin-top: 1em;
      text-transform: uppercase;
      letter-spacing: 1px; }
    main.profile .content .social-links {
      margin-top: 5em; }
      main.profile .content .social-links a {
        font-size: 1.6em;
        margin-right: 1em; }
    main.profile .content .text {
      font-family: "proxima-nova", sans-serif;
      font-weight: 300;
      letter-spacing: 1px;
      margin-bottom: 0;
      max-width: 800px; }
      main.profile .content .text p {
        margin-bottom: 1em; }
  @media all and (max-height: 768px) {
    main.profile .content {
      padding-top: 10em; } }
  @media all and (max-width: 1440px) {
    main.profile .content {
      display: block;
      margin-left: 10%;
      width: 50%; }
    main.profile .submenu {
      position: relative;
      top: 0;
      left: 0;
      display: block;
      margin-top: 0; } }
  @media all and (max-width: 768px) {
    main.profile .backgrounds {
      display: none; }
    main.profile .profile-nav {
      top: 50vh;
      z-index: 1;
      position: absolute; }
      main.profile .profile-nav .link.next {
        right: 2em; }
      main.profile .profile-nav .link.prev {
        left: -2em; }
    main.profile .content {
      width: 80%; }
      main.profile .content .backgrounds {
        display: block;
        margin-top: -25em;
        margin-left: -10vw;
        width: 100vw;
        left: 0;
        position: relative;
        height: 50vh; }
      main.profile .content .breadcrumb, main.profile .content h1, main.profile .content .text, main.profile .content .date, main.profile .content .social-links {
        position: relative;
        z-index: 1; }
      main.profile .content .social-links {
        margin-top: 18em; }
      main.profile .content .text {
        max-height: none; } }
  @media all and (max-width: 568px), (max-height: 400px) {
    main.profile .content {
      padding-top: 8em; } }
  @media all and (max-width: 321px) {
    main.profile .profile-nav {
      top: 55vh; } }
