@charset "UTF-8";
/**
 * Style file
 *
 * This file is compiled into style.css
 */
/* ---------- Import variables ---------- */
/* Layout */
/**
 * Jeet grid settings.
 */
/* Breakpoints - mobile first
 * Usage:
 *
 *    @include breakpoint(mobile) {
 *      //do stuff
 *    }
 *
 */
/* Font stuff */
/* Colors */
/* Greys */
/* Elements */
/* Borders */
/* Links */
@import url("//fonts.googleapis.com/css?family=Arvo:400,700|Open+Sans:400italic,400|Montserrat:700");
/* ---------- Import grid system ---------- */
/*  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()
*/
/**
 * 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.
 */
/* ---------- Import base ---------- */
/*  Better box model */
*,
*:after,
*:before {
  box-sizing: border-box;
}

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

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: "Arvo", Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
}

a {
  background: transparent;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 17;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

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

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Base responsive images */
img {
  height: auto;
  max-width: 100%;
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

/**
 * Mixins
 *
 * Snippets of reusable CSS to develop faster and keep code readable
 */
/**
 * ===== ANIMATIONS =====
 */
@-webkit-keyframes bouncing {
  0% {
    background-position: inherit center;
  }
  50% {
    background-position: right 13% center;
  }
  100% {
    background-position: inherit center;
  }
}
@keyframes bouncing {
  0% {
    background-position: inherit center;
  }
  50% {
    background-position: right 13% center;
  }
  100% {
    background-position: inherit center;
  }
}

@-webkit-keyframes shake-slow {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  2% {
    -webkit-transform: translate(6px, -7px) rotate(2.5deg);
            transform: translate(6px, -7px) rotate(2.5deg);
  }
  4% {
    -webkit-transform: translate(8px, -8px) rotate(2.5deg);
            transform: translate(8px, -8px) rotate(2.5deg);
  }
  6% {
    -webkit-transform: translate(1px, -8px) rotate(-3.5deg);
            transform: translate(1px, -8px) rotate(-3.5deg);
  }
  8% {
    -webkit-transform: translate(-3px, 4px) rotate(-0.5deg);
            transform: translate(-3px, 4px) rotate(-0.5deg);
  }
  10% {
    -webkit-transform: translate(0px, -3px) rotate(1.5deg);
            transform: translate(0px, -3px) rotate(1.5deg);
  }
  12% {
    -webkit-transform: translate(-1px, 2px) rotate(0.5deg);
            transform: translate(-1px, 2px) rotate(0.5deg);
  }
  14% {
    -webkit-transform: translate(6px, 6px) rotate(-1.5deg);
            transform: translate(6px, 6px) rotate(-1.5deg);
  }
  16% {
    -webkit-transform: translate(-7px, 4px) rotate(-0.5deg);
            transform: translate(-7px, 4px) rotate(-0.5deg);
  }
  18% {
    -webkit-transform: translate(7px, 8px) rotate(-3.5deg);
            transform: translate(7px, 8px) rotate(-3.5deg);
  }
  20% {
    -webkit-transform: translate(-6px, 2px) rotate(1.5deg);
            transform: translate(-6px, 2px) rotate(1.5deg);
  }
  22% {
    -webkit-transform: translate(9px, 5px) rotate(-1.5deg);
            transform: translate(9px, 5px) rotate(-1.5deg);
  }
  24% {
    -webkit-transform: translate(7px, -2px) rotate(0.5deg);
            transform: translate(7px, -2px) rotate(0.5deg);
  }
  26% {
    -webkit-transform: translate(-7px, -10px) rotate(-0.5deg);
            transform: translate(-7px, -10px) rotate(-0.5deg);
  }
  28% {
    -webkit-transform: translate(-10px, -8px) rotate(-1.5deg);
            transform: translate(-10px, -8px) rotate(-1.5deg);
  }
  30% {
    -webkit-transform: translate(8px, 4px) rotate(0.5deg);
            transform: translate(8px, 4px) rotate(0.5deg);
  }
  32% {
    -webkit-transform: translate(0px, 4px) rotate(1.5deg);
            transform: translate(0px, 4px) rotate(1.5deg);
  }
  34% {
    -webkit-transform: translate(-8px, 6px) rotate(-0.5deg);
            transform: translate(-8px, 6px) rotate(-0.5deg);
  }
  36% {
    -webkit-transform: translate(-5px, 7px) rotate(1.5deg);
            transform: translate(-5px, 7px) rotate(1.5deg);
  }
  38% {
    -webkit-transform: translate(-4px, -4px) rotate(-1.5deg);
            transform: translate(-4px, -4px) rotate(-1.5deg);
  }
  40% {
    -webkit-transform: translate(9px, 4px) rotate(-1.5deg);
            transform: translate(9px, 4px) rotate(-1.5deg);
  }
  42% {
    -webkit-transform: translate(9px, -5px) rotate(2.5deg);
            transform: translate(9px, -5px) rotate(2.5deg);
  }
  44% {
    -webkit-transform: translate(-5px, -4px) rotate(-2.5deg);
            transform: translate(-5px, -4px) rotate(-2.5deg);
  }
  46% {
    -webkit-transform: translate(7px, -7px) rotate(1.5deg);
            transform: translate(7px, -7px) rotate(1.5deg);
  }
  48% {
    -webkit-transform: translate(-5px, 8px) rotate(0.5deg);
            transform: translate(-5px, 8px) rotate(0.5deg);
  }
  50% {
    -webkit-transform: translate(9px, 1px) rotate(-1.5deg);
            transform: translate(9px, 1px) rotate(-1.5deg);
  }
  52% {
    -webkit-transform: translate(-9px, -5px) rotate(-3.5deg);
            transform: translate(-9px, -5px) rotate(-3.5deg);
  }
  54% {
    -webkit-transform: translate(-2px, 9px) rotate(1.5deg);
            transform: translate(-2px, 9px) rotate(1.5deg);
  }
  56% {
    -webkit-transform: translate(6px, -1px) rotate(1.5deg);
            transform: translate(6px, -1px) rotate(1.5deg);
  }
  58% {
    -webkit-transform: translate(-6px, 0px) rotate(-0.5deg);
            transform: translate(-6px, 0px) rotate(-0.5deg);
  }
  60% {
    -webkit-transform: translate(3px, 1px) rotate(1.5deg);
            transform: translate(3px, 1px) rotate(1.5deg);
  }
  62% {
    -webkit-transform: translate(5px, -7px) rotate(-0.5deg);
            transform: translate(5px, -7px) rotate(-0.5deg);
  }
  64% {
    -webkit-transform: translate(9px, 2px) rotate(2.5deg);
            transform: translate(9px, 2px) rotate(2.5deg);
  }
  66% {
    -webkit-transform: translate(6px, 0px) rotate(-2.5deg);
            transform: translate(6px, 0px) rotate(-2.5deg);
  }
  68% {
    -webkit-transform: translate(5px, -4px) rotate(-2.5deg);
            transform: translate(5px, -4px) rotate(-2.5deg);
  }
  70% {
    -webkit-transform: translate(-8px, 5px) rotate(-2.5deg);
            transform: translate(-8px, 5px) rotate(-2.5deg);
  }
  72% {
    -webkit-transform: translate(-6px, -2px) rotate(0.5deg);
            transform: translate(-6px, -2px) rotate(0.5deg);
  }
  74% {
    -webkit-transform: translate(-3px, 7px) rotate(-3.5deg);
            transform: translate(-3px, 7px) rotate(-3.5deg);
  }
  76% {
    -webkit-transform: translate(-7px, -8px) rotate(-3.5deg);
            transform: translate(-7px, -8px) rotate(-3.5deg);
  }
  78% {
    -webkit-transform: translate(-1px, -2px) rotate(2.5deg);
            transform: translate(-1px, -2px) rotate(2.5deg);
  }
  80% {
    -webkit-transform: translate(8px, 6px) rotate(-2.5deg);
            transform: translate(8px, 6px) rotate(-2.5deg);
  }
  82% {
    -webkit-transform: translate(-2px, -9px) rotate(2.5deg);
            transform: translate(-2px, -9px) rotate(2.5deg);
  }
  84% {
    -webkit-transform: translate(8px, -10px) rotate(-0.5deg);
            transform: translate(8px, -10px) rotate(-0.5deg);
  }
  86% {
    -webkit-transform: translate(-6px, 0px) rotate(2.5deg);
            transform: translate(-6px, 0px) rotate(2.5deg);
  }
  88% {
    -webkit-transform: translate(-1px, 9px) rotate(-3.5deg);
            transform: translate(-1px, 9px) rotate(-3.5deg);
  }
  90% {
    -webkit-transform: translate(-7px, 8px) rotate(1.5deg);
            transform: translate(-7px, 8px) rotate(1.5deg);
  }
  92% {
    -webkit-transform: translate(-10px, -8px) rotate(0.5deg);
            transform: translate(-10px, -8px) rotate(0.5deg);
  }
  94% {
    -webkit-transform: translate(-8px, 6px) rotate(1.5deg);
            transform: translate(-8px, 6px) rotate(1.5deg);
  }
  96% {
    -webkit-transform: translate(4px, -9px) rotate(2.5deg);
            transform: translate(4px, -9px) rotate(2.5deg);
  }
  98% {
    -webkit-transform: translate(-4px, 9px) rotate(0.5deg);
            transform: translate(-4px, 9px) rotate(0.5deg);
  }
}

@keyframes shake-slow {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  2% {
    -webkit-transform: translate(6px, -7px) rotate(2.5deg);
            transform: translate(6px, -7px) rotate(2.5deg);
  }
  4% {
    -webkit-transform: translate(8px, -8px) rotate(2.5deg);
            transform: translate(8px, -8px) rotate(2.5deg);
  }
  6% {
    -webkit-transform: translate(1px, -8px) rotate(-3.5deg);
            transform: translate(1px, -8px) rotate(-3.5deg);
  }
  8% {
    -webkit-transform: translate(-3px, 4px) rotate(-0.5deg);
            transform: translate(-3px, 4px) rotate(-0.5deg);
  }
  10% {
    -webkit-transform: translate(0px, -3px) rotate(1.5deg);
            transform: translate(0px, -3px) rotate(1.5deg);
  }
  12% {
    -webkit-transform: translate(-1px, 2px) rotate(0.5deg);
            transform: translate(-1px, 2px) rotate(0.5deg);
  }
  14% {
    -webkit-transform: translate(6px, 6px) rotate(-1.5deg);
            transform: translate(6px, 6px) rotate(-1.5deg);
  }
  16% {
    -webkit-transform: translate(-7px, 4px) rotate(-0.5deg);
            transform: translate(-7px, 4px) rotate(-0.5deg);
  }
  18% {
    -webkit-transform: translate(7px, 8px) rotate(-3.5deg);
            transform: translate(7px, 8px) rotate(-3.5deg);
  }
  20% {
    -webkit-transform: translate(-6px, 2px) rotate(1.5deg);
            transform: translate(-6px, 2px) rotate(1.5deg);
  }
  22% {
    -webkit-transform: translate(9px, 5px) rotate(-1.5deg);
            transform: translate(9px, 5px) rotate(-1.5deg);
  }
  24% {
    -webkit-transform: translate(7px, -2px) rotate(0.5deg);
            transform: translate(7px, -2px) rotate(0.5deg);
  }
  26% {
    -webkit-transform: translate(-7px, -10px) rotate(-0.5deg);
            transform: translate(-7px, -10px) rotate(-0.5deg);
  }
  28% {
    -webkit-transform: translate(-10px, -8px) rotate(-1.5deg);
            transform: translate(-10px, -8px) rotate(-1.5deg);
  }
  30% {
    -webkit-transform: translate(8px, 4px) rotate(0.5deg);
            transform: translate(8px, 4px) rotate(0.5deg);
  }
  32% {
    -webkit-transform: translate(0px, 4px) rotate(1.5deg);
            transform: translate(0px, 4px) rotate(1.5deg);
  }
  34% {
    -webkit-transform: translate(-8px, 6px) rotate(-0.5deg);
            transform: translate(-8px, 6px) rotate(-0.5deg);
  }
  36% {
    -webkit-transform: translate(-5px, 7px) rotate(1.5deg);
            transform: translate(-5px, 7px) rotate(1.5deg);
  }
  38% {
    -webkit-transform: translate(-4px, -4px) rotate(-1.5deg);
            transform: translate(-4px, -4px) rotate(-1.5deg);
  }
  40% {
    -webkit-transform: translate(9px, 4px) rotate(-1.5deg);
            transform: translate(9px, 4px) rotate(-1.5deg);
  }
  42% {
    -webkit-transform: translate(9px, -5px) rotate(2.5deg);
            transform: translate(9px, -5px) rotate(2.5deg);
  }
  44% {
    -webkit-transform: translate(-5px, -4px) rotate(-2.5deg);
            transform: translate(-5px, -4px) rotate(-2.5deg);
  }
  46% {
    -webkit-transform: translate(7px, -7px) rotate(1.5deg);
            transform: translate(7px, -7px) rotate(1.5deg);
  }
  48% {
    -webkit-transform: translate(-5px, 8px) rotate(0.5deg);
            transform: translate(-5px, 8px) rotate(0.5deg);
  }
  50% {
    -webkit-transform: translate(9px, 1px) rotate(-1.5deg);
            transform: translate(9px, 1px) rotate(-1.5deg);
  }
  52% {
    -webkit-transform: translate(-9px, -5px) rotate(-3.5deg);
            transform: translate(-9px, -5px) rotate(-3.5deg);
  }
  54% {
    -webkit-transform: translate(-2px, 9px) rotate(1.5deg);
            transform: translate(-2px, 9px) rotate(1.5deg);
  }
  56% {
    -webkit-transform: translate(6px, -1px) rotate(1.5deg);
            transform: translate(6px, -1px) rotate(1.5deg);
  }
  58% {
    -webkit-transform: translate(-6px, 0px) rotate(-0.5deg);
            transform: translate(-6px, 0px) rotate(-0.5deg);
  }
  60% {
    -webkit-transform: translate(3px, 1px) rotate(1.5deg);
            transform: translate(3px, 1px) rotate(1.5deg);
  }
  62% {
    -webkit-transform: translate(5px, -7px) rotate(-0.5deg);
            transform: translate(5px, -7px) rotate(-0.5deg);
  }
  64% {
    -webkit-transform: translate(9px, 2px) rotate(2.5deg);
            transform: translate(9px, 2px) rotate(2.5deg);
  }
  66% {
    -webkit-transform: translate(6px, 0px) rotate(-2.5deg);
            transform: translate(6px, 0px) rotate(-2.5deg);
  }
  68% {
    -webkit-transform: translate(5px, -4px) rotate(-2.5deg);
            transform: translate(5px, -4px) rotate(-2.5deg);
  }
  70% {
    -webkit-transform: translate(-8px, 5px) rotate(-2.5deg);
            transform: translate(-8px, 5px) rotate(-2.5deg);
  }
  72% {
    -webkit-transform: translate(-6px, -2px) rotate(0.5deg);
            transform: translate(-6px, -2px) rotate(0.5deg);
  }
  74% {
    -webkit-transform: translate(-3px, 7px) rotate(-3.5deg);
            transform: translate(-3px, 7px) rotate(-3.5deg);
  }
  76% {
    -webkit-transform: translate(-7px, -8px) rotate(-3.5deg);
            transform: translate(-7px, -8px) rotate(-3.5deg);
  }
  78% {
    -webkit-transform: translate(-1px, -2px) rotate(2.5deg);
            transform: translate(-1px, -2px) rotate(2.5deg);
  }
  80% {
    -webkit-transform: translate(8px, 6px) rotate(-2.5deg);
            transform: translate(8px, 6px) rotate(-2.5deg);
  }
  82% {
    -webkit-transform: translate(-2px, -9px) rotate(2.5deg);
            transform: translate(-2px, -9px) rotate(2.5deg);
  }
  84% {
    -webkit-transform: translate(8px, -10px) rotate(-0.5deg);
            transform: translate(8px, -10px) rotate(-0.5deg);
  }
  86% {
    -webkit-transform: translate(-6px, 0px) rotate(2.5deg);
            transform: translate(-6px, 0px) rotate(2.5deg);
  }
  88% {
    -webkit-transform: translate(-1px, 9px) rotate(-3.5deg);
            transform: translate(-1px, 9px) rotate(-3.5deg);
  }
  90% {
    -webkit-transform: translate(-7px, 8px) rotate(1.5deg);
            transform: translate(-7px, 8px) rotate(1.5deg);
  }
  92% {
    -webkit-transform: translate(-10px, -8px) rotate(0.5deg);
            transform: translate(-10px, -8px) rotate(0.5deg);
  }
  94% {
    -webkit-transform: translate(-8px, 6px) rotate(1.5deg);
            transform: translate(-8px, 6px) rotate(1.5deg);
  }
  96% {
    -webkit-transform: translate(4px, -9px) rotate(2.5deg);
            transform: translate(4px, -9px) rotate(2.5deg);
  }
  98% {
    -webkit-transform: translate(-4px, 9px) rotate(0.5deg);
            transform: translate(-4px, 9px) rotate(0.5deg);
  }
}

/**
 * Extendables
 *
 * Collect all of your extendable classes, ids and silent extendables.
 */
.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

/**
 * Typography
 */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html,
button,
input,
select,
textarea {
  font-family: "Arvo", Helvetica, Arial, sans-serif;
}

body {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.5;
}

h1 {
  font-size: 36px;
  font-size: 2.25rem;
  color: #000;
  margin: .67em 0;
}

h2 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #000;
  margin: .83em 0;
}

h3 {
  font-size: 20px;
  font-size: 1.25rem;
  color: #000;
  margin: 1em 0;
}

h4 {
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
  margin: 1.33em 0;
}

h5 {
  font-size: 12px;
  font-size: 0.75rem;
  color: #000;
  margin: 1.67em 0;
}

h6 {
  font-size: 12px;
  font-size: 0.75rem;
  color: #000;
  margin: 2.33em 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "Arvo", Helvetica, Arial, sans-serif;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

hr {
  box-sizing: content-box;
  height: 0;
}

mark {
  background: #ff0;
  color: #000;
}

p, pre {
  margin: 1.5em 0;
}

code, kbd, pre, samp {
  font-family: monospace,serif;
  font-family: 'courier new',monospace;
  font-size: 17px;
  font-size: 1.0625rem;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

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

small {
  font-size: 15px;
  font-size: 0.9375rem;
}

large {
  font-size: 19px;
  font-size: 1.1875rem;
}

sub, sup {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

dl, ol, ul {
  margin: 1.5em 0;
}

dl dl, dl menu, dl ul, ol dl, ol menu, ol ul, ul dl, ul menu, ul ul {
  margin: 0;
}

dd {
  margin: 0 0 0 30px;
}

ul {
  padding: 0 0 0 30px;
  list-style: disc;
}

ul.rteindent1 {
  padding: 0;
}

ol {
  padding: 0 0 0 30px;
  list-style: decimal;
}

ol.rteindent1 {
  padding: 0;
}

ol ol {
  margin: 0;
  list-style: lower-alpha;
}

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

/* ---------- Components ---------- */
blockquote {
  margin: 2.5em 0;
  border-left: 4px solid #f36d32;
  padding: 0 2.5em;
}

/*
 * Buttons
 */
.button,
input[type=submit] {
  transition: all 0.3s;
  display: inline-block;
  padding: 10px 15px;
  border: 0;
  border-radius: 2px;
  background-color: #f36d32;
  color: #fff;
}

.button:hover,
input[type=submit]:hover,
.button:focus {
  background-color: #f36d32;
  color: #fff;
  text-decoration: none;
}

.breadcrumb {
  font-size: 80%;
  margin: 1.5em 0;
}

/*
 * caption.js styles
 */
/* Main */
.caption {
  line-height: 0;
}

.caption figcaption {
  display: block;
  line-height: 1.2;
  font-size: 90%;
  padding: 1em 0;
}

/*
 * Make the block config icon sexy
 */
.contextual-links-region {
  outline: none;
  position: relative;
}

.contextual-links-region-active {
  outline: #999 dashed 1px;
}

div.contextual-links-wrapper {
  display: none;
  font-size: 100%;
  position: absolute;
  right: 5px;
  /* LTR */
  top: 2px;
  z-index: 999;
}

html.js div.contextual-links-wrapper {
  display: block;
}

a.contextual-links-trigger {
  background: transparent url(../img/admin/icon-configuration.png) no-repeat 50% 7px;
  border: 0;
  display: none;
  height: 30px;
  margin: 0;
  padding: 0;
  outline: none;
  text-indent: 35px;
  /* LTR */
  width: 30px;
  overflow: hidden;
  transition: none;
}

a.contextual-links-trigger:hover,
div.contextual-links-active a.contextual-links-trigger {
  background-position: 50% -29px;
}

div.contextual-links-active a.contextual-links-trigger {
  background-color: #202020;
  background-position: 50% -64px;
  position: relative;
  z-index: 1;
}

div.contextual-links-wrapper ul.contextual-links {
  background-color: #202020;
  border: 0;
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 30px;
  white-space: nowrap;
}

a.contextual-links-trigger-active,
div.contextual-links-active a.contextual-links-trigger,
div.contextual-links-active ul.contextual-links {
  display: block;
}

ul.contextual-links li {
  line-height: 100%;
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

div.contextual-links-wrapper a {
  text-decoration: none;
}

ul.contextual-links li a {
  background-color: #202020;
  color: #fff !important;
  display: block;
  margin: 0;
  padding: 10px;
}

ul.contextual-links li a:hover {
  background-color: #0074bd;
}

/*
 * Forms, webforms
 */
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=date],
input[type=month],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=week],
input[type=number],
input[type=search],
input[type=tel],
input[type=color],
.form-text,
select,
textarea {
  padding: .5em .6em;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 2px;
  color: #000;
  font-size: 17px;
  font-size: 1.0625rem;
  width: 100%;
  max-width: 500px;
  outline: none;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
.form-text:focus,
select:focus,
textarea:focus {
  border-color: #818285;
}

fieldset {
  margin-bottom: 1.5em;
  padding: 0;
  border: 0;
}

fieldset fieldset {
  margin-bottom: 0;
}

form fieldset:last-of-type {
  margin-bottom: 0;
}

.fieldset-description {
  margin-bottom: 1.5em;
}

.grippie {
  max-width: 500px;
}

/*  legend... wait for it... dary! */
legend {
  padding: 0;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 600;
  border-bottom: 1px solid #d1d2d4;
  display: block;
  width: 100%;
  margin-bottom: 1.5em;
}

label {
  display: block;
  margin-bottom: 0.5em;
}

/*  Placeholders. Keep as seperate selectors or it won't work  */
.placeholder {
  color: #9b9c9e;
}

::-webkit-input-placeholder {
  color: #9b9c9e;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #9b9c9e;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #9b9c9e;
}

:-ms-input-placeholder {
  color: #9b9c9e;
}

/*  Drupal classes */
.form-item {
  margin-bottom: 1.5em;
}

input[type="submit"], .form-submit {
  background-color: #818285;
  cursor: pointer;
}

.views-reset-button input[type="submit"], .views-reset-button .form-submit {
  background-color: #818285;
}

.views-reset-button input[type="submit"]:hover, .views-reset-button input[type="submit"]:focus, .views-reset-button .form-submit:hover, .views-reset-button .form-submit:focus {
  background-color: #f36d32;
}

.form-managed-file .form-submit {
  background-color: #818285;
}

.form-managed-file .form-submit:hover {
  background-color: #f36d32;
}

.description {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #4d4d4d;
  margin: 0.75em 0;
}

.form-type-checkbox {
  margin-bottom: 0;
}

.form-type-checkbox label {
  font-weight: 400;
}

.form-type-radio {
  margin-bottom: 0;
}

.form-radios label,
label.option {
  display: inline;
}

.form-managed-file .form-file {
  display: inline;
  width: auto;
}

.form-type-date select {
  width: auto;
}

/*
  WEBFORM
*/
.webform-client-form .form,
.webform-client-form .form-item {
  margin-bottom: 1.5em;
}

.webform-client-form .form label,
.webform-client-form .form-item label {
  margin-bottom: 1.5em;
}

.webform-client-form .form-item {
  position: relative;
}

.webform-client-form .form-item > label {
  font-weight: bold;
}

.webform-client-form .form-item .label-inline {
  display: inline;
}

.webform-client-form .form-item textarea {
  box-shadow: none;
  border: 1px solid #d1d2d4;
  padding: 10px;
  border-radius: 0;
}

.webform-client-form .form-item input[readonly="readonly"] {
  background-color: #fcfcfc;
  border-color: #d1d2d4;
}

.webform-client-form .webform-component-checkboxes input,
.webform-client-form .webform-component-radios input {
  padding-top: 2px;
}

.webform-client-form .webform-component-checkboxes.form-item .form-item,
.webform-client-form .webform-component-radios.form-item .form-item {
  margin-bottom: 0;
}

.webform-client-form .webform-component-checkboxes.form-item .form-item label,
.webform-client-form .webform-component-radios.form-item .form-item label {
  font-weight: normal;
  margin-bottom: 0;
}

.webform-client-form .webform-component-checkboxes.form-item .form-item .form-type-checkbox,
.webform-client-form .webform-component-radios.form-item .form-item .form-type-checkbox {
  margin: 0;
  padding: 10px 0 10px 5px;
}

.webform-client-form .form-item-clear {
  width: auto;
  border: 0;
  padding: 0;
  font-weight: bold;
}

.webform-client-form .webform-component-date .form-select,
.webform-client-form .webform-component-time .form-select {
  width: auto;
}

.webform-client-form .webform-component-textarea .grippie {
  display: none;
}

.page-user {
  background: #fff;
  padding: 0 20px;
}

#login-top img {
  max-width: 70%;
  margin: 0 auto;
  display: block;
}

#auth_box {
  font-family: "Arvo", Helvetica, Arial, sans-serif;
  max-width: 340px;
  margin: 3em auto 0;
}

#auth_box .form-submit {
  width: 100%;
  float: none;
  padding: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

#auth_box input[type="text"], #auth_box input[type="password"] {
  width: 100%;
  padding: 12px;
  background: #f2f2f2;
}

#top_part {
  margin-top: 2em;
}

