/* line 5, ../../../../../../../.rvm/gems/ruby-2.1.5/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../../../../../.rvm/gems/ruby-2.1.5/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../../../../.rvm/gems/ruby-2.1.5/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../../../../.rvm/gems/ruby-2.1.5/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../../../../.rvm/gems/ruby-2.1.5/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../../../../.rvm/gems/ruby-2.1.5/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../../../../.rvm/gems/ruby-2.1.5/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../../../../.rvm/gems/ruby-2.1.5/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../../../../.rvm/gems/ruby-2.1.5/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/* This stylesheet generated by Transfonter (http://transfonter.org) */
@font-face {
  font-family: 'Proxima Nova Regular';
  src: url("../fonts/ProximaNova-Regular.eot");
  src: url("../fonts/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Regular.woff2") format("woff2"), url("../fonts/ProximaNova-Regular.woff") format("woff"), url("../fonts/ProximaNova-Regular.ttf") format("truetype"), url("../fonts/ProximaNova-Regular.svg#../fonts/ProximaNova-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova Light';
  src: url("../fonts/ProximaNova-Light.eot");
  src: url("../fonts/ProximaNova-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Light.woff2") format("woff2"), url("../fonts/ProximaNova-Light.woff") format("woff"), url("../fonts/ProximaNova-Light.ttf") format("truetype"), url("../fonts/ProximaNova-Light.svg#../fonts/ProximaNova-Light") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova Semibold';
  src: url("../fonts/ProximaNova-Semibold.eot");
  src: url("../fonts/ProximaNova-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Semibold.woff2") format("woff2"), url("../fonts/ProximaNova-Semibold.woff") format("woff"), url("../fonts/ProximaNova-Semibold.ttf") format("truetype"), url("../fonts/ProximaNova-Semibold.svg#../fonts/ProximaNova-Semibold") format("svg");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova Bold';
  src: url("../fonts/ProximaNova-Bold.eot");
  src: url("../fonts/ProximaNova-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Bold.woff2") format("woff2"), url("../fonts/ProximaNova-Bold.woff") format("woff"), url("../fonts/ProximaNova-Bold.ttf") format("truetype"), url("../fonts/ProximaNova-Bold.svg#../fonts/ProximaNova-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
}
/* line 80, ../sass/_base.scss */
*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* line 88, ../sass/_base.scss */
body {
  font: 14px/1.2 "Proxima Nova Regular", sans-serif;
  color: #333;
  background: #fff;
}
@media screen and (max-width: 1116px) {
  /* line 88, ../sass/_base.scss */
  body {
    padding-top: 60px;
  }
}

/* line 97, ../sass/_base.scss */
a {
  color: inherit;
  text-decoration: none;
}

/* line 102, ../sass/_base.scss */
ul, ol {
  list-style: none;
}

/* line 106, ../sass/_base.scss */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 112, ../sass/_base.scss */
hr {
  border: 0;
  margin: 26px 0;
  height: 4px;
  background: url('../img/bg-lister.png?1448206140') repeat-x;
}
/* line 27, ../sass/_base.scss */
hr:after {
  content: '';
  display: table;
  clear: both;
}

/* line 120, ../sass/_base.scss */
.container {
  position: relative;
  display: block;
  float: none;
  width: 86%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px !important;
  padding-left: 10px !important;
  box-sizing: border-box;
}
/* line 27, ../sass/_base.scss */
.container:after {
  content: '';
  display: table;
  clear: both;
}
@media screen and (max-width: 1116px) {
  /* line 120, ../sass/_base.scss */
  .container {
    width: 100%;
  }
}

/* line 130, ../sass/_base.scss */
.heading-top {
  margin-bottom: 60px;
  font: 32px/60px "Proxima Nova Bold", sans-serif;
  text-transform: uppercase;
  color: #11325e;
  background: url('../img/bg-lister-blue.png?1448206140');
}
@media screen and (max-width: 1116px) {
  /* line 130, ../sass/_base.scss */
  .heading-top {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 1.2;
    padding: 12px 0;
  }
}

/* line 144, ../sass/_base.scss */
.post-edit-link {
  display: inline-block;
  padding: 6px 8px;
  color: #fff;
  background: #b71b4c;
}

/* line 151, ../sass/_base.scss */
.elm-button {
  display: inline-block;
  padding: 6px 8px;
  font: 14px "Proxima Nova Regular", sans-serif;
  text-transform: uppercase;
  color: #11325e;
  border: 2px solid #fa1e64;
  cursor: pointer;
  outline: none;
}
/* line 155, ../sass/_base.scss */
.elm-button:hover {
  background: #fa1e64;
  color: white;
}

/* line 162, ../sass/_base.scss */
.container.home .page-sidebar {
  border-left: 1px solid #ebebeb;
}

/* line 3, ../sass/layout/_header.scss */
.page-header {
  /* Desktop */
  /* Mobile */
}
@media screen and (max-width: 1116px) {
  /* line 3, ../sass/layout/_header.scss */
  .page-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 1px #eaeaea;
  }
  /* line 12, ../sass/layout/_header.scss */
  .page-header .container {
    padding: 0 !important;
  }
}
/* line 18, ../sass/layout/_header.scss */
.page-header .logo {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 33.33333%;
  margin-left: 0%;
  margin-right: 0%;
}
/* line 344, ../sass/jeet/_grid.scss */
.page-header .logo:before, .page-header .logo:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.page-header .logo:after {
  clear: both;
}
@media screen and (max-width: 1116px) {
  /* line 18, ../sass/layout/_header.scss */
  .page-header .logo {
    display: none;
  }
}
/* line 24, ../sass/layout/_header.scss */
.page-header .navbar {
  float: right;
  padding: 10px 0;
}
@media screen and (max-width: 1116px) {
  /* line 24, ../sass/layout/_header.scss */
  .page-header .navbar {
    display: none;
  }
}
/* line 30, ../sass/layout/_header.scss */
.page-header .navbar ul.menu {
  clear: both;
  display: table;
}
/* line 33, ../sass/layout/_header.scss */
.page-header .navbar ul.menu li {
  display: table-cell;
  padding-left: 20px;
}
/* line 37, ../sass/layout/_header.scss */
.page-header .navbar ul.menu a {
  display: block;
  font: 16px "Proxima Nova Bold", sans-serif;
  text-transform: uppercase;
  border-bottom: 2px solid #19c0e9;
  color: #797979;
}
/* line 43, ../sass/layout/_header.scss */
.page-header .navbar ul.menu a:hover, .page-header .navbar ul.menu a.is-active {
  color: #11325e;
}
/* line 45, ../sass/layout/_header.scss */
.page-header .navbar ul.menu .current_page_item a {
  color: #11325e;
}
/* line 49, ../sass/layout/_header.scss */
.page-header .navbar .navbar-actions {
  float: right;
  margin-bottom: 18px;
}
/* line 53, ../sass/layout/_header.scss */
.page-header .navbar .search-box {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 99;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  visibility: hidden;
}
/* line 62, ../sass/layout/_header.scss */
.page-header .navbar .search-box .fa-times {
  position: absolute;
  color: #12768f;
  font-size: 40px;
  top: 30px;
  right: 30px;
}
/* line 69, ../sass/layout/_header.scss */
.page-header .navbar .search-box .search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 998;
}
/* line 76, ../sass/layout/_header.scss */
.page-header .navbar .search-box:target {
  visibility: visible;
}
/* line 78, ../sass/layout/_header.scss */
.page-header .navbar .search-box:target .search-modal {
  top: 40%;
  opacity: 1;
  visibility: visible;
}
/* line 84, ../sass/layout/_header.scss */
.page-header .navbar .search-box .search-modal {
  position: absolute;
  top: -50%;
  width: 100%;
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
}
/* line 95, ../sass/layout/_header.scss */
.page-header .navbar .search-box .search {
  position: relative;
  width: 560px;
  margin: 0 auto;
  height: 60px;
  line-height: 60px;
}
/* line 102, ../sass/layout/_header.scss */
.page-header .navbar .search-box .search-input {
  width: 100%;
  height: 60px;
  padding: 0 80px 0 20px;
  border: 0;
  outline: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: #999;
}
/* line 68, ../sass/_base.scss */
.page-header .navbar .search-box .search-input::-webkit-input-placeholder {
  font-family: "Proxima Nova Regular", sans-serif;
}
/* line 69, ../sass/_base.scss */
.page-header .navbar .search-box .search-input:-moz-placeholder {
  font-family: "Proxima Nova Regular", sans-serif;
}
/* line 70, ../sass/_base.scss */
.page-header .navbar .search-box .search-input::-moz-placeholder {
  font-family: "Proxima Nova Regular", sans-serif;
}
/* line 71, ../sass/_base.scss */
.page-header .navbar .search-box .search-input:-ms-input-placeholder {
  font-family: "Proxima Nova Regular", sans-serif;
}
/* line 115, ../sass/layout/_header.scss */
.page-header .navbar .search-box .search-submit {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: block;
  width: 60px;
  height: 60px;
  border: 0;
  font-size: 22px;
  background: #b71b4c;
  color: #fff;
  cursor: pointer;
  outline: none;
}
/* line 131, ../sass/layout/_header.scss */
.page-header .navbar .search-box-open {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  color: #b71b4c;
  margin-left: 4px;
}
/* line 138, ../sass/layout/_header.scss */
.page-header .navbar .language-option {
  position: relative;
  display: inline-block;
  border: 2px solid #ebebeb;
}
/* line 142, ../sass/layout/_header.scss */
.page-header .navbar .language-option:target .fa {
  display: none;
}
/* line 145, ../sass/layout/_header.scss */
.page-header .navbar .language-option .fa {
  position: absolute;
  top: 0;
  right: 6px;
  z-index: 0;
  font-size: 16px;
}
/* line 151, ../sass/layout/_header.scss */
.page-header .navbar .language-option select {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2px 18px 2px 5px;
  border: 0;
  font: 12px "Proxima Nova Semibold", sans-serif;
  color: #7a7a7a;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  background: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
}
/* line 164, ../sass/layout/_header.scss */
.page-header .navbar .language-option select option {
  cursor: pointer;
}
/* line 173, ../sass/layout/_header.scss */
.page-header .logo-mobile {
  display: none;
  height: 60px;
}
@media screen and (max-width: 1116px) {
  /* line 173, ../sass/layout/_header.scss */
  .page-header .logo-mobile {
    display: block;
    float: left;
    max-width: 216px;
  }
  /* line 27, ../sass/_base.scss */
  .page-header .logo-mobile:after {
    content: '';
    display: table;
    clear: both;
  }
}
/* line 183, ../sass/layout/_header.scss */
.page-header .navbar-mobile {
  display: none;
  float: right;
  width: 60px;
  height: 60px;
  background: #fa1e64;
}
@media screen and (max-width: 1116px) {
  /* line 183, ../sass/layout/_header.scss */
  .page-header .navbar-mobile {
    display: block;
  }
}
/* line 192, ../sass/layout/_header.scss */
.page-header .navbar-mobile .toggle-menu {
  position: relative;
  z-index: 9;
  display: none;
  width: 60px;
  height: 60px;
  font-size: 34px;
  text-align: center;
}
/* line 200, ../sass/layout/_header.scss */
.page-header .navbar-mobile .toggle-menu .fa {
  line-height: 60px;
}
/* line 202, ../sass/layout/_header.scss */
.page-header .navbar-mobile .toggle-menu .fa.fa-bars {
  color: #fff;
}
/* line 205, ../sass/layout/_header.scss */
.page-header .navbar-mobile .toggle-menu .fa.fa-times {
  color: #19c0e9;
}
/* line 210, ../sass/layout/_header.scss */
.page-header .navbar-mobile .menu-mobile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  background: #1d252d;
}
/* line 219, ../sass/layout/_header.scss */
.page-header .navbar-mobile .menu-mobile li {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #363940;
}
/* line 223, ../sass/layout/_header.scss */
.page-header .navbar-mobile .menu-mobile li.logo-mobile-list {
  border-top: 0;
  border-bottom: 0;
  padding-bottom: 4px;
  display: block;
  background: url('../img/bg-lister-pink.png?1448206140') repeat-x left bottom;
}
/* line 230, ../sass/layout/_header.scss */
.page-header .navbar-mobile .menu-mobile li a {
  display: block;
  font-size: 14px "Proxima Nova Regular", sans-serif;
  line-height: 60px;
  padding: 0 14px 0;
}
/* line 236, ../sass/layout/_header.scss */
.page-header .navbar-mobile .menu-mobile li.lang a {
  display: inline-block;
  width: 80px;
  height: 30px;
  padding: 0 10px;
  margin-left: 10px;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #fff;
}
/* line 247, ../sass/layout/_header.scss */
.page-header .navbar-mobile .menu-mobile li.lang span {
  display: inline-block;
  margin-left: 14px;
  font: 10px "Proxima Nova Bold", sans-serif;
  line-height: 60px;
}
/* line 253, ../sass/layout/_header.scss */
.page-header .navbar-mobile .menu-mobile li.wp-menu-list {
  border-bottom: 0;
}
/* line 256, ../sass/layout/_header.scss */
.page-header .navbar-mobile .menu-mobile li .search {
  padding: 12px 14px 22px;
}
/* line 258, ../sass/layout/_header.scss */
.page-header .navbar-mobile .menu-mobile li .search-input {
  width: 100%;
  padding-left: 30px;
  line-height: 30px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #fff;
  background: url('../img/icon-search.png?1449110012') no-repeat left center transparent;
  outline: none;
}
/* line 68, ../sass/_base.scss */
.page-header .navbar-mobile .menu-mobile li .search-input::-webkit-input-placeholder {
  font: 12px "Proxima Nova Semibold", sans-serif;
  line-height: 30px;
  text-transform: uppercase;
  opacity: 1;
  color: #606066;
}
/* line 69, ../sass/_base.scss */
.page-header .navbar-mobile .menu-mobile li .search-input:-moz-placeholder {
  font: 12px "Proxima Nova Semibold", sans-serif;
  line-height: 30px;
  text-transform: uppercase;
  opacity: 1;
  color: #606066;
}
/* line 70, ../sass/_base.scss */
.page-header .navbar-mobile .menu-mobile li .search-input::-moz-placeholder {
  font: 12px "Proxima Nova Semibold", sans-serif;
  line-height: 30px;
  text-transform: uppercase;
  opacity: 1;
  color: #606066;
}
/* line 71, ../sass/_base.scss */
.page-header .navbar-mobile .menu-mobile li .search-input:-ms-input-placeholder {
  font: 12px "Proxima Nova Semibold", sans-serif;
  line-height: 30px;
  text-transform: uppercase;
  opacity: 1;
  color: #606066;
}
/* line 278, ../sass/layout/_header.scss */
.page-header .navbar-mobile .menu-mobile li .search-submit {
  display: none;
}
/* line 284, ../sass/layout/_header.scss */
.page-header .navbar-mobile:not(:target) .toggle-menu:first-of-type, .page-header .navbar-mobile:target .toggle-menu:last-of-type {
  display: block;
}
/* line 288, ../sass/layout/_header.scss */
.page-header .navbar-mobile:target .menu-mobile {
  display: block;
}

