@charset "UTF-8";
/*!
 * Lime SCSS MicroFramework
 */
/*************************
 * Mixins
 ************************/
/*
 * Animations
 */
/*
 * Arrows
 */
/*
 * Backgrounds
 */
/*
 * Border Radius
 */
/*
 * Filters
 */
/*
 * Flexbox
 * via: https://gist.github.com/jayj
 * url: https://gist.github.com/jayj/4012969
 */
/*
 * Font
 */
/*
 * General Mixins
 */
/*
 * Transitions
 */
/*
 * Transformations
 */
/*************************
 * Core Base
 ************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, a,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, hr {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, hr {
  display: block; }

ul,
ol {
  list-style: none; }

blockquote,
q {
  quotes: none; }

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

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

/* change border colour to suit your needs */
input,
select {
  vertical-align: middle; }

/*! Custom normalize.css  */
*,
*:before,
*:after {
  box-sizing: border-box; }

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
  text-decoration: none; }
  a:active, a:hover {
    outline-width: 0;
    text-decoration: none; }

img {
  border-style: none; }

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

/* Forms
   ========================================================================== */
/**
 * 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; }

/**
 * 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"] {
  padding: 0;
  /* 2 */ }

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

:focus {
  outline: 0; }

/*************************
 * Base
 ************************/
/*
 * Global
 */
/*
 * Breakpoints
 */
/*
 * Media Queries
 */
/*
 * Fonts
 */
/*
 * Colors
 */
/*************************
 * Grid layout
 ************************/
.container-fluid,
.container {
  margin-right: auto;
  margin-left: auto; }

.container-fluid {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin: 0 auto; }
  .container-fluid.no-gutter {
    padding-right: 0;
    padding-left: 0; }
  .container-fluid > .row {
    margin: 0; }

.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem; }
  .row.no-gutter {
    margin-right: 0;
    margin-left: 0; }
    .row.no-gutter > [class*='col-'] {
      padding-right: 0;
      padding-left: 0; }

[class*='col-'] {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  max-width: 100%; }

@media (max-width: 47.9375rem) {
  .container {
    margin: 0 1rem; } }

@media (min-width: 48rem) {
  .container {
    max-width: 44rem; } }

@media only screen and (min-width: 64rem) {
  .container {
    max-width: 60rem; } }

@media only screen and (min-width: 75rem) {
  .container {
    max-width: 71rem; } }

@media only screen and (min-width: 87.5rem) {
  .container {
    max-width: 83.5rem; } }

.col-xs,
.col-sm,
.col-md,
.col-lg,
.col-xl {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%; }

.col-xs-1 {
  flex-basis: 100%;
  max-width: 100%; }

.col-xs-1-12 {
  flex-basis: 8.33333%;
  max-width: 8.33333%; }

.col-xs-2-12 {
  flex-basis: 16.66667%;
  max-width: 16.66667%; }

.col-xs-3-12 {
  flex-basis: 25%;
  max-width: 25%; }

.col-xs-4-12 {
  flex-basis: 33.33333%;
  max-width: 33.33333%; }

.col-xs-5-12 {
  flex-basis: 41.66667%;
  max-width: 41.66667%; }

.col-xs-6-12 {
  flex-basis: 50%;
  max-width: 50%; }

.col-xs-7-12 {
  flex-basis: 58.33333%;
  max-width: 58.33333%; }

.col-xs-8-12 {
  flex-basis: 66.66667%;
  max-width: 66.66667%; }

.col-xs-9-12 {
  flex-basis: 75%;
  max-width: 75%; }

.col-xs-10-12 {
  flex-basis: 83.33333%;
  max-width: 83.33333%; }

.col-xs-11-12 {
  flex-basis: 91.66667%;
  max-width: 91.66667%; }

.col-xs-1-11 {
  flex-basis: 9.09091%;
  max-width: 9.09091%; }

.col-xs-2-11 {
  flex-basis: 18.18182%;
  max-width: 18.18182%; }

.col-xs-3-11 {
  flex-basis: 27.27273%;
  max-width: 27.27273%; }

.col-xs-4-11 {
  flex-basis: 36.36364%;
  max-width: 36.36364%; }

.col-xs-5-11 {
  flex-basis: 45.45455%;
  max-width: 45.45455%; }

.col-xs-6-11 {
  flex-basis: 54.54545%;
  max-width: 54.54545%; }

.col-xs-7-11 {
  flex-basis: 63.63636%;
  max-width: 63.63636%; }

.col-xs-8-11 {
  flex-basis: 72.72727%;
  max-width: 72.72727%; }

.col-xs-9-11 {
  flex-basis: 81.81818%;
  max-width: 81.81818%; }

.col-xs-10-11 {
  flex-basis: 90.90909%;
  max-width: 90.90909%; }

.col-xs-1-10 {
  flex-basis: 10%;
  max-width: 10%; }

.col-xs-2-10 {
  flex-basis: 20%;
  max-width: 20%; }

.col-xs-3-10 {
  flex-basis: 30%;
  max-width: 30%; }

.col-xs-4-10 {
  flex-basis: 40%;
  max-width: 40%; }

.col-xs-5-10 {
  flex-basis: 50%;
  max-width: 50%; }

.col-xs-6-10 {
  flex-basis: 60%;
  max-width: 60%; }

.col-xs-7-10 {
  flex-basis: 70%;
  max-width: 70%; }

.col-xs-8-10 {
  flex-basis: 80%;
  max-width: 80%; }

.col-xs-9-10 {
  flex-basis: 90%;
  max-width: 90%; }

.col-xs-1-9 {
  flex-basis: 11.11111%;
  max-width: 11.11111%; }

.col-xs-2-9 {
  flex-basis: 22.22222%;
  max-width: 22.22222%; }

.col-xs-3-9 {
  flex-basis: 33.33333%;
  max-width: 33.33333%; }

.col-xs-4-9 {
  flex-basis: 44.44444%;
  max-width: 44.44444%; }

.col-xs-5-9 {
  flex-basis: 55.55556%;
  max-width: 55.55556%; }

.col-xs-6-9 {
  flex-basis: 66.66667%;
  max-width: 66.66667%; }

.col-xs-7-9 {
  flex-basis: 77.77778%;
  max-width: 77.77778%; }

.col-xs-8-9 {
  flex-basis: 88.88889%;
  max-width: 88.88889%; }

.col-xs-1-8 {
  flex-basis: 12.5%;
  max-width: 12.5%; }

.col-xs-2-8 {
  flex-basis: 25%;
  max-width: 25%; }

.col-xs-3-8 {
  flex-basis: 37.5%;
  max-width: 37.5%; }

.col-xs-4-8 {
  flex-basis: 50%;
  max-width: 50%; }

.col-xs-5-8 {
  flex-basis: 62.5%;
  max-width: 62.5%; }

.col-xs-6-8 {
  flex-basis: 75%;
  max-width: 75%; }

.col-xs-7-8 {
  flex-basis: 87.5%;
  max-width: 87.5%; }

.col-xs-1-7 {
  flex-basis: 14.28571%;
  max-width: 14.28571%; }

.col-xs-2-7 {
  flex-basis: 28.57143%;
  max-width: 28.57143%; }

.col-xs-3-7 {
  flex-basis: 42.85714%;
  max-width: 42.85714%; }

.col-xs-4-7 {
  flex-basis: 57.14286%;
  max-width: 57.14286%; }

.col-xs-5-7 {
  flex-basis: 71.42857%;
  max-width: 71.42857%; }

.col-xs-6-7 {
  flex-basis: 85.71429%;
  max-width: 85.71429%; }

.col-xs-1-6 {
  flex-basis: 16.66667%;
  max-width: 16.66667%; }

.col-xs-2-6 {
  flex-basis: 33.33333%;
  max-width: 33.33333%; }

.col-xs-3-6 {
  flex-basis: 50%;
  max-width: 50%; }

.col-xs-4-6 {
  flex-basis: 66.66667%;
  max-width: 66.66667%; }

.col-xs-5-6 {
  flex-basis: 83.33333%;
  max-width: 83.33333%; }

.col-xs-1-5 {
  flex-basis: 20%;
  max-width: 20%; }

.col-xs-2-5 {
  flex-basis: 40%;
  max-width: 40%; }

.col-xs-3-5 {
  flex-basis: 60%;
  max-width: 60%; }

.col-xs-4-5 {
  flex-basis: 80%;
  max-width: 80%; }

.col-xs-1-4 {
  flex-basis: 25%;
  max-width: 25%; }

.col-xs-2-4 {
  flex-basis: 50%;
  max-width: 50%; }

.col-xs-3-4 {
  flex-basis: 75%;
  max-width: 75%; }

.col-xs-1-3 {
  flex-basis: 33.33333%;
  max-width: 33.33333%; }

.col-xs-2-3 {
  flex-basis: 66.66667%;
  max-width: 66.66667%; }

.col-xs-1-2 {
  flex-basis: 50%;
  max-width: 50%; }