#login-middle {
  border: 1px solid #d1d2d4;
  border-radius: 3px;
  box-shadow: 0 0 25px #f2f2f2;
  padding: 1em;
  margin-bottom: 2em;
}

#login-middle h2 {
  font-size: 1.5em;
  margin-top: 0;
}

#login-bottom {
  text-align: center;
}

.login-footer {
  margin-top: 4em;
  text-align: center;
}

.page-maintenance {
  padding: 50px 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.page-maintenance h1:before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 1em;
  background: url("../img/admin/info.png");
  background: url("../img/admin/info.svg"), none;
  background-size: 150px 150px;
}

/*
 * Drupal messages
 */
.message {
  padding: 10px 55px 10px 10px;
  position: relative;
  color: #fff;
  margin-bottom: 1.5em;
}

.message a {
  color: yellow;
}

.message a:hover {
  color: yellow;
  text-decoration: underline;
}

.message.info {
  background: #5BC0DE;
}

.message.info .close {
  background: #2390b0;
}

.message.info .close:hover {
  background: #1b6d85;
}

.message.error {
  background: #D9534F;
}

.message.error .close {
  background: #a02622;
}

.message.error .close:hover {
  background: #761c19;
}

.message.warning {
  background: #F0AD4E;
}

.message.warning .close {
  background: #c77c11;
}