/* line 1, ../sass/layout/_footer.scss */
.subfooter {
  position: relative;
  margin-bottom: -80px;
  padding: 50px 0;
  background: #1e252d;
}
@media screen and (max-width: 1116px) {
  /* line 1, ../sass/layout/_footer.scss */
  .subfooter {
    padding: 40px 0;
    margin-bottom: -40px;
  }
}
/* line 10, ../sass/layout/_footer.scss */
.subfooter_box {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%;
}
/* line 344, ../sass/jeet/_grid.scss */
.subfooter_box:before, .subfooter_box:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.subfooter_box:after {
  clear: both;
}
/* line 58, ../sass/jeet/_grid.scss */
.subfooter_box:last-child {
  margin-right: 0%;
}
@media screen and (max-width: 1116px) {
  /* line 10, ../sass/layout/_footer.scss */
  .subfooter_box {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 265, ../sass/jeet/_grid.scss */
  .subfooter_box:first-child {
    margin-left: auto;
  }
  /* line 269, ../sass/jeet/_grid.scss */
  .subfooter_box:last-child {
    margin-right: auto;
  }
}
/* line 15, ../sass/layout/_footer.scss */
.subfooter_box .nuclear-map-cta {
  display: block;
  width: 100%;
  height: 281px;
  background-image: url(../img/map-energy-1.png);
  background-position: center center;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
/* line 23, ../sass/layout/_footer.scss */
.subfooter_box_title {
  position: relative;
  font: 24px "Proxima Nova Semibold", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
/* line 28, ../sass/layout/_footer.scss */
.subfooter_box_title:before {
  content: '';
  display: block;
  height: 4px;
  margin-bottom: 14px;
  background: url('../img/bg-lister-pink.png?1448206140') repeat-x;
}
/* line 35, ../sass/layout/_footer.scss */
.subfooter_box_title a:hover {
  -moz-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
  -webkit-transition: color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: color 0.2s ease 0s;
}
/* line 46, ../sass/_base.scss */
.subfooter_box_title a:hover:hover {
  color: #19c0e9;
}
/* line 39, ../sass/layout/_footer.scss */
.subfooter_box_list {
  margin-top: 20px;
  font: 12px "Proxima Nova Regular", sans-serif;
  color: white;
}
/* line 43, ../sass/layout/_footer.scss */
.subfooter_box_list li {
  margin-bottom: 20px;
}
/* line 45, ../sass/layout/_footer.scss */
.subfooter_box_list li:last-child {
  margin-bottom: 0;
}
/* line 48, ../sass/layout/_footer.scss */
.subfooter_box_list li:last-child a {
  font: 12px "Proxima Nova Bold", sans-serif;
  text-transform: uppercase;
}
/* line 51, ../sass/layout/_footer.scss */
.subfooter_box_list li:last-child a:after {
  content: "\f061";
  margin-left: 10px;
  font-family: FontAwesome;
  font-size: 12px;
  color: #19c0e9;
}
/* line 58, ../sass/layout/_footer.scss */
.subfooter_box_list li:last-child a:hover:after {
  color: #fa1e64;
}
/* line 63, ../sass/layout/_footer.scss */
.subfooter_box_list span {
  display: block;
  margin-bottom: 4px;
  font: 12px "Proxima Nova Bold", sans-serif;
  text-transform: uppercase;
}
/* line 70, ../sass/layout/_footer.scss */
.subfooter_box_list.separado a, .subfooter_box_list.separado span {
  display: inline-block !important;
}
/* line 73, ../sass/layout/_footer.scss */
.subfooter_box_list.separado span {
  width: 60px;
  height: 20px;
}
/* line 79, ../sass/layout/_footer.scss */
.subfooter_box_image {
  background: #11325e;
}
/* line 81, ../sass/layout/_footer.scss */
.subfooter_box_image img:hover {
  opacity: .8;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 1116px) {
  /* line 79, ../sass/layout/_footer.scss */
  .subfooter_box_image {
    padding: 40px 0;
  }
  /* line 87, ../sass/layout/_footer.scss */
  .subfooter_box_image img {
    margin: 0 auto;
  }
}

/* line 97, ../sass/layout/_footer.scss */
.page-footer {
  margin-top: 80px;
  padding: 26px 0;
  background: #edeff2;
}
@media screen and (max-width: 1116px) {
  /* line 97, ../sass/layout/_footer.scss */
  .page-footer {
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 40px;
  }
}
/* line 106, ../sass/layout/_footer.scss */
.page-footer .container {
  *zoom: 1;
  width: auto;
  max-width: 1220px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  min-width: 1024px;
}
/* line 344, ../sass/jeet/_grid.scss */
.page-footer .container:before, .page-footer .container:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.page-footer .container:after {
  clear: both;
}
@media screen and (max-width: 1116px) {
  /* line 106, ../sass/layout/_footer.scss */
  .page-footer .container {
    min-width: initial;
  }
}
/* line 113, ../sass/layout/_footer.scss */
.page-footer .footer-logo {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%;
  margin-top: 16px;
}
/* line 344, ../sass/jeet/_grid.scss */
.page-footer .footer-logo:before, .page-footer .footer-logo:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.page-footer .footer-logo:after {
  clear: both;
}
/* line 58, ../sass/jeet/_grid.scss */
.page-footer .footer-logo:last-child {
  margin-right: 0%;
}
@media screen and (max-width: 1116px) {
  /* line 113, ../sass/layout/_footer.scss */
  .page-footer .footer-logo {
    display: none;
  }
}
/* line 119, ../sass/layout/_footer.scss */
.page-footer .footer-logo_mobile {
  display: none;
}
@media screen and (max-width: 1116px) {
  /* line 119, ../sass/layout/_footer.scss */
  .page-footer .footer-logo_mobile {
    display: block;
  }
  /* line 123, ../sass/layout/_footer.scss */
  .page-footer .footer-logo_mobile img {
    margin: 0 auto;
  }
}
/* line 129, ../sass/layout/_footer.scss */
.page-footer .footer-content {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 14.16667%;
  margin-left: 0%;
  margin-right: 3%;
  padding-top: 14px;
  border-top: 4px solid #19c0e9;
}
/* line 344, ../sass/jeet/_grid.scss */
.page-footer .footer-content:before, .page-footer .footer-content:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.page-footer .footer-content:after {
  clear: both;
}
/* line 58, ../sass/jeet/_grid.scss */
.page-footer .footer-content:last-child {
  margin-right: 0%;
}
@media screen and (max-width: 1116px) {
  /* line 129, ../sass/layout/_footer.scss */
  .page-footer .footer-content {
    display: none;
  }
  /* line 135, ../sass/layout/_footer.scss */
  .page-footer .footer-content:nth-child(5) {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    border-top: 0px;
  }
  /* line 265, ../sass/jeet/_grid.scss */
  .page-footer .footer-content:nth-child(5):first-child {
    margin-left: auto;
  }
  /* line 269, ../sass/jeet/_grid.scss */
  .page-footer .footer-content:nth-child(5):last-child {
    margin-right: auto;
  }
}
/* line 141, ../sass/layout/_footer.scss */
.page-footer .footer-content span {
  display: block;
  margin-bottom: 8px;
  font: 12px "Proxima Nova Light", sans-serif;
  text-transform: uppercase;
  color: #797979;
}
/* line 148, ../sass/layout/_footer.scss */
.page-footer .footer-content .formBuilderForm {
  position: relative;
  width: 100%;
  height: 30px;
}
/* line 152, ../sass/layout/_footer.scss */
.page-footer .footer-content .formBuilderForm input[name="formBuilderForm[Email]"] {
  padding: 0 10px;
  line-height: 30px;
}
/* line 156, ../sass/layout/_footer.scss */
.page-footer .footer-content .formBuilderForm input[name="formBuilderForm[Submit]"] {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: #fa1e64;
}
/* line 164, ../sass/layout/_footer.scss */
.page-footer .menu {
  font: 12px "Proxima Nova Semibold", sans-serif;
  text-transform: uppercase;
  color: #11325e;
}
/* line 168, ../sass/layout/_footer.scss */
.page-footer .menu li {
  margin-bottom: 14px;
}
/* line 170, ../sass/layout/_footer.scss */
.page-footer .menu li:last-child {
  margin-bottom: 0;
}
/* line 174, ../sass/layout/_footer.scss */
.page-footer .menu a {
  -moz-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
  -webkit-transition: color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: color 0.2s ease 0s;
}
/* line 46, ../sass/_base.scss */
.page-footer .menu a:hover {
  color: #19c0e9;
}
/* line 178, ../sass/layout/_footer.scss */
.page-footer .light .menu {
  font-family: "Proxima Nova Light", sans-serif;
}
/* line 180, ../sass/layout/_footer.scss */
.page-footer .light .menu a {
  -moz-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
  -webkit-transition: color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: color 0.2s ease 0s;
}
/* line 46, ../sass/_base.scss */
.page-footer .light .menu a:hover {
  color: #19c0e9;
}
/* line 185, ../sass/layout/_footer.scss */
.page-footer .footer-social li {
  margin-bottom: 10px;
}
/* line 188, ../sass/layout/_footer.scss */
.page-footer .footer-social a {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
}
/* line 192, ../sass/layout/_footer.scss */
.page-footer .footer-social a:hover .fa {
  color: #11325e !important;
}
/* line 196, ../sass/layout/_footer.scss */
.page-footer .footer-social .fa {
  width: 20px;
  font-size: 15px;
  color: #19c0e9;
}

/* line 1, ../sass/layout/_sidebar.scss */
.page-sidebar {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%;
  padding-left: 40px;
}
/* line 344, ../sass/jeet/_grid.scss */
.page-sidebar:before, .page-sidebar:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.page-sidebar:after {
  clear: both;
}
/* line 58, ../sass/jeet/_grid.scss */
.page-sidebar:last-child {
  margin-right: 0%;
}
@media screen and (max-width: 1116px) {
  /* line 1, ../sass/layout/_sidebar.scss */
  .page-sidebar {
    display: block;
    width: 100%;
    padding: 20px 0 0;
    position: static !important;
  }
}
/* line 11, ../sass/layout/_sidebar.scss */
.page-sidebar hr {
  margin: 20px 0;
}
/* line 14, ../sass/layout/_sidebar.scss */
.page-sidebar .heading {
  margin-bottom: 10px;
  font: 24px "Proxima Nova Bold", sans-serif;
  text-transform: uppercase;
  color: #11325e;
}
/* line 20, ../sass/layout/_sidebar.scss */
.page-sidebar .newsletter-box {
  display: block;
  height: auto;
  padding: 14px 20px;
  background-image: url('../img/bg-form-email-small.jpg?1449110012');
  background-size: cover;
}
/* line 26, ../sass/layout/_sidebar.scss */
.page-sidebar .newsletter-box_grid {
  display: block;
  width: 100%;
}
/* line 30, ../sass/layout/_sidebar.scss */
.page-sidebar .newsletter-box label {
  font-size: 18px;
  margin-bottom: 10px;
}
/* line 34, ../sass/layout/_sidebar.scss */
.page-sidebar .newsletter-box fieldset {
  padding: 0;
}
/* line 39, ../sass/layout/_sidebar.scss */
.page-sidebar .twitter-box_title {
  font-size: 16px;
  line-height: 44px;
}
/* line 42, ../sass/layout/_sidebar.scss */
.page-sidebar .twitter-box_title a {
  padding: calc(44px /2 - 10px) 0;
}
/* line 46, ../sass/layout/_sidebar.scss */
.page-sidebar .twitter-box_wrap {
  margin: 10px;
  padding: 10px;
}

/* line 1, ../sass/layout/_post-thumb.scss */
.page-content {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 65.66667%;
  margin-left: 0%;
  margin-right: 3%;
}
/* line 344, ../sass/jeet/_grid.scss */
.page-content:before, .page-content:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.page-content:after {
  clear: both;
}
/* line 58, ../sass/jeet/_grid.scss */
.page-content:last-child {
  margin-right: 0%;
}

@media screen and (max-width: 1116px) {
  /* line 1, ../sass/layout/_post-thumb.scss */
  .page-content {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 265, ../sass/jeet/_grid.scss */
  .page-content:first-child {
    margin-left: auto;
  }
  /* line 269, ../sass/jeet/_grid.scss */
  .page-content:last-child {
    margin-right: auto;
  }
}

/* line 8, ../sass/layout/_post-thumb.scss */
.page-featured {
  max-width: 1600px;
  min-width: 1024px;
  margin: 0 auto;
}
/* line 27, ../sass/_base.scss */
.page-featured:after {
  content: '';
  display: table;
  clear: both;
}
@media screen and (max-width: 1116px) {
  /* line 8, ../sass/layout/_post-thumb.scss */
  .page-featured {
    position: relative;
    min-width: initial;
    overflow: hidden;
  }
}
/* line 18, ../sass/layout/_post-thumb.scss */
.page-featured .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 10px;
  text-align: center;
}
/* line 24, ../sass/layout/_post-thumb.scss */
.page-featured .slick-dots li {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  margin: 0 5px;
  border-radius: 500px;
  background: transparent;
  overflow: hidden;
}
/* line 33, ../sass/layout/_post-thumb.scss */
.page-featured .slick-dots li button {
  display: block;
  width: inherit;
  height: inherit;
  opacity: 0;
}
/* line 39, ../sass/layout/_post-thumb.scss */
.page-featured .slick-dots li.slick-active {
  background: #fa1e64;
  border: 1px solid #fa1e64;
}

/* line 48, ../sass/layout/_post-thumb.scss */
.page-events > .container {
  padding: 0 4%;
}

/* line 53, ../sass/layout/_post-thumb.scss */
.posts-wrap {
  *zoom: 1;
}
/* line 344, ../sass/jeet/_grid.scss */
.posts-wrap:before, .posts-wrap:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.posts-wrap:after {
  clear: both;
}
/* line 55, ../sass/layout/_post-thumb.scss */
.posts-wrap hr {
  float: left;
  width: 100%;
  clear: both;
  margin-top: 16px;
}
@media screen and (max-width: 1116px) {
  /* line 55, ../sass/layout/_post-thumb.scss */
  .posts-wrap hr {
    float: none;
    margin-top: 0;
  }
}

/* line 27, ../sass/_base.scss */
.post-event:after {
  content: '';
  display: table;
  clear: both;
}
/* line 70, ../sass/layout/_post-thumb.scss */
.post-event_image {
  float: left;
  margin-right: 20px;
}
/* line 73, ../sass/layout/_post-thumb.scss */
.post-event_image ~ * {
  overflow: hidden;
}
@media screen and (max-width: 1116px) {
  /* line 70, ../sass/layout/_post-thumb.scss */
  .post-event_image {
    float: none;
    margin: 0;
  }
  /* line 79, ../sass/layout/_post-thumb.scss */
  .post-event_image img {
    margin: 0 auto 20px;
  }
}
/* line 84, ../sass/layout/_post-thumb.scss */
.post-event_date {
  font: 16px "Proxima Nova Regular", sans-serif;
  color: #11325e;
}
/* line 88, ../sass/layout/_post-thumb.scss */
.post-event_title {
  margin: 6px 0;
  font: 26px "Proxima Nova Bold", sans-serif;
  text-transform: uppercase;
  color: #11325e;
}
@media screen and (max-width: 1116px) {
  /* line 88, ../sass/layout/_post-thumb.scss */
  .post-event_title {
    font-size: 24px;
  }
}
/* line 97, ../sass/layout/_post-thumb.scss */
.post-event_local, .post-event_description {
  font: 14px "Proxima Nova Regular", sans-serif;
  color: #555;
}
/* line 103, ../sass/layout/_post-thumb.scss */
.post-event_description p {
  margin: 20px 0;
}
/* line 106, ../sass/layout/_post-thumb.scss */
.post-event_description a {
  display: inline-block;
  padding: 6px 8px;
  font: 14px "Proxima Nova Regular", sans-serif;
  text-transform: uppercase;
  color: #11325e;
  border: 2px solid #fa1e64;
  -moz-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
  -webkit-transition: color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: color 0.2s ease 0s;
  -moz-transition: background-color 0.2s ease 0s;
  -o-transition: background-color 0.2s ease 0s;
  -webkit-transition: background-color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: background-color 0.2s ease 0s;
}
/* line 46, ../sass/_base.scss */
.post-event_description a:hover {
  color: #fff;
}
/* line 53, ../sass/_base.scss */
.post-event_description a:hover {
  background-color: #fa1e64;
}
@media screen and (max-width: 1116px) {
  /* line 106, ../sass/layout/_post-thumb.scss */
  .post-event_description a {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* line 27, ../sass/_base.scss */
.post-list:after {
  content: '';
  display: table;
  clear: both;
}
/* line 122, ../sass/layout/_post-thumb.scss */
.post-list_image {
  float: left;
  width: 275px;
  overflow: hidden;
  margin-right: 20px;
}
/* line 127, ../sass/layout/_post-thumb.scss */
.post-list_image ~ * {
  overflow: hidden;
}
/* line 130, ../sass/layout/_post-thumb.scss */
.post-list_image:hover {
  opacity: .8;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 1116px) {
  /* line 122, ../sass/layout/_post-thumb.scss */
  .post-list_image {
    float: none;
    width: auto;
    margin: 0 auto 10px;
  }
}
/* line 140, ../sass/layout/_post-thumb.scss */
.post-list_head {
  font-size: 10px;
  text-transform: uppercase;
  color: #555;
}
/* line 144, ../sass/layout/_post-thumb.scss */
.post-list_head .country {
  color: #fa1e64;
  -moz-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
  -webkit-transition: color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: color 0.2s ease 0s;
}
/* line 46, ../sass/_base.scss */
.post-list_head .country:hover {
  color: #b71b4c;
}
/* line 149, ../sass/layout/_post-thumb.scss */
.post-list_title {
  margin: 10px 0;
  font: 28px "Proxima Nova Semibold", sans-serif;
  color: #11325e;
  -moz-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
  -webkit-transition: color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: color 0.2s ease 0s;
}
/* line 46, ../sass/_base.scss */
.post-list_title:hover {
  color: #19c0e9;
}
/* line 154, ../sass/layout/_post-thumb.scss */
.post-list_title > a {
  display: block;
}
/* line 158, ../sass/layout/_post-thumb.scss */
.post-list_tags {
  font-size: 10px;
  text-transform: uppercase;
  color: #000;
}
/* line 162, ../sass/layout/_post-thumb.scss */
.post-list_tags li {
  display: inline-block;
  margin: 0 8px 10px 0;
}
/* line 166, ../sass/layout/_post-thumb.scss */
.post-list_tags a {
  display: inline-block;
  padding: 2px 4px;
  background: #f1f1f1;
  -moz-transition: background-color 0.2s ease 0s;
  -o-transition: background-color 0.2s ease 0s;
  -webkit-transition: background-color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: background-color 0.2s ease 0s;
}
/* line 53, ../sass/_base.scss */
.post-list_tags a:hover {
  background-color: #cacaca;
}
/* line 173, ../sass/layout/_post-thumb.scss */
.post-list.post-related {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%;
}
/* line 344, ../sass/jeet/_grid.scss */
.post-list.post-related:before, .post-list.post-related:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.post-list.post-related:after {
  clear: both;
}
/* line 58, ../sass/jeet/_grid.scss */
.post-list.post-related:last-child {
  margin-right: 0%;
}
@media screen and (max-width: 1116px) {
  /* line 173, ../sass/layout/_post-thumb.scss */
  .post-list.post-related {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  /* line 265, ../sass/jeet/_grid.scss */
  .post-list.post-related:first-child {
    margin-left: auto;
  }
  /* line 269, ../sass/jeet/_grid.scss */
  .post-list.post-related:last-child {
    margin-right: auto;
  }
  /* line 178, ../sass/layout/_post-thumb.scss */
  .post-list.post-related:last-child {
    margin-bottom: 0;
  }
}
/* line 182, ../sass/layout/_post-thumb.scss */
.post-list.post-related .post-list_image {
  float: none;
  width: 100%;
  max-height: 200px;
  overflow: hidden;
  margin: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 1116px) {
  /* line 182, ../sass/layout/_post-thumb.scss */
  .post-list.post-related .post-list_image {
    margin-bottom: 10px;
  }
}
/* line 193, ../sass/layout/_post-thumb.scss */
.post-list.post-related .post-list_title {
  margin: 4px 0;
  font: 20px "Proxima Nova Semibold", sans-serif;
  color: #555;
  -moz-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
  -webkit-transition: color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: color 0.2s ease 0s;
}
/* line 46, ../sass/_base.scss */
.post-list.post-related .post-list_title:hover {
  color: #11325e;
}
/* line 200, ../sass/layout/_post-thumb.scss */
.post-list.post-landing {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
}
/* line 344, ../sass/jeet/_grid.scss */
.post-list.post-landing:before, .post-list.post-landing:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.post-list.post-landing:after {
  clear: both;
}
/* line 50, ../sass/jeet/_grid.scss */
.post-list.post-landing:nth-of-type(2n) {
  margin-right: 0%;
  float: right;
}
/* line 54, ../sass/jeet/_grid.scss */
.post-list.post-landing:nth-of-type(2n + 1) {
  clear: both;
}
@media screen and (max-width: 1116px) {
  /* line 200, ../sass/layout/_post-thumb.scss */
  .post-list.post-landing {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }
  /* line 265, ../sass/jeet/_grid.scss */
  .post-list.post-landing:first-child {
    margin-left: auto;
  }
  /* line 269, ../sass/jeet/_grid.scss */
  .post-list.post-landing:last-child {
    margin-right: auto;
  }
}
/* line 206, ../sass/layout/_post-thumb.scss */
.post-list.post-landing .post-list_image {
  float: none;
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 1116px) {
  /* line 206, ../sass/layout/_post-thumb.scss */
  .post-list.post-landing .post-list_image {
    height: auto;
  }
}
/* line 214, ../sass/layout/_post-thumb.scss */
.post-list.post-landing .post-list_head {
  margin-top: 16px;
}
/* line 217, ../sass/layout/_post-thumb.scss */
.post-list.post-landing .post-list_title {
  margin-top: 4px;
  font-size: 24px;
  line-height: 1.2;
}
@media screen and (max-width: 1116px) {
  /* line 223, ../sass/layout/_post-thumb.scss */
  .post-list.post-landing-featured {
    display: none;
  }
}
/* line 227, ../sass/layout/_post-thumb.scss */
.post-list.post-landing-featured .post-list_image {
  position: relative;
  float: none;
  width: 100%;
  height: 300px;
  max-height: 100%;
  margin-bottom: 10px;
}
@media screen and (max-width: 1116px) {
  /* line 227, ../sass/layout/_post-thumb.scss */
  .post-list.post-landing-featured .post-list_image {
    height: auto;
  }
}
/* line 238, ../sass/layout/_post-thumb.scss */
.post-list.post-landing-featured .post-list_title {
  margin-top: 4px;
}

/* line 245, ../sass/layout/_post-thumb.scss */
.post-featured {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 33.33333%;
  margin-left: 0%;
  margin-right: 0%;
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center center;
}
/* line 344, ../sass/jeet/_grid.scss */
.post-featured:before, .post-featured:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.post-featured:after {
  clear: both;
}
/* line 251, ../sass/layout/_post-thumb.scss */
.post-featured a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
/* line 257, ../sass/layout/_post-thumb.scss */
.post-featured .title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 20px 30px;
  font: 30px "Proxima Nova Semibold", sans-serif;
  color: #fff;
}
@media screen and (max-width: 1116px) {
  /* line 257, ../sass/layout/_post-thumb.scss */
  .post-featured .title {
    margin-bottom: 24px;
  }
}
/* line 268, ../sass/layout/_post-thumb.scss */
.post-featured:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: url('../img/bg-img-featured.png?1449110069');
  opacity: .2;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease;
  -webkit-transition-delay: 0s;
  transition: all 0.3s ease 0s;
}
/* line 279, ../sass/layout/_post-thumb.scss */
.post-featured:hover:after {
  opacity: .4;
}

/* line 285, ../sass/layout/_post-thumb.scss */
.post-most-read {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: #d8d8d8 dotted 1px;
}
/* line 27, ../sass/_base.scss */
.post-most-read:after {
  content: '';
  display: table;
  clear: both;
}
/* line 299, ../sass/layout/_post-thumb.scss */
.post-most-read_image {
  float: left;
  display: block;
  height: 70px;
  width: 80px;
  background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  margin-right: 10px;
}
/* line 309, ../sass/layout/_post-thumb.scss */
.post-most-read_image ~ * {
  overflow: hidden;
}
/* line 313, ../sass/layout/_post-thumb.scss */
.post-most-read_link {
  color: #555;
  -moz-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
  -webkit-transition: color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: color 0.2s ease 0s;
  font-size: 14px;
}
/* line 46, ../sass/_base.scss */
.post-most-read_link:hover {
  color: #11325e;
}
/* line 317, ../sass/layout/_post-thumb.scss */
.post-most-read_link a {
  display: block;
}
/* line 321, ../sass/layout/_post-thumb.scss */
.post-most-read .meta {
  margin-bottom: 5px;
  display: none;
}
/* line 324, ../sass/layout/_post-thumb.scss */
.post-most-read .meta .tags {
  color: #fa1e64;
  font-size: 11px;
  text-transform: uppercase;
}
/* line 329, ../sass/layout/_post-thumb.scss */
.post-most-read .meta .datetime {
  color: #555555;
  font-size: 11px;
  text-transform: uppercase;
}

/* line 339, ../sass/layout/_post-thumb.scss */
.homepage .post-most-read .meta {
  display: block;
}
/* line 342, ../sass/layout/_post-thumb.scss */
.homepage .post-most-read_image {
  float: none;
  max-height: none;
  height: 160px !important;
  width: 100% !important;
  overflow: hidden;
  margin-right: 0;
  margin-bottom: 10px;
  display: block;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
}
/* line 354, ../sass/layout/_post-thumb.scss */
.homepage .post-most-read_image ~ * {
  overflow: hidden;
}

/* line 362, ../sass/layout/_post-thumb.scss */
.text-featured {
  width: 100%;
  max-width: 820px;
  margin: 40px auto;
  text-align: center;
  color: #11325e;
}
@media screen and (max-width: 1116px) {
  /* line 362, ../sass/layout/_post-thumb.scss */
  .text-featured {
    text-align: left;
  }
}
/* line 371, ../sass/layout/_post-thumb.scss */
.text-featured a {
  display: block;
}
/* line 374, ../sass/layout/_post-thumb.scss */
.text-featured h2 {
  font: 18px "Proxima Nova Bold", sans-serif;
  text-transform: uppercase;
}
/* line 378, ../sass/layout/_post-thumb.scss */
.text-featured p {
  margin-top: 10px;
  font: 14px "Proxima Nova Light", sans-serif;
  line-height: 1.8;
}
/* line 382, ../sass/layout/_post-thumb.scss */
.text-featured p .fa {
  margin-left: 4px;
  font-size: 12px;
  color: #fa1e64;
}
/* line 387, ../sass/layout/_post-thumb.scss */
.text-featured p:hover .fa {
  color: #b71b4c;
}

@media screen and (max-width: 1116px) {
  /* line 393, ../sass/layout/_post-thumb.scss */
  .landing-hr {
    display: none;
  }
}

/* line 1, ../sass/layout/_post-article.scss */
.post-hero {
  margin-bottom: 40px;
  height: 400px;
  overflow: hidden;
  background-size: cover;
  background-position: inherit; 
}
@media screen and (max-width: 1116px) {
  /* line 1, ../sass/layout/_post-article.scss */
  .post-hero {
    height: 280px;
  }
}

/* line 27, ../sass/_base.scss */
.page-related-articles:after {
  content: '';
  display: table;
  clear: both;
}
/* line 14, ../sass/layout/_post-article.scss */
.page-related-articles .heading {
  margin-bottom: 28px;
  font: 18px "Proxima Nova Bold", sans-serif;
  color: #11325e;
  text-transform: uppercase;
}

/* line 22, ../sass/layout/_post-article.scss */
.post-article {
  position: relative;
}
@media screen and (max-width: 1116px) {
  /* line 24, ../sass/layout/_post-article.scss */
  .post-article hr {
    margin: 10px 0;
  }
}
/* line 29, ../sass/layout/_post-article.scss */
.post-article_title {
  font: 48px "Proxima Nova Bold", sans-serif;
  color: #11325e;
  line-height: 1.1;
}
@media screen and (max-width: 1116px) {
  /* line 29, ../sass/layout/_post-article.scss */
  .post-article_title {
    font-size: 30px;
  }
}
/* line 37, ../sass/layout/_post-article.scss */
.post-article_date {
  display: block;
  margin-top: 6px;
  font: 16px "Proxima Nova Semibold", sans-serif;
  color: #787878;
}
@media screen and (max-width: 1116px) {
  /* line 37, ../sass/layout/_post-article.scss */
  .post-article_date {
    font-size: 14px;
  }
}
/* line 46, ../sass/layout/_post-article.scss */
.post-article_content {
  overflow: hidden;
  font: 16px "Proxima Nova Regular", sans-serif;
  line-height: 1.6;
  color: #2e2e2e;
}
/* line 51, ../sass/layout/_post-article.scss */
.post-article_content.has-padding {
  padding-left: 80px;
}
@media screen and (max-width: 1116px) {
  /* line 51, ../sass/layout/_post-article.scss */
  .post-article_content.has-padding {
    padding-left: 0;
  }
}
@media screen and (max-width: 1116px) {
  /* line 58, ../sass/layout/_post-article.scss */
  .post-article_content img {
    float: none !important;
    margin: 30px auto 20px;
  }
}
/* line 63, ../sass/layout/_post-article.scss */
.post-article_content a {
  color: #19c0e9;
}
/* line 66, ../sass/layout/_post-article.scss */
.post-article_content b, .post-article_content strong {
  font-weight: bold;
}
/* line 69, ../sass/layout/_post-article.scss */
.post-article_content i, .post-article_content em {
  font-style: italic;
}
/* line 72, ../sass/layout/_post-article.scss */
.post-article_content p {
  margin-bottom: 22px;
}
/* line 75, ../sass/layout/_post-article.scss */
.post-article_content ul, .post-article_content ol {
  margin-bottom: 22px;
  list-style: inside;
}
/* line 79, ../sass/layout/_post-article.scss */
.post-article_content span {
  text-decoration: none !important;
}
/* line 82, ../sass/layout/_post-article.scss */
.post-article_content .tags {
  position: relative;
  list-style: none;
  padding: 20px 0;
}
/* line 86, ../sass/layout/_post-article.scss */
.post-article_content .tags li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 4px;
}
@media screen and (max-width: 1116px) {
  /* line 86, ../sass/layout/_post-article.scss */
  .post-article_content .tags li {
    margin-right: 6px;
  }
}
/* line 93, ../sass/layout/_post-article.scss */
.post-article_content .tags li:first-child {
  font: 14px "Proxima Nova Bold", sans-serif;
  color: #11325e;
  text-transform: uppercase;
}
/* line 99, ../sass/layout/_post-article.scss */
.post-article_content .tags a {
  display: inline-block;
  padding: 4px 6px;
  font: 12px "Proxima Nova Light", sans-serif;
  text-transform: uppercase;
  color: #000;
  background: #f5f5f5;
  -moz-transition: background-color 0.2s ease 0s;
  -o-transition: background-color 0.2s ease 0s;
  -webkit-transition: background-color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: background-color 0.2s ease 0s;
}
/* line 53, ../sass/_base.scss */
.post-article_content .tags a:hover {
  background-color: #cacaca;
}
/* line 108, ../sass/layout/_post-article.scss */
.post-article_content .tags:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: url('../img/bg-lister.png?1448206140');
}
/* line 116, ../sass/layout/_post-article.scss */
.post-article_content .tags:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: url('../img/bg-lister.png?1448206140');
}

/* line 1, ../sass/layout/_about.scss */
.page-about {
  background: url('../img/bg-lister-great.png?1448206140') repeat-x center top;
  overflow: auto;
}
@media screen and (max-width: 1116px) {
  /* line 1, ../sass/layout/_about.scss */
  .page-about {
    background-position: 50% -154px;
  }
}
/* line 9, ../sass/layout/_about.scss */
.page-about .title-page {
  margin-top: 40px;
  margin-bottom: 30px;
  font: 54px "Proxima Nova Bold", sans-serif;
  line-height: 380px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: url('../img/bg-title-page.jpg?1448206140') no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1116px) {
  /* line 9, ../sass/layout/_about.scss */
  .page-about .title-page {
    margin-top: 0;
    font-size: 40px;
    line-height: 220px;
  }
}
/* line 25, ../sass/layout/_about.scss */
.page-about .content-wrap {
  padding: 0 10%;
}
@media screen and (max-width: 1116px) {
  /* line 25, ../sass/layout/_about.scss */
  .page-about .content-wrap {
    padding: 0;
  }
}
/* line 27, ../sass/_base.scss */
.page-about .editorial-board:after {
  content: '';
  display: table;
  clear: both;
}
/* line 33, ../sass/layout/_about.scss */
.page-about .editorial-board_title {
  margin-bottom: 20px;
  font: 28px "Proxima Nova Bold", sans-serif;
  color: #11325e;
  text-transform: uppercase;
}
@media screen and (max-width: 1116px) {
  /* line 33, ../sass/layout/_about.scss */
  .page-about .editorial-board_title {
    font-size: 22px;
  }
}
/* line 42, ../sass/layout/_about.scss */
.page-about .editorial-board_wrap {
  *zoom: 1;
}
/* line 344, ../sass/jeet/_grid.scss */
.page-about .editorial-board_wrap:before, .page-about .editorial-board_wrap:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.page-about .editorial-board_wrap:after {
  clear: both;
}
/* line 45, ../sass/layout/_about.scss */
.page-about .editorial-board_box {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 22.75%;
  margin-left: 0%;
  margin-right: 3%;
  margin-bottom: 20px;
  color: #2e2e2e;
}
/* line 344, ../sass/jeet/_grid.scss */
.page-about .editorial-board_box:before, .page-about .editorial-board_box:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.page-about .editorial-board_box:after {
  clear: both;
}
/* line 50, ../sass/jeet/_grid.scss */
.page-about .editorial-board_box:nth-of-type(4n) {
  margin-right: 0%;
  float: right;
}
/* line 54, ../sass/jeet/_grid.scss */
.page-about .editorial-board_box:nth-of-type(4n + 1) {
  clear: both;
}
/* line 47, ../sass/layout/_about.scss */
.page-about .editorial-board_box > a {
  display: block;
}
/* line 50, ../sass/layout/_about.scss */
.page-about .editorial-board_box--top {
  display: block;
  clear: both;
  float: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: table;
  margin: 0 auto 20px;
  width: auto;
  text-align: center;
}
/* line 265, ../sass/jeet/_grid.scss */
.page-about .editorial-board_box--top:first-child {
  margin-left: auto;
}
/* line 269, ../sass/jeet/_grid.scss */
.page-about .editorial-board_box--top:last-child {
  margin-right: auto;
}
@media screen and (max-width: 1116px) {
  /* line 45, ../sass/layout/_about.scss */
  .page-about .editorial-board_box {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  /* line 344, ../sass/jeet/_grid.scss */
  .page-about .editorial-board_box:before, .page-about .editorial-board_box:after {
    content: '';
    display: table;
  }
  /* line 349, ../sass/jeet/_grid.scss */
  .page-about .editorial-board_box:after {
    clear: both;
  }
  /* line 50, ../sass/jeet/_grid.scss */
  .page-about .editorial-board_box:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  /* line 54, ../sass/jeet/_grid.scss */
  .page-about .editorial-board_box:nth-of-type(2n + 1) {
    clear: both;
  }
}
/* line 62, ../sass/layout/_about.scss */
.page-about .editorial-board_box_photo {
  width: 188px;
  height: 188px;
  background-size: cover;
  background-position: center center;
  margin-bottom: 10px;
}
@media screen and (max-width: 1116px) {
  /* line 62, ../sass/layout/_about.scss */
  .page-about .editorial-board_box_photo {
    width: 100%;
  }
}
/* line 72, ../sass/layout/_about.scss */
.page-about .editorial-board_box_name {
  font: 14px "Proxima Nova Bold", sans-serif;
  text-transform: uppercase;
}
/* line 76, ../sass/layout/_about.scss */
.page-about .editorial-board_box_summary {
  font-size: 12px;
}

/* line 84, ../sass/layout/_about.scss */
.page-article p {
  margin-bottom: 22px;
  font: 16px "Proxima Nova Regular", sans-serif;
  line-height: 1.8;
}
/* line 88, ../sass/layout/_about.scss */
.page-article p:last-child {
  margin-bottom: 0;
}

/* line 1, ../sass/layout/_modules.scss */
.option-share {
  float: left;
  margin-right: 30px;
}
/* line 4, ../sass/layout/_modules.scss */
.option-share_item {
  margin-bottom: 2px;
  cursor: pointer;
  -moz-transition: background-color 0.2s ease 0s;
  -o-transition: background-color 0.2s ease 0s;
  -webkit-transition: background-color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: background-color 0.2s ease 0s;
  -moz-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
  -webkit-transition: color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: color 0.2s ease 0s;
}
/* line 7, ../sass/layout/_modules.scss */
.option-share_item a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f5f5f5;
}
/* line 15, ../sass/layout/_modules.scss */
.option-share_item .fa {
  font-size: 22px;
  color: #19c0e9;
  line-height: inherit;
}
/* line 20, ../sass/layout/_modules.scss */
.option-share_item span {
  display: none;
}
/* line 23, ../sass/layout/_modules.scss */
.option-share_item:hover * {
  background: transparent !important;
  color: inherit !important;
}
/* line 53, ../sass/_base.scss */
.option-share_item:hover {
  background-color: #19c0e9;
}
/* line 46, ../sass/_base.scss */
.option-share_item:hover {
  color: #fff;
}
/* line 30, ../sass/layout/_modules.scss */
.option-share.is-fixed {
  position: fixed;
  top: 30px;
}
/* line 34, ../sass/layout/_modules.scss */
.option-share.is-absolute {
  position: absolute;
  top: auto;
  bottom: 30px;
}
/* line 39, ../sass/layout/_modules.scss */
.option-share.mode-list {
  *zoom: 1;
  float: none;
  border-spacing: 4px 0;
  width: 100%;
  margin: 0;
  list-style: none;
}
/* line 344, ../sass/jeet/_grid.scss */
.option-share.mode-list:before, .option-share.mode-list:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.option-share.mode-list:after {
  clear: both;
}
/* line 46, ../sass/layout/_modules.scss */
.option-share.mode-list li {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 19%;
  margin-left: 0%;
  margin-right: 0%;
  margin-right: 1%;
  margin-bottom: 0;
}
/* line 344, ../sass/jeet/_grid.scss */
.option-share.mode-list li:before, .option-share.mode-list li:after {
  content: '';
  display: table;
}
/* line 349, ../sass/jeet/_grid.scss */
.option-share.mode-list li:after {
  clear: both;
}
/* line 51, ../sass/layout/_modules.scss */
.option-share.mode-list a {
  width: auto;
  height: 40px;
  line-height: 40px;
}
/* line 56, ../sass/layout/_modules.scss */
.option-share.mode-list span {
  position: relative;
  bottom: 2px;
  left: 2px;
  display: inline-block;
  font: 12px "Proxima Nova Semibold", sans-serif;
  color: #11325e;
  text-transform: uppercase;
}
@media screen and (max-width: 1116px) {
  /* line 56, ../sass/layout/_modules.scss */
  .option-share.mode-list span {
    display: none;
  }
}

/* line 71, ../sass/layout/_modules.scss */
#twitter-widget-0 {
  width: 100%;
}

