/*  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.
 */
.columns-1 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%; }
  .columns-1:before, .columns-1:after {
    content: '';
    display: table; }
  .columns-1:after {
    clear: both; }
  .columns-1:last-child {
    margin-right: 0%; }

.columns-2 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%; }
  .columns-2:before, .columns-2:after {
    content: '';
    display: table; }
  .columns-2:after {
    clear: both; }
  .columns-2:nth-child(2n) {
    margin-right: 0%;
    float: right; }
  .columns-2:nth-child(2n + 1) {
    clear: both; }

.columns-3 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.3333333333%;
  margin-left: 0%;
  margin-right: 3%; }
  .columns-3:before, .columns-3:after {
    content: '';
    display: table; }
  .columns-3:after {
    clear: both; }
  .columns-3:nth-child(3n) {
    margin-right: 0%;
    float: right; }
  .columns-3:nth-child(3n + 1) {
    clear: both; }
  @media (max-width: 46.24em) {
    .columns-3 {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%; }
      .columns-3:before, .columns-3:after {
        content: '';
        display: table; }
      .columns-3:after {
        clear: both; }
      .columns-3:last-child {
        margin-right: 0%; } }

.columns-4 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 22.75%;
  margin-left: 0%;
  margin-right: 3%; }
  .columns-4:before, .columns-4:after {
    content: '';
    display: table; }
  .columns-4:after {
    clear: both; }
  .columns-4:nth-child(4n) {
    margin-right: 0%;
    float: right; }
  .columns-4:nth-child(4n + 1) {
    clear: both; }
  @media (max-width: 46.24em) {
    .columns-4 {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%; }
      .columns-4:before, .columns-4:after {
        content: '';
        display: table; }
      .columns-4:after {
        clear: both; }
      .columns-4:last-child {
        margin-right: 0%; } }

.columns-5 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 17.6%;
  margin-left: 0%;
  margin-right: 3%; }
  .columns-5:before, .columns-5:after {
    content: '';
    display: table; }
  .columns-5:after {
    clear: both; }
  .columns-5:nth-child(5n) {
    margin-right: 0%;
    float: right; }
  .columns-5:nth-child(5n + 1) {
    clear: both; }
  @media (max-width: 46.24em) {
    .columns-5 {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%; }
      .columns-5:before, .columns-5:after {
        content: '';
        display: table; }
      .columns-5:after {
        clear: both; }
      .columns-5:last-child {
        margin-right: 0%; } }

.columns-6 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 14.1666666667%;
  margin-left: 0%;
  margin-right: 3%; }
  .columns-6:before, .columns-6:after {
    content: '';
    display: table; }
  .columns-6:after {
    clear: both; }
  .columns-6:nth-child(6n) {
    margin-right: 0%;
    float: right; }
  .columns-6:nth-child(6n + 1) {
    clear: both; }
  @media (max-width: 46.24em) {
    .columns-6 {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%; }
      .columns-6:before, .columns-6:after {
        content: '';
        display: table; }
      .columns-6:after {
        clear: both; }
      .columns-6:last-child {
        margin-right: 0%; } }

.upcoming-events-row {
  *zoom: 1;
  width: auto;
  max-width: 100%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 40px; }
  .upcoming-events-row:before, .upcoming-events-row:after {
    content: '';
    display: table; }
  .upcoming-events-row:after {
    clear: both; }

@media (max-width: 46.24em) {
  .upcoming-events__item {
    margin-bottom: 40px; } }

.upcoming-events__item--inner {
  border: 1px solid #e3e3e3; }

.upcoming-events__item--featured-image {
  position: relative; }
  .upcoming-events__item--featured-image img {
    width: 100%;
    height: auto; }
    @media (max-width: 46.24em) {
      .upcoming-events__item--featured-image img {
        border: 1px solid #e3e3e3; } }

.upcoming-events__item--featured-image-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -24px 0 0 -24px;
  opacity: 0;
  z-index: 10; }
  .upcoming-events__item--featured-image-icon svg {
    width: 48px !important;
    height: 48px !important;
    fill: #fff; }

.image-hover-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-color: #e87f58 !important; }

.upcoming-events__item--featured-image:hover .upcoming-events__item--featured-image-icon {
  opacity: 1; }

.upcoming-events__item--featured-image:hover .image-hover-overlay {
  opacity: 0.8; }

.upcoming-events__item--meta {
  padding: 20px;
  line-height: 18px;
  font-size: 18px;
  color: #404040;
  font-weight: 500; }
  @media (max-width: 46.24em) {
    .upcoming-events__item--meta {
      text-align: center; } }
  .upcoming-events__item--meta h3 a {
    display: block; }

.upcoming-events__item-footer {
  padding: 15px 20px;
  border-top: 1px solid #e3e3e3; }
  @media (max-width: 46.24em) {
    .upcoming-events__item-footer {
      text-align: center; } }
  .upcoming-events__item-footer a {
    line-height: 12px;
    font-weight: 700;
    font-size: 12px; }
  .upcoming-events__item-footer i {
    margin-right: 5px;
    text-decoration: none;
    font-size: 8px; }