.message.warning .close:hover {
  background: #985f0d;
}

.message.status {
  background: #5CB85C;
}

.message.status .close {
  background: #357935;
}

.message.status .close:hover {
  background: #255625;
}

.message .close {
  color: #fff;
  font-size: 34px;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
}

.message .close:hover {
  text-decoration: none;
}

.message .placeholder {
  color: #fff;
  font-weight: bold;
}

.messages > *:last-child,
.messages > *:last-child > *:last-child,
.messages > *:last-child > *:last-child > *:last-child {
  margin-bottom: 0;
}

/*
 * Pagination
 */
.item-list {
  overflow: auto;
}

.item-list .pager {
  padding: 0;
  text-align: left;
  overflow: auto;
}

.item-list .pager li {
  float: left;
  list-style: none;
  padding: 0;
}

.item-list .pager a {
  color: #000;
  background: #fff;
  border-top: 1px solid #d1d2d4;
  border-left: 1px solid #d1d2d4;
  border-bottom: 1px solid #d1d2d4;
  display: inline-block;
  padding: 5px 14px;
}

.item-list .pager a:hover {
  background: #f36d32;
  border-color: #f36d32;
  color: #fff;
  text-decoration: none;
}

.item-list .pager a:active {
  background: #999999;
}

.item-list .pager .pager-ellipsis {
  background: #fff;
  border-top: 1px solid #d1d2d4;
  border-left: 1px solid #d1d2d4;
  border-bottom: 1px solid #d1d2d4;
  display: inline-block;
  padding: 5px 12px;
  /*  2 px less */
}

.item-list .pager .last {
  border-right: 1px solid #d1d2d4;
}

.item-list .pager .pager-current {
  background: #818285;
  border-top: 1px solid #d1d2d4;
  border-left: 1px solid #d1d2d4;
  border-bottom: 1px solid #d1d2d4;
  color: #fff;
  padding: 6px 15px;
  margin-top: -1px;
}

.site-map ul {
  padding: 0;
  margin: 0;
}

.site-map ul ul {
  padding-left: 20px;
}

.site-map ul ul a {
  background: #999;
}

.site-map ul ul ul a {
  background: #777;
}

.site-map ul ul ul ul a {
  background: #555;
}

.site-map ul ul ul ul ul a {
  background: #333;
}

.site-map ul a {
  padding: 5px 10px;
  background: #f36d32;
  /* Change to primary-color colour */
}

.site-map li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-map a {
  color: white;
  display: inline-block;
  margin-bottom: 1px;
}

.site-map a:hover {
  background: #e54f0d;
  color: #fff;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track {
  -webkit-translate3d: 0, 0, 0;
  -moz-translate3d: 0, 0, 0;
  -ms-translate3d: 0, 0, 0;
  -o-translate3d: 0, 0, 0;
  translate3d: 0, 0, 0;
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
  z-index: 900;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 20px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 20px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 0;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  z-index: 1000;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-size: 30px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*
 * Tables
 */
table {
  background-color: #fff;
  border: 0 solid transparent;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5em;
}

table caption {
  text-align: left;
}

table th {
  text-align: left;
}

table td {
  vertical-align: top;
}

table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td {
  padding: 5px;
  vertical-align: top;
  border-bottom: 1px solid #d1d2d4;
}

table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #d1d2d4;
}

table > caption + thead > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > th,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

table > tbody + tbody {
  border-top: 2px solid #d1d2d4;
}

table table {
  background-color: #fff;
  margin-bottom: 0;
}

/**
 * Responsive tables. tables in node content are wrapped with a div with class "table-responsive" via js in scripts.js
 */