/* line 74, ../sass/layout/_modules.scss */
.twitter-box {
  overflow: auto;
  margin-top: 30px;
  margin-bottom: 50px;
  background: url('../img/bg-lister-great.png?1448206140');
}
/* line 79, ../sass/layout/_modules.scss */
.twitter-box iframe {
  overflow: auto !important;
  width: 100% !important;
}
/* line 83, ../sass/layout/_modules.scss */
.twitter-box_title {
  padding: 0 10px;
  font: 20px "Proxima Nova Semibold", sans-serif;
  line-height: 54px;
  text-transform: uppercase;
  color: #fff;
  background: #19c0e9;
}
@media screen and (max-width: 1116px) {
  /* line 83, ../sass/layout/_modules.scss */
  .twitter-box_title {
    text-indent: -9999px;
    line-height: 14px !important;
  }
  /* line 93, ../sass/layout/_modules.scss */
  .twitter-box_title .fa, .twitter-box_title a {
    display: none;
  }
}
/* line 97, ../sass/layout/_modules.scss */
.twitter-box_title a {
  float: right;
  padding: calc(54px /2 - 10px) 0;
}
/* line 102, ../sass/layout/_modules.scss */
.twitter-box_wrap {
  margin: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1116px) {
  /* line 102, ../sass/layout/_modules.scss */
  .twitter-box_wrap {
    margin: 10px;
    padding: 10px;
  }
  /* line 109, ../sass/layout/_modules.scss */
  .twitter-box_wrap .twitter-timeline {
    display: none !important;
  }
}
/* line 113, ../sass/layout/_modules.scss */
.twitter-box_wrap_mobile {
  display: none;
  margin: 5px;
  color: #11325e;
  text-align: center;
}
@media screen and (max-width: 1116px) {
  /* line 113, ../sass/layout/_modules.scss */
  .twitter-box_wrap_mobile {
    display: block;
  }
}
/* line 121, ../sass/layout/_modules.scss */
.twitter-box_wrap_mobile h3 {
  font: 22px "Proxima Nova Bold", sans-serif;
}
/* line 123, ../sass/layout/_modules.scss */
.twitter-box_wrap_mobile h3 .fa {
  font-size: 24px;
  color: #fa1e64;
}
/* line 128, ../sass/layout/_modules.scss */
.twitter-box_wrap_mobile p {
  margin: 6px 0 10px;
  font: 18px "Proxima Nova Regular", sans-serif;
}
/* line 132, ../sass/layout/_modules.scss */
.twitter-box_wrap_mobile a {
  display: table;
  margin: 0 auto;
}

