@charset "UTF-8";
/**
 * Default settings
 *
 * All default settings can be overwritten by including a settings file
 * with these variables before including adapt.
 */
/**
 * SASS MAP for responsive keywords and document sizes.
 */
/**
 * Generate vendor prefixes for various browser support
 * Based on $browserPrefixes setting
 */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/**
 * CSS RESET mixin
 */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

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

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

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

/**
 * Background Image
 *
 * @param string $width Width of the element
 * @param string $height Height of the element
 * @param string $bgoptions Background property options
 * @param bool $cover background-size: cover (bool to turn on and off)
 */
/**
 * Blur an element
 *
 * @param string $value Blur value for the element
 */
/**
 * Clearfix mixin
 */
/**
 * shorthand
 */
/**
 * Responsive device media queries based on
 * the $responseiveMap default setting.
 *
 * NOTE : I had to do it this way because you cannot pass the
 * doc block @content around through mixins.  It has to
 * created from this mixin
 */
/**
 * Device mixin SASS if/else tree
 *
 * DEPRECATED
 * ----------- Backwards compatibility for device() mixin
 */
/**
 * Device mixin variables
 *
 * DEPRECATED
 * ----------- Backwards compatibility for media vars
 */
/**
 * grayscale prefixer
 */
/**
 * Hamburger button
 * 
 * USAGE :
 *     .hamburger {
 *         @include hamburger();
 *         
 *     }
 *     <div class="hamburber"><span>menu</span></div>
 */
/**
 * set the size in a single call
 *
 * @param int $width Element width
 * @param int $height Element height
 * @param string|bool $display Display value for the element
 */
/**
 * Set Mobile Box Ratio
 */
/**
 * break word mixin
 */
/**
 * General classes to be used in HTML or extended via SASS
 */
/**
 * Clearfix
 *
 * Uses the clearfix mixin
 */
.clearfix {
  zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden; }
  .clearfix:after {
    clear: both; }

/**
 * Float left and right
 */
.floatright {
  float: right; }

.floatleft {
  float: left; }

/**
* To use, add the class preload to the body and remove
* once the document is ready via JS
*/
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important; }

/**
 * Hide from mobile
 */
@media only screen and (max-width: 667px) {
  .hideMobile {
    display: none; } }

/**
 * Animation
 * @param  float    $delay            animation delay in seconds
 * @param  float    $duration         animation duration in seconds
 * @param  string   $animation        animation name (keyframe)
 * @param  integer  $repeat:0         number of times to repeat
 * @param  string   $direction:normal animation direction
 * @param  sstring  $easing:linear    easing
 */
/**
 * Background Gradients
 *
 * @param string $startColor Beginning color of the gradient
 * @param string $endColor   End color of the gradient
 * @param string $direction  Optional direction of the gradient.  Defaults top.
 */
/**
 * Linear Gradient
 *
 * @param string $direction Direction of the gradient
 * @param list $color-stops Number of colors and stops
 */
/**
 * Border Radius
 * @param string $value Value of the border radius.  Defaults to $borderRadius settings
 */
/**
 * Border radius alias
 * @param string $value Value of the border radius.  Defaults to $borderRadius settings
 */
/**
 * Border Radius : Bottom
 * @param string $value Value of the border radius.  Defaults to $borderRadius settings
 */
/**
 * Border Radius : Top
 * @param string $value Value of the border radius.  Defaults to $borderRadius settings
 */
/**
 * Add box shadow vendor prefixes
 * @param string $x     X axis value of the shadow
 * @param string $y     Y axis value of the shadow
 * @param string $blur  Blur size
 * @param string $color Color of the shadow
 */
/**
 * Box shadow inset with vendor prefixes
 * @param string $x     X axis value of the shadow
 * @param string $y     Y axis value of the shadow
 * @param string $blur  Blur size
 * @param string $color Color of the shadow
 */