.table-responsive {
  width: 100%;
  overflow-y: auto;
}

.table-responsive::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
}

.table-responsive::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
}

.table-bordered {
  border: 1px solid #d1d2d4;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #d1d2d4;
  padding: 5px;
}

.table-striped > tbody > tr:nth-child(odd),
.table-striped .odd-row {
  background-color: #f2f2f2;
}

.table-striped th, .table-striped td {
  border: 0;
}

.table-striped-vertical th:nth-child(odd),
.table-striped-vertical td:nth-child(odd),
.table-striped-vertical .odd-column {
  background-color: #f2f2f2;
}

.table-striped-vertical th, .table-striped-vertical td {
  border: 0;
}

.table-vertical th, .table-vertical td {
  border-top: 0;
  border-bottom: 0;
  border-right: 1px solid #d1d2d4;
}

.table-vertical tr td:last-child,
.table-vertical tr th:last-child {
  border: 0;
}

.table-unstyled > thead > tr > th,
.table-unstyled > thead > tr > td,
.table-unstyled > tbody > tr > th,
.table-unstyled > tbody > tr > td,
.table-unstyled > tfoot > tr > th,
.table-unstyled > tfoot > tr > td {
  padding: 0;
  vertical-align: top;
  border: 0;
}

/**
 * Tabs
 */
.tabs.primary {
  list-style: none;
  padding-left: 0;
  border-bottom: 1px solid #d1d2d4;
}

.tabs.primary li {
  display: inline-block;
  position: relative;
  top: 1px;
}

.tabs.primary a {
  display: inline-block;
  padding: .5em 1em;
}

.tabs.primary a.active {
  border-top: 1px solid #d1d2d4;
  border-left: 1px solid #d1d2d4;
  border-right: 1px solid #d1d2d4;
  border-bottom: 0 solid white;
  background: white;
}

/*
 * Classes that can be used in the WYSIWYG editor
 */
.image-left {
  float: left;
  background-color: #fff;
  border: 1px solid #d1d2d4;
  padding: 5px;
  margin-right: 1.25em;
}

.image-right {
  float: right;
  background-color: #fff;
  border: 1px solid #d1d2d4;
  padding: 5px;
  margin-left: 1.25em;
}

big {
  font-size: 19px;
  font-size: 1.1875rem;
}

small {
  font-size: 15px;
  font-size: 0.9375rem;
}

.layout-row {
  *zoom: 1;
}

.layout-row:before, .layout-row:after {
  content: '';
  display: table;
}

.layout-row:after {
  clear: both;
}

body.cke_editable {
  padding: 20px;
}

body.cke_editable .layout-row {
  padding: 10px;
  margin: 0 -10px 20px;
  border: 1px dashed pink;
}

body.cke_editable .layout-row > div {
  border: 1px dashed #a5d3e4;
}

body.cke_editable table td {
  border: 1px dashed #ccc;
}

@media (min-width: 768px) {
  .col-one-half {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-one-half:before, .col-one-half:after {
    content: '';
    display: table;
  }
  .col-one-half:after {
    clear: both;
  }
  .col-one-half:last-child {
    margin-right: 0%;
  }
  .col-one-third {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-one-third:before, .col-one-third:after {
    content: '';
    display: table;
  }
  .col-one-third:after {
    clear: both;
  }
  .col-one-third:last-child {
    margin-right: 0%;
  }
  .col-two-thirds {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-two-thirds:before, .col-two-thirds:after {
    content: '';
    display: table;
  }
  .col-two-thirds:after {
    clear: both;
  }
  .col-two-thirds:last-child {
    margin-right: 0%;
  }
  .col-one-quarter {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-one-quarter:before, .col-one-quarter:after {
    content: '';
    display: table;
  }
  .col-one-quarter:after {
    clear: both;
  }
  .col-one-quarter:last-child {
    margin-right: 0%;
  }
}

/* ---------- Import design ---------- */
/**
 * Layout
 *
 * All layout theming should go in this file
 */
html, body, .content-area-wrapper {
  height: 100%;
}

body.admin-menu {
  height: calc(100% - 29px);
}

.content-area-wrapper {
  *zoom: 1;
}

.content-area-wrapper:before, .content-area-wrapper:after {
  content: '';
  display: table;
}

.content-area-wrapper:after {
  clear: both;
}

.container,
.main > *,
aside > * {
  margin: 0 auto;
  padding: 0 20px;
  *zoom: 1;
}

.container:before, .container:after,
.main > *:before,
.main > *:after,
aside > *:before,
aside > *:after {
  content: '';
  display: table;
}

.container:after,
.main > *:after,
aside > *:after {
  clear: both;
}

.main > .content-wrapper {
  padding: 20px;
}

@media (min-width: 1025px) {
  .main > .content-wrapper {
    padding: 50px;
  }
}

body {
  margin-top: 58px;
}

@media (min-width: 768px) {
  .sidebar_first {
    background: white;
  }
  body {
    margin-top: 0;
  }
  #wrapper {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    *zoom: 1;
    margin-right: 0;
    height: calc(100% - 72px);
    position: relative;
    margin-top: 58px;
  }
  #wrapper:before, #wrapper:after {
    content: '';
    display: table;
  }
  #wrapper:after {
    clear: both;
  }
  #wrapper:last-child {
    margin-right: 0%;
  }
  #wrapper:before, #wrapper:after {
    content: '';
    display: table;
  }
  #wrapper:after {
    clear: both;
  }
  #wrapper aside {
    overflow: hidden;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 28.57143%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 100%;
  }
  #wrapper aside:before, #wrapper aside:after {
    content: '';
    display: table;
  }
  #wrapper aside:after {
    clear: both;
  }
  #wrapper aside:last-child {
    margin-right: 0%;
  }
  .one-sidebar #wrapper .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .one-sidebar #wrapper .main:before, .one-sidebar #wrapper .main:after {
    content: '';
    display: table;
  }
  .one-sidebar #wrapper .main:after {
    clear: both;
  }
  .one-sidebar #wrapper .main:last-child {
    margin-right: 0%;
  }
  .two-sidebars #wrapper .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 71.42857%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .two-sidebars #wrapper .main:before, .two-sidebars #wrapper .main:after {
    content: '';
    display: table;
  }
  .two-sidebars #wrapper .main:after {
    clear: both;
  }
  .two-sidebars #wrapper .main:last-child {
    margin-right: 0%;
  }
  .three-sidebars #wrapper .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 42.85714%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .three-sidebars #wrapper .main:before, .three-sidebars #wrapper .main:after {
    content: '';
    display: table;
  }
  .three-sidebars #wrapper .main:after {
    clear: both;
  }
  .three-sidebars #wrapper .main:last-child {
    margin-right: 0%;
  }
  footer {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    *zoom: 1;
    z-index: 1100;
    bottom: 0;
    width: 100%;
    margin: 0;
  }
  footer:before, footer:after {
    content: '';
    display: table;
  }
  footer:after {
    clear: both;
  }
  footer:last-child {
    margin-right: 0%;
  }
  footer:before, footer:after {
    content: '';
    display: table;
  }
  footer:after {
    clear: both;
  }
}

@media (min-width: 1025px) {
  #wrapper {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 77.77778%;
    margin-left: 22.22222%;
    margin-right: 0%;
    margin-top: 0;
  }
  #wrapper:before, #wrapper:after {
    content: '';
    display: table;
  }
  #wrapper:after {
    clear: both;
  }
  #wrapper:last-child {
    margin-right: 0%;
  }
  .sidebar_first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.22222%;
    margin-left: 0%;
    margin-right: 0%;
    height: 100%;
    position: fixed;
    z-index: 101;
    display: block;
    border-right: 1px solid;
  }
  .sidebar_first:before, .sidebar_first:after {
    content: '';
    display: table;
  }
  .sidebar_first:after {
    clear: both;
  }
  .sidebar_first:last-child {
    margin-right: 0%;
  }
  #wrapper aside {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 28.57143%;
    margin-left: 0%;
    margin-right: 0%;
  }
  #wrapper aside:before, #wrapper aside:after {
    content: '';
    display: table;
  }
  #wrapper aside:after {
    clear: both;
  }
  #wrapper aside:last-child {
    margin-right: 0%;
  }
  .two-sidebars #wrapper .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 71.42857%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .two-sidebars #wrapper .main:before, .two-sidebars #wrapper .main:after {
    content: '';
    display: table;
  }
  .two-sidebars #wrapper .main:after {
    clear: both;
  }
  .two-sidebars #wrapper .main:last-child {
    margin-right: 0%;
  }
  .three-sidebars #wrapper .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 42.85714%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .three-sidebars #wrapper .main:before, .three-sidebars #wrapper .main:after {
    content: '';
    display: table;
  }
  .three-sidebars #wrapper .main:after {
    clear: both;
  }
  .three-sidebars #wrapper .main:last-child {
    margin-right: 0%;
  }
}

@media screen and (max-width: 1025px) {
  header #branding {
    position: fixed;
    z-index: 1003;
    height: 57px;
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 1025px) and (min-width: 768px) {
  header #branding {
    height: 57px;
  }
}

@media screen and (max-width: 1025px) and (min-width: 1025px) {
  header #branding {
    display: initial;
    position: initial;
    height: initial;
  }
}

@media screen and (max-width: 1025px) {
  header nav {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    left: -100%;
    top: 0;
    opacity: 0;
    transition: all ease-out .3s;
    overflow-y: scroll;
  }
  header nav::-webkit-scrollbar {
    display: none;
  }
  body.menu-open header nav {
    left: 0%;
    opacity: 1;
  }
}

header nav {
  background-color: black;
  color: white;
  padding: 70px 10% 50px;
}

header nav * {
  text-align: left;
}

@media (min-width: 768px) {
  header nav {
    padding: 30px 10% 50px;
  }
}

@media (min-width: 1025px) {
  header nav {
    background-color: white;
    color: black;
    padding: 0;
  }
}

#block-system-main-menu ul.menu {
  font-family: "Montserrat", "Arvo", Helvetica, Arial, sans-serif;
  margin: 0;
  margin-top: -1px;
  list-style: none;
  padding: 5% 0;
}

#block-system-main-menu ul.menu a {
  display: block;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: bold;
  padding: 2% 0;
  position: relative;
  color: currentColor;
}

#block-system-main-menu ul.menu a:hover {
  color: #f36d32;
}