/* line 27, ../sass/_base.scss */
.pagination:after {
  content: '';
  display: table;
  clear: both;
}
/* line 143, ../sass/layout/_modules.scss */
.pagination > * {
  float: left;
  display: block;
  text-align: center;
  padding: 4px 10px;
  margin-right: 4px;
  font: 16px "Proxima Nova Semibold", sans-serif;
  color: #11325e;
  background: transparent;
  white-space: nowrap;
}
/* line 153, ../sass/layout/_modules.scss */
.pagination > *:hover, .pagination > *.current {
  -moz-transition: background-color 0.2s ease 0s;
  -o-transition: background-color 0.2s ease 0s;
  -webkit-transition: background-color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: background-color 0.2s ease 0s;
  -moz-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
  -webkit-transition: color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: color 0.2s ease 0s;
}
/* line 53, ../sass/_base.scss */
.pagination > *:hover:hover, .pagination > *.current:hover {
  background-color: #fa1e64;
}
/* line 46, ../sass/_base.scss */
.pagination > *:hover:hover, .pagination > *.current:hover {
  color: #fff;
}

/* line 160, ../sass/layout/_modules.scss */
.form-newsletter-alert {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  font: 14px "Proxima Nova Semibold", sans-serif;
  color: #fff;
  background: #19c0e9;
  line-height: 40px;
  text-align: center;
}

