.animated {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  -ms-animation-duration: 0.3s;
  -o-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -moz-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
/**!
 * (mt) CSS Grid System
 *
 * Custom CSS grid solution built with LESS
 * ========================================================================== */
/* ==========================================================================
   Mixins that build columns and rows
   Note: Grid variables located in ~/variables.less
   ========================================================================== */
/**
 * Make grid columns
 */
/**
 * Make push columns
 */
/**
 * Make row inside grid container
 */
/**
 * Grid/Columns based on `display: inline-block;` divs
 */
/**
 * Grid/Columns based on `float: left;` divs
 */
/**
 * Stacked grid columns for mobile view
 */
/* ==========================================================================
   Grid system classes
   ========================================================================== */
/**
 * The grid container
 * Anytime you use the grid there should be a grid container.

<div class="grid">
   [...]
</div>

 */
.grid {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
}
.grid:before,
.grid:after {
  content: " ";
  display: table;
}
.grid:after {
  clear: both;
}
.grid:before,
.grid:after {
  content: " ";
  display: table;
}
.grid:after {
  clear: both;
}
/**
 * Use a row inside of a grid or grid column.

<div class="grid">
   <div class="row">
       [...]  
   </div>
</div>

 */
.grid-row {
  clear: both;
}
.grid-row:before,
.grid-row:after {
  content: " ";
  display: table;
}
.grid-row:after {
  clear: both;
}
/**
 * I think you know how columns work.
 * Each grid column should have a class of `grid-col`.
 * Note: You __DONT__ need to add a class of `last` or anything to the last column.

<div class="grid">
    <div class="grid-col  span6">
        [...]
    </div>
    <div class="grid-col  span6">
        [...]
    </div>
</div>

 */
.grid-col {
  float: left;
  display: inline;
  margin-left: 0.83335%;
  margin-right: 0.83335%;
}
.grid-col:before,
.grid-col:after {
  content: " ";
  display: table;
}
.grid-col:after {
  clear: both;
}
.grid-col .grid,
.grid-col .grid-row {
  margin-left: -0.83335%;
  margin-right: -0.83335%;
}
@media (max-width: 767px) {
  .grid-col--spaced {
    margin-bottom: 30px;
  }
  .grid-col--spaced--sm {
    margin-bottom: 15px;
  }
  .grid-col--spaced--lg {
    margin-bottom: 60px;
  }
}
/* Grid Modifiers
   -------------------------------------------------------------------------- */
/**
 * Grid that spans the length of the browser.
 */
.grid--wide {
  max-width: 100%;
}
.grid--split {
  max-width: 100%;
  width: 100%;
}
.grid--split > .grid-col {
  width: 50%;
  margin: 0;
}
/* Grid column widths
   -------------------------------------------------------------------------- */
.span1 {
  width: 6.667%;
}
.span2 {
  width: 15%;
}
.span3 {
  width: 23.333%;
}
.oneFourth {
  width: 23.333%;
}
.span4 {
  width: 31.667%;
}
.oneThird {
  width: 31.667%;
}
.span5 {
  width: 40%;
}
.span6 {
  width: 48.333%;
}
.oneHalf {
  width: 48.333%;
}
.span7 {
  width: 56.667%;
}
.span8 {
  width: 65%;
}
.span9 {
  width: 73.333%;
}
.span10 {
  width: 81.667%;
}
.span11 {
  width: 90%;
}
.span12 {
  float: none;
  clear: both;
  display: block;
  width: 98.333%;
}
.push1 {
  margin-left: 9.1667%;
}
.push1--half {
  margin-left: 13.1667%;
}
.push2 {
  margin-left: 17.5%;
}
.push3 {
  margin-left: 25.8333%;
}
.push4 {
  margin-left: 34.1667%;
}
.push5 {
  margin-left: 42.5%;
}
.push6 {
  margin-left: 50.8333%;
}
.push7 {
  margin-left: 59.1667%;
}
.push8 {
  margin-left: 67.5%;
}
.push9 {
  margin-left: 75.8333%;
}
.push10 {
  margin-left: 84.1667%;
}
.push11 {
  margin-left: 92.5%;
}
.push12 {
  margin-left: 100.8333%;
}
.pull1 {
  margin-right: 9.1667%;
  float: right;
}
.pull1--half {
  margin-right: 13.1667%;
}
.pull2 {
  margin-right: 17.5%;
  float: right;
}
.pull3 {
  margin-right: 25.8333%;
  float: right;
}
.pull4 {
  margin-right: 34.1667%;
  float: right;
}
.pull5 {
  margin-right: 42.5%;
  float: right;
}
.pull6 {
  margin-right: 50.8333%;
  float: right;
}
.pull7 {
  margin-right: 59.1667%;
  float: right;
}
.pull8 {
  margin-right: 67.5%;
  float: right;
}
.pull9 {
  margin-right: 75.8333%;
  float: right;
}
.pull10 {
  margin-right: 84.1667%;
  float: right;
}
.pull11 {
  margin-right: 92.5%;
  float: right;
}
.pull12 {
  margin-right: 100.8333%;
  float: right;
}
/* ==========================================================================
   Grid system media query adjustments.
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1199px) {
  html {
    font-size: 95%;
  }
  .med-span1 {
    width: 6.667%;
  }
  .medium-span1 {
    width: 6.667%;
  }
  .med-span2 {
    width: 15%;
  }
  .medium-span2 {
    width: 15%;
  }
  .med-span3 {
    width: 23.333%;
  }
  .medium-span3 {
    width: 23.333%;
  }
  .med-oneFourth {
    width: 23.333%;
  }
  .medium-oneFourth {
    width: 23.333%;
  }
  .med-span4 {
    width: 31.667%;
  }
  .medium-span4 {
    width: 31.667%;
  }
  .med-oneThird {
    width: 31.667%;
  }
  .medium-oneThird {
    width: 31.667%;
  }
  .med-span5 {
    width: 40%;
  }
  .medium-span5 {
    width: 40%;
  }
  .med-span6 {
    width: 48.333%;
  }
  .medium-span6 {
    width: 48.333%;
  }
  .med-oneHalf {
    width: 48.333%;
  }
  .medium-oneHalf {
    width: 48.333%;
  }
  .med-span7 {
    width: 56.667%;
  }
  .medium-span7 {
    width: 56.667%;
  }
  .med-span8 {
    width: 65%;
  }
  .medium-span8 {
    width: 65%;
  }
  .med-span9 {
    width: 73.333%;
  }
  .medium-span9 {
    width: 73.333%;
  }
  .med-span10 {
    width: 81.667%;
  }
  .medium-span10 {
    width: 81.667%;
  }
  .med-span11 {
    width: 90%;
  }
  .medium-span11 {
    width: 90%;
  }
  .med-span12,
  .medium-span12 {
    float: none;
    clear: both;
    display: block;
    width: 98.333%;
  }
  .med-push1 {
    margin-left: 9.1667%;
  }
  .medium-push1 {
    margin-left: 9.1667%;
  }
  .med-push1--half {
    margin-left: 13.1667%;
  }
  .medium-push1--half {
    margin-left: 13.1667%;
  }
  .med-push2 {
    margin-left: 17.5%;
  }
  .medium-push2 {
    margin-left: 17.5%;
  }
  .med-push3 {
    margin-left: 25.8333%;
  }
  .medium-push3 {
    margin-left: 25.8333%;
  }
  .med-push4 {
    margin-left: 34.1667%;
  }
  .medium-push4 {
    margin-left: 34.1667%;
  }
  .med-push5 {
    margin-left: 42.5%;
  }
  .medium-push5 {
    margin-left: 42.5%;
  }
  .med-push6 {
    margin-left: 50.8333%;
  }
  .medium-push6 {
    margin-left: 50.8333%;
  }
  .med-push7 {
    margin-left: 59.1667%;
  }
  .medium-push7 {
    margin-left: 59.1667%;
  }
  .med-push8 {
    margin-left: 67.5%;
  }
  .medium-push8 {
    margin-left: 67.5%;
  }
  .med-push9 {
    margin-left: 75.8333%;
  }
  .medium-push9 {
    margin-left: 75.8333%;
  }
  .med-push10 {
    margin-left: 84.1667%;
  }
  .medium-push10 {
    margin-left: 84.1667%;
  }
  .med-push11 {
    margin-left: 92.5%;
  }
  .medium-push11 {
    margin-left: 92.5%;
  }
  .med-push12 {
    margin-left: 100.8333%;
  }
  .medium-push12 {
    margin-left: 100.8333%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 90%;
  }
  .grid-col {
    display: block;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .small-span1 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 6.667%;
  }
  .small-span1:before,
  .small-span1:after {
    content: " ";
    display: table;
  }
  .small-span1:after {
    clear: both;
  }
  .sm-span1 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 6.667%;
  }
  .sm-span1:before,
  .sm-span1:after {
    content: " ";
    display: table;
  }
  .sm-span1:after {
    clear: both;
  }
  .small-span2 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 15%;
  }
  .small-span2:before,
  .small-span2:after {
    content: " ";
    display: table;
  }
  .small-span2:after {
    clear: both;
  }
  .sm-span2 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 15%;
  }
  .sm-span2:before,
  .sm-span2:after {
    content: " ";
    display: table;
  }
  .sm-span2:after {
    clear: both;
  }
  .small-span3 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 23.333%;
  }
  .small-span3:before,
  .small-span3:after {
    content: " ";
    display: table;
  }
  .small-span3:after {
    clear: both;
  }
  .sm-span3 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 23.333%;
  }
  .sm-span3:before,
  .sm-span3:after {
    content: " ";
    display: table;
  }
  .sm-span3:after {
    clear: both;
  }
  .small-oneFourth {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 23.333%;
  }
  .small-oneFourth:before,
  .small-oneFourth:after {
    content: " ";
    display: table;
  }
  .small-oneFourth:after {
    clear: both;
  }
  .sm-oneFourth {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 23.333%;
  }
  .sm-oneFourth:before,
  .sm-oneFourth:after {
    content: " ";
    display: table;
  }
  .sm-oneFourth:after {
    clear: both;
  }
  .small-span4 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 31.667%;
  }
  .small-span4:before,
  .small-span4:after {
    content: " ";
    display: table;
  }
  .small-span4:after {
    clear: both;
  }
  .sm-span4 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 31.667%;
  }
  .sm-span4:before,
  .sm-span4:after {
    content: " ";
    display: table;
  }
  .sm-span4:after {
    clear: both;
  }
  .small-oneThird {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 31.667%;
  }
  .small-oneThird:before,
  .small-oneThird:after {
    content: " ";
    display: table;
  }
  .small-oneThird:after {
    clear: both;
  }
  .sm-oneThird {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 31.667%;
  }
  .sm-oneThird:before,
  .sm-oneThird:after {
    content: " ";
    display: table;
  }
  .sm-oneThird:after {
    clear: both;
  }
  .small-span5 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 40%;
  }
  .small-span5:before,
  .small-span5:after {
    content: " ";
    display: table;
  }
  .small-span5:after {
    clear: both;
  }
  .sm-span5 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 40%;
  }
  .sm-span5:before,
  .sm-span5:after {
    content: " ";
    display: table;
  }
  .sm-span5:after {
    clear: both;
  }
  .small-span6 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 48.333%;
  }
  .small-span6:before,
  .small-span6:after {
    content: " ";
    display: table;
  }
  .small-span6:after {
    clear: both;
  }
  .sm-span6 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 48.333%;
  }
  .sm-span6:before,
  .sm-span6:after {
    content: " ";
    display: table;
  }
  .sm-span6:after {
    clear: both;
  }
  .small-oneHalf {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 48.333%;
  }
  .small-oneHalf:before,
  .small-oneHalf:after {
    content: " ";
    display: table;
  }
  .small-oneHalf:after {
    clear: both;
  }
  .sm-oneHalf {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 48.333%;
  }
  .sm-oneHalf:before,
  .sm-oneHalf:after {
    content: " ";
    display: table;
  }
  .sm-oneHalf:after {
    clear: both;
  }
  .small-span7 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 56.667%;
  }
  .small-span7:before,
  .small-span7:after {
    content: " ";
    display: table;
  }
  .small-span7:after {
    clear: both;
  }
  .sm-span7 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 56.667%;
  }
  .sm-span7:before,
  .sm-span7:after {
    content: " ";
    display: table;
  }
  .sm-span7:after {
    clear: both;
  }
  .small-span8 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 65%;
  }
  .small-span8:before,
  .small-span8:after {
    content: " ";
    display: table;
  }
  .small-span8:after {
    clear: both;
  }
  .sm-span8 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 65%;
  }
  .sm-span8:before,
  .sm-span8:after {
    content: " ";
    display: table;
  }
  .sm-span8:after {
    clear: both;
  }
  .small-span9 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 73.333%;
  }
  .small-span9:before,
  .small-span9:after {
    content: " ";
    display: table;
  }
  .small-span9:after {
    clear: both;
  }
  .sm-span9 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 73.333%;
  }
  .sm-span9:before,
  .sm-span9:after {
    content: " ";
    display: table;
  }
  .sm-span9:after {
    clear: both;
  }
  .small-span10 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 81.667%;
  }
  .small-span10:before,
  .small-span10:after {
    content: " ";
    display: table;
  }
  .small-span10:after {
    clear: both;
  }
  .sm-span10 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 81.667%;
  }
  .sm-span10:before,
  .sm-span10:after {
    content: " ";
    display: table;
  }
  .sm-span10:after {
    clear: both;
  }
  .small-span11 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 90%;
  }
  .small-span11:before,
  .small-span11:after {
    content: " ";
    display: table;
  }
  .small-span11:after {
    clear: both;
  }
  .sm-span11 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 90%;
  }
  .sm-span11:before,
  .sm-span11:after {
    content: " ";
    display: table;
  }
  .sm-span11:after {
    clear: both;
  }
  .small-span12,
  .sm-span12 {
    float: none;
    clear: both;
    display: block;
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    width: 98.333%;
  }
  .small-span12:before,
  .sm-span12:before,
  .small-span12:after,
  .sm-span12:after {
    content: " ";
    display: table;
  }
  .small-span12:after,
  .sm-span12:after {
    clear: both;
  }
  .small-push1 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 9.1667%;
  }
  .small-push1:before,
  .small-push1:after {
    content: " ";
    display: table;
  }
  .small-push1:after {
    clear: both;
  }
  .sm-push1 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 9.1667%;
  }
  .sm-push1:before,
  .sm-push1:after {
    content: " ";
    display: table;
  }
  .sm-push1:after {
    clear: both;
  }
  .small-push1--half {
    margin-left: 13.1667%;
  }
  .sm-push1--half {
    margin-left: 13.1667%;
  }
  .small-push2 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 17.5%;
  }
  .small-push2:before,
  .small-push2:after {
    content: " ";
    display: table;
  }
  .small-push2:after {
    clear: both;
  }
  .sm-push2 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 17.5%;
  }
  .sm-push2:before,
  .sm-push2:after {
    content: " ";
    display: table;
  }
  .sm-push2:after {
    clear: both;
  }
  .small-push3 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 25.8333%;
  }
  .small-push3:before,
  .small-push3:after {
    content: " ";
    display: table;
  }
  .small-push3:after {
    clear: both;
  }
  .sm-push3 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 25.8333%;
  }
  .sm-push3:before,
  .sm-push3:after {
    content: " ";
    display: table;
  }
  .sm-push3:after {
    clear: both;
  }
  .small-push4 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 34.1667%;
  }
  .small-push4:before,
  .small-push4:after {
    content: " ";
    display: table;
  }
  .small-push4:after {
    clear: both;
  }
  .sm-push4 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 34.1667%;
  }
  .sm-push4:before,
  .sm-push4:after {
    content: " ";
    display: table;
  }
  .sm-push4:after {
    clear: both;
  }
  .small-push5 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 42.5%;
  }
  .small-push5:before,
  .small-push5:after {
    content: " ";
    display: table;
  }
  .small-push5:after {
    clear: both;
  }
  .sm-push5 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 42.5%;
  }
  .sm-push5:before,
  .sm-push5:after {
    content: " ";
    display: table;
  }
  .sm-push5:after {
    clear: both;
  }
  .small-push6 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 50.8333%;
  }
  .small-push6:before,
  .small-push6:after {
    content: " ";
    display: table;
  }
  .small-push6:after {
    clear: both;
  }
  .sm-push6 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 50.8333%;
  }
  .sm-push6:before,
  .sm-push6:after {
    content: " ";
    display: table;
  }
  .sm-push6:after {
    clear: both;
  }
  .small-push7 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 59.1667%;
  }
  .small-push7:before,
  .small-push7:after {
    content: " ";
    display: table;
  }
  .small-push7:after {
    clear: both;
  }
  .sm-push7 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 59.1667%;
  }
  .sm-push7:before,
  .sm-push7:after {
    content: " ";
    display: table;
  }
  .sm-push7:after {
    clear: both;
  }
  .small-push8 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 67.5%;
  }
  .small-push8:before,
  .small-push8:after {
    content: " ";
    display: table;
  }
  .small-push8:after {
    clear: both;
  }
  .sm-push8 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 67.5%;
  }
  .sm-push8:before,
  .sm-push8:after {
    content: " ";
    display: table;
  }
  .sm-push8:after {
    clear: both;
  }
  .small-push9 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 75.8333%;
  }
  .small-push9:before,
  .small-push9:after {
    content: " ";
    display: table;
  }
  .small-push9:after {
    clear: both;
  }
  .sm-push9 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 75.8333%;
  }
  .sm-push9:before,
  .sm-push9:after {
    content: " ";
    display: table;
  }
  .sm-push9:after {
    clear: both;
  }
  .small-push10 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 84.1667%;
  }
  .small-push10:before,
  .small-push10:after {
    content: " ";
    display: table;
  }
  .small-push10:after {
    clear: both;
  }
  .sm-push10 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 84.1667%;
  }
  .sm-push10:before,
  .sm-push10:after {
    content: " ";
    display: table;
  }
  .sm-push10:after {
    clear: both;
  }
  .small-push11 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 92.5%;
  }
  .small-push11:before,
  .small-push11:after {
    content: " ";
    display: table;
  }
  .small-push11:after {
    clear: both;
  }
  .sm-push11 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 92.5%;
  }
  .sm-push11:before,
  .sm-push11:after {
    content: " ";
    display: table;
  }
  .sm-push11:after {
    clear: both;
  }
  .small-push12 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 100.8333%;
  }
  .small-push12:before,
  .small-push12:after {
    content: " ";
    display: table;
  }
  .small-push12:after {
    clear: both;
  }
  .sm-push12 {
    float: left;
    display: inline;
    margin-left: 0.83335%;
    margin-right: 0.83335%;
    margin-left: 100.8333%;
  }
  .sm-push12:before,
  .sm-push12:after {
    content: " ";
    display: table;
  }
  .sm-push12:after {
    clear: both;
  }
}
@media (max-width: 480px) {
  .grid .grid-col {
    display: block;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ==========================================================================
   Intrinsic ratio embed - http://j.mp/GIHbnu
   ========================================================================== */
/**
 * Flexible media embeds
 *
 * For use with media embeds – such as videos, slideshows, or even images –
 * that need to retain a specific aspect ratio but adapt to the width of their
 * containing element.
 *
 * Example HTML:
 *
 * <div class="flexEmbed flexEmbed--16by9">
 *     <iframe class="flexEmbed-item" src="…"></iframe>
 * </div>
 *
 * <div class="flexEmbed flexEmbed--16by9">
 *     [iframe|object|embed|img]
 * </div>
 */
.flexEmbed {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 0;
  padding-top: 0;
}
/**
 * The use of an explicit descendant class makes this component more flexible.
 * However, it will work automatically for iframes, embeds, and objects to
 * account for times when you cannot modify the attributes for 3rd party widget
 * code.
 */
.flexEmbed-item,
.flexEmbed iframe,
.flexEmbed embed,
.flexEmbed object,
.flexEmbed video {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
/**
 * Modifier: 16:9 aspect ratio
 */
.flexEmbed--16by9 {
  padding-bottom: 56.20%;
}
/**
 * Modifier: 4:3 aspect ratio
 */
.flexEmbed--4by3 {
  padding-bottom: 75%;
}
/**
 * Hero Unit
 */
.flexEmbed--hero {
  padding-bottom: 32.2%;
}
.flexEmbed--feature {
  padding-bottom: 51%;
}
.flexEmbed--person {
  padding-bottom: 100%;
}
/**!
 * Headings
 *
 * Global headings styles
 * ========================================================================== */
/* ==========================================================================
   General headings
   ========================================================================== */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.heading {
  text-transform: none;
}
/**!
 * Code Styles
 * =========================================================================== */
/**

Example usage:

<pre><code>
    Holler! This is what I look like by default.
</code></pre>

<pre class="html"><code>
    <div> this is a div </div>
</code></pre>

<pre class="css"><code>
    .thing {
        background: url('puppy.jpg') no-repeat;
    }
</code></pre>

<pre class="js"><code>
    console.log('Hello!');
</code></pre>


 */
code {
  background: #f7f7f7;
  padding: 2px;
}
pre {
  position: relative;
  max-width: 800px;
  padding: 30px 15px;
  background: #f7f7f7;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  font-size: 14px;
  color: #666666;
  border-left: 3px solid #7b7b7b;
}
pre:before {
  content: "E.G.";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  font-family: Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
pre code {
  padding: 0;
}
pre.css {
  border-left: 3px solid #20bc7e;
}
pre.css:before {
  content: "CSS";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  font-family: Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
pre.css:before {
  color: #20bc7e;
}
pre.html {
  border-left: 3px solid #4fcadc;
}
pre.html:before {
  content: "HTML";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  font-family: Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
pre.html:before {
  color: #4fcadc;
}
pre.js {
  border-left: 3px solid #9e7fb9;
}
pre.js:before {
  content: "JS";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  font-family: Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
pre.js:before {
  color: #9e7fb9;
}
a:hover,
a:focus {
  text-decoration: none;
}
.branding img {
  float: left;
}
.branding-title {
  float: left;
  margin: 0 0 0 12px;
  color: #333333;
  text-transform: uppercase;
  font-weight: 600;
}
.primaryBackLink {
  float: left;
  margin-left: 55px;
  margin-left: 3.4375rem;
}
.primaryBackLink .primaryNav-list-item a {
  color: #1c1c1e;
}
.primaryBackLink .cta--back i {
  line-height: 0;
  vertical-align: -4px;
}
@media (max-width: 1090px) {
  .primaryNav--left {
    display: none;
  }
}
@media (max-width: 767px) {
  .primaryNav--left {
    display: none;
  }
}
@media (min-width: 960px) {
  .primaryNav--right {
    float: right;
  }
}
.primaryNav .navItem--backLink {
  display: none;
}
@media only screen and (max-width: 910px) {
  .primaryNav .navItem--backLink {
    display: block;
  }
}
@media only screen and (max-width: 790px) {
  .primaryNav.isVisible {
    height: 340px;
  }
}
.sidebar-item {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.sidebar-item .h4 {
  margin-bottom: 0;
}
.sidebar-item .nav--aside > li > a {
  padding-left: 0;
}
/**!
 * Hero Unit
 *
 * Styles for global hero unit modules
 * =========================================================================== */
/* Base styles
   -------------------------------------------------------------------------- */
.heroUnit {
  height: auto;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/**
     * Hero image is set as background image of this div
     */
/**
     * Load in all styled for hero images
     */
/* Hero video
       -------------------------------------------------------------------------- */
.heroUnit-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
}
.heroUnit-media-inner {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 0;
  padding-top: 0;
  padding-bottom: 32.2%;
  padding-bottom: 42.5%;
}
@media (max-width: 727px) {
  .heroUnit-media-inner {
    height: 300px !important;
    padding: 0 !important;
  }
}
.heroUnit-media-item {
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/* Hero content
       -------------------------------------------------------------------------- */
.heroUnit-content {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 0;
  padding-top: 0;
  padding-bottom: 32.2%;
  padding-bottom: 42.5%;
}
@media (max-width: 727px) {
  .heroUnit-content {
    height: 300px !important;
    padding: 0 !important;
  }
}
.heroUnit-content .cta--play {
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  -webkit-transition: all .1s linear;
  -moz-transition: all .1s linear;
  -o-transition: all .1s linear;
  -ms-transition: all .1s linear;
  transition: all .1s linear;
}
.heroUnit-content .cta--play .icon {
  margin: 0;
  text-shadow: 0 0 2px #e6e6e6;
  font-size: 54px;
  font-size: 3.375rem;
}
.heroUnit-content .cta--play:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
@media (max-width: 767px) {
  .heroUnit-content .cta--play {
    display: none;
  }
}
.heroUnit-content .cta--close {
  position: absolute;
  top: 27px;
  right: 20px;
  display: none;
  z-index: 100000;
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  opacity: 0.2;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  -ms-transition: all .2s linear;
  transition: all .2s linear;
}
.heroUnit-content .cta--close .lush {
  margin: 0;
  color: #ffffff;
  text-shadow: 0 0 2px #e6e6e6;
  font-size: 54px;
  font-size: 3.375rem;
}
.heroUnit-content .cta--close:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
@media (max-width: 767px) {
  .heroUnit-content .cta--close {
    display: none;
  }
}
/**
         * Hero text container
         */
.heroUnit-content-text {
  position: absolute;
  bottom: 100px;
  max-width: 56%;
  -webkit-transition: bottom .3s linear;
  -moz-transition: bottom .3s linear;
  -o-transition: bottom .3s linear;
  -ms-transition: bottom .3s linear;
  transition: bottom .3s linear;
}
.heroUnit-content-text:before,
.heroUnit-content-text:after {
  content: " ";
  display: table;
}
.heroUnit-content-text:after {
  clear: both;
}
.heroUnit-content-text .btn {
  float: right;
}
@media (min-width: 1200px) {
  .heroUnit-content-text {
    bottom: 100px;
  }
}
@media (min-width: 1500px) {
  .heroUnit-content-text {
    bottom: 150px;
  }
}
@media (min-width: 1900px) {
  .heroUnit-content-text {
    bottom: 250px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .heroUnit-content-text {
    bottom: 50px;
  }
}
@media (max-width: 767px) {
  .heroUnit-content-text {
    max-width: 72%;
    bottom: 30px;
  }
}
@media (max-width: 480px) {
  .heroUnit-content-text {
    max-width: 90%;
    bottom: 20px;
  }
}
/**
         * Headings inside hero
         */
.heroUnit-title {
  background-color: #282b2d;
  padding: 16px 20px;
  max-width: 100%;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  display: inline-block;
  *display: inline;
  zoom: 1;
}
@media (min-width: 1500px) {
  .heroUnit-title {
    font-size: 36px;
    line-height: 38px;
  }
}
@media (min-width: 1200px) {
  .heroUnit-title {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .heroUnit-title {
    font-size: 24px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .heroUnit-title {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
}
.heroUnit-subtitle {
  display: block;
  color: #1c1c1e;
  margin: 0;
  font-size: 30px;
  letter-spacing: 0;
}
.heroUnit-subtitle .heroUnit-subtitle-link,
.heroUnit-subtitle .heroUnit-subtitle-text {
  background-color: #ffffff;
  text-transform: none;
  margin: 0;
  color: #1c1c1e;
  font-weight: normal;
  padding: 10px 20px;
  display: inline-block;
  *display: inline;
  zoom: 1;
}
.heroUnit-subtitle .heroUnit-subtitle-link:hover,
.heroUnit-subtitle .heroUnit-subtitle-text:hover {
  text-decoration: none;
  color: #1c1c1e;
}
@media (min-width: 1500px) {
  .heroUnit-subtitle {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .heroUnit-subtitle {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .heroUnit-subtitle {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 1px;
  }
}
@media (max-width: 767px) {
  .heroUnit-subtitle {
    font-size: 14px;
    line-height: 18px;
    max-width: 100%;
  }
}
/* ==========================================================================
   Variations
   ========================================================================== */
/* Mini hero modules
   -------------------------------------------------------------------------- */
.heroUnit.heroUnit--mini {
  float: left;
  width: 33.333%;
  padding-bottom: 24.11%;
}
.heroUnit.heroUnit--mini .heroUnit-content-text {
  bottom: 10%;
  width: 80%;
  left: 10%;
}
.heroUnit.heroUnit--mini .heroUnit-title {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}
.heroUnit.heroUnit--mini .heroUnit-subtitle {
  font-size: 18px;
  font-size: 1.125rem;
}
.heroUnit.heroUnit--mini .heroUnit-subtitle .heroUnit-subtitle-link {
  padding: 8px 15px;
  padding: 0.5rem 15px;
  padding: 8px 0.9375rem;
  padding: 0.5rem 0.9375rem;
}
@media (max-width: 767px) {
  .heroUnit.heroUnit--mini {
    float: none;
    width: 100%;
    margin: 0;
    padding-bottom: 56.20%;
  }
  .heroUnit.heroUnit--mini .heroUnit-title {
    margin-bottom: 10px;
  }
}
.heroUnit.heroUnit--mini .heroUnit-title {
  line-height: 30px;
  line-height: 1.875rem;
}
@media (max-width: 767px) {
  .heroUnit.heroUnit--mini .heroUnit-content-text {
    left: auto;
  }
}
@media (min-width: 768px) and (max-width: 1095px) {
  .heroUnit.heroUnit--mini .heroUnit-content-text {
    max-width: 100%;
    width: 80%;
  }
  .heroUnit.heroUnit--mini .heroUnit-title {
    margin: 0;
    padding: 10px 14px;
    padding: 0.625rem 14px;
    padding: 10px 0.875rem;
    padding: 0.625rem 0.875rem;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
  .heroUnit.heroUnit--mini .heroUnit-subtitle {
    font-size: 90%;
  }
}
@media (max-width: 767px) {
  .heroUnit.heroUnit--mini .heroUnit-title {
    font-size: 80%;
  }
}
.heroUnit-link .heroUnit-title {
  -webkit-transition: all .2s ease-in;
  -moz-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  -ms-transition: all .2s ease-in;
  transition: all .2s ease-in;
}
.heroUnit-link:hover .heroUnit-title {
  background-color: #48e0a4;
}
.flexEmbed-item .heroUnit-content {
  position: static;
}
.play-button {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: url(../_img/video-play.png) no-repeat center center;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
}
@media (max-width: 767px) {
  .play-button {
    background-size: 150px;
  }
}
.play-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.play-button--hidden {
  opacity: 0;
}
.post-content blockquote,
.post-blockquote {
  margin: 0;
  padding: 0;
  border: none;
}
.post-content blockquote p,
.post-blockquote p {
  margin-bottom: 40px;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 36px;
  line-height: 2.25rem;
  color: #48e0a4;
}
.post-content blockquote p:before,
.post-blockquote p:before {
  content: "\201C";
}
.post-content blockquote p:after,
.post-blockquote p:after {
  content: "\201D";
}
@media (max-width: 767px) {
  .post-content blockquote p,
  .post-blockquote p {
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
  }
}
.post-content blockquote footer,
.post-blockquote footer {
  display: block;
  color: #999999;
  font-size: 28px;
  font-size: 1.75rem;
}
.post-content blockquote footer:before,
.post-blockquote footer:before {
  content: "\2014";
}
.post-blockquote--hero {
  width: 570px;
  margin: 30px 0;
}
.post-blockquote--hero p {
  color: #ffffff;
  font-size: 44px;
  font-size: 2.75rem;
  line-height: 52px;
  line-height: 3.25rem;
}
.post-blockquote--hero footer {
  color: #ffffff;
}
@media (max-width: 767px) {
  .post-blockquote--hero {
    width: 80%;
  }
  .post-blockquote--hero p {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 35px;
    line-height: 2.1875rem;
  }
}
@media (max-width: 767px) {
  .author-flex {
    display: block;
  }
}
.author-box {
  display: block;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  background-color: #1c1c1e;
}
.author-box .cta {
  color: #fff;
}
@media (max-width: 767px) {
  .author-box {
    display: block;
  }
}
.author-image img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .author-image {
    display: block;
  }
}
.author-name-link {
  color: #48e0a4;
}
.author-meta {
  display: block;
  padding: 30px;
  padding: 1.875rem;
  font-weight: 300;
}
.author-meta h4 {
  text-transform: uppercase;
  color: #fff;
}
.author-meta img {
  width: 100% !important;
  height: auto !important;
}
.author-meta p {
  color: #999999;
  word-wrap: break-word;
}
.author-meta p:last-child {
  margin-bottom: 0;
}
.author-meta .author-name {
  display: block;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  color: #ffffff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
}
.author-meta .author-bio {
  color: #999999;
}
@media (max-width: 767px) {
  .author-meta {
    display: block;
  }
  .author-meta .author-name,
  .author-meta .author-bio,
  .author-meta .view-more {
    display: none;
  }
  .author-meta .author-more-posts {
    margin-bottom: 10px;
    margin-bottom: 0.625rem;
    color: #ffffff;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 300;
  }
}
#respond textarea {
  width: 100%;
}
.post-type-label {
  display: block;
  margin-bottom: 10px;
}
.post-type-label .icon {
  margin-left: 10px;
  font-size: 42px;
  font-weight: bold;
}
.mt-gallery-wrapper {
  position: relative;
  left: 0;
  width: 100%;
}
.mt-gallery-wrapper .mt-gallery {
  position: absolute;
  left: -20%;
  width: 140%;
}
.mt-gallery-wrapper .mt-gallery-image {
  float: left;
  width: 50%;
  padding-bottom: 42.5%;
  background-size: cover;
}
.mt-gallery-wrapper img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .mt-gallery-wrapper .mt-gallery {
    position: relative;
    left: 0;
    width: 100%;
  }
  .mt-gallery-wrapper .mt-gallery-image {
    float: none;
    width: 100%;
    margin-bottom: 5px;
  }
}
.post-gallery--footer {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
.post-gallery--footer:before,
.post-gallery--footer:after {
  content: " ";
  display: table;
}
.post-gallery--footer:after {
  clear: both;
}
@media (max-width: 767px) {
  .post-gallery--footer {
    padding-left: 20px;
    padding-left: 1.25rem;
    padding-right: 20px;
    padding-right: 1.25rem;
  }
}
.post-gallery--footer .gallery-image--footer {
  float: left;
  height: 500px;
  background-size: cover;
}
.post-gallery--footer .gallery-image--footer .image-size-content-aware {
  /* two items */
  /* three items */
  /* four items */
}
.post-gallery--footer .gallery-image--footer .image-size-content-aware:first-child:nth-last-child(1) {
  width: 100%;
}
.post-gallery--footer .gallery-image--footer .image-size-content-aware:first-child:nth-last-child(2),
.post-gallery--footer .gallery-image--footer .image-size-content-aware:first-child:nth-last-child(2) ~ .gallery-image--footer {
  width: 50%;
}
.post-gallery--footer .gallery-image--footer .image-size-content-aware:first-child:nth-last-child(3),
.post-gallery--footer .gallery-image--footer .image-size-content-aware:first-child:nth-last-child(3) ~ .gallery-image--footer {
  width: 33.3333%;
}
.post-gallery--footer .gallery-image--footer .image-size-content-aware:first-child:nth-last-child(4),
.post-gallery--footer .gallery-image--footer .image-size-content-aware:first-child:nth-last-child(4) ~ .gallery-image--footer {
  width: 25%;
}
@media (min-width: 960px) {
  .post-gallery--footer .gallery-image--footer {
    /* two items */
    /* three items */
    /* four items */
  }
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(1) {
    width: 100%;
  }
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(2),
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(2) ~ .gallery-image--footer {
    width: 50%;
  }
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(3),
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(3) ~ .gallery-image--footer {
    width: 33.3333%;
  }
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(4),
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(4) ~ .gallery-image--footer {
    width: 25%;
  }
}
@media (min-width: 768px) and (max-width: 1095px) {
  .post-gallery--footer .gallery-image--footer {
    height: 200px;
    /* two items */
    /* three items */
    /* four items */
  }
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(1) {
    width: 100%;
  }
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(2),
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(2) ~ .gallery-image--footer {
    width: 50%;
  }
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(3),
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(3) ~ .gallery-image--footer {
    width: 33.3333%;
  }
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(4),
  .post-gallery--footer .gallery-image--footer:first-child:nth-last-child(4) ~ .gallery-image--footer {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .post-gallery--footer .gallery-image--footer {
    float: none;
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
  }
}
.featured-articles .grid-row:first-child {
  margin-bottom: 90px;
  margin-bottom: 5.625rem;
}
@media (max-width: 767px) {
  .featured-articles .grid-row:first-child {
    margin-bottom: 0;
  }
  .featured-articles .grid-row:last-child .article-item:last-child {
    margin-bottom: 0;
  }
}
.article-item {
  display: inline-block;
  width: 25%;
  float: left;
  color: #ffffff;
}
.article-item:hover {
  color: #1ca670;
}
.article-item img {
  display: block;
}
.article-item .meta {
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-right: 70px;
  padding-right: 4.375rem;
}
.article-item .title {
  display: block;
  font-size: 16px;
  font-weight: 300;
}
.article-item .post-type {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 200;
  text-transform: uppercase;
  color: #999999;
  letter-spacing: 1px;
}
.article-item .posted {
  color: #ededed;
  font-size: 14px;
}
.article-item p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .article-item {
    width: 100%;
    float: none;
    position: relative;
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
  }
  .article-item .meta {
    min-height: auto;
    padding: 5%;
    background-color: #282b2d;
  }
}
.strip--frost .article-item,
.strip--light .article-item {
  color: #282b2d;
}
.strip--frost .article-item:hover,
.strip--light .article-item:hover {
  color: #1ca670;
}
@media (max-width: 767px) {
  .strip--frost .article-item .meta,
  .strip--light .article-item .meta {
    background-color: #ededed;
  }
}
.gallery-image--side {
  width: 100%;
}
.module-singlepost h1 {
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  word-wrap: break-word;
}
.module-singlepost header {
  margin-bottom: 80px;
  margin-bottom: 4.875rem;
}
.module-singlepost .icon-category {
  margin-right: 10px;
  margin-right: 0.625rem;
  font-size: 24px;
  font-size: 1.5rem;
}
.module-singlepost .date {
  color: #999999;
}
.module-singlepost .post-meta-author {
  padding-right: 20px;
  padding-right: 1.25rem;
  text-transform: uppercase;
}
.module-singlepost .post-meta-date {
  color: #999999;
}
@media (max-width: 767px) {
  .module-singlepost h1 {
    font-size: 32px;
    font-size: 2rem;
    line-height: 36px;
    line-height: 2.25rem;
  }
}
.module-singlepost--simple h1 {
  text-transform: none;
  line-height: 56px;
  line-height: 3.5rem;
}
@media (max-width: 1224px) {
  .post-default aside {
    width: 31.667%;
    margin-left: 9.1667%;
  }
}
.post-image img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .post-content img,
  .post-content iframe {
    width: 100%;
    height: auto;
  }
}
.single .heroUnit-content-text {
  color: #ffffff;
}
@media (min-width: 768px) and (max-width: 1095px) {
  .single .heroUnit-content-text {
    top: auto;
    bottom: 60px;
  }
}
@media (max-width: 767px) {
  .single .heroUnit-content-text {
    top: auto;
    bottom: 20px;
  }
}
.share-label {
  padding-right: 20px;
  padding-right: 1.25rem;
  color: #999999;
}
.post-social {
  text-align: right;
}
.post-social a {
  padding-left: 7px;
  color: #999999;
}
.post-social a:hover {
  color: #48e0a4;
}
.archive,
.page-template-archives-php {
  background-color: #282b2d;
}
.archive h2,
.page-template-archives-php h2 {
  color: #ffffff;
}
.post-type-archive-mt_press h2 {
  color: #333333;
}
.archive-wrapper {
  background-color: #1c1c1e;
  padding: 2rem 0;
}
.archiveWrapper--light {
  background-color: #ffffff;
}
.archive-list .post-image {
  margin: 0 0 20px 0;
}
.archive-list .archive-item {
  width: 50%;
  float: left;
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  letter-spacing: normal;
  font-weight: 300;
}
.archive-list .archive-item p {
  font-size: 14px;
  margin-bottom: 5px;
  color: #ffffff;
}
.archive-list .archive-item p:last-child {
  margin-bottom: 0;
}
.archive-list .archive-item .title {
  font-size: 18px;
}
.archive-list .archive-item .date {
  color: #ededed;
}
@media (max-width: 767px) {
  .archive-list .archive-item {
    width: auto;
    float: none;
  }
}
.archiveWrapper--light .archive-list .archive-item p {
  color: #333333;
}
.archive-paganation {
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  text-align: left;
}
.archive-paganation:before,
.archive-paganation:after {
  content: " ";
  display: table;
}
.archive-paganation:after {
  clear: both;
}
.archive-paganation a {
  color: #fff;
}
.archive-paganation .go-older {
  float: right;
}
.archive-paganation .go-newer {
  float: left;
}
@media (max-width: 767px) {
  .archive-paganation .t-hidden {
    display: none;
  }
}
.super-archives {
  margin: 0 auto;
}
.super-archives .grid-sizer {
  width: 33.3333%;
}
@media (max-width: 767px) {
  .super-archives .grid-sizer {
    width: 100%;
  }
}
.archive-month {
  width: 33.3333%;
  float: left;
}
.archive-month h2 {
  margin: 0;
}
@media (max-width: 767px) {
  .archive-month {
    width: 100%;
    float: none;
  }
}
.archive-month .archive-item {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  width: 50%;
  float: left;
}
.archive-month .archive-item .post-meta {
  position: absolute;
  bottom: -100%;
  width: 100%;
  height: 100%;
  padding: 10%;
  color: #f4f4f4;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  background-color: rgba(28, 28, 30, 0.95);
  -webkit-transition: bottom 200ms;
  -moz-transition: bottom 200ms;
  -o-transition: bottom 200ms;
  -ms-transition: bottom 200ms;
  transition: bottom 200ms;
}
.archive-month .archive-item .date {
  color: #ededed;
}
.archive-month .archive-item:hover .post-meta {
  bottom: 0;
}
.archive-month .archive-item:first-child {
  width: 100%;
}
.archive-month .archive-item:first-child .post-meta {
  padding: 5%;
  height: 40%;
  bottom: -40%;
}
.archive-month .archive-item:first-child:hover .post-meta {
  bottom: 0;
}
.archive-month img {
  width: 100%;
}
.archives-header {
  padding: 10px;
  text-align: center;
  background-color: #1c1c1e;
}
.archive-month:nth-child(2n + 2) .archives-header {
  background-color: #212123;
}
.simpleListItem {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #e6e6e6;
}
.simpleListItem p:last-child {
  margin-bottom: 0;
}
.simpleListItem .title {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
.simpleListItem .title a {
  color: #333333;
}
.simpleListItem:last-child {
  border-bottom: none;
}
.archivePaganation-press {
  padding: 0;
}
/**!
 * Email Subscriptions
 * Styleing code for email subscription forms
 * ========================================================================== */
/* ==========================================================================
   Header/Banner subscription form
   ========================================================================== */
/*.subscribe-frame {
	width: 100%;
	height: 75px;
	body {
		overflow: hidden;
	}
}

.header-close {
	font-size: 35px;
	top: 10px;
	position: absolute;
	cursor: pointer;
	z-index: 1;
	right: 20px;
	color: #000;
}

.newsletter-subscribe {
	position: relative;
	transition: all 2s ease;
	height: 80px;
	max-height: 80px;
	overflow: none;
	background: #C6F2E0;
}

.frame-up {
	max-height: 0;
}*/
/* ==========================================================================
  Footer subscription form (copied from novastrap)
  ========================================================================== */
.loader {
  display: none;
}
@media (max-width: 767px) (min-width: 768px) and (max-width: 1095px) {
  .signUpField {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .sign-up {
    display: block;
    width: 80%!important;
    position: relative;
    top: 20px;
    font-size: 20px;
    line-height: 37px;
    margin: 0 auto;
  }
  .signUpField {
    width: 60%;
  }
  .emailSubscribe .textInput--subscribe {
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 1095px) {
  .sign-up {
    display: block;
    height: 53px;
  }
}
.page-template-masthead-php {
  background-color: #1c1c1e;
}
.module-masthead .grid-row {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .module-masthead .grid-row {
    margin-bottom: 0;
  }
}
.masthead-author {
  margin-bottom: 20px;
}
.masthead-author .author-image {
  float: left;
  width: 64px;
}
.masthead-author .author-meta {
  width: auto;
  margin-left: 80px;
  margin-left: 5rem;
  padding: 0;
  padding-top: 9px;
  padding-top: 0.5625rem;
}
.masthead-author .author-title {
  font-size: 90%;
}
@media (max-width: 767px) {
  .masthead-author .author-image {
    width: 64px;
  }
  .masthead-author .author-meta {
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1095px) {
  .masthead-author .author-meta {
    padding-top: 0;
  }
}
.search-result {
  min-height: 250px;
  clear: both;
  margin-bottom: 50px;
}
.search-results .module-header h1 {
  font-size: 16px;
}
.search-articles {
  padding-top: 20px;
  padding-bottom: 20px;
}
.search-image {
  width: 100%;
  height: 197px;
}
.search-image img {
  width: 100%;
  height: auto;
}
.search-title {
  color: #fff;
  font-weight: 600;
}
.search-paganation {
  padding: 40px;
}
.search-post {
  padding-left: 40px;
  padding-right: 40px;
}
.search-image {
  width: 374px;
  height: 247px;
}
.search-container {
  position: relative;
  top: 10px;
  left: -10px;
}
.search-container label {
  background: #ededed;
  border-radius: 60px;
  z-index: 10000;
  position: absolute;
  width: 35px;
  height: 35px;
  top: 10px;
  left: 12px;
  transition: all 1s ease;
}
.search-container input {
  height: 25px;
  width: 21px;
  position: relative;
  left: 19px;
  top: 13px;
  z-index: 10000;
  transition: all 1s;
  border: none;
  background: none;
}
.search-container input:focus {
  width: 125px;
  border-left: none;
  border-top: none;
  border-bottom: none;
  border-right: none;
  left: 45px;
  height: 33px;
  top: 10px;
  outline-width: 0;
  background: none;
}
.search-container .search-icon i {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 6px;
  left: 10px;
  z-index: 1001;
}
.search-container input:focus + label {
  width: 185px;
  border: none;
  background: #ededed;
  z-index: 1000;
}
.no-result-image {
  width: 374px;
  height: 247px;
}
.no-result-image img {
  width: 100%;
  height: auto;
}
.u-no-break {
  white-space: nowrap;
}
.hidden {
  display: none;
}
.flexEmbed--hero {
  padding-bottom: 42.5%;
}
/*!
 *  Shame
 *
 *  Put your filth & hacks here.
 */
.socialShareBtns li a {
  width: 22px;
  display: inline-block;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 20px;
  line-height: 1.25rem;
}
.btn--default {
  color: #333;
}
.btn--default:hover,
.btn--default:focus,
.btn--default:active {
  color: #333;
}