@media (min-width: 1025px) {
  #block-system-main-menu ul.menu a::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    top: 0;
    right: -11px;
    transition: all ease-out .2s;
    background-color: #f36d32;
  }
  #block-system-main-menu ul.menu a:hover {
    color: #f36d32;
  }
  #block-system-main-menu ul.menu a:hover::after {
    width: 20px;
    right: -21px;
  }
}

@media (min-width: 1025px) {
  #block-system-main-menu ul.menu {
    padding: 0;
  }
  #block-system-main-menu ul.menu a {
    padding: 22px 5% 22px 15%;
    border-top: 1px solid #d1d2d4;
  }
  #block-system-main-menu ul.menu .first a::after {
    background-color: white;
  }
  .not-front #block-system-main-menu ul.menu .first a::after {
    background-color: #d1d2d4;
  }
  #block-system-main-menu ul.menu .last a::after {
    background-color: black;
  }
}

#block-menu-features ul.menu {
  font-family: "Open Sans", "Montserrat", "Arvo", Helvetica, Arial, sans-serif;
  margin: 0;
  list-style: none;
  padding: 5% 0 0 0;
}

#block-menu-features ul.menu a {
  color: currentColor;
  display: block;
  padding: 1% 0;
}

#block-menu-features ul.menu a:hover {
  color: #f36d32;
}

@media (min-width: 1025px) {
  #block-menu-features ul.menu {
    padding: 35px 0 0 0;
  }
  #block-menu-features ul.menu a {
    padding: 5px 5% 5px 15%;
  }
}

#social-counters {
  padding: 25px 0 0 0;
}

@media (min-width: 768px) {
  #social-counters {
    padding: 35px 0 0 0;
  }
}

#social-counters a:hover {
  color: #f36d32;
}

#social-counters, #social-counters a {
  color: white;
}

@media (min-width: 1025px) {
  #social-counters, #social-counters a {
    color: black;
  }
}

#social-counters .counter {
  font-style: italic;
  font-family: "Open Sans";
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 1025px) {
  #social-counters .counter {
    padding: 5px 5% 5px 15%;
  }
}

#social-counters .counter::before {
  font-size: 16px;
  font-size: 1rem;
  font-style: initial;
  border: 1px solid;
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  text-align: center;
  margin-right: 15px;
  font-weight: bold;
}

#social-counters .counter.fb-counter::before {
  content: "f";
}

#social-counters .counter.fb-counter::after {
  content: " likes";
}

#mobile-nav {
  position: fixed;
  z-index: 1001;
  width: 100%;
  top: 0;
  right: 0;
  background: black;
  color: white;
  font-family: "Montserrat";
  padding: 1rem;
  height: 58px;
  text-align: right;
  transition: background ease-out .1s;
  transition-delay: 0s;
  border-bottom: 1px solid white;
}

#mobile-nav::after {
  content: "Menu";
}

#mobile-nav #hamburger-menu {
  float: right;
  margin: 0 0 0 1rem;
  cursor: pointer;
}

#mobile-nav #hamburger-menu span {
  display: block;
  width: 19px;
  height: 3px;
  margin: 4px 0;
  background-color: #f36d32;
  transition: all ease-out .3s;
}

@media (min-width: 768px) {
  #mobile-nav {
    bottom: initial;
    top: 0;
  }
}

@media (min-width: 1025px) {
  #mobile-nav {
    display: none;
  }
}

body.menu-open #mobile-nav {
  transition: background ease-out .6s, border ease-out .3s;
  transition-delay: 0.3s;
  background: linear-gradient(to bottom, black 0%, black 5%, transparent 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
  border-bottom-color: black;
}

body.menu-open #mobile-nav::after {
  content: "Close";
}

body.menu-open #mobile-nav #hamburger-menu span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(225deg);
      -ms-transform: translateY(7px) rotate(225deg);
          transform: translateY(7px) rotate(225deg);
}

body.menu-open #mobile-nav #hamburger-menu span:nth-child(2) {
  width: 0;
  opacity: 0;
}

body.menu-open #mobile-nav #hamburger-menu span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-225deg);
      -ms-transform: translateY(-7px) rotate(-225deg);
          transform: translateY(-7px) rotate(-225deg);
}

/*
 * Design
 *
 * Include all your design elements in this file.
 */
body {
  background: #fff;
  color: #000;
}

body.admin-menu {
  margin-top: 29px !important;
}

a {
  transition: all 0.3s;
  color: #000;
  text-decoration: none;
}

a:hover, a:focus {
  color: #f36d32;
}

.field-name-body a {
  color: #f36d32;
}

.field-name-body a.button {
  color: white;
}

svg * {
  transition: all ease-out .2s;
}

.field {
  margin-bottom: 0.9rem;
}

.field .field-label {
  font-weight: 700;
}

.page-user {
  padding: 0;
}

.message {
  padding: 10px 55px 10px 10px;
}

.content {
  text-align: center;
}

@media (min-width: 768px) {
  .content {
    text-align: left;
  }
}

.node--page--full {
  padding-bottom: 60px;
}

hr {
  height: 2px;
  border: none;
  background-color: black;
  width: 30%;
  min-width: 200px;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

h2,
h3 {
  text-align: center;
  color: inherit;
}

@media (min-width: 768px) {
  h2,
  h3 {
    text-align: inherit;
  }
}

/**
 * ===== BRANDING =====
 */
#branding {
  background-color: #f36d32;
  text-align: center;
  padding: 0;
}

#branding a#logo {
  display: block;
  position: relative;
  line-height: 0;
}

#branding a#logo img, #branding a#logo svg {
  padding: 10px;
  height: 58px;
  width: 57px;
}

@media (min-width: 768px) {
  #branding a#logo img, #branding a#logo svg {
    height: 57px;
  }
}

@media (min-width: 1025px) {
  #branding a#logo img, #branding a#logo svg {
    padding: 35px;
    width: 100%;
    height: auto;
  }
}

#branding a#logo:hover {
  background-color: white;
}

#branding a#logo:hover svg * {
  fill: black;
}

#branding .site-name-slogan {
  display: none;
}

/**
 * ===== DEFINING BORDERS =====
 */
@media (min-width: 768px) {
  #wrapper article.main {
    border-right: 1px solid;
  }
  .front #wrapper article.main {
    border-right-color: white;
  }
}

#wrapper aside {
  border-top: 1px solid black;
}

@media (min-width: 768px) {
  #wrapper aside {
    border-top: none;
    box-shadow: -1px 0 0 0 #000;
  }
  .front #wrapper aside {
    outline: 1px solid;
    outline-color: white;
    min-height: 100%;
  }
}

#block-system-main-menu {
  border-bottom: 1px solid;
}

/**
 * ===== EXPERIMENT ======
 */
/**
 * ===== HOMEPAGE =====
 */
.front aside {
  background-color: white;
}

@media (min-width: 768px) {
  .front {
    background: url(../img/hp-bg.jpg) fixed no-repeat left bottom;
    background-size: contain;
  }
  .front .main, .front .sidebar_second {
    border-right: 1px solid white;
  }
}

@media (min-width: 1025px) {
  .front {
    background-position: 33% bottom;
  }
}

.front .main {
  text-align: center !important;
}

/**
 * ===== THE REST =====
 */
.not-front article.main #main-content {
  text-align: center;
  color: white;
  background-color: black;
  font-size: 30px;
  font-size: 1.875rem;
  padding-top: 42px;
  padding-bottom: 42px;
  line-height: 1.1;
}

/**
 * ===== FOOTER =====
 */
footer {
  border-top: 1px solid;
  padding: 25px 20px 20px;
  background-color: white;
}

@media (min-width: 768px) {
  footer {
    padding-left: 75px;
  }
}

footer #ccnt:hover #Catholic *, footer #ccnt:hover #NT * {
  fill: #0096d6;
}

footer #ccnt:hover #Care * {
  fill: #32458f;
  stroke: #32458f;
}

footer #foo-links {
  padding-top: 1em;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Open Sans", "Arvo", Helvetica, Arial, sans-serif;
}

@media (min-width: 768px) {
  footer #foo-links {
    float: right;
    padding-top: 0;
  }
}

footer #foo-links a {
  margin: 0.5em;
}

/**
 * =============== CALL TO ACTIONS ================
 */
.sidebar_third > * {
  padding: 1rem;
}