/* line 173, ../sass/layout/_modules.scss */
#formBuilderCSSIDNewsletter {
  position: relative;
  width: 100%;
  height: 30px;
}
/* line 178, ../sass/layout/_modules.scss */
#formBuilderCSSIDNewsletter .formBuilderSubmit {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 30px;
  height: 30px;
  overflow: hidden;
  text-align: center;
  background: #fa1e64;
  -moz-transition: background-color 0.2s ease 0s;
  -o-transition: background-color 0.2s ease 0s;
  -webkit-transition: background-color 0.2s ease;
  -webkit-transition-delay: 0s;
  transition: background-color 0.2s ease 0s;
}
/* line 53, ../sass/_base.scss */
#formBuilderCSSIDNewsletter .formBuilderSubmit:hover {
  background-color: #b71b4c;
}
/* line 188, ../sass/layout/_modules.scss */
#formBuilderCSSIDNewsletter .formBuilderSubmit:after {
  content: "\f061";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  font: 12px FontAwesome;
  line-height: 30px;
  color: #fff;
}
/* line 198, ../sass/layout/_modules.scss */
#formBuilderCSSIDNewsletter .formBuilderSubmit input[type="image"] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 30px;
  opacity: 0;
}
/* line 207, ../sass/layout/_modules.scss */
#formBuilderCSSIDNewsletter .formBuilderInput {
  width: 100%;
  height: 30px;
}
/* line 210, ../sass/layout/_modules.scss */
#formBuilderCSSIDNewsletter .formBuilderInput input[type="text"] {
  width: 100%;
  height: 30px;
  padding: 0 40px 0 10px;
  border: 0;
  box-shadow: 1px 2px 2px #bbb inset;
}
/* line 218, ../sass/layout/_modules.scss */
#formBuilderCSSIDNewsletter .alert,
#formBuilderCSSIDNewsletter #formBuilderErrorSpaceformBuilderFieldEmail,
#formBuilderCSSIDNewsletter #formBuilderErrorSpaceformBuilderFieldSubmit {
  display: none !important;
}