/**
 * Box Sizing
 * @param  string $value:border-box   box-sizing value
 */
/**
 * Box Sizing Shorthand
 */
/**
 * Font imports
 * @param  string $fontFamily   font family name
 * @param  string $fontFilename font file
 */
/**
 * Input placeholders
 */
/**
 * Keyframes
 * @param  string $name keyframe name
 */
/**
 * Force Hardware Acceleration
 */
/**
 * Perspective
 */
/**
 * Rotate
 */
/**
 * Rotate X
 */
/**
 * Rotate Y
 */
/**
 * Skew
 *
 * @param int x X degree value to skew
 * @param int y Y degree value to skey
 */
/**
 * Skew by X axis
 */
/**
 * Skew by Y axis
 */
/**
 * Transform
 */
/**
 * Transform Origin
 */
/**
 * Transform Translate 3D
 */
/**
 * transition prefixer
 */
/**
 * transition-delay prefixer
 */
/**
 * Backwards compatability because even humans
 * make mistakes sometimes.
 */
/**
 * Global html and body settings
 */
html, body {
  height: 100%; }

/**
 * Form inputs
 */
input:not('[type="checkbox"]'),
input:not('[type="radio"]') {
  -webkit-appearance: none;
  -webkit-border-radius: 0; }

/**
 * Form Submit
 */
input[type="submit"] {
  cursor: pointer; }