@media (min-width: 1025px) {
  .sidebar_third > * {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ------ ACT NOW ----- */
.act-now {
  color: white;
  padding: 0;
}

.act-now .content a {
  background-color: black;
  color: white;
  display: block;
  padding: 2.4rem 1rem;
  line-height: 23px;
  *zoom: 1;
  font-weight: bold;
  position: relative;
  min-height: 140px;
  transition: all ease-out .2s;
}

@media (min-width: 1025px) {
  .act-now .content a {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.act-now .content a:before, .act-now .content a:after {
  content: '';
  display: table;
}

.act-now .content a:after {
  clear: both;
}

.act-now .content a span,
.act-now .content a strong {
  display: block;
}

.act-now .content a span {
  display: none;
  font-size: 18.57px;
  font-size: 1.16063rem;
  position: absolute;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 42%;
}

@media (min-width: 768px) {
  .act-now .content a span {
    display: none;
  }
}

@media (min-width: 1025px) {
  .act-now .content a span {
    display: block;
  }
}

@media (min-width: 1280px) {
  .act-now .content a span {
    width: 44%;
  }
}

.act-now .content a strong {
  font-family: "Montserrat";
  text-transform: uppercase;
  font-size: 26.38px;
  font-size: 1.64875rem;
  position: absolute;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 6px solid #f36d32;
  line-height: 28px;
  left: 50%;
  width: 65%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.act-now .content a strong::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: solid currentColor;
  border-width: 3px 3px 0 0;
  -webkit-transform: translateX(0.4em) rotate(45deg);
      -ms-transform: translateX(0.4em) rotate(45deg);
          transform: translateX(0.4em) rotate(45deg);
  transition: all ease-out .2s;
}

.act-now .content a strong:hover::after {
  -webkit-transform: translateX(0.8em) rotate(45deg);
      -ms-transform: translateX(0.8em) rotate(45deg);
          transform: translateX(0.8em) rotate(45deg);
}

.act-now .content a strong::after {
  position: absolute;
  color: #f36d32;
  width: 35px;
  height: 35px;
  border-width: 6px 6px 0 0;
  right: 0;
  top: 50%;
  -webkit-transform: translate(-8px, -50%) rotate(45deg);
      -ms-transform: translate(-8px, -50%) rotate(45deg);
          transform: translate(-8px, -50%) rotate(45deg);
}

.act-now .content a:hover strong::after {
  -webkit-transform: translate(8px, -50%) rotate(45deg);
      -ms-transform: translate(8px, -50%) rotate(45deg);
          transform: translate(8px, -50%) rotate(45deg);
}

/* ------ SHOUT OUT ----- */
.shout-out {
  color: white;
  padding: 0;
}

.shout-out .content a {
  background-color: black;
  color: white;
  display: block;
  padding: 2.4rem 1rem;
  line-height: 23px;
  font-weight: bold;
  position: relative;
  min-height: 140px;
  transition: all ease-out .2s;
}

@media (min-width: 1025px) {
  .shout-out .content a {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.shout-out .content a strong {
  color: #f36d32;
  font-family: "Montserrat";
  font-size: 22px;
  font-size: 1.375rem;
  position: absolute;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-left: 6px solid #f36d32;
  line-height: 28px;
  left: 50%;
  width: 65%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.shout-out .content a strong span {
  color: white;
  text-transform: uppercase;
}

.shout-out .content a strong::after {
  content: "";
  display: inline-block;
  border: solid currentColor;
  border-width: 3px 3px 0 0;
  -webkit-transform: translateX(0.4em) rotate(45deg);
  -ms-transform: translateX(0.4em) rotate(45deg);
  transform: translateX(0.4em) rotate(45deg);
  transition: all ease-out .2s;
  position: absolute;
  color: #f36d32;
  width: 35px;
  height: 35px;
  border-width: 6px 6px 0 0;
  right: -25px;
  top: 50%;
  -webkit-transform: translate(-8px, -50%) rotate(45deg);
  -ms-transform: translate(-8px, -50%) rotate(45deg);
  transform: translate(-8px, -50%) rotate(45deg);
}

.shout-out .content a strong:hover::after {
  right: -40px;
}

.shout-out .content a:hover span {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

/* ------ QUOTES ----- */
#block-views-quotes-block {
  padding: 0;
}

#block-views-quotes-block .content {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.2em;
  padding: 1.6rem 1rem 2.4rem;
}

@media (min-width: 1025px) {
  #block-views-quotes-block .content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

#block-views-quotes-block .content .slick-prev,
#block-views-quotes-block .content .slick-next {
  position: absolute;
  height: 28px;
  width: 40px;
  line-height: 0;
  font-size: 0;
  background: transparent;
  color: transparent;
  top: auto;
  bottom: 0;
}

#block-views-quotes-block .content .slick-prev::before,
#block-views-quotes-block .content .slick-next::before {
  content: none;
}

#block-views-quotes-block .content .slick-prev::after,
#block-views-quotes-block .content .slick-next::after {
  content: "";
  border: 3px solid #f36d32;
  border-width: 3px 0 0 3px;
  height: 20px;
  width: 20px;
  display: block;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  margin: 0;
  padding: 0;
  top: 4px;
  transition: all ease-out .2s;
}

#block-views-quotes-block .content .slick-prev {
  left: auto;
  right: 57px;
}

#block-views-quotes-block .content .slick-prev::after {
  right: 8px;
}

#block-views-quotes-block .content .slick-prev:hover::after {
  right: 18px;
}

#block-views-quotes-block .content .slick-prev::before {
  content: "";
  color: #818285;
  background-color: #818285;
  display: block;
  position: absolute;
  width: 3px;
  height: 100%;
  opacity: 1;
  top: 0;
  right: 0;
  transition: all ease-out .2s;
}

#block-views-quotes-block .content .slick-next {
  right: 20px;
}

#block-views-quotes-block .content .slick-next::after {
  border-width: 3px 3px 0 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 8px;
}

#block-views-quotes-block .content .slick-next:hover::after {
  left: 18px;
}

/* ------ SHOWN SUPPORT ----- */
.shown-support {
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.shown-support big, .shown-support span {
  color: #f36d32;
  font-family: "Montserrat";
  display: block;
}

.shown-support big {
  font-size: 51px;
  font-size: 3.1875rem;
}

.shown-support span {
  color: #f36d32;
  font-size: 21px;
  font-size: 1.3125rem;
  margin-top: 10px;
}

/**
 * =============== NEWS ================
 */
.view-mode-teaser .field,
.view-mode-full .field {
  margin-bottom: 0;
}

/* ------ LISTING ----- */
.page-news .content-wrapper {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.page-news .content-wrapper > * {
  padding-left: 50px;
  padding-right: 50px;
}

.page-news .content-wrapper .node--article--teaser,
.page-news .content-wrapper .news-teaser {
  border-bottom: 1px solid;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}

.page-news .content-wrapper .node--article--teaser .group-right, .page-news .content-wrapper .node--article--teaser .group-left,
.page-news .content-wrapper .news-teaser .group-right,
.page-news .content-wrapper .news-teaser .group-left {
  float: initial;
  width: initial;
}

.page-news .content-wrapper .node--article--teaser .group-left,
.page-news .content-wrapper .news-teaser .group-left {
  text-align: center !important;
}

@media (min-width: 768px) {
  .page-news .content-wrapper .node--article--teaser .group-left,
  .page-news .content-wrapper .news-teaser .group-left {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .page-news .content-wrapper .node--article--teaser .group-left:before, .page-news .content-wrapper .node--article--teaser .group-left:after,
  .page-news .content-wrapper .news-teaser .group-left:before,
  .page-news .content-wrapper .news-teaser .group-left:after {
    content: '';
    display: table;
  }
  .page-news .content-wrapper .node--article--teaser .group-left:after,
  .page-news .content-wrapper .news-teaser .group-left:after {
    clear: both;
  }
  .page-news .content-wrapper .node--article--teaser .group-left:last-child,
  .page-news .content-wrapper .news-teaser .group-left:last-child {
    margin-right: 0%;
  }
}

.page-news .content-wrapper .node--article--teaser .group-left img,
.page-news .content-wrapper .news-teaser .group-left img {
  border-radius: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-news .content-wrapper .node--article--teaser .group-right,
  .page-news .content-wrapper .news-teaser .group-right {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74.25%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .page-news .content-wrapper .node--article--teaser .group-right:before, .page-news .content-wrapper .node--article--teaser .group-right:after,
  .page-news .content-wrapper .news-teaser .group-right:before,
  .page-news .content-wrapper .news-teaser .group-right:after {
    content: '';
    display: table;
  }
  .page-news .content-wrapper .node--article--teaser .group-right:after,
  .page-news .content-wrapper .news-teaser .group-right:after {
    clear: both;
  }
  .page-news .content-wrapper .node--article--teaser .group-right:last-child,
  .page-news .content-wrapper .news-teaser .group-right:last-child {
    margin-right: 0%;
  }
}

.page-news .content-wrapper .node--article--teaser h3,
.page-news .content-wrapper .news-teaser h3 {
  margin-top: 0;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Arvo";
}

.page-news .content-wrapper .node--article--teaser .field-name-post-date,
.page-news .content-wrapper .news-teaser .field-name-post-date {
  font: italic 1em "Open Sans";
  text-align: center;
}

@media (min-width: 768px) {
  .page-news .content-wrapper .node--article--teaser .field-name-post-date,
  .page-news .content-wrapper .news-teaser .field-name-post-date {
    text-align: left;
  }
}

.page-news .content-wrapper .node--article--teaser .field-name-node-link,
.page-news .content-wrapper .news-teaser .field-name-node-link {
  font: bold 1em "Montserrat";
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 768px) {
  .page-news .content-wrapper .node--article--teaser .field-name-node-link,
  .page-news .content-wrapper .news-teaser .field-name-node-link {
    text-align: left;
  }
}

.page-news .content-wrapper .node--article--teaser .field-name-node-link a,
.page-news .content-wrapper .news-teaser .field-name-node-link a {
  color: #f36d32;
}

.page-news .content-wrapper .node--article--teaser .field-name-node-link a::after,
.page-news .content-wrapper .news-teaser .field-name-node-link a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: solid currentColor;
  border-width: 3px 3px 0 0;
  -webkit-transform: translateX(0.4em) rotate(45deg);
      -ms-transform: translateX(0.4em) rotate(45deg);
          transform: translateX(0.4em) rotate(45deg);
  transition: all ease-out .2s;
}

.page-news .content-wrapper .node--article--teaser .field-name-node-link a:hover::after,
.page-news .content-wrapper .news-teaser .field-name-node-link a:hover::after {
  -webkit-transform: translateX(0.8em) rotate(45deg);
      -ms-transform: translateX(0.8em) rotate(45deg);
          transform: translateX(0.8em) rotate(45deg);
}

/* ========= GALLERY ========= */
.node-image-gallery.node-teaser {
  width: 100%;
}

@media (min-width: 480px) {
  .node-image-gallery.node-teaser {
    width: 50%;
    width: calc(50% - 15px);
  }
}

@media (min-width: 768px) {
  .node-image-gallery.node-teaser {
    width: 33.33333%;
    width: calc(33.33333% - 34px);
  }
}

@media (min-width: 1025px) {
  .node-image-gallery.node-teaser {
    width: calc(33.33333% - 47px);
  }
}

.node-image-gallery.node-teaser a.field-group-link h2 {
  bottom: 0;
  display: block;
  background-color: black;
  margin: 0;
  padding: 5px 20px;
  color: currentColor;
  color: white;
  transition: all ease-out .3s;
}

@media (min-width: 768px) {
  .node-image-gallery.node-teaser a.field-group-link h2 {
    padding: 15px 20px;
  }
}

@media (min-width: 1025px) {
  .node-image-gallery.node-teaser a.field-group-link h2 {
    padding: 20px;
  }
}

.node-image-gallery.node-teaser a.field-group-link img {
  vertical-align: top;
  width: 100%;
}

.node-image-gallery.node-teaser a.field-group-link:hover h2 {
  color: #f36d32;
  color: white;
  background-color: #f36d32;
}

.node-type-article .field-name-field-photo-gallery {
  text-align: center;
}

.node-type-article .field-name-field-photo-gallery img {
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.node-type-article .field-name-field-photo-gallery::after {
  content: " ";
  background-color: black;
  width: 100px;
  height: 10px;
  display: inline-block;
  margin: 30px 0 20px;
}

.photoswipe-gallery .field-name-field-images .field-item a {
  width: 100%;
}

@media (min-width: 480px) {
  .photoswipe-gallery .field-name-field-images .field-item a {
    width: 50%;
    width: calc(50% - 10px);
  }
}

@media (min-width: 768px) {
  .photoswipe-gallery .field-name-field-images .field-item a {
    width: 33.33333%;
    width: calc(33.33333% - 14px);
  }
}

.photoswipe-gallery .field-name-field-images .field-item a img {
  width: 100%;
  height: auto;
  line-height: 0;
}

.photoswipe-gallery .field-name-field-images .field-item a .caption figcaption {
  display: none;
}

/**
 * =============== GET HELP (ORGANIZATIONS) ================
 */
.page-get-help .content-wrapper .node-organization {
  line-height: 2em;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .page-get-help .content-wrapper .node-organization {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .page-get-help .content-wrapper .node-organization:before, .page-get-help .content-wrapper .node-organization:after {
    content: '';
    display: table;
  }
  .page-get-help .content-wrapper .node-organization:after {
    clear: both;
  }
  .page-get-help .content-wrapper .node-organization:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  .page-get-help .content-wrapper .node-organization:nth-of-type(2n + 1) {
    clear: both;
  }
}

.page-get-help .content-wrapper .node-organization h2 {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Arvo";
  margin-bottom: 0;
}

.page-get-help .content-wrapper .node-organization .content {
  font-family: "Open Sans";
}

.page-get-help .content-wrapper .node-organization .content .field-name-field-phone {
  font-size: 18px;
  font-size: 1.125rem;
}

.page-get-help .content-wrapper .node-organization .content .field-name-field-link {
  font-style: italic;
}

.page-get-help .content-wrapper .node-organization .content .field-name-field-link a {
  color: #f36d32;
}

/**
 * =============== SUPPORTERS ================
 */
@media (min-width: 480px) {
  #block-views-community-champions-block-1 .node.views-row {
    width: calc(50% - 10px);
  }
}

@media (min-width: 1250px) {
  #block-views-community-champions-block-1 .node.views-row {
    width: calc(33.333333333% - 13px);
  }
}

#block-views-community-champions-block-1 .views-row .edit-links {
  opacity: 0;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  transition: all .3s ease;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#block-views-community-champions-block-1 .views-row .edit-links a {
  color: white;
  display: inline-block;
  padding: .3em 1em;
  text-transform: capitalize;
  width: 50%;
  text-align: center;
  background: #f36d32;
}

#block-views-community-champions-block-1 .views-row .edit-links a:hover {
  background: #cd470c;
}

#block-views-community-champions-block-1 .views-row .edit-links a:nth-child(1) {
  background-color: #b12626;
}