@media only screen and (min-width: 48rem) {
  .col-sm-1 {
    flex-basis: 100%;
    max-width: 100%; }
  .col-sm-1-12 {
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2-12 {
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3-12 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-sm-4-12 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5-12 {
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6-12 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-sm-7-12 {
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8-12 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9-12 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-sm-10-12 {
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11-12 {
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-sm-1-11 {
    flex-basis: 9.09091%;
    max-width: 9.09091%; }
  .col-sm-2-11 {
    flex-basis: 18.18182%;
    max-width: 18.18182%; }
  .col-sm-3-11 {
    flex-basis: 27.27273%;
    max-width: 27.27273%; }
  .col-sm-4-11 {
    flex-basis: 36.36364%;
    max-width: 36.36364%; }
  .col-sm-5-11 {
    flex-basis: 45.45455%;
    max-width: 45.45455%; }
  .col-sm-6-11 {
    flex-basis: 54.54545%;
    max-width: 54.54545%; }
  .col-sm-7-11 {
    flex-basis: 63.63636%;
    max-width: 63.63636%; }
  .col-sm-8-11 {
    flex-basis: 72.72727%;
    max-width: 72.72727%; }
  .col-sm-9-11 {
    flex-basis: 81.81818%;
    max-width: 81.81818%; }
  .col-sm-10-11 {
    flex-basis: 90.90909%;
    max-width: 90.90909%; }
  .col-sm-1-10 {
    flex-basis: 10%;
    max-width: 10%; }
  .col-sm-2-10 {
    flex-basis: 20%;
    max-width: 20%; }
  .col-sm-3-10 {
    flex-basis: 30%;
    max-width: 30%; }
  .col-sm-4-10 {
    flex-basis: 40%;
    max-width: 40%; }
  .col-sm-5-10 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-sm-6-10 {
    flex-basis: 60%;
    max-width: 60%; }
  .col-sm-7-10 {
    flex-basis: 70%;
    max-width: 70%; }
  .col-sm-8-10 {
    flex-basis: 80%;
    max-width: 80%; }
  .col-sm-9-10 {
    flex-basis: 90%;
    max-width: 90%; }
  .col-sm-1-9 {
    flex-basis: 11.11111%;
    max-width: 11.11111%; }
  .col-sm-2-9 {
    flex-basis: 22.22222%;
    max-width: 22.22222%; }
  .col-sm-3-9 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-sm-4-9 {
    flex-basis: 44.44444%;
    max-width: 44.44444%; }
  .col-sm-5-9 {
    flex-basis: 55.55556%;
    max-width: 55.55556%; }
  .col-sm-6-9 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-sm-7-9 {
    flex-basis: 77.77778%;
    max-width: 77.77778%; }
  .col-sm-8-9 {
    flex-basis: 88.88889%;
    max-width: 88.88889%; }
  .col-sm-1-8 {
    flex-basis: 12.5%;
    max-width: 12.5%; }
  .col-sm-2-8 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-sm-3-8 {
    flex-basis: 37.5%;
    max-width: 37.5%; }
  .col-sm-4-8 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-sm-5-8 {
    flex-basis: 62.5%;
    max-width: 62.5%; }
  .col-sm-6-8 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-sm-7-8 {
    flex-basis: 87.5%;
    max-width: 87.5%; }
  .col-sm-1-7 {
    flex-basis: 14.28571%;
    max-width: 14.28571%; }
  .col-sm-2-7 {
    flex-basis: 28.57143%;
    max-width: 28.57143%; }
  .col-sm-3-7 {
    flex-basis: 42.85714%;
    max-width: 42.85714%; }
  .col-sm-4-7 {
    flex-basis: 57.14286%;
    max-width: 57.14286%; }
  .col-sm-5-7 {
    flex-basis: 71.42857%;
    max-width: 71.42857%; }
  .col-sm-6-7 {
    flex-basis: 85.71429%;
    max-width: 85.71429%; }
  .col-sm-1-6 {
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-sm-2-6 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-sm-3-6 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-sm-4-6 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-sm-5-6 {
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-sm-1-5 {
    flex-basis: 20%;
    max-width: 20%; }
  .col-sm-2-5 {
    flex-basis: 40%;
    max-width: 40%; }
  .col-sm-3-5 {
    flex-basis: 60%;
    max-width: 60%; }
  .col-sm-4-5 {
    flex-basis: 80%;
    max-width: 80%; }
  .col-sm-1-4 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-sm-2-4 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-sm-3-4 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-sm-1-3 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-sm-2-3 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-sm-1-2 {
    flex-basis: 50%;
    max-width: 50%; } }

@media only screen and (min-width: 64rem) {
  .col-md-1 {
    flex-basis: 100%;
    max-width: 100%; }
  .col-md-1-12 {
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-md-2-12 {
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-md-3-12 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-md-4-12 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-md-5-12 {
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-md-6-12 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-md-7-12 {
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-md-8-12 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-md-9-12 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-md-10-12 {
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-md-11-12 {
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-md-1-11 {
    flex-basis: 9.09091%;
    max-width: 9.09091%; }
  .col-md-2-11 {
    flex-basis: 18.18182%;
    max-width: 18.18182%; }
  .col-md-3-11 {
    flex-basis: 27.27273%;
    max-width: 27.27273%; }
  .col-md-4-11 {
    flex-basis: 36.36364%;
    max-width: 36.36364%; }
  .col-md-5-11 {
    flex-basis: 45.45455%;
    max-width: 45.45455%; }
  .col-md-6-11 {
    flex-basis: 54.54545%;
    max-width: 54.54545%; }
  .col-md-7-11 {
    flex-basis: 63.63636%;
    max-width: 63.63636%; }
  .col-md-8-11 {
    flex-basis: 72.72727%;
    max-width: 72.72727%; }
  .col-md-9-11 {
    flex-basis: 81.81818%;
    max-width: 81.81818%; }
  .col-md-10-11 {
    flex-basis: 90.90909%;
    max-width: 90.90909%; }
  .col-md-1-10 {
    flex-basis: 10%;
    max-width: 10%; }
  .col-md-2-10 {
    flex-basis: 20%;
    max-width: 20%; }
  .col-md-3-10 {
    flex-basis: 30%;
    max-width: 30%; }
  .col-md-4-10 {
    flex-basis: 40%;
    max-width: 40%; }
  .col-md-5-10 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-md-6-10 {
    flex-basis: 60%;
    max-width: 60%; }
  .col-md-7-10 {
    flex-basis: 70%;
    max-width: 70%; }
  .col-md-8-10 {
    flex-basis: 80%;
    max-width: 80%; }
  .col-md-9-10 {
    flex-basis: 90%;
    max-width: 90%; }
  .col-md-1-9 {
    flex-basis: 11.11111%;
    max-width: 11.11111%; }
  .col-md-2-9 {
    flex-basis: 22.22222%;
    max-width: 22.22222%; }
  .col-md-3-9 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-md-4-9 {
    flex-basis: 44.44444%;
    max-width: 44.44444%; }
  .col-md-5-9 {
    flex-basis: 55.55556%;
    max-width: 55.55556%; }
  .col-md-6-9 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-md-7-9 {
    flex-basis: 77.77778%;
    max-width: 77.77778%; }
  .col-md-8-9 {
    flex-basis: 88.88889%;
    max-width: 88.88889%; }
  .col-md-1-8 {
    flex-basis: 12.5%;
    max-width: 12.5%; }
  .col-md-2-8 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-md-3-8 {
    flex-basis: 37.5%;
    max-width: 37.5%; }
  .col-md-4-8 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-md-5-8 {
    flex-basis: 62.5%;
    max-width: 62.5%; }
  .col-md-6-8 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-md-7-8 {
    flex-basis: 87.5%;
    max-width: 87.5%; }
  .col-md-1-7 {
    flex-basis: 14.28571%;
    max-width: 14.28571%; }
  .col-md-2-7 {
    flex-basis: 28.57143%;
    max-width: 28.57143%; }
  .col-md-3-7 {
    flex-basis: 42.85714%;
    max-width: 42.85714%; }
  .col-md-4-7 {
    flex-basis: 57.14286%;
    max-width: 57.14286%; }
  .col-md-5-7 {
    flex-basis: 71.42857%;
    max-width: 71.42857%; }
  .col-md-6-7 {
    flex-basis: 85.71429%;
    max-width: 85.71429%; }
  .col-md-1-6 {
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-md-2-6 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-md-3-6 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-md-4-6 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-md-5-6 {
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-md-1-5 {
    flex-basis: 20%;
    max-width: 20%; }
  .col-md-2-5 {
    flex-basis: 40%;
    max-width: 40%; }
  .col-md-3-5 {
    flex-basis: 60%;
    max-width: 60%; }
  .col-md-4-5 {
    flex-basis: 80%;
    max-width: 80%; }
  .col-md-1-4 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-md-2-4 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-md-3-4 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-md-1-3 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-md-2-3 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-md-1-2 {
    flex-basis: 50%;
    max-width: 50%; } }

@media only screen and (min-width: 75rem) {
  .col-lg-1 {
    flex-basis: 100%;
    max-width: 100%; }
  .col-lg-1-12 {
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2-12 {
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3-12 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-lg-4-12 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5-12 {
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6-12 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-lg-7-12 {
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8-12 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9-12 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-lg-10-12 {
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11-12 {
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-lg-1-11 {
    flex-basis: 9.09091%;
    max-width: 9.09091%; }
  .col-lg-2-11 {
    flex-basis: 18.18182%;
    max-width: 18.18182%; }
  .col-lg-3-11 {
    flex-basis: 27.27273%;
    max-width: 27.27273%; }
  .col-lg-4-11 {
    flex-basis: 36.36364%;
    max-width: 36.36364%; }
  .col-lg-5-11 {
    flex-basis: 45.45455%;
    max-width: 45.45455%; }
  .col-lg-6-11 {
    flex-basis: 54.54545%;
    max-width: 54.54545%; }
  .col-lg-7-11 {
    flex-basis: 63.63636%;
    max-width: 63.63636%; }
  .col-lg-8-11 {
    flex-basis: 72.72727%;
    max-width: 72.72727%; }
  .col-lg-9-11 {
    flex-basis: 81.81818%;
    max-width: 81.81818%; }
  .col-lg-10-11 {
    flex-basis: 90.90909%;
    max-width: 90.90909%; }
  .col-lg-1-10 {
    flex-basis: 10%;
    max-width: 10%; }
  .col-lg-2-10 {
    flex-basis: 20%;
    max-width: 20%; }
  .col-lg-3-10 {
    flex-basis: 30%;
    max-width: 30%; }
  .col-lg-4-10 {
    flex-basis: 40%;
    max-width: 40%; }
  .col-lg-5-10 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-lg-6-10 {
    flex-basis: 60%;
    max-width: 60%; }
  .col-lg-7-10 {
    flex-basis: 70%;
    max-width: 70%; }
  .col-lg-8-10 {
    flex-basis: 80%;
    max-width: 80%; }
  .col-lg-9-10 {
    flex-basis: 90%;
    max-width: 90%; }
  .col-lg-1-9 {
    flex-basis: 11.11111%;
    max-width: 11.11111%; }
  .col-lg-2-9 {
    flex-basis: 22.22222%;
    max-width: 22.22222%; }
  .col-lg-3-9 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-lg-4-9 {
    flex-basis: 44.44444%;
    max-width: 44.44444%; }
  .col-lg-5-9 {
    flex-basis: 55.55556%;
    max-width: 55.55556%; }
  .col-lg-6-9 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-lg-7-9 {
    flex-basis: 77.77778%;
    max-width: 77.77778%; }
  .col-lg-8-9 {
    flex-basis: 88.88889%;
    max-width: 88.88889%; }
  .col-lg-1-8 {
    flex-basis: 12.5%;
    max-width: 12.5%; }
  .col-lg-2-8 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-lg-3-8 {
    flex-basis: 37.5%;
    max-width: 37.5%; }
  .col-lg-4-8 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-lg-5-8 {
    flex-basis: 62.5%;
    max-width: 62.5%; }
  .col-lg-6-8 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-lg-7-8 {
    flex-basis: 87.5%;
    max-width: 87.5%; }
  .col-lg-1-7 {
    flex-basis: 14.28571%;
    max-width: 14.28571%; }
  .col-lg-2-7 {
    flex-basis: 28.57143%;
    max-width: 28.57143%; }
  .col-lg-3-7 {
    flex-basis: 42.85714%;
    max-width: 42.85714%; }
  .col-lg-4-7 {
    flex-basis: 57.14286%;
    max-width: 57.14286%; }
  .col-lg-5-7 {
    flex-basis: 71.42857%;
    max-width: 71.42857%; }
  .col-lg-6-7 {
    flex-basis: 85.71429%;
    max-width: 85.71429%; }
  .col-lg-1-6 {
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-lg-2-6 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-lg-3-6 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-lg-4-6 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-lg-5-6 {
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-lg-1-5 {
    flex-basis: 20%;
    max-width: 20%; }
  .col-lg-2-5 {
    flex-basis: 40%;
    max-width: 40%; }
  .col-lg-3-5 {
    flex-basis: 60%;
    max-width: 60%; }
  .col-lg-4-5 {
    flex-basis: 80%;
    max-width: 80%; }
  .col-lg-1-4 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-lg-2-4 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-lg-3-4 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-lg-1-3 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-lg-2-3 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-lg-1-2 {
    flex-basis: 50%;
    max-width: 50%; } }

@media only screen and (min-width: 87.5rem) {
  .col-xl-1 {
    flex-basis: 100%;
    max-width: 100%; }
  .col-xl-1-12 {
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2-12 {
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3-12 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-xl-4-12 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5-12 {
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6-12 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-xl-7-12 {
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8-12 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9-12 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-xl-10-12 {
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11-12 {
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-xl-1-11 {
    flex-basis: 9.09091%;
    max-width: 9.09091%; }
  .col-xl-2-11 {
    flex-basis: 18.18182%;
    max-width: 18.18182%; }
  .col-xl-3-11 {
    flex-basis: 27.27273%;
    max-width: 27.27273%; }
  .col-xl-4-11 {
    flex-basis: 36.36364%;
    max-width: 36.36364%; }
  .col-xl-5-11 {
    flex-basis: 45.45455%;
    max-width: 45.45455%; }
  .col-xl-6-11 {
    flex-basis: 54.54545%;
    max-width: 54.54545%; }
  .col-xl-7-11 {
    flex-basis: 63.63636%;
    max-width: 63.63636%; }
  .col-xl-8-11 {
    flex-basis: 72.72727%;
    max-width: 72.72727%; }
  .col-xl-9-11 {
    flex-basis: 81.81818%;
    max-width: 81.81818%; }
  .col-xl-10-11 {
    flex-basis: 90.90909%;
    max-width: 90.90909%; }
  .col-xl-1-10 {
    flex-basis: 10%;
    max-width: 10%; }
  .col-xl-2-10 {
    flex-basis: 20%;
    max-width: 20%; }
  .col-xl-3-10 {
    flex-basis: 30%;
    max-width: 30%; }
  .col-xl-4-10 {
    flex-basis: 40%;
    max-width: 40%; }
  .col-xl-5-10 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-xl-6-10 {
    flex-basis: 60%;
    max-width: 60%; }
  .col-xl-7-10 {
    flex-basis: 70%;
    max-width: 70%; }
  .col-xl-8-10 {
    flex-basis: 80%;
    max-width: 80%; }
  .col-xl-9-10 {
    flex-basis: 90%;
    max-width: 90%; }
  .col-xl-1-9 {
    flex-basis: 11.11111%;
    max-width: 11.11111%; }
  .col-xl-2-9 {
    flex-basis: 22.22222%;
    max-width: 22.22222%; }
  .col-xl-3-9 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-xl-4-9 {
    flex-basis: 44.44444%;
    max-width: 44.44444%; }
  .col-xl-5-9 {
    flex-basis: 55.55556%;
    max-width: 55.55556%; }
  .col-xl-6-9 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-xl-7-9 {
    flex-basis: 77.77778%;
    max-width: 77.77778%; }
  .col-xl-8-9 {
    flex-basis: 88.88889%;
    max-width: 88.88889%; }
  .col-xl-1-8 {
    flex-basis: 12.5%;
    max-width: 12.5%; }
  .col-xl-2-8 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-xl-3-8 {
    flex-basis: 37.5%;
    max-width: 37.5%; }
  .col-xl-4-8 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-xl-5-8 {
    flex-basis: 62.5%;
    max-width: 62.5%; }
  .col-xl-6-8 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-xl-7-8 {
    flex-basis: 87.5%;
    max-width: 87.5%; }
  .col-xl-1-7 {
    flex-basis: 14.28571%;
    max-width: 14.28571%; }
  .col-xl-2-7 {
    flex-basis: 28.57143%;
    max-width: 28.57143%; }
  .col-xl-3-7 {
    flex-basis: 42.85714%;
    max-width: 42.85714%; }
  .col-xl-4-7 {
    flex-basis: 57.14286%;
    max-width: 57.14286%; }
  .col-xl-5-7 {
    flex-basis: 71.42857%;
    max-width: 71.42857%; }
  .col-xl-6-7 {
    flex-basis: 85.71429%;
    max-width: 85.71429%; }
  .col-xl-1-6 {
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-xl-2-6 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-xl-3-6 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-xl-4-6 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-xl-5-6 {
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-xl-1-5 {
    flex-basis: 20%;
    max-width: 20%; }
  .col-xl-2-5 {
    flex-basis: 40%;
    max-width: 40%; }
  .col-xl-3-5 {
    flex-basis: 60%;
    max-width: 60%; }
  .col-xl-4-5 {
    flex-basis: 80%;
    max-width: 80%; }
  .col-xl-1-4 {
    flex-basis: 25%;
    max-width: 25%; }
  .col-xl-2-4 {
    flex-basis: 50%;
    max-width: 50%; }
  .col-xl-3-4 {
    flex-basis: 75%;
    max-width: 75%; }
  .col-xl-1-3 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-xl-2-3 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-xl-1-2 {
    flex-basis: 50%;
    max-width: 50%; } }

.col-xs-offset-1-12 {
  margin-left: 8.33333%; }

.col-xs-offset-2-12 {
  margin-left: 16.66667%; }

.col-xs-offset-3-12 {
  margin-left: 25%; }

.col-xs-offset-4-12 {
  margin-left: 33.33333%; }

.col-xs-offset-5-12 {
  margin-left: 41.66667%; }

.col-xs-offset-6-12 {
  margin-left: 50%; }

.col-xs-offset-7-12 {
  margin-left: 58.33333%; }

.col-xs-offset-8-12 {
  margin-left: 66.66667%; }

.col-xs-offset-9-12 {
  margin-left: 75%; }

.col-xs-offset-10-12 {
  margin-left: 83.33333%; }

.col-xs-offset-11-12 {
  margin-left: 91.66667%; }

.col-xs-offset-1-11 {
  margin-left: 9.09091%; }

.col-xs-offset-2-11 {
  margin-left: 18.18182%; }

.col-xs-offset-3-11 {
  margin-left: 27.27273%; }

.col-xs-offset-4-11 {
  margin-left: 36.36364%; }

.col-xs-offset-5-11 {
  margin-left: 45.45455%; }

.col-xs-offset-6-11 {
  margin-left: 54.54545%; }

.col-xs-offset-7-11 {
  margin-left: 63.63636%; }

.col-xs-offset-8-11 {
  margin-left: 72.72727%; }

.col-xs-offset-9-11 {
  margin-left: 81.81818%; }

.col-xs-offset-10-11 {
  margin-left: 90.90909%; }

.col-xs-offset-1-10 {
  margin-left: 10%; }

.col-xs-offset-2-10 {
  margin-left: 20%; }

.col-xs-offset-3-10 {
  margin-left: 30%; }

.col-xs-offset-4-10 {
  margin-left: 40%; }

.col-xs-offset-5-10 {
  margin-left: 50%; }

.col-xs-offset-6-10 {
  margin-left: 60%; }

.col-xs-offset-7-10 {
  margin-left: 70%; }

.col-xs-offset-8-10 {
  margin-left: 80%; }

.col-xs-offset-9-10 {
  margin-left: 90%; }

.col-xs-offset-1-9 {
  margin-left: 11.11111%; }

.col-xs-offset-2-9 {
  margin-left: 22.22222%; }

.col-xs-offset-3-9 {
  margin-left: 33.33333%; }

.col-xs-offset-4-9 {
  margin-left: 44.44444%; }

.col-xs-offset-5-9 {
  margin-left: 55.55556%; }

.col-xs-offset-6-9 {
  margin-left: 66.66667%; }

.col-xs-offset-7-9 {
  margin-left: 77.77778%; }

.col-xs-offset-8-9 {
  margin-left: 88.88889%; }

.col-xs-offset-1-8 {
  margin-left: 12.5%; }

.col-xs-offset-2-8 {
  margin-left: 25%; }

.col-xs-offset-3-8 {
  margin-left: 37.5%; }

.col-xs-offset-4-8 {
  margin-left: 50%; }

.col-xs-offset-5-8 {
  margin-left: 62.5%; }

.col-xs-offset-6-8 {
  margin-left: 75%; }

.col-xs-offset-7-8 {
  margin-left: 87.5%; }

.col-xs-offset-1-7 {
  margin-left: 14.28571%; }

.col-xs-offset-2-7 {
  margin-left: 28.57143%; }

.col-xs-offset-3-7 {
  margin-left: 42.85714%; }

.col-xs-offset-4-7 {
  margin-left: 57.14286%; }

.col-xs-offset-5-7 {
  margin-left: 71.42857%; }

.col-xs-offset-6-7 {
  margin-left: 85.71429%; }

.col-xs-offset-1-6 {
  margin-left: 16.66667%; }

.col-xs-offset-2-6 {
  margin-left: 33.33333%; }

.col-xs-offset-3-6 {
  margin-left: 50%; }

.col-xs-offset-4-6 {
  margin-left: 66.66667%; }

.col-xs-offset-5-6 {
  margin-left: 83.33333%; }

.col-xs-offset-1-5 {
  margin-left: 20%; }

.col-xs-offset-2-5 {
  margin-left: 40%; }

.col-xs-offset-3-5 {
  margin-left: 60%; }

.col-xs-offset-4-5 {
  margin-left: 80%; }

.col-xs-offset-1-4 {
  margin-left: 25%; }

.col-xs-offset-2-4 {
  margin-left: 50%; }

.col-xs-offset-3-4 {
  margin-left: 75%; }

.col-xs-offset-1-3 {
  margin-left: 33.33333%; }

.col-xs-offset-2-3 {
  margin-left: 66.66667%; }

.col-xs-offset-1-2 {
  margin-left: 50%; }

@media only screen and (max-width: 47.9375rem) {
  .col-xs-offset-0 {
    margin-left: 0; } }

@media only screen and (min-width: 48rem) {
  .col-sm-offset-1-12 {
    margin-left: 8.33333%; }
  .col-sm-offset-2-12 {
    margin-left: 16.66667%; }
  .col-sm-offset-3-12 {
    margin-left: 25%; }
  .col-sm-offset-4-12 {
    margin-left: 33.33333%; }
  .col-sm-offset-5-12 {
    margin-left: 41.66667%; }
  .col-sm-offset-6-12 {
    margin-left: 50%; }
  .col-sm-offset-7-12 {
    margin-left: 58.33333%; }
  .col-sm-offset-8-12 {
    margin-left: 66.66667%; }
  .col-sm-offset-9-12 {
    margin-left: 75%; }
  .col-sm-offset-10-12 {
    margin-left: 83.33333%; }
  .col-sm-offset-11-12 {
    margin-left: 91.66667%; }
  .col-sm-offset-1-11 {
    margin-left: 9.09091%; }
  .col-sm-offset-2-11 {
    margin-left: 18.18182%; }
  .col-sm-offset-3-11 {
    margin-left: 27.27273%; }
  .col-sm-offset-4-11 {
    margin-left: 36.36364%; }
  .col-sm-offset-5-11 {
    margin-left: 45.45455%; }
  .col-sm-offset-6-11 {
    margin-left: 54.54545%; }
  .col-sm-offset-7-11 {
    margin-left: 63.63636%; }
  .col-sm-offset-8-11 {
    margin-left: 72.72727%; }
  .col-sm-offset-9-11 {
    margin-left: 81.81818%; }
  .col-sm-offset-10-11 {
    margin-left: 90.90909%; }
  .col-sm-offset-1-10 {
    margin-left: 10%; }
  .col-sm-offset-2-10 {
    margin-left: 20%; }
  .col-sm-offset-3-10 {
    margin-left: 30%; }
  .col-sm-offset-4-10 {
    margin-left: 40%; }
  .col-sm-offset-5-10 {
    margin-left: 50%; }
  .col-sm-offset-6-10 {
    margin-left: 60%; }
  .col-sm-offset-7-10 {
    margin-left: 70%; }
  .col-sm-offset-8-10 {
    margin-left: 80%; }
  .col-sm-offset-9-10 {
    margin-left: 90%; }
  .col-sm-offset-1-9 {
    margin-left: 11.11111%; }
  .col-sm-offset-2-9 {
    margin-left: 22.22222%; }
  .col-sm-offset-3-9 {
    margin-left: 33.33333%; }
  .col-sm-offset-4-9 {
    margin-left: 44.44444%; }
  .col-sm-offset-5-9 {
    margin-left: 55.55556%; }
  .col-sm-offset-6-9 {
    margin-left: 66.66667%; }
  .col-sm-offset-7-9 {
    margin-left: 77.77778%; }
  .col-sm-offset-8-9 {
    margin-left: 88.88889%; }
  .col-sm-offset-1-8 {
    margin-left: 12.5%; }
  .col-sm-offset-2-8 {
    margin-left: 25%; }
  .col-sm-offset-3-8 {
    margin-left: 37.5%; }
  .col-sm-offset-4-8 {
    margin-left: 50%; }
  .col-sm-offset-5-8 {
    margin-left: 62.5%; }
  .col-sm-offset-6-8 {
    margin-left: 75%; }
  .col-sm-offset-7-8 {
    margin-left: 87.5%; }
  .col-sm-offset-1-7 {
    margin-left: 14.28571%; }
  .col-sm-offset-2-7 {
    margin-left: 28.57143%; }
  .col-sm-offset-3-7 {
    margin-left: 42.85714%; }
  .col-sm-offset-4-7 {
    margin-left: 57.14286%; }
  .col-sm-offset-5-7 {
    margin-left: 71.42857%; }
  .col-sm-offset-6-7 {
    margin-left: 85.71429%; }
  .col-sm-offset-1-6 {
    margin-left: 16.66667%; }
  .col-sm-offset-2-6 {
    margin-left: 33.33333%; }
  .col-sm-offset-3-6 {
    margin-left: 50%; }
  .col-sm-offset-4-6 {
    margin-left: 66.66667%; }
  .col-sm-offset-5-6 {
    margin-left: 83.33333%; }
  .col-sm-offset-1-5 {
    margin-left: 20%; }
  .col-sm-offset-2-5 {
    margin-left: 40%; }
  .col-sm-offset-3-5 {
    margin-left: 60%; }
  .col-sm-offset-4-5 {
    margin-left: 80%; }
  .col-sm-offset-1-4 {
    margin-left: 25%; }
  .col-sm-offset-2-4 {
    margin-left: 50%; }
  .col-sm-offset-3-4 {
    margin-left: 75%; }
  .col-sm-offset-1-3 {
    margin-left: 33.33333%; }
  .col-sm-offset-2-3 {
    margin-left: 66.66667%; }
  .col-sm-offset-1-2 {
    margin-left: 50%; }
  .col-sm-offset-0 {
    margin-left: 0; } }

@media only screen and (min-width: 64rem) {
  .col-md-offset-1-12 {
    margin-left: 8.33333%; }
  .col-md-offset-2-12 {
    margin-left: 16.66667%; }
  .col-md-offset-3-12 {
    margin-left: 25%; }
  .col-md-offset-4-12 {
    margin-left: 33.33333%; }
  .col-md-offset-5-12 {
    margin-left: 41.66667%; }
  .col-md-offset-6-12 {
    margin-left: 50%; }
  .col-md-offset-7-12 {
    margin-left: 58.33333%; }
  .col-md-offset-8-12 {
    margin-left: 66.66667%; }
  .col-md-offset-9-12 {
    margin-left: 75%; }
  .col-md-offset-10-12 {
    margin-left: 83.33333%; }
  .col-md-offset-11-12 {
    margin-left: 91.66667%; }
  .col-md-offset-1-11 {
    margin-left: 9.09091%; }
  .col-md-offset-2-11 {
    margin-left: 18.18182%; }
  .col-md-offset-3-11 {
    margin-left: 27.27273%; }
  .col-md-offset-4-11 {
    margin-left: 36.36364%; }
  .col-md-offset-5-11 {
    margin-left: 45.45455%; }
  .col-md-offset-6-11 {
    margin-left: 54.54545%; }
  .col-md-offset-7-11 {
    margin-left: 63.63636%; }
  .col-md-offset-8-11 {
    margin-left: 72.72727%; }
  .col-md-offset-9-11 {
    margin-left: 81.81818%; }
  .col-md-offset-10-11 {
    margin-left: 90.90909%; }
  .col-md-offset-1-10 {
    margin-left: 10%; }
  .col-md-offset-2-10 {
    margin-left: 20%; }
  .col-md-offset-3-10 {
    margin-left: 30%; }
  .col-md-offset-4-10 {
    margin-left: 40%; }
  .col-md-offset-5-10 {
    margin-left: 50%; }
  .col-md-offset-6-10 {
    margin-left: 60%; }
  .col-md-offset-7-10 {
    margin-left: 70%; }
  .col-md-offset-8-10 {
    margin-left: 80%; }
  .col-md-offset-9-10 {
    margin-left: 90%; }
  .col-md-offset-1-9 {
    margin-left: 11.11111%; }
  .col-md-offset-2-9 {
    margin-left: 22.22222%; }
  .col-md-offset-3-9 {
    margin-left: 33.33333%; }
  .col-md-offset-4-9 {
    margin-left: 44.44444%; }
  .col-md-offset-5-9 {
    margin-left: 55.55556%; }
  .col-md-offset-6-9 {
    margin-left: 66.66667%; }
  .col-md-offset-7-9 {
    margin-left: 77.77778%; }
  .col-md-offset-8-9 {
    margin-left: 88.88889%; }
  .col-md-offset-1-8 {
    margin-left: 12.5%; }
  .col-md-offset-2-8 {
    margin-left: 25%; }
  .col-md-offset-3-8 {
    margin-left: 37.5%; }
  .col-md-offset-4-8 {
    margin-left: 50%; }
  .col-md-offset-5-8 {
    margin-left: 62.5%; }
  .col-md-offset-6-8 {
    margin-left: 75%; }
  .col-md-offset-7-8 {
    margin-left: 87.5%; }
  .col-md-offset-1-7 {
    margin-left: 14.28571%; }
  .col-md-offset-2-7 {
    margin-left: 28.57143%; }
  .col-md-offset-3-7 {
    margin-left: 42.85714%; }
  .col-md-offset-4-7 {
    margin-left: 57.14286%; }
  .col-md-offset-5-7 {
    margin-left: 71.42857%; }
  .col-md-offset-6-7 {
    margin-left: 85.71429%; }
  .col-md-offset-1-6 {
    margin-left: 16.66667%; }
  .col-md-offset-2-6 {
    margin-left: 33.33333%; }
  .col-md-offset-3-6 {
    margin-left: 50%; }
  .col-md-offset-4-6 {
    margin-left: 66.66667%; }
  .col-md-offset-5-6 {
    margin-left: 83.33333%; }
  .col-md-offset-1-5 {
    margin-left: 20%; }
  .col-md-offset-2-5 {
    margin-left: 40%; }
  .col-md-offset-3-5 {
    margin-left: 60%; }
  .col-md-offset-4-5 {
    margin-left: 80%; }
  .col-md-offset-1-4 {
    margin-left: 25%; }
  .col-md-offset-2-4 {
    margin-left: 50%; }
  .col-md-offset-3-4 {
    margin-left: 75%; }
  .col-md-offset-1-3 {
    margin-left: 33.33333%; }
  .col-md-offset-2-3 {
    margin-left: 66.66667%; }
  .col-md-offset-1-2 {
    margin-left: 50%; }
  .col-md-offset-0 {
    margin-left: 0; } }

@media only screen and (min-width: 75rem) {
  .col-lg-offset-1-12 {
    margin-left: 8.33333%; }
  .col-lg-offset-2-12 {
    margin-left: 16.66667%; }
  .col-lg-offset-3-12 {
    margin-left: 25%; }
  .col-lg-offset-4-12 {
    margin-left: 33.33333%; }
  .col-lg-offset-5-12 {
    margin-left: 41.66667%; }
  .col-lg-offset-6-12 {
    margin-left: 50%; }
  .col-lg-offset-7-12 {
    margin-left: 58.33333%; }
  .col-lg-offset-8-12 {
    margin-left: 66.66667%; }
  .col-lg-offset-9-12 {
    margin-left: 75%; }
  .col-lg-offset-10-12 {
    margin-left: 83.33333%; }
  .col-lg-offset-11-12 {
    margin-left: 91.66667%; }
  .col-lg-offset-1-11 {
    margin-left: 9.09091%; }
  .col-lg-offset-2-11 {
    margin-left: 18.18182%; }
  .col-lg-offset-3-11 {
    margin-left: 27.27273%; }
  .col-lg-offset-4-11 {
    margin-left: 36.36364%; }
  .col-lg-offset-5-11 {
    margin-left: 45.45455%; }
  .col-lg-offset-6-11 {
    margin-left: 54.54545%; }
  .col-lg-offset-7-11 {
    margin-left: 63.63636%; }
  .col-lg-offset-8-11 {
    margin-left: 72.72727%; }
  .col-lg-offset-9-11 {
    margin-left: 81.81818%; }
  .col-lg-offset-10-11 {
    margin-left: 90.90909%; }
  .col-lg-offset-1-10 {
    margin-left: 10%; }
  .col-lg-offset-2-10 {
    margin-left: 20%; }
  .col-lg-offset-3-10 {
    margin-left: 30%; }
  .col-lg-offset-4-10 {
    margin-left: 40%; }
  .col-lg-offset-5-10 {
    margin-left: 50%; }
  .col-lg-offset-6-10 {
    margin-left: 60%; }
  .col-lg-offset-7-10 {
    margin-left: 70%; }
  .col-lg-offset-8-10 {
    margin-left: 80%; }
  .col-lg-offset-9-10 {
    margin-left: 90%; }
  .col-lg-offset-1-9 {
    margin-left: 11.11111%; }
  .col-lg-offset-2-9 {
    margin-left: 22.22222%; }
  .col-lg-offset-3-9 {
    margin-left: 33.33333%; }
  .col-lg-offset-4-9 {
    margin-left: 44.44444%; }
  .col-lg-offset-5-9 {
    margin-left: 55.55556%; }
  .col-lg-offset-6-9 {
    margin-left: 66.66667%; }
  .col-lg-offset-7-9 {
    margin-left: 77.77778%; }
  .col-lg-offset-8-9 {
    margin-left: 88.88889%; }
  .col-lg-offset-1-8 {
    margin-left: 12.5%; }
  .col-lg-offset-2-8 {
    margin-left: 25%; }
  .col-lg-offset-3-8 {
    margin-left: 37.5%; }
  .col-lg-offset-4-8 {
    margin-left: 50%; }
  .col-lg-offset-5-8 {
    margin-left: 62.5%; }
  .col-lg-offset-6-8 {
    margin-left: 75%; }
  .col-lg-offset-7-8 {
    margin-left: 87.5%; }
  .col-lg-offset-1-7 {
    margin-left: 14.28571%; }
  .col-lg-offset-2-7 {
    margin-left: 28.57143%; }
  .col-lg-offset-3-7 {
    margin-left: 42.85714%; }
  .col-lg-offset-4-7 {
    margin-left: 57.14286%; }
  .col-lg-offset-5-7 {
    margin-left: 71.42857%; }
  .col-lg-offset-6-7 {
    margin-left: 85.71429%; }
  .col-lg-offset-1-6 {
    margin-left: 16.66667%; }
  .col-lg-offset-2-6 {
    margin-left: 33.33333%; }
  .col-lg-offset-3-6 {
    margin-left: 50%; }
  .col-lg-offset-4-6 {
    margin-left: 66.66667%; }
  .col-lg-offset-5-6 {
    margin-left: 83.33333%; }
  .col-lg-offset-1-5 {
    margin-left: 20%; }
  .col-lg-offset-2-5 {
    margin-left: 40%; }
  .col-lg-offset-3-5 {
    margin-left: 60%; }
  .col-lg-offset-4-5 {
    margin-left: 80%; }
  .col-lg-offset-1-4 {
    margin-left: 25%; }
  .col-lg-offset-2-4 {
    margin-left: 50%; }
  .col-lg-offset-3-4 {
    margin-left: 75%; }
  .col-lg-offset-1-3 {
    margin-left: 33.33333%; }
  .col-lg-offset-2-3 {
    margin-left: 66.66667%; }
  .col-lg-offset-1-2 {
    margin-left: 50%; }
  .col-lg-offset-0 {
    margin-left: 0; } }

@media only screen and (min-width: 87.5rem) {
  .col-xl-offset-1-12 {
    margin-left: 8.33333%; }
  .col-xl-offset-2-12 {
    margin-left: 16.66667%; }
  .col-xl-offset-3-12 {
    margin-left: 25%; }
  .col-xl-offset-4-12 {
    margin-left: 33.33333%; }
  .col-xl-offset-5-12 {
    margin-left: 41.66667%; }
  .col-xl-offset-6-12 {
    margin-left: 50%; }
  .col-xl-offset-7-12 {
    margin-left: 58.33333%; }
  .col-xl-offset-8-12 {
    margin-left: 66.66667%; }
  .col-xl-offset-9-12 {
    margin-left: 75%; }
  .col-xl-offset-10-12 {
    margin-left: 83.33333%; }
  .col-xl-offset-11-12 {
    margin-left: 91.66667%; }
  .col-xl-offset-1-11 {
    margin-left: 9.09091%; }
  .col-xl-offset-2-11 {
    margin-left: 18.18182%; }
  .col-xl-offset-3-11 {
    margin-left: 27.27273%; }
  .col-xl-offset-4-11 {
    margin-left: 36.36364%; }
  .col-xl-offset-5-11 {
    margin-left: 45.45455%; }
  .col-xl-offset-6-11 {
    margin-left: 54.54545%; }
  .col-xl-offset-7-11 {
    margin-left: 63.63636%; }
  .col-xl-offset-8-11 {
    margin-left: 72.72727%; }
  .col-xl-offset-9-11 {
    margin-left: 81.81818%; }
  .col-xl-offset-10-11 {
    margin-left: 90.90909%; }
  .col-xl-offset-1-10 {
    margin-left: 10%; }
  .col-xl-offset-2-10 {
    margin-left: 20%; }
  .col-xl-offset-3-10 {
    margin-left: 30%; }
  .col-xl-offset-4-10 {
    margin-left: 40%; }
  .col-xl-offset-5-10 {
    margin-left: 50%; }
  .col-xl-offset-6-10 {
    margin-left: 60%; }
  .col-xl-offset-7-10 {
    margin-left: 70%; }
  .col-xl-offset-8-10 {
    margin-left: 80%; }
  .col-xl-offset-9-10 {
    margin-left: 90%; }
  .col-xl-offset-1-9 {
    margin-left: 11.11111%; }
  .col-xl-offset-2-9 {
    margin-left: 22.22222%; }
  .col-xl-offset-3-9 {
    margin-left: 33.33333%; }
  .col-xl-offset-4-9 {
    margin-left: 44.44444%; }
  .col-xl-offset-5-9 {
    margin-left: 55.55556%; }
  .col-xl-offset-6-9 {
    margin-left: 66.66667%; }
  .col-xl-offset-7-9 {
    margin-left: 77.77778%; }
  .col-xl-offset-8-9 {
    margin-left: 88.88889%; }
  .col-xl-offset-1-8 {
    margin-left: 12.5%; }
  .col-xl-offset-2-8 {
    margin-left: 25%; }
  .col-xl-offset-3-8 {
    margin-left: 37.5%; }
  .col-xl-offset-4-8 {
    margin-left: 50%; }
  .col-xl-offset-5-8 {
    margin-left: 62.5%; }
  .col-xl-offset-6-8 {
    margin-left: 75%; }
  .col-xl-offset-7-8 {
    margin-left: 87.5%; }
  .col-xl-offset-1-7 {
    margin-left: 14.28571%; }
  .col-xl-offset-2-7 {
    margin-left: 28.57143%; }
  .col-xl-offset-3-7 {
    margin-left: 42.85714%; }
  .col-xl-offset-4-7 {
    margin-left: 57.14286%; }
  .col-xl-offset-5-7 {
    margin-left: 71.42857%; }
  .col-xl-offset-6-7 {
    margin-left: 85.71429%; }
  .col-xl-offset-1-6 {
    margin-left: 16.66667%; }
  .col-xl-offset-2-6 {
    margin-left: 33.33333%; }
  .col-xl-offset-3-6 {
    margin-left: 50%; }
  .col-xl-offset-4-6 {
    margin-left: 66.66667%; }
  .col-xl-offset-5-6 {
    margin-left: 83.33333%; }
  .col-xl-offset-1-5 {
    margin-left: 20%; }
  .col-xl-offset-2-5 {
    margin-left: 40%; }
  .col-xl-offset-3-5 {
    margin-left: 60%; }
  .col-xl-offset-4-5 {
    margin-left: 80%; }
  .col-xl-offset-1-4 {
    margin-left: 25%; }
  .col-xl-offset-2-4 {
    margin-left: 50%; }
  .col-xl-offset-3-4 {
    margin-left: 75%; }
  .col-xl-offset-1-3 {
    margin-left: 33.33333%; }
  .col-xl-offset-2-3 {
    margin-left: 66.66667%; }
  .col-xl-offset-1-2 {
    margin-left: 50%; }
  .col-xl-offset-0 {
    margin-left: 0; } }

.col-xs-pull-1-12 {
  margin-left: -8.33333%; }

.col-xs-pull-2-12 {
  margin-left: -16.66667%; }

.col-xs-pull-3-12 {
  margin-left: -25%; }

.col-xs-pull-4-12 {
  margin-left: -33.33333%; }

.col-xs-pull-5-12 {
  margin-left: -41.66667%; }

.col-xs-pull-6-12 {
  margin-left: -50%; }

.col-xs-pull-7-12 {
  margin-left: -58.33333%; }

.col-xs-pull-8-12 {
  margin-left: -66.66667%; }

.col-xs-pull-9-12 {
  margin-left: -75%; }

.col-xs-pull-10-12 {
  margin-left: -83.33333%; }

.col-xs-pull-11-12 {
  margin-left: -91.66667%; }

.col-xs-pull-1-11 {
  margin-left: -9.09091%; }

.col-xs-pull-2-11 {
  margin-left: -18.18182%; }

.col-xs-pull-3-11 {
  margin-left: -27.27273%; }

.col-xs-pull-4-11 {
  margin-left: -36.36364%; }

.col-xs-pull-5-11 {
  margin-left: -45.45455%; }

.col-xs-pull-6-11 {
  margin-left: -54.54545%; }

.col-xs-pull-7-11 {
  margin-left: -63.63636%; }

.col-xs-pull-8-11 {
  margin-left: -72.72727%; }

.col-xs-pull-9-11 {
  margin-left: -81.81818%; }

.col-xs-pull-10-11 {
  margin-left: -90.90909%; }

.col-xs-pull-1-10 {
  margin-left: -10%; }

.col-xs-pull-2-10 {
  margin-left: -20%; }

.col-xs-pull-3-10 {
  margin-left: -30%; }

.col-xs-pull-4-10 {
  margin-left: -40%; }

.col-xs-pull-5-10 {
  margin-left: -50%; }

.col-xs-pull-6-10 {
  margin-left: -60%; }

.col-xs-pull-7-10 {
  margin-left: -70%; }

.col-xs-pull-8-10 {
  margin-left: -80%; }

.col-xs-pull-9-10 {
  margin-left: -90%; }

.col-xs-pull-1-9 {
  margin-left: -11.11111%; }

.col-xs-pull-2-9 {
  margin-left: -22.22222%; }

.col-xs-pull-3-9 {
  margin-left: -33.33333%; }

.col-xs-pull-4-9 {
  margin-left: -44.44444%; }

.col-xs-pull-5-9 {
  margin-left: -55.55556%; }

.col-xs-pull-6-9 {
  margin-left: -66.66667%; }

.col-xs-pull-7-9 {
  margin-left: -77.77778%; }

.col-xs-pull-8-9 {
  margin-left: -88.88889%; }

.col-xs-pull-1-8 {
  margin-left: -12.5%; }

.col-xs-pull-2-8 {
  margin-left: -25%; }

.col-xs-pull-3-8 {
  margin-left: -37.5%; }

.col-xs-pull-4-8 {
  margin-left: -50%; }

.col-xs-pull-5-8 {
  margin-left: -62.5%; }

.col-xs-pull-6-8 {
  margin-left: -75%; }

.col-xs-pull-7-8 {
  margin-left: -87.5%; }

.col-xs-pull-1-7 {
  margin-left: -14.28571%; }

.col-xs-pull-2-7 {
  margin-left: -28.57143%; }

.col-xs-pull-3-7 {
  margin-left: -42.85714%; }

.col-xs-pull-4-7 {
  margin-left: -57.14286%; }

.col-xs-pull-5-7 {
  margin-left: -71.42857%; }

.col-xs-pull-6-7 {
  margin-left: -85.71429%; }

.col-xs-pull-1-6 {
  margin-left: -16.66667%; }

.col-xs-pull-2-6 {
  margin-left: -33.33333%; }

.col-xs-pull-3-6 {
  margin-left: -50%; }

.col-xs-pull-4-6 {
  margin-left: -66.66667%; }

.col-xs-pull-5-6 {
  margin-left: -83.33333%; }

.col-xs-pull-1-5 {
  margin-left: -20%; }

.col-xs-pull-2-5 {
  margin-left: -40%; }

.col-xs-pull-3-5 {
  margin-left: -60%; }

.col-xs-pull-4-5 {
  margin-left: -80%; }

.col-xs-pull-1-4 {
  margin-left: -25%; }

.col-xs-pull-2-4 {
  margin-left: -50%; }

.col-xs-pull-3-4 {
  margin-left: -75%; }

.col-xs-pull-1-3 {
  margin-left: -33.33333%; }

.col-xs-pull-2-3 {
  margin-left: -66.66667%; }

.col-xs-pull-1-2 {
  margin-left: -50%; }

@media only screen and (min-width: 48rem) {
  .col-sm-pull-1-12 {
    margin-left: -8.33333%; }
  .col-sm-pull-2-12 {
    margin-left: -16.66667%; }
  .col-sm-pull-3-12 {
    margin-left: -25%; }
  .col-sm-pull-4-12 {
    margin-left: -33.33333%; }
  .col-sm-pull-5-12 {
    margin-left: -41.66667%; }
  .col-sm-pull-6-12 {
    margin-left: -50%; }
  .col-sm-pull-7-12 {
    margin-left: -58.33333%; }
  .col-sm-pull-8-12 {
    margin-left: -66.66667%; }
  .col-sm-pull-9-12 {
    margin-left: -75%; }
  .col-sm-pull-10-12 {
    margin-left: -83.33333%; }
  .col-sm-pull-11-12 {
    margin-left: -91.66667%; }
  .col-sm-pull-1-11 {
    margin-left: -9.09091%; }
  .col-sm-pull-2-11 {
    margin-left: -18.18182%; }
  .col-sm-pull-3-11 {
    margin-left: -27.27273%; }
  .col-sm-pull-4-11 {
    margin-left: -36.36364%; }
  .col-sm-pull-5-11 {
    margin-left: -45.45455%; }
  .col-sm-pull-6-11 {
    margin-left: -54.54545%; }
  .col-sm-pull-7-11 {
    margin-left: -63.63636%; }
  .col-sm-pull-8-11 {
    margin-left: -72.72727%; }
  .col-sm-pull-9-11 {
    margin-left: -81.81818%; }
  .col-sm-pull-10-11 {
    margin-left: -90.90909%; }
  .col-sm-pull-1-10 {
    margin-left: -10%; }
  .col-sm-pull-2-10 {
    margin-left: -20%; }
  .col-sm-pull-3-10 {
    margin-left: -30%; }
  .col-sm-pull-4-10 {
    margin-left: -40%; }
  .col-sm-pull-5-10 {
    margin-left: -50%; }
  .col-sm-pull-6-10 {
    margin-left: -60%; }
  .col-sm-pull-7-10 {
    margin-left: -70%; }
  .col-sm-pull-8-10 {
    margin-left: -80%; }
  .col-sm-pull-9-10 {
    margin-left: -90%; }
  .col-sm-pull-1-9 {
    margin-left: -11.11111%; }
  .col-sm-pull-2-9 {
    margin-left: -22.22222%; }
  .col-sm-pull-3-9 {
    margin-left: -33.33333%; }
  .col-sm-pull-4-9 {
    margin-left: -44.44444%; }
  .col-sm-pull-5-9 {
    margin-left: -55.55556%; }
  .col-sm-pull-6-9 {
    margin-left: -66.66667%; }
  .col-sm-pull-7-9 {
    margin-left: -77.77778%; }
  .col-sm-pull-8-9 {
    margin-left: -88.88889%; }
  .col-sm-pull-1-8 {
    margin-left: -12.5%; }
  .col-sm-pull-2-8 {
    margin-left: -25%; }
  .col-sm-pull-3-8 {
    margin-left: -37.5%; }
  .col-sm-pull-4-8 {
    margin-left: -50%; }
  .col-sm-pull-5-8 {
    margin-left: -62.5%; }
  .col-sm-pull-6-8 {
    margin-left: -75%; }
  .col-sm-pull-7-8 {
    margin-left: -87.5%; }
  .col-sm-pull-1-7 {
    margin-left: -14.28571%; }
  .col-sm-pull-2-7 {
    margin-left: -28.57143%; }
  .col-sm-pull-3-7 {
    margin-left: -42.85714%; }
  .col-sm-pull-4-7 {
    margin-left: -57.14286%; }
  .col-sm-pull-5-7 {
    margin-left: -71.42857%; }
  .col-sm-pull-6-7 {
    margin-left: -85.71429%; }
  .col-sm-pull-1-6 {
    margin-left: -16.66667%; }
  .col-sm-pull-2-6 {
    margin-left: -33.33333%; }
  .col-sm-pull-3-6 {
    margin-left: -50%; }
  .col-sm-pull-4-6 {
    margin-left: -66.66667%; }
  .col-sm-pull-5-6 {
    margin-left: -83.33333%; }
  .col-sm-pull-1-5 {
    margin-left: -20%; }
  .col-sm-pull-2-5 {
    margin-left: -40%; }
  .col-sm-pull-3-5 {
    margin-left: -60%; }
  .col-sm-pull-4-5 {
    margin-left: -80%; }
  .col-sm-pull-1-4 {
    margin-left: -25%; }
  .col-sm-pull-2-4 {
    margin-left: -50%; }
  .col-sm-pull-3-4 {
    margin-left: -75%; }
  .col-sm-pull-1-3 {
    margin-left: -33.33333%; }
  .col-sm-pull-2-3 {
    margin-left: -66.66667%; }
  .col-sm-pull-1-2 {
    margin-left: -50%; } }

@media only screen and (min-width: 64rem) {
  .col-md-pull-1-12 {
    margin-left: -8.33333%; }
  .col-md-pull-2-12 {
    margin-left: -16.66667%; }
  .col-md-pull-3-12 {
    margin-left: -25%; }
  .col-md-pull-4-12 {
    margin-left: -33.33333%; }
  .col-md-pull-5-12 {
    margin-left: -41.66667%; }
  .col-md-pull-6-12 {
    margin-left: -50%; }
  .col-md-pull-7-12 {
    margin-left: -58.33333%; }
  .col-md-pull-8-12 {
    margin-left: -66.66667%; }
  .col-md-pull-9-12 {
    margin-left: -75%; }
  .col-md-pull-10-12 {
    margin-left: -83.33333%; }
  .col-md-pull-11-12 {
    margin-left: -91.66667%; }
  .col-md-pull-1-11 {
    margin-left: -9.09091%; }
  .col-md-pull-2-11 {
    margin-left: -18.18182%; }
  .col-md-pull-3-11 {
    margin-left: -27.27273%; }
  .col-md-pull-4-11 {
    margin-left: -36.36364%; }
  .col-md-pull-5-11 {
    margin-left: -45.45455%; }
  .col-md-pull-6-11 {
    margin-left: -54.54545%; }
  .col-md-pull-7-11 {
    margin-left: -63.63636%; }
  .col-md-pull-8-11 {
    margin-left: -72.72727%; }
  .col-md-pull-9-11 {
    margin-left: -81.81818%; }
  .col-md-pull-10-11 {
    margin-left: -90.90909%; }
  .col-md-pull-1-10 {
    margin-left: -10%; }
  .col-md-pull-2-10 {
    margin-left: -20%; }
  .col-md-pull-3-10 {
    margin-left: -30%; }
  .col-md-pull-4-10 {
    margin-left: -40%; }
  .col-md-pull-5-10 {
    margin-left: -50%; }
  .col-md-pull-6-10 {
    margin-left: -60%; }
  .col-md-pull-7-10 {
    margin-left: -70%; }
  .col-md-pull-8-10 {
    margin-left: -80%; }
  .col-md-pull-9-10 {
    margin-left: -90%; }
  .col-md-pull-1-9 {
    margin-left: -11.11111%; }
  .col-md-pull-2-9 {
    margin-left: -22.22222%; }
  .col-md-pull-3-9 {
    margin-left: -33.33333%; }
  .col-md-pull-4-9 {
    margin-left: -44.44444%; }
  .col-md-pull-5-9 {
    margin-left: -55.55556%; }
  .col-md-pull-6-9 {
    margin-left: -66.66667%; }
  .col-md-pull-7-9 {
    margin-left: -77.77778%; }
  .col-md-pull-8-9 {
    margin-left: -88.88889%; }
  .col-md-pull-1-8 {
    margin-left: -12.5%; }
  .col-md-pull-2-8 {
    margin-left: -25%; }
  .col-md-pull-3-8 {
    margin-left: -37.5%; }
  .col-md-pull-4-8 {
    margin-left: -50%; }
  .col-md-pull-5-8 {
    margin-left: -62.5%; }
  .col-md-pull-6-8 {
    margin-left: -75%; }
  .col-md-pull-7-8 {
    margin-left: -87.5%; }
  .col-md-pull-1-7 {
    margin-left: -14.28571%; }
  .col-md-pull-2-7 {
    margin-left: -28.57143%; }
  .col-md-pull-3-7 {
    margin-left: -42.85714%; }
  .col-md-pull-4-7 {
    margin-left: -57.14286%; }
  .col-md-pull-5-7 {
    margin-left: -71.42857%; }
  .col-md-pull-6-7 {
    margin-left: -85.71429%; }
  .col-md-pull-1-6 {
    margin-left: -16.66667%; }
  .col-md-pull-2-6 {
    margin-left: -33.33333%; }
  .col-md-pull-3-6 {
    margin-left: -50%; }
  .col-md-pull-4-6 {
    margin-left: -66.66667%; }
  .col-md-pull-5-6 {
    margin-left: -83.33333%; }
  .col-md-pull-1-5 {
    margin-left: -20%; }
  .col-md-pull-2-5 {
    margin-left: -40%; }
  .col-md-pull-3-5 {
    margin-left: -60%; }
  .col-md-pull-4-5 {
    margin-left: -80%; }
  .col-md-pull-1-4 {
    margin-left: -25%; }
  .col-md-pull-2-4 {
    margin-left: -50%; }
  .col-md-pull-3-4 {
    margin-left: -75%; }
  .col-md-pull-1-3 {
    margin-left: -33.33333%; }
  .col-md-pull-2-3 {
    margin-left: -66.66667%; }
  .col-md-pull-1-2 {
    margin-left: -50%; } }

@media only screen and (min-width: 75rem) {
  .col-lg-pull-1-12 {
    margin-left: -8.33333%; }
  .col-lg-pull-2-12 {
    margin-left: -16.66667%; }
  .col-lg-pull-3-12 {
    margin-left: -25%; }
  .col-lg-pull-4-12 {
    margin-left: -33.33333%; }
  .col-lg-pull-5-12 {
    margin-left: -41.66667%; }
  .col-lg-pull-6-12 {
    margin-left: -50%; }
  .col-lg-pull-7-12 {
    margin-left: -58.33333%; }
  .col-lg-pull-8-12 {
    margin-left: -66.66667%; }
  .col-lg-pull-9-12 {
    margin-left: -75%; }
  .col-lg-pull-10-12 {
    margin-left: -83.33333%; }
  .col-lg-pull-11-12 {
    margin-left: -91.66667%; }
  .col-lg-pull-1-11 {
    margin-left: -9.09091%; }
  .col-lg-pull-2-11 {
    margin-left: -18.18182%; }
  .col-lg-pull-3-11 {
    margin-left: -27.27273%; }
  .col-lg-pull-4-11 {
    margin-left: -36.36364%; }
  .col-lg-pull-5-11 {
    margin-left: -45.45455%; }
  .col-lg-pull-6-11 {
    margin-left: -54.54545%; }
  .col-lg-pull-7-11 {
    margin-left: -63.63636%; }
  .col-lg-pull-8-11 {
    margin-left: -72.72727%; }
  .col-lg-pull-9-11 {
    margin-left: -81.81818%; }
  .col-lg-pull-10-11 {
    margin-left: -90.90909%; }
  .col-lg-pull-1-10 {
    margin-left: -10%; }
  .col-lg-pull-2-10 {
    margin-left: -20%; }
  .col-lg-pull-3-10 {
    margin-left: -30%; }
  .col-lg-pull-4-10 {
    margin-left: -40%; }
  .col-lg-pull-5-10 {
    margin-left: -50%; }
  .col-lg-pull-6-10 {
    margin-left: -60%; }
  .col-lg-pull-7-10 {
    margin-left: -70%; }
  .col-lg-pull-8-10 {
    margin-left: -80%; }
  .col-lg-pull-9-10 {
    margin-left: -90%; }
  .col-lg-pull-1-9 {
    margin-left: -11.11111%; }
  .col-lg-pull-2-9 {
    margin-left: -22.22222%; }
  .col-lg-pull-3-9 {
    margin-left: -33.33333%; }
  .col-lg-pull-4-9 {
    margin-left: -44.44444%; }
  .col-lg-pull-5-9 {
    margin-left: -55.55556%; }
  .col-lg-pull-6-9 {
    margin-left: -66.66667%; }
  .col-lg-pull-7-9 {
    margin-left: -77.77778%; }
  .col-lg-pull-8-9 {
    margin-left: -88.88889%; }
  .col-lg-pull-1-8 {
    margin-left: -12.5%; }
  .col-lg-pull-2-8 {
    margin-left: -25%; }
  .col-lg-pull-3-8 {
    margin-left: -37.5%; }
  .col-lg-pull-4-8 {
    margin-left: -50%; }
  .col-lg-pull-5-8 {
    margin-left: -62.5%; }
  .col-lg-pull-6-8 {
    margin-left: -75%; }
  .col-lg-pull-7-8 {
    margin-left: -87.5%; }
  .col-lg-pull-1-7 {
    margin-left: -14.28571%; }
  .col-lg-pull-2-7 {
    margin-left: -28.57143%; }
  .col-lg-pull-3-7 {
    margin-left: -42.85714%; }
  .col-lg-pull-4-7 {
    margin-left: -57.14286%; }
  .col-lg-pull-5-7 {
    margin-left: -71.42857%; }
  .col-lg-pull-6-7 {
    margin-left: -85.71429%; }
  .col-lg-pull-1-6 {
    margin-left: -16.66667%; }
  .col-lg-pull-2-6 {
    margin-left: -33.33333%; }
  .col-lg-pull-3-6 {
    margin-left: -50%; }
  .col-lg-pull-4-6 {
    margin-left: -66.66667%; }
  .col-lg-pull-5-6 {
    margin-left: -83.33333%; }
  .col-lg-pull-1-5 {
    margin-left: -20%; }
  .col-lg-pull-2-5 {
    margin-left: -40%; }
  .col-lg-pull-3-5 {
    margin-left: -60%; }
  .col-lg-pull-4-5 {
    margin-left: -80%; }
  .col-lg-pull-1-4 {
    margin-left: -25%; }
  .col-lg-pull-2-4 {
    margin-left: -50%; }
  .col-lg-pull-3-4 {
    margin-left: -75%; }
  .col-lg-pull-1-3 {
    margin-left: -33.33333%; }
  .col-lg-pull-2-3 {
    margin-left: -66.66667%; }
  .col-lg-pull-1-2 {
    margin-left: -50%; } }

@media only screen and (min-width: 87.5rem) {
  .col-xl-pull-1-12 {
    margin-left: -8.33333%; }
  .col-xl-pull-2-12 {
    margin-left: -16.66667%; }
  .col-xl-pull-3-12 {
    margin-left: -25%; }
  .col-xl-pull-4-12 {
    margin-left: -33.33333%; }
  .col-xl-pull-5-12 {
    margin-left: -41.66667%; }
  .col-xl-pull-6-12 {
    margin-left: -50%; }
  .col-xl-pull-7-12 {
    margin-left: -58.33333%; }
  .col-xl-pull-8-12 {
    margin-left: -66.66667%; }
  .col-xl-pull-9-12 {
    margin-left: -75%; }
  .col-xl-pull-10-12 {
    margin-left: -83.33333%; }
  .col-xl-pull-11-12 {
    margin-left: -91.66667%; }
  .col-xl-pull-1-11 {
    margin-left: -9.09091%; }
  .col-xl-pull-2-11 {
    margin-left: -18.18182%; }
  .col-xl-pull-3-11 {
    margin-left: -27.27273%; }
  .col-xl-pull-4-11 {
    margin-left: -36.36364%; }
  .col-xl-pull-5-11 {
    margin-left: -45.45455%; }
  .col-xl-pull-6-11 {
    margin-left: -54.54545%; }
  .col-xl-pull-7-11 {
    margin-left: -63.63636%; }
  .col-xl-pull-8-11 {
    margin-left: -72.72727%; }
  .col-xl-pull-9-11 {
    margin-left: -81.81818%; }
  .col-xl-pull-10-11 {
    margin-left: -90.90909%; }
  .col-xl-pull-1-10 {
    margin-left: -10%; }
  .col-xl-pull-2-10 {
    margin-left: -20%; }
  .col-xl-pull-3-10 {
    margin-left: -30%; }
  .col-xl-pull-4-10 {
    margin-left: -40%; }
  .col-xl-pull-5-10 {
    margin-left: -50%; }
  .col-xl-pull-6-10 {
    margin-left: -60%; }
  .col-xl-pull-7-10 {
    margin-left: -70%; }
  .col-xl-pull-8-10 {
    margin-left: -80%; }
  .col-xl-pull-9-10 {
    margin-left: -90%; }
  .col-xl-pull-1-9 {
    margin-left: -11.11111%; }
  .col-xl-pull-2-9 {
    margin-left: -22.22222%; }
  .col-xl-pull-3-9 {
    margin-left: -33.33333%; }
  .col-xl-pull-4-9 {
    margin-left: -44.44444%; }
  .col-xl-pull-5-9 {
    margin-left: -55.55556%; }
  .col-xl-pull-6-9 {
    margin-left: -66.66667%; }
  .col-xl-pull-7-9 {
    margin-left: -77.77778%; }
  .col-xl-pull-8-9 {
    margin-left: -88.88889%; }
  .col-xl-pull-1-8 {
    margin-left: -12.5%; }
  .col-xl-pull-2-8 {
    margin-left: -25%; }
  .col-xl-pull-3-8 {
    margin-left: -37.5%; }
  .col-xl-pull-4-8 {
    margin-left: -50%; }
  .col-xl-pull-5-8 {
    margin-left: -62.5%; }
  .col-xl-pull-6-8 {
    margin-left: -75%; }
  .col-xl-pull-7-8 {
    margin-left: -87.5%; }
  .col-xl-pull-1-7 {
    margin-left: -14.28571%; }
  .col-xl-pull-2-7 {
    margin-left: -28.57143%; }
  .col-xl-pull-3-7 {
    margin-left: -42.85714%; }
  .col-xl-pull-4-7 {
    margin-left: -57.14286%; }
  .col-xl-pull-5-7 {
    margin-left: -71.42857%; }
  .col-xl-pull-6-7 {
    margin-left: -85.71429%; }
  .col-xl-pull-1-6 {
    margin-left: -16.66667%; }
  .col-xl-pull-2-6 {
    margin-left: -33.33333%; }
  .col-xl-pull-3-6 {
    margin-left: -50%; }
  .col-xl-pull-4-6 {
    margin-left: -66.66667%; }
  .col-xl-pull-5-6 {
    margin-left: -83.33333%; }
  .col-xl-pull-1-5 {
    margin-left: -20%; }
  .col-xl-pull-2-5 {
    margin-left: -40%; }
  .col-xl-pull-3-5 {
    margin-left: -60%; }
  .col-xl-pull-4-5 {
    margin-left: -80%; }
  .col-xl-pull-1-4 {
    margin-left: -25%; }
  .col-xl-pull-2-4 {
    margin-left: -50%; }
  .col-xl-pull-3-4 {
    margin-left: -75%; }
  .col-xl-pull-1-3 {
    margin-left: -33.33333%; }
  .col-xl-pull-2-3 {
    margin-left: -66.66667%; }
  .col-xl-pull-1-2 {
    margin-left: -50%; } }

/* Horizontal alignments*/
.flex-start {
  justify-content: flex-start;
  text-align: start; }

.flex-center {
  justify-content: center;
  text-align: center; }

.flex-end {
  justify-content: flex-end;
  text-align: end; }

/* Vertical alignments*/
.flex-top {
  align-items: flex-start; }

.flex-middle {
  align-items: center; }

.flex-bottom {
  align-items: flex-end; }

/* Spacing alignments*/
.flex-around {
  justify-content: space-around; }

.flex-between {
  justify-content: space-between; }

/*-----------  Media Queries ------------*/
.res-container {
  position: fixed;
  bottom: 0;
  left: 0; }
  .res-container .res-test {
    padding: 15px 20px;
    color: #fff;
    font-weight: 500;
    z-index: 99999;
    opacity: 0.8; }

.visible-container {
  position: fixed;
  bottom: 50px;
  left: 0; }
  .visible-container div {
    padding: 15px 20px;
    color: #fff;
    font-weight: 500;
    z-index: 99999;
    text-transform: uppercase; }

.high-pixel-density {
  display: none;
  font-weight: bold;
  margin-left: 20px;
  position: relative; }
  .high-pixel-density:before {
    content: "-";
    position: absolute;
    left: -10px; }

/* From XS Devices */
@media (max-width: 47.9375rem) {
  .res-container .res-xs,
  .res-container .visible-xs,
  .visible-container .res-xs,
  .visible-container .visible-xs {
    display: block;
    background-color: red; }
  .res-sm,
  .res-md,
  .res-lg,
  .res-xl {
    display: none; } }

@media (min-width: 48rem) and (max-width: 63.9375rem) {
  .visible-container .visible-sm,
  .visible-container .res-sm,
  .res-container .visible-sm,
  .res-container .res-sm {
    display: block;
    background-color: dodgerblue; }
  .res-xs,
  .res-md,
  .res-lg,
  .res-xl {
    display: none; } }

@media (min-width: 64rem) and (max-width: 74.9375rem) {
  .visible-container .res-md,
  .visible-container .visible-md,
  .res-container .res-md,
  .res-container .visible-md {
    display: block;
    background-color: forestgreen; }
  .res-xs,
  .res-sm,
  .res-lg,
  .res-xl {
    display: none; } }

@media (min-width: 75rem) and (max-width: 87.4375rem) {
  .visible-container .res-lg,
  .visible-container .visible-lg,
  .res-container .res-lg,
  .res-container .visible-lg {
    display: block;
    background-color: darkorange; }
  .res-xs,
  .res-sm,
  .res-md,
  .res-xl {
    display: none; } }

@media (min-width: 87.5rem) {
  .visible-container .res-xl,
  .visible-container .visible-xl,
  .res-container .res-xl,
  .res-container .visible-xl {
    display: block;
    background-color: cadetblue; }
  .res-xs,
  .res-sm,
  .res-md,
  .res-lg {
    display: none; } }

/* ----------- iPhone 5 and 5S ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
  .res-xs {
    display: block;
    background-color: teal; }
  .xs-hpd {
    display: inline; }
  .res-sm,
  .res-md,
  .res-lg,
  .res-xl {
    display: none; } }

/* Portrait */
/* Landscape */
/* ----------- iPhone 6 ----------- */
/* Portrait and Landscape */
/* Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .res-xs {
    display: block;
    background-color: greenyellow; } }

/* Landscape */
/* ----------- iPhone 6+ ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) {
  .res-test {
    background-color: blueviolet; }
  .xs-hpd {
    display: inline; }
  .res-sm,
  .res-md,
  .res-lg,
  .res-xl {
    display: none; } }

/* Portrait */
/* Landscape */
/* ----------- Samsung Galaxy S5 ----------- */
/* ----------- iPad 1 and 2 ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .res-xs {
    display: block;
    background-color: deeppink; } }

/* Portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .res-xs {
    display: block;
    background-color: deeppink; } }

/* Landscape */
/* ----------- iPad 3 and 4 ----------- */
/* Portrait and Landscape */
/* Portrait */
/* Landscape */
/*************************
 * Typography
 ************************/
/*
 * Root Size
 */
:root {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1rem; }

/*
 * Definitions
 */
/*
 * Horizontal Rule
 */
hr {
  clear: both;
  margin: 1.5rem auto;
  height: 1px;
  background: #eceeef; }

/*
 * Definitions
 */
/*
 * Link
 */
a {
  color: #7cb826;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out; }
  a:not(.btn):hover, a:not(.btn):focus {
    color: #96d63b;
    text-decoration: none; }
  a.text-link {
    text-decoration: underline; }
    a.text-link:hover {
      color: #addf65; }

/*
 * Definitions
 */
/*
 * Lists
 */
ul.list-styled {
  list-style: disc; }

ul.list-unstyled {
  list-style: none; }

ul.list-styled, ul.list-unstyled {
  padding-left: 1.25rem; }
  ul.list-styled li, ul.list-unstyled li {
    margin: 5px 0;
    line-height: 1.45rem; }

.list-inline {
  display: flex; }

/*
 * Definitions
 */
/*
 * Paragraph
 */
p {
  margin: 0 0 1.25rem 0;
  font-size: 1rem;
  line-height: 1.375; }

/*
 * Definitions
 */
/*
 * Strong
 */
b,
strong {
  font-weight: 700; }

/*************************
 * Buttons
 ************************/
/*
 * Button
 */
/*
 * Definitions
 */
button, .btn, input[type="file"] ~ label[for] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 8px 14px;
  font-size: 0.875rem;
  color: #373a3c;
  background: #fff;
  border: 1px solid #eceeef; }
  button:not(:disabled):hover, button:not(:disabled):focus,
  .btn:not(:disabled):hover,
  input[type="file"] ~ label:not(:disabled):hover[for],
  .btn:not(:disabled):focus,
  input[type="file"] ~ label:not(:disabled):focus[for] {
    color: #373a3c;
    background: #e6e6e6;
    border: 1px solid #d0d5d8; }

button:disabled,
.btn.disabled,
input[type="file"] ~ label.disabled[for] {
  cursor: default;
  opacity: 0.7; }

[role="button"] {
  cursor: pointer; }

.btn-list,
.btn-group {
  position: relative;
  display: flex;
  align-items: center; }

.btn-list button,
.btn-list .btn,
.btn-list input[type="file"] ~ label[for] {
  margin: 0 10px 10px 0; }
  .btn-list button:last-child,
  .btn-list .btn:last-child,
  .btn-list input[type="file"] ~ label:last-child[for] {
    margin-right: 0; }

.btn-group button,
.btn-group .btn,
.btn-group input[type="file"] ~ label[for] {
  margin: 0; }

.btn-group button + button,
.btn-group .btn + .btn,
.btn-group input[type="file"] ~ label[for] + .btn,
.btn-group input[type="file"] ~ .btn + label[for],
.btn-group input.btn[type="file"] + label[for],
.btn-group input[type="file"] ~ input[type="file"] ~ label[for] + label[for],
.btn-group button + .btn-group,
.btn-group .btn + .btn-group,
.btn-group input[type="file"] ~ label[for] + .btn-group,
.btn-group .btn-group + button,
.btn-group .btn-group + .btn,
.btn-group input[type="file"] ~ .btn-group + label[for],
.btn-group input.btn-group[type="file"] + label[for],
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-group button:not(:first-child):not(:last-child),
.btn-group .btn:not(:first-child):not(:last-child),
.btn-group input[type="file"] ~ label:not(:first-child):not(:last-child)[for],
.btn-group .btn-group:not(:first-child):not(:last-child) > button,
.btn-group .btn-group:not(:first-child):not(:last-child) > .btn,
.btn-group .btn-group:not(:first-child):not(:last-child) > input[type="file"] ~ label[for] {
  border-radius: 0; }

.btn-group > .btn-group:first-child > button:last-child,
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > input[type="file"] ~ label:last-child[for] {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child > button:first-child,
.btn-group > .btn-group:last-child > .btn:first-child,
.btn-group > .btn-group:last-child > input[type="file"] ~ label:first-child[for] {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > button:first-child,
.btn-group > .btn:first-child,
.btn-group > input[type="file"] ~ label:first-child[for] {
  margin-left: 0; }
  .btn-group > button:first-child:not(:last-child),
  .btn-group > .btn:first-child:not(:last-child),
  .btn-group > input[type="file"] ~ label:first-child:not(:last-child)[for] {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > button:last-child:not(:first-child),
.btn-group > .btn:last-child:not(:first-child),
.btn-group > input[type="file"] ~ label:last-child:not(:first-child)[for] {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group.btn-block button,
.btn-group.btn-block .btn,
.btn-group.btn-block input[type="file"] ~ label[for] {
  flex-grow: 1; }

.btn-block {
  margin: 0;
  width: 100%; }

/*
 * Definitions
 */
/*
 * Button Icon
 */
.btn-icon i:first-child {
  margin-right: 1rem; }

.btn-icon i:first-child:not(:last-child) {
  margin-right: 1rem; }

.btn-icon i:last-child:not(:first-child) {
  margin-left: 1rem; }

.btn-icon.btn-xl > i {
  font-size: 1.625rem; }

.btn-icon.btn-lg > i {
  font-size: 1.375rem; }

.btn-icon.btn-md > i {
  font-size: 1rem; }

.btn-icon.btn-sm > i {
  font-size: 0.875rem; }

/*
 * Definitions
 */
/*
 * Button Sizes
 */
.btn-xl {
  padding: 9.6px 16.8px;
  font-size: 1.05rem; }

.btn-lg {
  padding: 8.8px 15.4px;
  font-size: 0.9625rem; }

.btn-md {
  padding: 8px 14px;
  font-size: 0.875rem; }

.btn-sm {
  padding: 6.4px 11.2px;
  font-size: 0.7rem; }

.btn-xs {
  padding: 4.8px 8.4px;
  font-size: 0.525rem; }

/*
 * Definitions
 */
/*
 * Button Styles
 */
.btn-inverse {
  color: #fafafc;
  background: #8347D9;
  border: 1px solid #8347D9; }
  .btn-inverse:not(:disabled):hover, .btn-inverse:not(:disabled):focus {
    color: #fafafc;
    background: #9f71e2;
    border: 1px solid #9f71e2; }

.btn-text {
  color: #222222;
  background: transparent;
  border: none; }
  .btn-text:not(:disabled):hover, .btn-text:not(:disabled):focus {
    color: #7cb826;
    background: transparent;
    border: none; }

.btn-primary {
  color: #fff;
  background: #7cb826;
  border: 1px solid #7cb826; }
  .btn-primary:not(:disabled):hover, .btn-primary:not(:disabled):focus {
    color: #fff;
    background: #608e1d;
    border: 1px solid #608e1d; }

.btn-secondary {
  color: #fff;
  background: #fa364a;
  border: 1px solid #fa364a; }
  .btn-secondary:not(:disabled):hover, .btn-secondary:not(:disabled):focus {
    color: #fff;
    background: #f7061f;
    border: 1px solid #f7061f; }

.btn-border {
  color: #222222;
  background: transparent;
  border: 1px solid #222222; }
  .btn-border:not(:disabled):hover, .btn-border:not(:disabled):focus {
    color: #fff;
    background: #222222;
    border: 1px solid #222222; }

.btn-error {
  color: #fff;
  background: #d9534f;
  border: 1px solid #d9534f; }
  .btn-error:not(:disabled):hover, .btn-error:not(:disabled):focus {
    color: #fff;
    background: #e27c79;
    border: 1px solid #e27c79; }

.btn-warning {
  color: #fff;
  background: #f0ad4e;
  border: 1px solid #f0ad4e; }
  .btn-warning:not(:disabled):hover, .btn-warning:not(:disabled):focus {
    color: #fff;
    background: #f4c37d;
    border: 1px solid #f4c37d; }

.btn-info {
  color: #fff;
  background: #5bc0de;
  border: 1px solid #5bc0de; }
  .btn-info:not(:disabled):hover, .btn-info:not(:disabled):focus {
    color: #fff;
    background: #85d0e7;
    border: 1px solid #85d0e7; }

.btn-success {
  color: #fff;
  background: #5cb85c;
  border: 1px solid #5cb85c; }
  .btn-success:not(:disabled):hover, .btn-success:not(:disabled):focus {
    color: #fff;
    background: #80c780;
    border: 1px solid #80c780; }

/*************************
 * Table layout
 ************************/
/*
 * Definitions
 */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.25rem; }
  .table th,
  .table td {
    padding: 1.25rem;
    vertical-align: top;
    border-top: 1px solid #818a91; }
  .table thead th {
    vertical-align: bottom;
    border-top: 0;
    border-bottom: 2px solid #818a91;
    text-align: left;
    font-weight: 500; }
  .table tbody + tbody {
    border-top: 2px solid #818a91; }
  .table .table {
    background-color: #fff; }

.table-sm th,
.table-sm td {
  padding: 1rem; }

.table-bordered {
  border: 1px solid #818a91; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #818a91; }
  .table-bordered thead th,
  .table-bordered thead td {
    border-bottom-width: 2px; }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #eceeef; }

.table-hover tbody tr:hover {
  background-color: #eceeef; }

.row-active,
.row-active > th,
.row-active > td {
  background-color: rgba(124, 184, 38, 0.2); }

.table-hover .row-active:hover {
  background-color: rgba(96, 142, 29, 0.2); }
  .table-hover .row-active:hover > td,
  .table-hover .row-active:hover > th {
    background-color: rgba(96, 142, 29, 0.2); }

.row-success,
.row-success > th,
.row-success > td {
  background-color: rgba(92, 184, 92, 0.2); }

.table-hover .row-success:hover {
  background-color: rgba(68, 157, 68, 0.2); }
  .table-hover .row-success:hover > td,
  .table-hover .row-success:hover > th {
    background-color: rgba(68, 157, 68, 0.2); }

.row-info,
.row-info > th,
.row-info > td {
  background-color: rgba(91, 192, 222, 0.2); }

.table-hover .row-info:hover {
  background-color: rgba(49, 176, 213, 0.2); }
  .table-hover .row-info:hover > td,
  .table-hover .row-info:hover > th {
    background-color: rgba(49, 176, 213, 0.2); }

.row-warning,
.row-warning > th,
.row-warning > td {
  background-color: rgba(240, 173, 78, 0.2); }

.table-hover .row-warning:hover {
  background-color: rgba(236, 151, 31, 0.2); }
  .table-hover .row-warning:hover > td,
  .table-hover .row-warning:hover > th {
    background-color: rgba(236, 151, 31, 0.2); }

.row-error,
.row-error > th,
.row-error > td {
  background-color: rgba(217, 83, 79, 0.2); }

.table-hover .row-error:hover {
  background-color: rgba(201, 48, 44, 0.2); }
  .table-hover .row-error:hover > td,
  .table-hover .row-error:hover > th {
    background-color: rgba(201, 48, 44, 0.2); }

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar; }
  .table-responsive.table-bordered {
    border: 0; }

/*************************
 * Form
 ************************/
/****************************************************
 * Input
 */
/****************************************************
 * Select
 */
/*
 * Definitions
 */
/*
 * Input
 */
input,
textarea {
  display: block;
  width: 100%;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #232323;
  line-height: 1;
  border: 1px solid #818a91;
  background: #fff;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 16px;
  font-size: 1rem;
  color: #232323;
  background: #fff;
  border: 1px solid #818a91; }
  input:hover,
  textarea:hover {
    color: #232323;
    background: #fafafa;
    border: 1px solid #687077; }
  input:focus,
  textarea:focus {
    color: #232323;
    background: #fafafa;
    border: 1px solid #5bc0de; }
  input:disabled,
  textarea:disabled {
    cursor: no-drop;
    color: #818a91;
    background: #818a91;
    border: 1px solid #687077; }

/*
 * Input Indicators 
 */
input.error,
textarea.error {
  color: #d9534f;
  border-color: #d9534f; }

input.warning,
textarea.warning {
  color: #f0ad4e;
  border-color: #f0ad4e; }

input.success,
textarea.success {
  color: #5cb85c;
  border-color: #5cb85c; }

input.info,
textarea.info {
  color: #5bc0de;
  border-color: #5bc0de; }

/*
 * Textarea
 */
textarea {
  max-width: 100%;
  -webkit-transition: "color ${transition-fast} ease-in-out, background ${transition-fast} ease-in-out, border ${transition-fast} ease-in-out";
  transition: "color ${transition-fast} ease-in-out, background ${transition-fast} ease-in-out, border ${transition-fast} ease-in-out"; }

/*
 * Input Styles
 */
/*
 * Input Search
 */
input[type="search"] {
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/*
 * Input File
 */
input[type="file"] + label {
  position: relative; }

input[type="file"] {
  opacity: 0;
  position: absolute;
  width: auto; }

input[type="file"] ~ label[for] {
  cursor: pointer; }

/*
 * Definitions
 */
form .form-group {
  margin: 0 -0.5rem 1.5rem;
  padding: 0 0.5rem; }
  form .form-group input,
  form .form-group textarea {
    height: 38px; }

form label {
  display: block;
  margin: 11px 0;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #232323; }

.form-horizontal .form-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  *zoom: 1; }
  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
    content: " ";
    display: table; }
  .form-horizontal .form-group:after {
    clear: both; }

.form-horizontal label[for] {
  text-align: right;
  margin: 11px 0; }

.form-horizontal .input-group {
  margin: 0; }

.form-message {
  margin: 5px 0 0 0;
  display: inline-block;
  font-size: 0.875rem;
  color: #232323; }
  .form-message.msg-error {
    color: #d9534f; }
  .form-message.msg-warning {
    color: #f0ad4e; }
  .form-message.msg-success {
    color: #5cb85c; }
  .form-message.msg-info {
    color: #5bc0de; }

/*
 * Definitions
 */
/***************
  Radio Buttons
***************/
/* Remove default Radio Buttons */
[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute;
  height: 20px;
  width: 20px;
  margin: 11px 0 0 0;
  z-index: 500;
  opacity: 0.01; }
  [type="radio"]:not(:checked):not(:disabled),
  [type="radio"]:checked:not(:disabled) {
    cursor: pointer; }
  [type="radio"]:not(:checked) + label,
  [type="radio"]:checked + label {
    position: relative;
    display: inline-block;
    height: 20px;
    padding-left: 30px;
    font-size: 1rem;
    line-height: 20px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer; }

[type="radio"] + label:before,
[type="radio"] + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  z-index: 0;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease; }

/* Unchecked styles */
[type="radio"]:not(:checked) + label:before {
  border: 2px solid #818a91; }

[type="radio"]:not(:checked) + label:after {
  border: 2px solid #818a91;
  z-index: -1;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0); }

/* Checked styles */
[type="radio"]:checked + label:before {
  border: 2px solid #7cb826; }

[type="radio"]:checked + label:after {
  border: 2px solid #7cb826;
  background-color: #7cb826;
  z-index: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5); }

/* Radio With gap */
[type="radio"].with-gap:checked + label:before {
  border: 2px solid #7cb826; }

[type="radio"].with-gap:checked + label:after {
  border: 2px solid #7cb826;
  background-color: #7cb826;
  z-index: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5); }

/* Disabled Radio With gap */
[type="radio"].with-gap:disabled:checked + label:before {
  border: 2px solid #818a91; }

[type="radio"].with-gap:disabled:checked + label:after {
  border: none;
  background-color: #818a91; }

/* Disabled style */
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
  border: 2px solid #818a91; }

[type="radio"]:disabled + label {
  color: #818a91; }

[type="radio"]:disabled:not(:checked) + label:before {
  border-color: #818a91; }

[type="radio"]:disabled:checked + label:after {
  border: none;
  background-color: #818a91; }

/*
 * Definitions
 */
/***************
   Checkboxes
***************/
/* CUSTOM CSS CHECKBOXES */
/* Remove default checkbox */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  z-index: 500;
  height: 20px;
  width: 20px;
  margin: 11px 0 0 0;
  opacity: 0.01; }
  [type="checkbox"]:not(:checked):not(:disabled),
  [type="checkbox"]:checked:not(:disabled) {
    cursor: pointer; }

[type="checkbox"] {
  /* checkbox aspect */ }
  [type="checkbox"] + label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin: 12px 0 0 0;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  [type="checkbox"] + label[for] {
    cursor: pointer; }
  [type="checkbox"] + label:before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 20px;
    height: 20px;
    z-index: 0;
    border: 2px solid #818a91;
    border-radius: 1px;
    margin-top: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s; }
  [type="checkbox"]:not(:checked):disabled + label:before {
    border: none;
    background-color: #eceeef; }

[type="checkbox"]:disabled + label {
  color: #818a91; }

[type="checkbox"]:checked + label:before {
  top: -6px;
  left: -3px;
  width: 10px;
  height: 20px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #7cb826;
  border-bottom: 2px solid #7cb826;
  -webkit-backface-visibility: hidden;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%; }

[type="checkbox"]:checked:disabled + label:before {
  border-right: 2px solid #818a91;
  border-bottom: 2px solid #818a91; }

/* Indeterminate checkbox */
[type="checkbox"].filled-in + label:after {
  border-radius: 2px; }

[type="checkbox"].filled-in + label:before,
[type="checkbox"].filled-in + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: -2px;
  /* .1s delay is for check animation */
  transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  z-index: 1; }

[type="checkbox"].filled-in:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  -ms-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%; }

[type="checkbox"].filled-in:not(:checked) + label:after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #818a91;
  z-index: 0; }

[type="checkbox"].filled-in:checked + label:before {
  top: 0;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  -ms-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%; }

[type="checkbox"].filled-in:checked + label:after {
  top: -2px;
  width: 20px;
  height: 20px;
  border: 2px solid #7cb826;
  background-color: #7cb826;
  z-index: 0; }

[type="checkbox"].filled-in:disabled:not(:checked) + label:before {
  background-color: transparent;
  border: 2px solid transparent; }

[type="checkbox"].filled-in:disabled:not(:checked) + label:after {
  border-color: transparent;
  background-color: #eceeef; }

[type="checkbox"].filled-in:disabled:checked + label:before {
  background-color: transparent;
  border-right-color: #818a91;
  border-bottom-color: #818a91; }

[type="checkbox"].filled-in:disabled:checked + label:after {
  background-color: #eceeef;
  border-color: #eceeef; }

/*
 * Definitions
 */
/*
 * Select
 */
select {
  display: block;
  width: 100%; }

.select {
  margin: 0;
  position: relative;
  display: block; }
  .select select {
    padding: 10px 16px;
    line-height: 1;
    font-family: "Yantramanav", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #232323;
    cursor: pointer;
    outline: 0;
    background: #fff;
    border: 1px solid #818a91;
    border-radius: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .select select::-moz-focusring {
      color: transparent;
      text-shadow: 0 0 0 #000; }
    .select select::-ms-expand {
      display: none; }
    .select select:hover {
      color: #232323;
      background: #fafafa;
      border: 1px solid #687077; }
    .select select:focus {
      color: #232323;
      background: #fafafa;
      border: 1px solid #5bc0de; }
  .select:after {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -0.2rem;
    width: 0;
    height: 0;
    content: '';
    pointer-events: none;
    border-left: 0.4rem solid transparent;
    border-right: 0.4rem solid transparent;
    border-top: 0.4rem solid #373a3c; }

@media screen and (min-width: 0�) {
  .select select {
    padding: 0.5em; }
  .select:before, .select:after {
    display: none; } }

@-moz-document url-prefix() {
  .select select {
    text-indent: 0.01px;
    text-overflow: '';
    padding-right: 1rem; }
  .select:before {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    content: '';
    pointer-events: none;
    width: 1em;
    border: 1px solid #818a91;
    border-width: 1px 1px 1px 0px;
    background: #fff;
    border-radius: 0;
    background-clip: padding-box; } }

/*************************
 * Image
 ************************/
/*
 * Definitions
 */
/*
 * Image
 */
img {
  vertical-align: bottom; }
  img.img-rounded {
    border-radius: 0; }
  img.img-circle {
    border-radius: 50%; }
  img.img-responsive {
    width: 100%;
    height: auto; }

/*************************
 * Callout
 ************************/
/*
 * Definitions
 */
/*
 * Pullout
 */
.callout {
  margin: 1.5rem 0;
  padding: 1.5rem;
  border: solid #7cb826;
  border-width: 0 0 0 5px; }
  .callout.callout-success {
    border-color: #5cb85c;
    background-color: rgba(92, 184, 92, 0.2); }
  .callout.callout-warning {
    border-color: #f0ad4e;
    background-color: rgba(240, 173, 78, 0.2); }
  .callout.callout-error {
    border-color: #d9534f;
    background-color: rgba(217, 83, 79, 0.2); }
  .callout.callout-info {
    border-color: #5bc0de;
    background-color: rgba(91, 192, 222, 0.2); }

/*************************
 * Utilities
 ************************/
/*
 * Float
 */
.right {
  float: right !important; }

@media (min-width: 87.5rem) {
  .clear-right-xl {
    float: none !important; } }

@media (min-width: 75rem) and (max-width: 87.4375rem) {
  .clear-right-lg {
    float: none !important; } }

@media (min-width: 64rem) and (max-width: 74.9375rem) {
  .clear-right-md {
    float: none !important; } }

@media (min-width: 48rem) and (max-width: 63.9375rem) {
  .clear-right-sm {
    float: none !important; } }

@media (max-width: 47.9375rem) {
  .clear-right-xs {
    float: none !important; } }

.left {
  float: left !important; }

@media (min-width: 87.5rem) {
  .clear-left-xl {
    float: none !important; } }

@media (min-width: 75rem) and (max-width: 87.4375rem) {
  .clear-left-lg {
    float: none !important; } }

@media (min-width: 64rem) and (max-width: 74.9375rem) {
  .clear-left-md {
    float: none !important; } }

@media (min-width: 48rem) and (max-width: 63.9375rem) {
  .clear-left-sm {
    float: none !important; } }

@media (max-width: 47.9375rem) {
  .clear-left-xs {
    float: none !important; } }

/*
 * Margin
 */
.margin-xl {
  margin: 2.25rem; }

.margin-lg {
  margin: 1.875rem; }

.margin-md {
  margin: 1.5rem; }

.margin-sm {
  margin: 1.25rem; }

.margin-xs {
  margin: 1rem; }

.margin-top-xl {
  margin-top: 2.25rem; }

.margin-top-lg {
  margin-top: 1.875rem; }

.margin-top-md {
  margin-top: 1.5rem; }

.margin-top-sm {
  margin-top: 1.25rem; }

.margin-top-xs {
  margin-top: 1rem; }

.margin-bottom-xl {
  margin-bottom: 2.25rem; }

.margin-bottom-lg {
  margin-bottom: 1.875rem; }

.margin-bottom-md {
  margin-bottom: 1.5rem; }

.margin-bottom-sm {
  margin-bottom: 1.25rem; }

.margin-bottom-xs {
  margin-bottom: 1rem; }

.margin-left-xl {
  margin-left: 2.25rem; }

.margin-left-lg {
  margin-left: 1.875rem; }

.margin-left-md {
  margin-left: 1.5rem; }

.margin-left-sm {
  margin-left: 1.25rem; }

.margin-left-xs {
  margin-left: 1rem; }

.margin-right-xl {
  margin-right: 2.25rem; }

.margin-right-lg {
  margin-right: 1.875rem; }

.margin-right-md {
  margin-right: 1.5rem; }

.margin-right-sm {
  margin-right: 1.25rem; }

.margin-right-xs {
  margin-right: 1rem; }

/*
 * Padding
 */
.padding-xl {
  padding: 2.25rem; }

.padding-lg {
  padding: 1.875rem; }

.padding-md {
  padding: 1.5rem; }

.padding-sm {
  padding: 1.25rem; }

.padding-xs {
  padding: 1rem; }

.padding-top-xl {
  padding-top: 2.25rem; }

.padding-top-lg {
  padding-top: 1.875rem; }

.padding-top-md {
  padding-top: 1.5rem; }

.padding-top-sm {
  padding-top: 1.25rem; }

.padding-top-xs {
  padding-top: 1rem; }

.padding-bottom-xl {
  padding-bottom: 2.25rem; }

.padding-bottom-lg {
  padding-bottom: 1.875rem; }

.padding-bottom-md {
  padding-bottom: 1.5rem; }

.padding-bottom-sm {
  padding-bottom: 1.25rem; }

.padding-bottom-xs {
  padding-bottom: 1rem; }

.padding-left-xl {
  padding-left: 2.25rem; }

.padding-left-lg {
  padding-left: 1.875rem; }

.padding-left-md {
  padding-left: 1.5rem; }

.padding-left-sm {
  padding-left: 1.25rem; }

.padding-left-xs {
  padding-left: 1rem; }

.padding-right-xl {
  padding-right: 2.25rem; }

.padding-right-lg {
  padding-right: 1.875rem; }

.padding-right-md {
  padding-right: 1.5rem; }

.padding-right-sm {
  padding-right: 1.25rem; }

.padding-right-xs {
  padding-right: 1rem; }

/*
 * Text Color
 */
.text-error {
  color: #d9534f; }

.text-warning {
  color: #f0ad4e; }

.text-success {
  color: #5cb85c; }

.text-info {
  color: #5bc0de; }

.text-primary {
  color: #7cb826; }

/*
 * Text
 */
.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-justify {
  text-align: justify; }

.text-center {
  text-align: center; }

.navigation-section {
  display: flex;
  background-color: #fff;
  height: 4rem;
  -webkit-box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2); }
  .navigation-section .brand-logo {
    display: block;
    height: 2.5rem;
    margin: 0.75rem; }
    .navigation-section .brand-logo img {
      height: 2.5rem; }
  .navigation-section .mobile-navigation {
    visibility: hidden;
    width: auto;
    margin: 0;
    border: 0; }

.main-navigation {
  display: flex;
  width: 100%;
  justify-content: flex-start; }
  .main-navigation a {
    padding: 1.5rem 1rem;
    font-size: 1rem;
    color: #232323;
    font-weight: 300;
    text-transform: uppercase; }
    .main-navigation a.active, .main-navigation a:hover {
      color: #fff;
      background-color: #7cb826; }

@media (max-width: 47.9375rem) {
  .navigation-section {
    height: auto; }
    .navigation-section .brand-logo {
      position: absolute; }
    .navigation-section .main-navigation {
      margin-top: 4rem;
      flex-direction: column;
      display: none; }
      .navigation-section .main-navigation a {
        text-align: left; }
  .mobile-navigation[type="checkbox"] {
    position: absolute;
    margin: 0;
    border: 0;
    visibility: visible;
    right: 0;
    left: initial;
    opacity: 1; }
    .mobile-navigation[type="checkbox"]:checked + .main-navigation {
      display: block; }
      .mobile-navigation[type="checkbox"]:checked + .main-navigation a {
        display: block; }
    .mobile-navigation[type="checkbox"]:after {
      content: "|||";
      display: inline-block;
      position: absolute;
      right: 2rem;
      top: 1rem;
      width: 2rem;
      height: 2rem;
      padding: 4px;
      font-size: 2rem;
      -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
      -webkit-transition: all 0.5s;
      transition: all 0.5s; }
    .mobile-navigation[type="checkbox"]:hover {
      cursor: pointer;
      background: transparent; }
      .mobile-navigation[type="checkbox"]:hover:after {
        color: #7cb826; } }

/*
 * Badge
 */
.badge {
  display: inline-block;
  margin: 0 3px;
  padding: 3px 7px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #7cb826;
  border-radius: 10%; }
  .badge.badge-error {
    background-color: #d9534f; }
  .badge.badge-warning {
    background-color: #f0ad4e; }
  .badge.badge-success {
    background-color: #5cb85c; }
  .badge.badge-info {
    background-color: #5bc0de; }

.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: " ";
    display: table; }
  .clearfix:after {
    clear: both; }

.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important; }

.show {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important; }

/*
 * Hidden Breakpoints
 */
@media (min-width: 87.5rem) {
  .hidden-xl {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important; } }

@media (min-width: 75rem) and (max-width: 87.4375rem) {
  .hidden-lg {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important; } }

@media (min-width: 75rem) {
  .hidden-lg-up {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important; } }

@media (max-width: 87.4375rem) {
  .hidden-lg-down {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important; } }

@media (min-width: 64rem) and (max-width: 74.9375rem) {
  .hidden-md {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important; } }

@media (min-width: 64rem) {
  .hidden-md-up {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important; } }

@media (max-width: 74.9375rem) {
  .hidden-md-down {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important; } }

@media (min-width: 48rem) and (max-width: 63.9375rem) {
  .hidden-sm {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important; } }

@media (min-width: 48rem) {
  .hidden-sm-up {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important; } }

@media (max-width: 63.9375rem) {
  .hidden-sm-down {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important; } }

@media (max-width: 47.9375rem) {
  .hidden-xs {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important; } }

/*
 * Visible Breakpoints
 */
.visible-xl {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important; }
  @media (min-width: 87.5rem) {
    .visible-xl {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important; } }

.visible-lg {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important; }
  @media (min-width: 75rem) and (max-width: 87.4375rem) {
    .visible-lg {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important; } }

.visible-lg-up {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important; }
  @media (min-width: 75rem) {
    .visible-lg-up {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important; } }

.visible-lg-down {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important; }
  @media (max-width: 87.4375rem) {
    .visible-lg-down {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important; } }

.visible-md {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important; }
  @media (min-width: 64rem) and (max-width: 74.9375rem) {
    .visible-md {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important; } }

.visible-md-up {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important; }
  @media (min-width: 64rem) {
    .visible-md-up {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important; } }

.visible-md-down {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important; }
  @media (max-width: 74.9375rem) {
    .visible-md-down {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important; } }

.visible-sm {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important; }
  @media (min-width: 48rem) and (max-width: 63.9375rem) {
    .visible-sm {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important; } }

.visible-sm-up {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important; }
  @media (min-width: 48rem) {
    .visible-sm-up {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important; } }

.visible-sm-down {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important; }
  @media (max-width: 63.9375rem) {
    .visible-sm-down {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important; } }

.visible-xs {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important; }
  @media (max-width: 47.9375rem) {
    .visible-xs {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important; } }

/*************************
 * Device media queries
 ************************/
/*
 * Global
 */
/*
 * Fonts
 */
/*
 * Colors
 */
/*
 * Root Size
 */
:root {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1rem; }

/*
 * Definitions
 */
/*
 * Strong
 */
b,
strong {
  font-weight: 700; }

.navigation-section {
  display: flex;
  background-color: transparent;
  height: 4rem;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }
  .navigation-section .brand-logo {
    display: block;
    height: 2.5rem;
    margin: 0.75rem; }
    .navigation-section .brand-logo img {
      height: 2.5rem; }
  .navigation-section .mobile-navigation {
    visibility: hidden;
    width: auto;
    margin: 0;
    border: 0; }

.main-navigation {
  display: flex;
  width: 100%;
  justify-content: flex-end; }
  .main-navigation a {
    padding: 1.4375rem 1rem;
    font-size: 1.125rem;
    color: #2e2e2e;
    font-weight: 300;
    text-transform: capitalize; }
    .main-navigation a.active, .main-navigation a:hover {
      color: #00918e;
      background-color: #fff; }

@media (max-width: 47.9375rem) {
  .navigation-section {
    height: auto; }
    .navigation-section .brand-logo {
      position: absolute; }
    .navigation-section .main-navigation {
      margin-top: 4rem;
      flex-direction: column;
      display: none; }
      .navigation-section .main-navigation a {
        text-align: left; }
  .mobile-navigation[type="checkbox"] {
    position: absolute;
    margin: 0;
    border: 0;
    visibility: visible;
    right: 0;
    left: initial;
    opacity: 1; }
    .mobile-navigation[type="checkbox"]:checked + .main-navigation {
      display: block; }
      .mobile-navigation[type="checkbox"]:checked + .main-navigation a {
        display: block; }
    .mobile-navigation[type="checkbox"]:after {
      content: "|||";
      display: inline-block;
      position: absolute;
      right: 2rem;
      top: 1rem;
      width: 2rem;
      height: 2rem;
      padding: 4px;
      font-size: 2rem;
      -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
      -webkit-transition: all 0.5s;
      transition: all 0.5s; }
    .mobile-navigation[type="checkbox"]:hover {
      cursor: pointer;
      background: transparent; }
      .mobile-navigation[type="checkbox"]:hover:after {
        color: #fff; } }

/* ----------- Galaxy S3 ----------- */
/* Portrait and Landscape */
/* Portrait */
/* Landscape */
/* ----------- Galaxy S4 ----------- */
/* Portrait and Landscape */
/* Portrait */
/* Landscape */
/* ----------- Galaxy S5 ----------- */
/* Portrait and Landscape */
/* Portrait */
/* Landscape */
/* ----------- iPhone 6, 6S, 7 and 8 ----------- */
/* Portrait and Landscape */
/* Portrait */
/* Landscape */
/* ----------- iPhone 6+, 7+ and 8+ ----------- */
/* Portrait and Landscape */
/* Portrait */
/* Landscape */
/* ----------- iPhone X ----------- */
/* Portrait and Landscape */
/* Portrait */
/* Landscape */
.navigation-section {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

body {
  color: #2e2e2e;
  background-color: #fafafa; }

.section-row {
  margin: 50px 0; }

p {
  text-align: justify; }

.title-container {
  text-align: center;
  margin: 0 0 80px 0; }
  .title-container .page-title {
    margin: 50px 0 20px;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #dadada;
    font-size: 26px;
    text-transform: uppercase; }
  .title-container b {
    color: #00918e; }
  .title-container p {
    color: #777; }

.navigation-container {
  background-color: #091f2c; }

.hero-section {
  background-color: #091f2c;
  max-height: 800px; }
  .hero-section .hero-slogan-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 100px; }
    .hero-section .hero-slogan-container img {
      margin: 40px 0 50px 0;
      max-width: 85%; }
    .hero-section .hero-slogan-container .hero-slogan {
      font-size: 40px;
      line-height: 1.4em;
      color: #f1f1f1; }
    .hero-section .hero-slogan-container .highligh-text {
      color: #00918e; }
  .hero-section video {
    max-width: 100%; }

.feature-box {
  border: 1px solid #dadada;
  background-color: #fff;
  text-align: center;
  padding: 30px;
  border-radius: 3px; }
  .feature-box .feature-icon {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    background-color: #00918e;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 58px; }
    .feature-box .feature-icon i {
      font-size: 24px;
      color: #fff; }
  .feature-box h3 {
    margin: 10px 0 20px;
    padding: 0 0 20px 0;
    font-size: 24px;
    border-bottom: 1px solid #dadada; }
  .feature-box p {
    text-align: center; }

.highlight-section {
  padding: 50px 0;
  margin: 50px 0;
  color: #fff;
  background: #091f2c; }
  .highlight-section h1 {
    text-transform: uppercase;
    font-size: 26px;
    margin: 0 0 30px 0;
    text-align: center; }
  .highlight-section .highlight-quote {
    font-size: 18px;
    line-height: 1.6rem;
    text-align: center; }

.feature-item {
  display: flex;
  margin: 40px 0; }
  .feature-item .f-icon-container {
    margin: 0 20px 0 0; }
    .feature-item .f-icon-container .f-icon {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #00918e;
      color: #fff;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      line-height: 48px; }
    .feature-item .f-icon-container i {
      font-size: 22px;
      color: #fff; }
  .feature-item .f-content h3 {
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 10px 0; }

.contact-section {
  margin: 20px 0 40px 0; }
  .contact-section .footer-logo {
    margin: 0 0 20px 0; }
  .contact-section p,
  .contact-section ul h2 {
    color: #777; }
  .contact-section .footer-title {
    font-size: 22px;
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #dadada; }
  .contact-section .social-list {
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #dadada; }
    .contact-section .social-list li {
      margin: 0 20px 0 0; }
      .contact-section .social-list li a {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #777;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        line-height: 38px; }
        .contact-section .social-list li a i {
          font-size: 18px;
          color: #777; }
        .contact-section .social-list li a:hover {
          border: 1px solid #00918e;
          background-color: #00918e; }
          .contact-section .social-list li a:hover i {
            color: #fff; }
  .contact-section .contact-list li {
    margin: 20px 0;
    color: #777; }
    .contact-section .contact-list li i {
      color: #00918e;
      margin: 0 10px 0 0; }
    .contact-section .contact-list li a {
      color: #00918e; }
  .contact-section .data-list li {
    margin: 20px 0;
    color: #777; }

.footer-section {
  padding: 20px 0;
  text-align: center;
  border-top: #dadada;
  background-color: #091f2c;
  font-size: 12px;
  color: #f1f1f1; }

/* Triangle stuff */
.marshall-container {
  position: relative;
  width: 100%; }

.marshall-container::before,
.marshall-container::after {
  content: "";
  display: block;
  clear: both; }

.triangle-canvas {
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0; }

.triangle-stuff {
  height: 100vh; }

.banner-caption {
  position: absolute;
  z-index: 1000;
  top: 200px;
  width: 100%;
  text-align: center; }
  .banner-caption .banner-logo {
    position: relative;
    z-index: 100;
    height: 150px;
    margin: 0 auto;
    display: block; }
  .banner-caption h1 {
    font-size: 30px;
    font-weight: 300;
    margin: 30px 0; }
  .banner-caption hr {
    width: 30%;
    max-width: 400px;
    margin: 50px auto; }

@keyframes fading-cursor {
  from {
    color: #f1f1f1; }
  to {
    color: #00918e; } }

.circle-container {
  display: flex;
  justify-content: center; }
  .circle-container .large-circle {
    font-size: 36px;
    width: 100px;
    height: 100px;
    margin: 0 30px;
    line-height: 97px;
    background-color: #00918e;
    border: 3px solid #00918e;
    color: #fff;
    border-radius: 50%;
    -webkit-transition: background-color 0.6s, color 0.4s;
    transition: background-color 0.6s, color 0.4s; }
    .circle-container .large-circle:hover {
      background-color: #fff;
      color: #00918e; }

.smooth-scroll {
  margin: 150px 0 0 0;
  display: flex;
  flex-direction: column;
  color: #f1f1f1;
  animation-name: fading-cursor;
  animation-iteration-count: infinite;
  animation-duration: 4s; }
  .smooth-scroll i {
    font-size: 30px;
    line-height: 18px; }
  .smooth-scroll:hover {
    color: #00918e;
    cursor: pointer; }

.portfolio-section {
  background-color: #091f2c;
  padding: 50px 0; }
  .portfolio-section h1 {
    font-size: 22px;
    text-align: center;
    margin: 0 0 30px 0;
    color: #f1f1f1; }

.solution-container {
  position: relative; }
  .solution-container .bg-overlay {
    position: absolute;
    opacity: 0.1;
    width: 1px;
    height: 1px;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: 150; }
  .solution-container p {
    position: absolute;
    text-align: center;
    padding: 0 20px;
    top: 90%;
    color: #fff;
    opacity: 0;
    display: none;
    z-index: 200;
    font-size: 18px;
    line-height: 1.6rem; }
  .solution-container:hover .bg-overlay {
    opacity: 0.9;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00918e;
    -webkit-transition: all 0.6s;
    /* Safari prior 6.1 */
    transition: all 0.6s; }
  .solution-container:hover img {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    -webkit-transition: all 1s;
    /* Safari prior 6.1 */
    transition: all 1s; }
  .solution-container:hover h1 {
    top: 40px;
    padding: 0 0 40px 0;
    -webkit-transition: all 1s;
    /* Safari prior 6.1 */
    transition: all 1s; }
  .solution-container:hover p {
    top: 30%;
    opacity: 1;
    display: block;
    -webkit-transition: all 1s;
    /* Safari prior 6.1 */
    transition: all 1s; }

.main-navigation a {
  text-transform: initial;
  color: #f1f1f1; }

@media screen and (min-width: 29rem) {
  .solution-container h1 {
    top: 150px;
    font-size: 24px; } }

@media screen and (max-width: 47rem) {
  .banner-caption {
    top: 150px; }
    .banner-caption .banner-logo {
      position: relative;
      z-index: 100;
      height: 100px; }
  .circle-container .large-circle {
    font-size: 26px;
    width: 60px;
    height: 60px;
    margin: 0 20px;
    line-height: 57px; }
  .smooth-scroll {
    margin: 70px 0 0 0; }
    .smooth-scroll i {
      font-size: 30px;
      line-height: 18px; }
  .solution-container h1 {
    top: 120px;
    font-size: 26px; }
  .solution-container p {
    font-size: 90%; } }

@media screen and (max-width: 63rem) {
  .main-navigation a {
    font-size: 1rem; }
  .solution-container h1 {
    top: 80px;
    font-size: 24px; }
  .solution-container p {
    font-size: 90%; } }

@media screen and (max-width: 74rem) {
  .solution-container h1 {
    top: 80px;
    font-size: 24px; }
  .solution-container p {
    font-size: 90%; } }