/* line 225, ../sass/layout/_modules.scss */
.newsletter-box {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 80px;
  padding: 0 20px;
  background: url('../img/bg-form-email.jpg?1448206140') no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1116px) {
  /* line 225, ../sass/layout/_modules.scss */
  .newsletter-box {
    display: block;
    width: 100%;
    height: auto;
    padding: 14px 20px;
    background-image: url('../img/bg-form-email-small.jpg?1449110012');
  }
}
/* line 240, ../sass/layout/_modules.scss */
.newsletter-box_grid {
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 1116px) {
  /* line 240, ../sass/layout/_modules.scss */
  .newsletter-box_grid {
    display: block;
    width: 100%;
  }
}
/* line 248, ../sass/layout/_modules.scss */
.newsletter-box label {
  display: block;
  font: 24px "Proxima Nova Semibold", sans-serif;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 1116px) {
  /* line 248, ../sass/layout/_modules.scss */
  .newsletter-box label {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
/* line 258, ../sass/layout/_modules.scss */
.newsletter-box fieldset {
  position: relative;
  width: 100%;
  padding: 0 10px 0 30px;
}
@media screen and (max-width: 1116px) {
  /* line 258, ../sass/layout/_modules.scss */
  .newsletter-box fieldset {
    padding: 0;
  }
}

/* line 268, ../sass/layout/_modules.scss */
.numbered-navigation {
  padding: 20px 0;
  text-align: center;
}
/* line 271, ../sass/layout/_modules.scss */
.numbered-navigation ul {
  margin: 0;
  padding: 0;
}
/* line 274, ../sass/layout/_modules.scss */
.numbered-navigation ul li {
  display: inline;
}
/* line 276, ../sass/layout/_modules.scss */
.numbered-navigation ul li a {
  display: inline-block;
  padding: 5px 10px;
}
/* line 279, ../sass/layout/_modules.scss */
.numbered-navigation ul li a:hover {
  background: #f1f1f1;
}
/* line 284, ../sass/layout/_modules.scss */
.numbered-navigation ul li.active a {
  background: #ee2765;
  color: white;
}

/* =WordPress Core
-------------------------------------------------------------- */
/* line 3, ../sass/layout/_wordpress.scss */
.alignnone {
  margin: 5px 20px 20px 0;
}

/* line 7, ../sass/layout/_wordpress.scss */
b, strong {
  font-weight: bold;
}

/* line 11, ../sass/layout/_wordpress.scss */
i, em {
  font-style: italic;
}

/* line 15, ../sass/layout/_wordpress.scss */
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

/* line 21, ../sass/layout/_wordpress.scss */
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

/* line 26, ../sass/layout/_wordpress.scss */
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

/* line 31, ../sass/layout/_wordpress.scss */
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

/* line 36, ../sass/layout/_wordpress.scss */
a img.alignnone {
  margin: 5px 20px 20px 0;
}

/* line 40, ../sass/layout/_wordpress.scss */
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

/* line 45, ../sass/layout/_wordpress.scss */
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 51, ../sass/layout/_wordpress.scss */
.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

/* line 59, ../sass/layout/_wordpress.scss */
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

/* line 63, ../sass/layout/_wordpress.scss */
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

/* line 67, ../sass/layout/_wordpress.scss */
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

/* line 71, ../sass/layout/_wordpress.scss */
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

/* line 80, ../sass/layout/_wordpress.scss */
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
/* line 88, ../sass/layout/_wordpress.scss */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* line 96, ../sass/layout/_wordpress.scss */
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
.home .mission{
  text-align: center;
  margin-top: 41px;
} 
.home .mission p{
  color: #11325e;
  margin-top: 7px;
}

.home .mission p:last-child a:after{
    content: "\f061";
    margin-left: 10px;
    font-family: FontAwesome;
    font-size: 12px;
    color: #fa1e64;
}
.home .mission p:last-child a:hover:after{
  color:#b71b4c;
}

.home .mission h2.heading{
    font: 19px "Proxima Nova Bold", sans-serif;
    text-transform: uppercase;
    color: #11325e;
}