#block-views-community-champions-block-1 .views-row .edit-links a:hover:nth-child(1) {
  background: #721818;
}

#block-views-community-champions-block-1 .views-row:hover .edit-links {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

#block-views-community-champions-block-1 .field-name-field-title {
  font-family: "Arvo";
  word-break: break-word;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
}

#block-views-community-champions-block-1 .field-name-field-images {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  transition: all .3s ease;
}

#block-views-community-champions-block-1 .field-name-field-images:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

#block-views-community-champions-block-1 .field-name-field-blurb {
  font: italic normal 1em "Open Sans";
  font-size: 17px;
  font-size: 1.0625rem;
}

body:not(.page-node-1496) .field-collection-container {
  display: none;
}

body.not-logged-in #block-views-community-champions-block-1 .edit-links {
  display: none;
}

.not-logged-in .action-links-field-collection-add {
  display: none;
}

.action-links-field-collection-add {
  float: none;
}

.action-links-field-collection-add li {
  list-style: none;
  text-align: center;
}

.action-links-field-collection-add a {
  margin-top: 2em;
  transition: all 0.3s;
  display: inline-block;
  padding: 10px 15px;
  border: 0;
  border-radius: 2px;
  background-color: #f36d32;
  color: #fff;
}

.field-collection-container {
  border: 0;
}

.field-collection-container .field-name-field-community-champions-page {
  display: none;
}

.field-collection-container .action-links {
  list-style-type: none;
  float: none;
  float: none !important;
  margin: auto !important;
  text-align: center;
}

.page-supporters .content-wrapper,
.page-featured-supporters .content-wrapper {
  position: relative;
}

.page-supporters .content-wrapper .node,
.page-featured-supporters .content-wrapper .node {
  border: 1px solid;
  margin: 0 !important;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .page-supporters .content-wrapper .node,
  .page-featured-supporters .content-wrapper .node {
    width: calc(50% - 10px);
  }
}

@media (min-width: 1250px) {
  .page-supporters .content-wrapper .node,
  .page-featured-supporters .content-wrapper .node {
    width: calc(33.333333333% - 13px);
  }
}

.page-supporters .content-wrapper .node,
.page-supporters .content-wrapper .node *,
.page-featured-supporters .content-wrapper .node,
.page-featured-supporters .content-wrapper .node * {
  text-align: center;
}

.page-supporters .content-wrapper .node h2,
.page-supporters .content-wrapper .node h3,
.page-featured-supporters .content-wrapper .node h2,
.page-featured-supporters .content-wrapper .node h3 {
  font-family: "Arvo";
  word-break: break-word;
}

.page-supporters .content-wrapper .node a.group-link,
.page-featured-supporters .content-wrapper .node a.group-link {
  display: block;
  padding: 1em;
  color: black;
}

@media (min-width: 480px) {
  .page-supporters .content-wrapper .node a.group-link,
  .page-featured-supporters .content-wrapper .node a.group-link {
    padding: 2em;
  }
}

.page-supporters .content-wrapper .node a.group-link:hover .field-name-field-profile-picture::after,
.page-featured-supporters .content-wrapper .node a.group-link:hover .field-name-field-profile-picture::after {
  background-color: rgba(0, 0, 0, 0.4);
}

.page-supporters .content-wrapper .node a.group-link:hover .field-name-field-profile-picture::before,
.page-featured-supporters .content-wrapper .node a.group-link:hover .field-name-field-profile-picture::before {
  opacity: 1;
}

.page-supporters .content-wrapper .node .field-name-field-from.field-label-inline div,
.page-featured-supporters .content-wrapper .node .field-name-field-from.field-label-inline div {
  display: inline;
  font: italic normal 1em "Open Sans";
  font-size: 17px;
  font-size: 1.0625rem;
}

.page-supporters .content-wrapper .node .field-name-field-profile-picture,
.page-featured-supporters .content-wrapper .node .field-name-field-profile-picture {
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.page-supporters .content-wrapper .node .field-name-field-profile-picture::before,
.page-featured-supporters .content-wrapper .node .field-name-field-profile-picture::before {
  content: " ";
  display: block;
  position: absolute;
  z-index: 102;
  top: 50%;
  left: 50%;
  width: 25%;
  height: 25%;
  border: solid #f36d32;
  border-width: 10px 10px 0 0;
  -webkit-transform: translate(-60%, -50%) rotate(45deg);
      -ms-transform: translate(-60%, -50%) rotate(45deg);
          transform: translate(-60%, -50%) rotate(45deg);
  opacity: 0;
  transition: all ease-out .2s;
}

.page-supporters .content-wrapper .node .field-name-field-profile-picture::after,
.page-featured-supporters .content-wrapper .node .field-name-field-profile-picture::after {
  content: " ";
  display: block;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all ease-out .2s;
  border-radius: 100%;
}

.page-supporters .content-wrapper .node .field-name-title::after,
.page-featured-supporters .content-wrapper .node .field-name-title::after {
  content: " ";
  background-color: black;
  width: 30%;
  height: 10px;
  display: inline-block;
  position: relative;
  top: -10px;
}

.page-supporters .content-wrapper .node.node-supporter, .page-supporters .content-wrapper .node.node-supporter-highlight,
.page-featured-supporters .content-wrapper .node.node-supporter,
.page-featured-supporters .content-wrapper .node.node-supporter-highlight {
  padding: 1em;
}

@media (min-width: 480px) {
  .page-supporters .content-wrapper .node.node-supporter, .page-supporters .content-wrapper .node.node-supporter-highlight,
  .page-featured-supporters .content-wrapper .node.node-supporter,
  .page-featured-supporters .content-wrapper .node.node-supporter-highlight {
    padding: 2em;
  }
}

.page-supporters .content-wrapper .node.node-supporter-highlight,
.page-featured-supporters .content-wrapper .node.node-supporter-highlight {
  background-color: black;
  color: white;
}

.page-supporters .content-wrapper .node.node-supporter-highlight a,
.page-featured-supporters .content-wrapper .node.node-supporter-highlight a {
  color: white;
}

.page-supporters .content-wrapper .node.node-supporter-highlight .field-name-title::after,
.page-featured-supporters .content-wrapper .node.node-supporter-highlight .field-name-title::after {
  background-color: #f36d32;
}

.page-supporters .content-wrapper .node.node-supporter-highlight .field-name-field-profile-picture::after,
.page-featured-supporters .content-wrapper .node.node-supporter-highlight .field-name-field-profile-picture::after {
  border: 3px solid #f36d32;
}

.page-supporters .content-wrapper {
  padding: 50px;
  padding-top: 100px;
}

.page-supporters .featured-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: #dfdfdf;
  margin: 0;
  padding: 20px 0;
}

/* ========= SUPPORTER FULL ========= */
.node--supporter_highlight--full .field-name-field-from.field-label-inline, .node--supporter_highlight--full .field-name-field-profile-picture, .node--supporter_highlight--full .field-name-title,
.node--supporter--full .field-name-field-from.field-label-inline,
.node--supporter--full .field-name-field-profile-picture,
.node--supporter--full .field-name-title {
  text-align: center;
}

.node--supporter_highlight--full .field-name-field-from.field-label-inline div,
.node--supporter--full .field-name-field-from.field-label-inline div {
  display: inline;
  font: italic normal 1em "Open Sans";
  font-size: 17px;
  font-size: 1.0625rem;
}

.node--supporter_highlight--full .field-name-field-profile-picture img,
.node--supporter--full .field-name-field-profile-picture img {
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.node--supporter_highlight--full .field-name-title h2, .node--supporter_highlight--full .field-name-title h3,
.node--supporter--full .field-name-title h2,
.node--supporter--full .field-name-title h3 {
  font-family: "Arvo";
}

.node--supporter_highlight--full .field-name-title::after,
.node--supporter--full .field-name-title::after {
  content: " ";
  background-color: black;
  width: 100px;
  height: 10px;
  display: inline-block;
  position: relative;
  top: -10px;
}

/* ========= SUPPORTER / NEWS BLOCK HP ========= */
.front .sidebar_second {
  background-color: black;
}

.front .sidebar_second #block-views-hp-supporter-block {
  border-bottom: 1px solid white;
}