/*!
 *  Font Awesome 4.5.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-webfont.eot?v=4.5.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.5.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.5.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.5.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.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;
  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 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

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

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

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

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -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 {
  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: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-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-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: ""; }

.row {
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 1100px;
  flex-flow: row wrap;
  align-items: stretch;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }
  @media only screen and (min-width: 668px) and (max-width: 1028px) {
    .row {
      padding: 0 20px; } }
  @media only screen and (max-width: 667px) {
    .row {
      padding: 0 20px; } }
  .row.center {
    justify-content: center; }
  .row.padded {
    padding: 30px 0 !important; }
  .row .col {
    margin: 2%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box; }
    @media only screen and (max-width: 667px) {
      .row .col {
        margin: 0;
        flex-basis: 99% !important;
        width: 100%; } }
    .row .col.center-center {
      justify-content: center;
      align-items: center; }
    .row .col .col {
      margin-left: 0;
      margin-right: 0;
      margin-top: 0;
      margin-bottom: 8%; }
      .row .col .col:last-child {
        margin-bottom: inherit; }
  .row .col-1 {
    flex-basis: 4.33333%; }
  .row .col-2 {
    flex-basis: 12.66667%; }
  .row .col-3 {
    flex-basis: 21%; }
  .row .col-4 {
    flex-basis: 29.33333%; }
  .row .col-5 {
    flex-basis: 37.66667%; }
  .row .col-6 {
    flex-basis: 46%; }
  .row .col-7 {
    flex-basis: 54.33333%; }
  .row .col-8 {
    flex-basis: 62.66667%; }
  .row .col-9 {
    flex-basis: 71%; }
  .row .col-10 {
    flex-basis: 79.33333%; }
  .row .col-11 {
    flex-basis: 87.66667%; }
  .row .col-12 {
    flex-basis: 96%; }
  .row .push-1 {
    margin-left: 8.33333%; }
    @media only screen and (max-width: 667px) {
      .row .push-1 {
        margin-left: 0; } }
  .row .push-2 {
    margin-left: 16.66667%; }
    @media only screen and (max-width: 667px) {
      .row .push-2 {
        margin-left: 0; } }
  .row .push-3 {
    margin-left: 25%; }
    @media only screen and (max-width: 667px) {
      .row .push-3 {
        margin-left: 0; } }
  .row .push-4 {
    margin-left: 33.33333%; }
    @media only screen and (max-width: 667px) {
      .row .push-4 {
        margin-left: 0; } }
  .row .push-5 {
    margin-left: 41.66667%; }
    @media only screen and (max-width: 667px) {
      .row .push-5 {
        margin-left: 0; } }
  .row .push-6 {
    margin-left: 50%; }
    @media only screen and (max-width: 667px) {
      .row .push-6 {
        margin-left: 0; } }
  .row .push-7 {
    margin-left: 58.33333%; }
    @media only screen and (max-width: 667px) {
      .row .push-7 {
        margin-left: 0; } }
  .row .push-8 {
    margin-left: 66.66667%; }
    @media only screen and (max-width: 667px) {
      .row .push-8 {
        margin-left: 0; } }
  .row .push-9 {
    margin-left: 75%; }
    @media only screen and (max-width: 667px) {
      .row .push-9 {
        margin-left: 0; } }
  .row .push-10 {
    margin-left: 83.33333%; }
    @media only screen and (max-width: 667px) {
      .row .push-10 {
        margin-left: 0; } }
  .row .push-11 {
    margin-left: 91.66667%; }
    @media only screen and (max-width: 667px) {
      .row .push-11 {
        margin-left: 0; } }
  .row .push-12 {
    margin-left: 100%; }
    @media only screen and (max-width: 667px) {
      .row .push-12 {
        margin-left: 0; } }
  .row .offset-1 {
    margin-right: 8.33333%; }
    @media only screen and (max-width: 667px) {
      .row .offset-1 {
        margin-right: 0; } }
  .row .offset-2 {
    margin-right: 16.66667%; }
    @media only screen and (max-width: 667px) {
      .row .offset-2 {
        margin-right: 0; } }
  .row .offset-3 {
    margin-right: 25%; }
    @media only screen and (max-width: 667px) {
      .row .offset-3 {
        margin-right: 0; } }
  .row .offset-4 {
    margin-right: 33.33333%; }
    @media only screen and (max-width: 667px) {
      .row .offset-4 {
        margin-right: 0; } }
  .row .offset-5 {
    margin-right: 41.66667%; }
    @media only screen and (max-width: 667px) {
      .row .offset-5 {
        margin-right: 0; } }
  .row .offset-6 {
    margin-right: 50%; }
    @media only screen and (max-width: 667px) {
      .row .offset-6 {
        margin-right: 0; } }
  .row .offset-7 {
    margin-right: 58.33333%; }
    @media only screen and (max-width: 667px) {
      .row .offset-7 {
        margin-right: 0; } }
  .row .offset-8 {
    margin-right: 66.66667%; }
    @media only screen and (max-width: 667px) {
      .row .offset-8 {
        margin-right: 0; } }
  .row .offset-9 {
    margin-right: 75%; }
    @media only screen and (max-width: 667px) {
      .row .offset-9 {
        margin-right: 0; } }
  .row .offset-10 {
    margin-right: 83.33333%; }
    @media only screen and (max-width: 667px) {
      .row .offset-10 {
        margin-right: 0; } }
  .row .offset-11 {
    margin-right: 91.66667%; }
    @media only screen and (max-width: 667px) {
      .row .offset-11 {
        margin-right: 0; } }
  .row .offset-12 {
    margin-right: 100%; }
    @media only screen and (max-width: 667px) {
      .row .offset-12 {
        margin-right: 0; } }

.indent-1 {
  padding-left: 8.33333%; }
  @media only screen and (max-width: 667px) {
    .indent-1 {
      padding-left: 0; } }

.indent-2 {
  padding-left: 16.66667%; }
  @media only screen and (max-width: 667px) {
    .indent-2 {
      padding-left: 0; } }

.indent-3 {
  padding-left: 25%; }
  @media only screen and (max-width: 667px) {
    .indent-3 {
      padding-left: 0; } }

.indent-4 {
  padding-left: 33.33333%; }
  @media only screen and (max-width: 667px) {
    .indent-4 {
      padding-left: 0; } }

.indent-5 {
  padding-left: 41.66667%; }
  @media only screen and (max-width: 667px) {
    .indent-5 {
      padding-left: 0; } }

.indent-6 {
  padding-left: 50%; }
  @media only screen and (max-width: 667px) {
    .indent-6 {
      padding-left: 0; } }

.indent-7 {
  padding-left: 58.33333%; }
  @media only screen and (max-width: 667px) {
    .indent-7 {
      padding-left: 0; } }

.indent-8 {
  padding-left: 66.66667%; }
  @media only screen and (max-width: 667px) {
    .indent-8 {
      padding-left: 0; } }

.indent-9 {
  padding-left: 75%; }
  @media only screen and (max-width: 667px) {
    .indent-9 {
      padding-left: 0; } }

.indent-10 {
  padding-left: 83.33333%; }
  @media only screen and (max-width: 667px) {
    .indent-10 {
      padding-left: 0; } }

.indent-11 {
  padding-left: 91.66667%; }
  @media only screen and (max-width: 667px) {
    .indent-11 {
      padding-left: 0; } }

.indent-12 {
  padding-left: 100%; }
  @media only screen and (max-width: 667px) {
    .indent-12 {
      padding-left: 0; } }

h1 {
  margin: 20px 0;
  font: 600 2.8em/1.4 "Open Sans", sans-serif;
  color: #1C77A5;
  font-style: italic; }
  @media only screen and (max-width: 667px) {
    h1 {
      font-size: 2.4em; } }

h2 {
  margin: 20px 0;
  color: #1C77A5;
  font: 400 2.8em/1.4 "Open Sans", sans-serif;
  font-style: italic; }
  @media only screen and (max-width: 667px) {
    h2 {
      font-size: 1.9em; } }

h3 {
  margin: 15px 0;
  color: #1C77A5;
  font: 600 1.3em/1.4 "Open Sans", sans-serif;
  text-transform: uppercase; }

h4 {
  margin: 12px 0;
  color: #454545;
  font: 600 1.3em/1.4 "Open Sans", sans-serif;
  text-transform: uppercase; }

h5 {
  margin: 12px 0;
  font: 600 1.4em/1.4 "Open Sans", sans-serif; }

p {
  margin: 16px 0;
  font: 300 1.1em/2 "Open Sans", sans-serif;
  color: #454545; }
  p.is-medium {
    font-size: 1.4em; }
    @media only screen and (max-width: 667px) {
      p.is-medium {
        font-size: 1.1em; } }

a {
  text-decoration: underline;
  color: #3ea1c3; }

small {
  font-size: .9em; }

address p {
  font-size: 1em;
  line-height: 2; }

hr {
  margin: 25px 0;
  padding: 0;
  width: 100%;
  height: 1px;
  border: none;
  background-color: #b3b3b3; }

.center {
  text-align: center; }

.btn, form input[type=submit] {
  display: inline-block;
  padding: 16px 30px;
  font: 400 0.9em "Open Sans", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .2em;
  border: none;
  -webkit-appearance: none;
  background: #1C77A5;
  background: -webkit-linear-gradient(90deg, #1C77A5, #44B1CE);
  background: linear-gradient(0deg, #1C77A5, #44B1CE);
  -webkit-transition: all 0.24s linear;
  -moz-transition: all 0.24s linear;
  -ms-transition: all 0.24s linear;
  -o-transition: all 0.24s linear;
  transition: all 0.24s linear; }
  .btn:hover, form input[type=submit]:hover {
    background-color: #333;
    color: #ffffff; }
  .btn.btn-solid, form input.btn-solid[type=submit] {
    background-color: #333;
    color: #ffffff; }

form fieldset {
  padding: 20px 0; }
  form fieldset:first-child {
    padding-top: 0; }

form label {
  display: block;
  margin: 5px 0;
  font: normal 1.1em "Open Sans", sans-serif;
  color: #333; }

form input:not([type=submit]), form textarea, form select {
  display: block;
  margin: 5px 0 12px;
  padding: 12px;
  width: 100%;
  font: normal 1.1em "Open Sans", sans-serif;
  border: 1px solid #dadada;
  background-color: #F3F3F3;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }
  form input:not([type=submit]):active, form input:not([type=submit]):focus, form textarea:active, form textarea:focus, form select:active, form select:focus {
    outline: none;
    border: 1px solid #1C77A5; }

form textarea {
  min-height: 170px; }

form .select-wrapper {
  position: relative;
  margin: 5px 0 12px;
  background-color: #F3F3F3;
  border: 1px solid #dadada;
  min-height: 47px; }
  form .select-wrapper:before {
    position: absolute;
    content: "";
    right: -1px;
    top: -1px;
    bottom: -1px;
    width: 10%;
    background-color: #1C77A5; }
  form .select-wrapper:after {
    position: absolute;
    right: 0;
    top: 0;
    padding-top: 1.3%;
    width: 10%;
    text-align: center;
    content: "\f107";
    font-size: 1.8em;
    font-family: FontAwesome;
    color: #ffffff; }
  form .select-wrapper select {
    position: absolute;
    margin: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border: none;
    z-index: 10;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0; }

form input[type=submit] {
  letter-spacing: .1em;
  -webkit-appearance: none; }

.form-errors {
  padding: 25px;
  background-color: #ffffff; }
  .form-errors strong {
    display: block;
    font-size: 1.1em;
    color: #454545;
    font-weight: bold;
    margin-bottom: 10px; }
  .form-errors ul {
    list-style: disc; }
  .form-errors li {
    margin-left: 23px;
    padding: 6px 0;
    color: #F7503D; }

.form-success {
  padding: 20px;
  background-color: #ffffff; }

table {
  margin: 20px 0;
  width: 100%; }
  table.clickable-row tr {
    cursor: pointer; }
    table.clickable-row tr:hover {
      background-color: white; }
  table thead {
    width: 100%; }
    table thead th {
      text-align: left;
      font-weight: bold; }
  table tbody th {
    text-align: left;
    font-weight: bold;
    border-bottom: 1px solid #F3F3F3;
    border-right: 1px solid #F3F3F3; }
    table tbody th span {
      font-weight: 100; }
  table th {
    padding: 12px 12px;
    background-color: white;
    border-bottom: 1px solid #F3F3F3; }
  table td {
    padding: 12px 15px;
    line-height: 1.4;
    border-bottom: 1px solid white; }
  table .center {
    text-align: center; }
  table .right {
    text-align: right; }

.demo-grid-boilerplate {
  padding: 20px 0;
  font-size: 12px;
  font-family: sans-serif;
  text-transform: uppercase; }
  .demo-grid-boilerplate .col {
    padding: 15px;
    background-color: #F3F3F3;
    text-align: center; }

body {
  font: 85%/1.4 "Open Sans", sans-serif;
  background-color: #ffffff; }
  @media only screen and (max-width: 667px) {
    body {
      padding: 5px; } }

.row header {
  flex-basis: 100%; }
  .row header p {
    font-size: 1.3em; }

.down-arrow {
  position: absolute;
  top: -35px;
  left: 50%;
  margin-left: -35px;
  color: #ffffff;
  font-size: 2.5em;
  text-align: center;
  background: #41ADCB;
  background: -webkit-linear-gradient(90deg, #41ADCB, #44B1CE);
  background: linear-gradient(0deg, #41ADCB, #44B1CE);
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  -ms-border-radius: 200px;
  -o-border-radius: 200px;
  border-radius: 200px;
  width: 70px;
  height: 70px; }

#logo {
  display: block;
  background: transparent url("../../img/logo.png") center center no-repeat;
  background-size: 100% auto;
  text-indent: -9999px;
  overflow: hidden;
  width: 362px;
  height: 98px; }
  @media only screen and (max-width: 667px) {
    #logo {
      margin: 0 auto;
      width: 200px;
      height: 53px; } }

#logo-footer {
  display: block;
  background: transparent url("../../img/logo-footer.png") center center no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  width: 194px;
  height: 185px; }

header#primary-header {
  position: relative;
  padding: 100px 0;
  background-color: #F3F3F3;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 95vh;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }
  @media only screen and (max-width: 667px) {
    header#primary-header {
      padding: 50px 0 300px;
      background-position: right bottom;
      background-size: 200% auto;
      height: auto; } }
  header#primary-header .row {
    margin-bottom: 80px; }
    @media only screen and (max-width: 667px) {
      header#primary-header .row {
        margin-bottom: 30px; } }

#focus {
  position: relative;
  padding: 70px 0;
  text-align: center;
  background: #1C77A5;
  background: -webkit-linear-gradient(90deg, #1C77A5, #44B1CE);
  background: linear-gradient(0deg, #1C77A5, #44B1CE); }
  @media only screen and (max-width: 667px) {
    #focus {
      padding: 30px 0; }
      #focus .row {
        padding-bottom: 100px; } }
  #focus header {
    padding: 0 25%; }
    @media only screen and (min-width: 668px) and (max-width: 1028px) {
      #focus header {
        padding: 0 17%; } }
    @media only screen and (max-width: 667px) {
      #focus header {
        padding: 0 0 65px; } }
  #focus h2 {
    color: #ffffff;
    text-shadow: 0 1px 1px #114864; }
  #focus h3 {
    font-size: 1.5em;
    color: #114864; }
  #focus p {
    color: #ffffff !important;
    font-size: 1em; }

#contact {
  position: relative;
  padding: 70px 0;
  background: #ffffff url("../../img/pattern.gif") repeat; }
  @media only screen and (max-width: 667px) {
    #contact {
      padding: 20px 0; } }
  #contact .down-arrow {
    color: #1C77A5;
    background: #ffffff url("../../img/pattern.gif") repeat; }
  #contact header {
    padding: 40px 0; }
    @media only screen and (max-width: 667px) {
      #contact header {
        padding: 15px 0; } }
    #contact header h2 {
      color: #1C77A5; }
  #contact .row {
    align-items: flex-start; }
    @media only screen and (max-width: 667px) {
      #contact .row {
        flex-direction: column-reverse; } }
  #contact .contact-info {
    padding: 30px;
    background-color: #ffffff;
    text-align: right; }
    @media only screen and (max-width: 667px) {
      #contact .contact-info {
        text-align: center; } }
    #contact .contact-info p {
      font-size: 1.3em; }
      @media only screen and (min-width: 668px) and (max-width: 1028px) {
        #contact .contact-info p {
          font-size: 1.2em; } }
      @media only screen and (min-width: 668px) and (max-width: 768px) {
        #contact .contact-info p {
          font-size: 1em; } }
      @media only screen and (max-width: 667px) {
        #contact .contact-info p {
          font-size: 1.1em; } }

#careers {
  position: relative;
  padding: 70px 0; }
  @media only screen and (max-width: 667px) {
    #careers {
      padding: 35px 0; } }
  #careers .down-arrow {
    color: #1C77A5;
    background: #ffffff;
    background: -webkit-linear-gradient(90deg, #ffffff, #ffffff);
    background: linear-gradient(0deg, #ffffff, #ffffff); }
  #careers header {
    padding: 30px 20%; }
    @media only screen and (max-width: 667px) {
      #careers header {
        padding: 20px 0; } }

footer {
  padding: 70px 0 5px;
  background: #1C77A5;
  background: -webkit-linear-gradient(90deg, #1C77A5, #44B1CE);
  background: linear-gradient(0deg, #1C77A5, #44B1CE); }
  footer .row {
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    footer .row .copyright {
      margin-top: 70px;
      color: #333;
      font-size: .9em;
      font-weight: bold; }