#block-views-news-block-1,
#block-views-hp-supporter-block {
  padding: 0;
}

#block-views-news-block-1 .sup-picture,
#block-views-hp-supporter-block .sup-picture {
  line-height: 0;
}

#block-views-news-block-1 .sup-picture img,
#block-views-hp-supporter-block .sup-picture img {
  width: 100%;
}

#block-views-news-block-1 .sup-text,
#block-views-hp-supporter-block .sup-text {
  padding: 20px;
  background-color: black;
  color: #f36d32;
  font-weight: bold;
  font-family: "Montserrat";
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 44px;
}

#block-views-news-block-1 .sup-text span,
#block-views-hp-supporter-block .sup-text span {
  color: white;
  font-family: "Arvo";
  font-size: 42px;
  font-size: 2.625rem;
  text-transform: uppercase;
  display: block;
}

#block-views-news-block-1 .news-text,
#block-views-hp-supporter-block .news-text {
  padding: 20px;
  background-color: black;
  color: white;
  font-family: "Open Sans";
  font-size: 14px;
  font-size: 0.875rem;
}

#block-views-news-block-1 .news-text h2,
#block-views-hp-supporter-block .news-text h2 {
  margin: 0;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: bold;
  color: #f36d32;
}

/* ========= EVENTS ========= */
.node-event .field-name-field-date, .node-event .field-name-field-where {
  font-family: "Open Sans";
}

.node-event .field-name-field-where {
  font-size: 14px;
  font-size: 0.875rem;
  font-style: italic;
}

#block-views-events-block .views-field-title {
  font-weight: bold;
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: 20px;
  text-transform: capitalize;
}

#block-views-events-block .views-field-field-date,
#block-views-events-block .views-field-field-where {
  font-family: "Open Sans";
}

#block-views-events-block .views-field-field-where {
  font-size: 14px;
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 20px;
}

#block-views-events-block .views-field-field-date {
  margin-bottom: 5px;
}

#block-views-events-block .views-field-view-node {
  font-family: "Montserrat";
  text-transform: uppercase;
  font-size: 17.5px;
  font-size: 1.09375rem;
  margin-bottom: 10px;
}

#block-views-events-block .views-field-view-node, #block-views-events-block .views-field-view-node a {
  color: #f36d32;
}

#block-views-events-block .views-field-view-node::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: solid currentColor;
  border-width: 3px 3px 0 0;
  -webkit-transform: translateX(0.4em) rotate(45deg);
      -ms-transform: translateX(0.4em) rotate(45deg);
          transform: translateX(0.4em) rotate(45deg);
  transition: all ease-out .2s;
}

#block-views-events-block .views-field-view-node:hover::after {
  -webkit-transform: translateX(0.8em) rotate(45deg);
      -ms-transform: translateX(0.8em) rotate(45deg);
          transform: translateX(0.8em) rotate(45deg);
}

/* ========= NODE ADD FORM SUPPORTERS ========= */
.front article.main h1 {
  display: none;
}

.front article.main .node-page {
  display: none;
}

#block-formblock-supporter h2 {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 32px;
}

.page-node-409 #block-formblock-supporter h2 {
  display: none;
}

#block-formblock-supporter .field-name-field-profile-picture .description {
  display: none;
}

#block-formblock-supporter .field-name-body {
  display: none;
}

#block-formblock-supporter .vertical-tabs-list,
#block-formblock-supporter .vertical-tabs-panes,
#block-formblock-supporter .vertical-tabs {
  display: none;
}

@media (min-width: 768px) {
  #block-formblock-supporter .node-supporter-form > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1025px) {
  #block-formblock-supporter .node-supporter-form > div {
    padding-left: 40px;
    padding-right: 40px;
  }
}

#block-formblock-supporter .node-supporter-form .form-item,
#block-formblock-supporter .node-supporter-form .form-wrapper {
  position: relative;
}

#block-formblock-supporter .node-supporter-form .form-actions.form-wrapper::after {
  content: "* mandatory fields";
  font-family: "Open Sans";
  font-size: 15px;
  font-size: 0.9375rem;
  font-style: italic;
  margin-top: 1.5em;
  display: block;
}

#block-formblock-supporter .node-supporter-form label {
  font-family: "Open Sans";
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 10;
  display: none;
}

#block-formblock-supporter .node-supporter-form label span {
  display: none;
}

#block-formblock-supporter .node-supporter-form #edit-field-newsletter input {
  margin-bottom: 1.5em;
}

#block-formblock-supporter .node-supporter-form #edit-field-newsletter label {
  display: initial;
  top: -2px;
  left: 24px;
}

#block-formblock-supporter .node-supporter-form ::-webkit-input-placeholder {
  color: black;
}

#block-formblock-supporter .node-supporter-form :-moz-placeholder {
  /* Firefox 18- */
  color: black;
  opacity: 1;
}

#block-formblock-supporter .node-supporter-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: black;
  opacity: 1;
}

#block-formblock-supporter .node-supporter-form :-ms-input-placeholder {
  color: black;
}

#block-formblock-supporter .node-supporter-form input {
  font-size: 16px;
  font-size: 1rem;
}

#block-formblock-supporter .node-supporter-form input[type="file"],
#block-formblock-supporter .node-supporter-form input[type="email"],
#block-formblock-supporter .node-supporter-form input[type="text"] {
  width: 100%;
  margin: 0;
  max-width: none;
  border-radius: 0;
  border: none;
  border-bottom: 3px solid;
  background-color: white;
  color: black;
  font-family: "Open Sans";
}

#block-formblock-supporter .node-supporter-form .image-widget-data {
  float: none;
  display: block;
  background-color: white;
  height: 41px;
  border-bottom: 3px solid black;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#block-formblock-supporter .node-supporter-form .image-widget-data::before {
  content: attr(data-content);
  font-family: "Open Sans";
  padding: 8px;
  height: 41px;
  display: inline-block;
  left: 0;
  position: absolute;
}

#block-formblock-supporter .node-supporter-form .image-widget-data::after {
  content: "Browse";
  height: 41px;
  padding: 8px;
  width: 35%;
  font-family: "Open Sans";
  background-color: #f36d32;
  color: white;
  display: block;
  text-align: center;
  float: right;
  border-bottom: 3px solid black;
  cursor: pointer !important;
}

#block-formblock-supporter .node-supporter-form .image-widget-data input[type="file"] {
  height: 41px;
  padding: 7px;
  width: 35%;
  position: absolute;
  top: 0;
  right: 0;
  border-bottom: 3px solid;
  opacity: 0;
  cursor: pointer !important;
}

#block-formblock-supporter .node-supporter-form .image-widget-data input[type="submit"] {
  display: none;
  width: 35%;
  height: 41px;
}

#block-formblock-supporter .node-supporter-form input[type="submit"] {
  font-family: "Open Sans";
  background-color: #f36d32;
  border-radius: 0;
  border: none;
  border-bottom: 3px solid black;
}

#block-formblock-supporter .node-supporter-form input#edit-submit {
  font-weight: bold;
  font-family: "Montserrat";
  font-size: 20px;
  font-size: 1.25rem;
  width: 100%;
}

/* ========= PAGERS ========= */
@media (min-width: 1025px) {
  .item-list {
    margin-bottom: -50px;
  }
}

.item-list .pager .last, .item-list .pager .pager-current, .item-list .pager .pager-ellipsis, .item-list .pager a {
  background: transparent;
  border: none;
  font-family: "Arvo";
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
}

.item-list .pager .pager-current {
  color: #f36d32;
}

.section-supporters .item-list {
  border-top: 1px solid;
  margin-top: 60px;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: -20px;
}

@media (min-width: 1025px) {
  .section-supporters .item-list {
    margin-top: 50px;
    margin-left: -50px;
    margin-right: -50px;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: -50px;
  }
}

/* ========= MESSAGES ========= */
.not-logged-in .messages {
  padding: 2em 20px;
}

.not-logged-in .messages em {
  color: #f36d32;
  font-weight: bold;
}

/* ========= BLOCKQUOTE ========= */
blockquote {
  margin: 2.5em 0;
  border-left: none;
  padding: 0 100px;
  font-size: 20px;
  font-size: 1.25rem;
  font-style: italic;
  text-align: center;
}

blockquote::after {
  content: "";
  display: block;
  width: 30%;
  min-width: 100px;
  height: 5px;
  background-color: #d1d2d4;
  margin: 0 auto;
}

/* ========= SHARE ========= */
.social-share-facebook,
.social-share-twitter {
  font-weight: bold;
  color: #f36d32;
}

/* ========= Tweaks for facebook link ========= */
#block-block-8 {
  background-color: white;
}

#block-block-8 .content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

#block-block-8 .follow-us {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}

#block-block-8 .follow-us a {
  color: black;
  background-color: white;
  min-height: initial;
}

.menu-open #block-block-8 {
  background-color: black;
}

.menu-open #block-block-8 .follow-us a {
  color: white;
  background-color: black;
  min-height: initial;
}

.menu-open #block-block-8 .f a {
  color: white;
  background-color: black;
}

.menu-open #block-block-8 .facebook-f {
  color: white;
  background-color: black;
  border: 1px solid white;
}

.menu-open #block-block-8:hover {
  background-color: black;
}

.menu-open #block-block-8:hover .follow-us a {
  background-color: black;
  min-height: initial;
}

.menu-open #block-block-8:hover .facebook-f {
  color: white;
  background-color: black;
  border: 1px solid white;
}

.menu-open #block-block-8:hover .f a {
  color: white;
  background-color: black;
}

#block-block-8:hover {
  color: #000000;
  background-color: #ffffff;
}

#block-block-8:hover .f {
  color: #000000;
  background-color: #ffffff;
}

#block-block-8:hover .f a {
  color: #000000;
  background-color: #ffffff;
}

#block-block-8 .f {
  width: 80px;
  float: left;
}

#block-block-8 a {
  background: white;
  padding-left: 10px;
}

#block-block-8 .facebook-f {
  color: black;
  background-color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  border: 1px solid black;
  border-radius: 50%;
  height: 67px;
  display: block;
  width: 69px;
  text-align: center;
  padding-top: 21px;
  font-size: 50px;
  background-color: white;
}

#block-block-8 .follow-us {
  width: calc(100% - 83px);
  float: right;
}

@media (min-width: 768px) {
  #block-block-8 .follow-us a {
    font-size: 130%;
    padding-right: 15%;
  }
}

/*# sourceMappingURL=style.css.map */