/* ===========================================================
*
* Version: 	3.0.0
* Authors: 	Kev Simpson & Paulius Putna
* Company:  The Graphic Design House
*
=========================================================== */
/* ===========================================================

	# Variables

=========================================================== */
/* ===========================================================

	# COLOURS

=========================================================== */
/* ===========================================================

	# Base values

=========================================================== */
/* ===========================================================

	# Media queries

=========================================================== */
/* ===========================================================

	# Grid settings

=========================================================== */
/* ===========================================================

	# Mixins

=========================================================== */
/**
 * 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.
 */
/* ===========================================================

  # Reset

=========================================================== */
@-ms-viewport {
  width: device-width;
}
html {
  -webkit-text-size-adjust: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strike, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  border: none;
  font: inherit;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline;
}

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

* {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ===========================================================

  # JS access to breakpoints:
  https://github.com/JoshBarr/js-media-queries

=========================================================== */
/* ===========================================================

	# Text

=========================================================== */
html {
  font-size: 62.5%;
}

body,
input,
textarea,
select,
button {
  color: #000000;
  font-family: "aktiv-grotesk", Helvetica, Arial, Geneva, sans-serif;
  font-size: 1.4rem;
  font-feature-settings: 'liga', 'kern';
  font-kerning: normal;
  line-height: 1.4em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p + p,
p + form,
p + ul,
p + ol,
ul + p,
ol + p {
  margin-top: 1.4em;
}

p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6,
ul + h1,
ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6,
ol + h1,
ol + h2,
ol + h3,
ol + h4,
ol + h5,
ol + h6 {
  padding-top: 1.4em;
}

em {
  font-style: italic;
}

small,
.u-small {
  font-size: 1.2444444444rem;
}
::-moz-selection {
  background: #f4acb1;
}
::selection {
  background: #f4acb1;
}

hr {
  height: 1px;
  border: none;
  color: #ccc;
  background-color: #ccc;
}
/* ===========================================================

	# Headings

=========================================================== */
h1,
h2,
h3,
h4,
h5,
h6,
.u-tera,
.u-giga,
.u-mega,
.u-alpha,
.u-beta,
.u-gamma,
.u-delta,
.u-epsilon,
.u-zeta {
  color: inherit;
  font-weight: 800;
  line-height: 1.1;
}

.u-tera {
  font-size: 3.5920983195rem;
  padding-bottom: 0.35em;
}

.u-giga {
  font-size: 3.192976284rem;
  padding-bottom: 0.35em;
}

.u-mega {
  font-size: 2.8382011414rem;
  padding-bottom: 0.35em;
}

h1,
.u-alpha {
  font-size: 2.522845459rem;
  padding-bottom: 0.35em;
}

.u-beta {
  font-size: 2.2425292969rem;
  padding-bottom: 0.35em;
}

h2,
.u-gamma {
  font-size: 1.993359375rem;
  padding-bottom: 0.35em;
}

.u-delta {
  font-size: 1.771875rem;
  padding-bottom: 0.35em;
}

h3,
.u-epsilon {
  font-size: 1.575rem;
  padding-bottom: 0.35em;
}

h4,
.u-zeta {
  font-size: 1.4rem;
  padding-bottom: 0.35em;
}

.u-intro {
  font-size: 1.575rem;
  line-height: 1.4;
}

caption,
figcaption {
  font-size: 1.2444444444rem;
}
/* ===========================================================

	# Anchor

=========================================================== */
a {
  color: #e63b46;
  transition: color 0.3s ease-out;
  text-decoration: underline;
}
a:hover, a:focus {
  color: #1c1c1c;
}

/* ===========================================================

	# Button

=========================================================== */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* ===========================================================

	# Lists

=========================================================== */
li {
  margin: 0.35em 3rem;
}
li:first-child {
  margin-top: 0;
}
li:last-child {
  margin-bottom: 0;
}
li > ul,
li > ol {
  margin-top: 0.35em;
}

/* ===========================================================

	# Table

=========================================================== */
table {
  border: 0 solid #ccc;
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border-bottom: 0 solid #ccc;
  padding: 1rem 2rem;
  text-align: left;
}

@font-face {
  font-family: 'imaginewatford';
  src: url("../fonts/fonts/imaginewatford_m9384j.eot");
  src: url("../fonts/fonts/imaginewatford_m9384j.eot#iefix") format("embedded-opentype"), url("../fonts/fonts/imaginewatford_m9384j.ttf") format("truetype"), url("../fonts/fonts/imaginewatford_m9384j.woff") format("woff"), url("http://www.imaginewatford.co.uk/assets/fonts/onts/imaginewatford.svg?m9384j#imaginewatford") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="ico-"],
[class*=" ico-"],
.o-form__validation-mark {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'imaginewatford' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ico-list:before {
  content: "\e907";
}

.ico-cross:before {
  content: "\e908";
}

.ico-tick:before {
  content: "\e909";
}

.ico-arrow--left:before {
  content: "\e902";
}

.ico-arrow--right:before {
  content: "\e903";
}

.ico-arrow--up:before {
  content: "\e904";
}

.ico-arrow-down:before {
  content: "\e905";
}

.ico-mail:before {
  content: "\e906";
}

.ico-twitter:before {
  content: "\e900";
}

.ico-facebook:before {
  content: "\e901";
}

/* ===========================================================

	# Forms

=========================================================== */
input, select, textarea {
  background: none;
  border: 0 solid #ccc;
  border-radius: 0;
  padding: 1.5rem 0;
  transition: border 0.3s ease-out;
  width: 100%;
  border-bottom: .1rem solid white;
  color: white;
  font-weight: 800;
  font-size: 1.6rem !important;
  /* 
  	.is-valid & {
  		border-color: $success;
  	}
  
  	.is-invalid & {
  		border-color: $error;
  	}
   */
}
input:focus,
select:focus,
textarea:focus {
  border-color: #FFFFFF;
}
.is-disabled input,
.is-disabled select,
.is-disabled textarea {
  background: #f0f1f8;
  cursor: not-allowed;
}

textarea {
  overflow: auto;
  resize: vertical;
}
.is-disabled textarea {
  resize: none;
}

label {
  display: block;
  padding-bottom: 1rem;
}
.is-disabled label {
  cursor: not-allowed;
}

label[for] {
  cursor: pointer;
}
.is-disabled label[for] {
  cursor: not-allowed;
}

::-webkit-input-placeholder {
  color: #f7c3c6;
  font-weight: 800;
}

:-moz-placeholder {
  color: #f7c3c6;
  font-weight: 800;
}

::-moz-placeholder {
  color: #f7c3c6;
  font-weight: 800;
}

:-ms-input-placeholder {
  color: #f7c3c6;
  font-weight: 800;
}

/* ===========================================================

	# Page

=========================================================== */
html {
  height: 100%;
  position: relative;
}

body {
  height: 100%;
  position: relative;
}

.o-page {
  background-color: #f0f1f8;
}

.o-page__inner {
  padding-top: 6.1rem;
}
/* 
.o-page {
	background: $background-colour;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.o-page__inner {
	flex: 1 1 auto;
	width: 100%;
}
 */
/* ===========================================================

	# Wrap

=========================================================== */
.o-wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.o-wrap .o-wrap {
  padding-left: 0;
  padding-right: 0;
}

.o-wrap--center {
  margin-left: auto;
  margin-right: auto;
}

.o-wrap--small {
  max-width: 75rem;
}

.o-wrap--medium {
  max-width: 92rem;
}

.o-wrap--large {
  max-width: 108rem;
}

.o-wrap--x-large {
  max-width: 140rem;
}
/* ===========================================================

	# Section

=========================================================== */
.o-section {
  padding-bottom: 4rem;
  padding-top: 4rem;
  position: relative;
}

.o-section--lobster {
  background: #e63b46;
}

.o-section--red {
  color: #FFFFFF;
  background-color: #e63b46;
}
.o-section--red a {
  color: #FFFFFF;
}
.o-section--red a:hover, .o-section--red a:focus {
  color: #302424;
}

.t-about p iframe {
  width: 100%;
  max-width: 56rem;
}
/* ===========================================================

	# Generic columns

=========================================================== */
/* ===========================================================

	# Generic grid

=========================================================== */
/* ===========================================================

  # Tables

=========================================================== */
.o-table {
  width: 100%;
}

.o-table--scroll {
  overflow-y: hidden;
  overflow-x: auto;
  position: relative;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
}
/* ===========================================================
	
	# Form

=========================================================== */
.o-form__field {
  position: relative;
}

.o-form__field + .o-form__field {
  margin-top: 1.4em;
}

.o-form__field + .o-form__field-group,
.o-form__field-group + .o-form__field,
.o-form__field-group + .o-form__field-group {
  margin-top: 1.4em;
}

.o-input,
.o-select select,
.o-textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.o-validation {
  display: none;
  margin-top: 0.35em;
  position: absolute;
  right: 0;
}
.is-valid .o-validation {
  display: block;
  /* color: $success; */
}
.is-invalid .o-validation {
  display: block;
  /* color: $error; */
}

.o-label {
  font-weight: 800;
  padding-bottom: 0.35em;
}

.o-label__note {
  color: #ccc;
  float: right;
  font-size: .8em;
  font-style: italic;
}

.placeholder .o-label {
  display: none;
}

.o-select {
  position: relative;
  vertical-align: middle;
  z-index: 1;
}
.o-select select {
  position: relative;
  text-indent: .01px;
  text-overflow: '';
  z-index: 1;
}
.o-select select::-ms-expand {
  display: none;
}
.lt-ie10 .o-select select {
  padding-right: 1rem;
}
.o-select:after {
  background: #f0f1f8;
  border-radius: 0 0 0 0;
  box-sizing: border-box;
  color: #ccc;
  content: '\25BE';
  display: block;
  height: calc( 100% - .2rem );
  padding: 1rem 1.5rem;
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 0;
  z-index: 0;
}
.lt-ie10 .o-select:after {
  display: none;
}

:-moz-any(.o-select):after {
  z-index: 1;
}

.o-fieldset__legend {
  font-weight: 800;
  padding-bottom: 0.35em;
  width: 100%;
}
.o-fieldset__legend .o-label__note {
  float: none;
}

.o-fieldset__list {
  list-style: none;
}

.o-fieldset__item {
  margin: 0;
}
.o-fieldset__item .o-label {
  font-weight: normal;
}
.o-fieldset__item input {
  margin: 0 .5rem 0 0;
  width: auto;
}

.enhance .o-checkbox,
.enhance .o-radio {
  font-weight: normal;
  padding: 0.7em 0.7em 0.7em 3rem;
  position: relative;
}
.enhance .o-checkbox .o-checkbox__label:before,
.enhance .o-checkbox .o-radio__label:before,
.enhance .o-radio .o-checkbox__label:before,
.enhance .o-radio .o-radio__label:before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: 0 solid #ccc;
  box-sizing: border-box;
  content: '';
  position: absolute;
  top: 0.7em;
  left: 0;
  transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
}
.enhance .o-checkbox .o-checkbox__input,
.enhance .o-checkbox .o-radio__input,
.enhance .o-radio .o-checkbox__input,
.enhance .o-radio .o-radio__input {
  display: none;
}
.enhance .o-checkbox .o-checkbox__input:checked + .o-checkbox__label:before,
.enhance .o-checkbox .o-checkbox__input:checked + .o-radio__label:before,
.enhance .o-checkbox .o-radio__input:checked + .o-checkbox__label:before,
.enhance .o-checkbox .o-radio__input:checked + .o-radio__label:before,
.enhance .o-radio .o-checkbox__input:checked + .o-checkbox__label:before,
.enhance .o-radio .o-checkbox__input:checked + .o-radio__label:before,
.enhance .o-radio .o-radio__input:checked + .o-checkbox__label:before,
.enhance .o-radio .o-radio__input:checked + .o-radio__label:before {
  background-color: #e63b46;
  border-color: #d31b27;
}
.enhance .o-checkbox .o-checkbox__label:before,
.enhance .o-radio .o-checkbox__label:before {
  border-radius: 0;
}
.enhance .o-checkbox .o-radio__label:before,
.enhance .o-radio .o-radio__label:before {
  border-radius: 50%;
}
.enhance .o-label--checkbox:after {
  border-radius: 0;
}
.enhance .o-label--radio:after {
  border-radius: 100%;
}
.enhance .is-disabled .o-checkbox__label:before,
.enhance .is-disabled .o-radio__label:before {
  background-color: #f0f1f8;
}

.o-input + .c-button,
.o-select + .c-button,
.o-textarea + .c-button {
  margin-top: 2.8em;
}
.o-form__validation-mark {
  color: #e63b46;
  background-color: #FFFFFF;
  padding: .2rem;
  font-size: 2.4rem;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 1.5rem;
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.is-invalid .o-form__validation-mark,
.is-valid .o-form__validation-mark {
  opacity: 1;
  visibility: visible;
  -ms-transform: scale(1);
  transform: scale(1);
}

.is-valid .o-form__validation-mark {
  color: #4caf50;
}
.is-valid .o-form__validation-mark:before {
  content: "\e909";
}

.is-invalid .o-form__validation-mark:before {
  content: "\e908";
}

/* ===========================================================

	# Logos

=========================================================== */
.o-logo-wrap {
  text-align: center;
}
.o-logo-wrap .o-logo__item {
  display: inline-block;
  margin: 4rem 2rem;
  max-width: 45%;
}
.o-logo-wrap .o-logo__image {
  max-width: 80%;
}
/* ===========================================================

	# Pod

=========================================================== */
.o-pod {
  padding: 1.4em 0;
}
.o-pod + .o-pod {
  border-top: 0.2rem solid #e63b46;
}

.o-pod ul {
  list-style: none;
}
.o-pod li {
  margin: 0.7em 0;
}

/* ===========================================================

	# Media

=========================================================== */
img {
  max-width: 100%;
  vertical-align: top;
}

.o-media {
  margin: 2rem 0;
  position: relative;
}
.o-media img {
  width: 100%;
  border-radius: 0;
}

.o-media--video {
  position: relative;
  background-color: #f0f1f8;
}
.o-media--video:before {
  content: '';
  display: block;
  padding-top: 56.25%;
}
.o-media--video iframe,
.o-media--video object,
.o-media--video embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
/* ===========================================================

	# Header

=========================================================== */
.c-header {
  color: #FFFFFF;
  background-color: #1c1c1c;
  position: relative;
  z-index: 10;
  transition: background 0.3s ease-out, border-color 0.3s ease-out;
  position: fixed;
  left: 0;
  right: 0;
}

.c-header__logo-link {
  display: block;
  float: left;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.c-header__logo-image {
  width: 6.4rem;
}

.c-header__toggle-menu-button {
  display: none;
}
/* ===========================================================

	# Nav

=========================================================== */
.c-nav--main .c-nav__list {
  list-style: none;
}
.c-nav--main .c-nav__item {
  margin: 0;
}
.c-nav--main .c-nav__link {
  color: #FFFFFF;
  padding: 1rem;
  display: block;
  font-weight: 800;
  text-decoration: inherit;
  transition: color 0.3s ease-out, background 0.3s ease-out;
}
.c-nav--main .c-nav__link:hover, .c-nav--main .c-nav__link:focus {
  color: #e63b46;
}
.c-nav--main .c-nav__link.is-active {
  color: #e63b46;
}
.c-nav--main .c-nav__item--parent .c-nav__list-sub {
  display: none;
}
/* ===========================================================

	# Buttons

=========================================================== */
.c-button {
  border-radius: 0;
  display: inline-block;
  line-height: 1;
  padding: 1rem 2rem;
  cursor: pointer;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 800;
  text-decoration: inherit;
  transition: background 0.3s ease-out, box-shadow 0.3s ease-out, color 0.3s ease-out;
}
.c-button:hover, .c-button:focus {
  color: #FFFFFF;
}
.c-button:focus {
  box-shadow: 0 0.3rem 0 0 rgba(0, 0, 0, 0.1);
}
.c-button.is-disabled {
  background: #ccc;
  color: #FFFFFF;
  cursor: not-allowed;
}
.c-button.is-disabled:hover, .c-button.is-disabled:focus {
  background: #ccc;
}
.c-button i {
  font-size: 2.4rem;
  vertical-align: middle;
}

.c-button--primary {
  background: none;
  color: #FFFFFF;
  border: .2rem solid white;
}
.c-button--primary:hover, .c-button--primary:focus {
  color: #e63b46;
  background: #FFFFFF;
}

.c-button--secondary {
  background: #e63b46;
  color: #FFFFFF;
}
.c-button--secondary:hover, .c-button--secondary:focus {
  background: #000000;
}

/* ===========================================================

	# Cover

=========================================================== */
.c-cover {
  position: relative;
  overflow: hidden;
  background-color: #f0f1f8;
  background-size: cover;
  background-position: center center;
}

.c-cover__wrap {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.c-cover__content {
  z-index: 1;
  position: absolute;
  top: 30%;
  right: 0;
  left: 0;
  text-align: center;
}

.c-cover__copy {
  color: #FFFFFF;
  padding: 4rem;
  background-color: rgba(0, 0, 0, 0.56);
}

.no-rgba .c-cover__copy {
  background: url(../img/000000-.6.png) repeat;
}

.csstransforms .c-cover__content {
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c-cover__image {
  width: 100%;
  height: 100%;
}

.c-cover__wrap,
.c-cover__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* ===========================================================
	# Cover breakpoints
=========================================================== */
.c-cover:before {
  content: '';
  display: block;
  height: 0;
  width: 100%;
  padding-top: 56.25%;
}

.c-cover--letterbox:before {
  padding-top: 42.8571428571%;
}
/* ===========================================================

	# Footer

=========================================================== */
.c-footer {
  padding-bottom: 4rem;
}

/* ===========================================================

	# Footer nav

=========================================================== */
.c-nav--footer .c-nav__list {
  list-style: none;
}
.c-nav--footer .c-nav__item {
  margin: 0;
}
.c-nav--footer .c-nav__link {
  padding: 1rem 0;
  display: block;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease-out, background 0.3s ease-out;
}
.c-nav__link-image {
  margin-left: 1rem;
  padding-top: 1rem;
  max-width: 20rem;
}
.c-nav__link-image a {
  font-size: 1.2rem;
  text-decoration: none;
}

/* ===========================================================

	# Tile

=========================================================== */
.c-tile__link {
  text-decoration: none;
  background-color: #FFFFFF;
  position: relative;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}
.c-tile__link .c-tile__suptitle,
.c-tile__link .c-tile__title,
.c-tile__link .o-button {
  transition: color 0.3s ease-out;
}
.c-tile__link:hover, .c-tile__link:focus {
  color: #FFFFFF;
  background-color: #e63b46;
}
.c-tile__link:hover .c-tile__title,
.c-tile__link:hover .c-tile__suptitle, .c-tile__link:focus .c-tile__title,
.c-tile__link:focus .c-tile__suptitle {
  color: #FFFFFF;
}
.c-tile__link:hover .c-tile__button, .c-tile__link:focus .c-tile__button {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.c-tile__content {
  color: #000000;
  padding: 1.4rem;
  text-align: center;
  z-index: 1;
}

.c-tile__title {
  color: #e63b46;
}

.c-tile__button {
  background: transparent;
  color: #e63b46;
  display: inline-block;
  font-size: 2rem;
  padding: .6rem .8rem;
  margin-top: 0.7em;
  border: 0.2rem solid #e63b46;
  transition: color 0.3s ease-out, border-color 0.3s ease-out;
}

.c-tile--no-description .c-tile__name {
  padding-bottom: 0;
}

.c-tile__image-wrap {
  position: relative;
  background-position: center;
  background-position: cover;
  background-color: #dfe1f0;
  overflow: hidden;
  padding-top: 66.6666666667%;
}

.c-tile__image {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-tile__label {
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.7);
  padding: .4rem 1rem;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 800;
}

.no-rgba .c-tile__label {
  background: url(http://www.imaginewatford.co.uk/assets/img/000000-.6png) repeat;
}

/* ===========================================================

	# Social links

=========================================================== */
.c-social__link {
  color: #FFFFFF;
  font-size: 2rem;
  display: inline-block;
  background-color: transparent;
  padding: .7rem 1rem;
  float: left;
  text-decoration: inherit;
  transition: background 0.3s ease-out, color 0.3s ease-out;
}
.c-social__link i {
  vertical-align: middle;
}
.c-social__link:hover, .c-social__link:focus {
  color: #302424;
  background-color: #f0f1f8;
}

.c-social__link--facebook:hover, .c-social__link--facebook:focus {
  color: #3b5998;
}

.c-social__link--twitter:hover, .c-social__link--twitter:focus {
  color: #55acee;
}

.c-social__link--google:hover, .c-social__link--google:focus {
  color: #dc4e41;
}

.c-social__link--instagram:hover, .c-social__link--instagram:focus {
  color: #3f729b;
}

.c-social__link--linkedin:hover, .c-social__link--linkedin:focus {
  color: #0077b5;
}

.c-social__link--pinterest:hover, .c-social__link--pinterest:focus {
  color: #bd081c;
}

.c-social__link--youtube:hover, .c-social__link--youtube:focus {
  color: #cd201f;
}

.c-social__link--vimeo:hover, .c-social__link--vimeo:focus {
  color: #1ab7ea;
}

.c-social__link--flcikr:hover, .c-social__link--flcikr:focus {
  color: #0063dc;
}
/* ===========================================================

	# Alert

=========================================================== */
.c-alert {
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 0;
  transition: opacity 0.3s ease-out, color 0.3s ease-out, background 0.3s ease-out, visibility 0.3s ease-out;
}
.c-alert.is-hidden {
  visibility: hidden;
  opacity: 0;
}
.c-alert.is-visible {
  visibility: visible;
  opacity: 1;
}

.c-alert--success {
  background-color: #4caf50;
}

.c-alert--error {
  background-color: #f44336;
}

.c-alert--info {
  background-color: #e63b46;
}

/* ===========================================================

	# Calendar

=========================================================== */
.c-calendar__table:after {
  content: "";
  height: 1.4em;
  display: block;
}

.c-calendar__link {
  display: block;
}

.c-calendar__time-col {
  width: 7rem;
}

.c-calendar__table-spacer td {
  padding: 1rem !important;
  position: relative;
}
.c-calendar__table-spacer td:before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  opacity: .5;
  background-color: #FFFFFF;
}
/* ===========================================================

	# Map

=========================================================== */
.c-map__placeholder {
  padding-top: 56.25%;
}
.c-cover__logos {
  display: block;
}

.c-cover__logos-col {
  width: 50%;
  float: left;
}

.c-cover__logos-full {
  width: 100%;
  text-align: center;
}

.c-cover__logos-col__item {
  text-align: center;
}
.c-cover__logos-col__item + .c-cover__logos-col__item {
  margin-top: 1.5rem;
}

.c-cover__logos-col__item__title {
  margin-bottom: 0.5rem;
}
.c-cover__logos-col__item__logo {
  width: 100%;
  max-width: 18rem;
  display: inline-block;
  margin: 1rem;
  margin-top: 0;
}

/* ===========================================================

	# Sitemap

=========================================================== */
.c-sitemap {
  list-style: none;
}
.c-sitemap > li > ul {
  margin-top: 1.4em;
}

.c-sitemap__item {
  line-height: 1.4em;
  vertical-align: top;
  position: relative;
  list-style: none;
  margin: 0;
}

.c-sitemap__link {
  text-decoration: none;
  display: inline-block;
}

.c-sitemap__list {
  margin-top: 0;
  margin-bottom: 1.4em;
  margin-left: 1.4em;
}
.c-sitemap__list .c-sitemap__item {
  position: relative;
}
.c-sitemap__list .c-sitemap__item:before {
  content: "";
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: absolute;
  top: -0.7em;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.c-sitemap__list .c-sitemap__item .c-sitemap__link {
  margin-left: 2.1em;
}

/* ===========================================================

	# Animations

=========================================================== */
.animated {
  animation-duration: .4s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

/* ===========================================================

  # Overrides

=========================================================== */
.u-clearfix:before, .u-clearfix:after {
  content: "";
  display: table;
}
.u-clearfix:after {
  clear: both;
}

.u-block {
  display: block;
}

.u-hide-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.u-center-content,
.u-center-text {
  text-align: center;
}

.u-highlight-text {
  color: #e63b46;
}

.u-space-top {
  margin-top: 1.4em;
}

.u-space-bottom {
  margin-bottom: 1.4em;
}

.u-font-normal {
  font-weight: normal;
}

.u-space-top--large {
  margin-top: 2.8em;
}

.u-space-bottom--large {
  margin-bottom: 2.8em;
}
/* ===========================================================

	# Free Content

=========================================================== */
/* ===========================================================

	# Home

=========================================================== */
.t-about .t-social__link {
  font-weight: 800;
  text-decoration: inherit;
  display: block;
}
.t-about .t-social__link i {
  font-size: 2.4rem;
  vertical-align: middle;
}
/* ===========================================================

	# Events

=========================================================== */
.flexbox .t-event-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flexbox .t-event-wrap:before {
  width: 100%;
}

.c-cover--holding {
  background-color: #f0f1f8;
  background-position: center center;
  background-size: cover;
  height: 100%;
  min-height: 73rem;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  text-align: center;
}
.c-cover--holding .c-cover__content-wrap {
  display: inline-block;
  text-align: center;
  color: #FFFFFF !important;
  background: #1c1c1c;
  background: transparent\9;
  background: rgba(28, 28, 28, 0.78);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#c61c1c1c,endColorstr=#c61c1c1c);
  zoom: 1;
  padding: 3rem;
  margin: 0 auto;
  max-width: 85rem;
}
.c-cover--holding .c-cover__content-wrap i {
  color: #e63b46;
}
.c-cover--holding .c-cover__content-wrap img {
  margin-bottom: 3rem;
}
.c-cover--holding .c-cover__content-wrap h2 {
  color: white;
}
.c-cover--holding .c-cover__content-wrap a {
  color: white;
}
.c-cover--holding .c-cover__content-wrap a:hover {
  color: white;
}
.c-cover--holding .c-cover__content-wrap p {
  font-weight: 300;
}
.c-cover--holding .c-cover__content-wrap .u-delta {
  color: #FFFFFF;
}
.c-cover--holding .c-cover__content-wrap:nth-child(n) {
  filter: none;
}

.c-newsletter--holding {
  position: relative;
  color: #FFFFFF;
  text-align: center;
}
.c-newsletter--holding h2 {
  color: #FFFFFF;
  text-align: center;
}
.c-newsletter--holding p {
  font-weight: 300;
  font-size: 1.6rem;
}
.c-newsletter--holding form {
  max-width: 59rem;
  margin: 0 auto;
}
.c-newsletter--holding .c-button {
  display: table;
  width: auto;
  text-transform: uppercase;
  margin: 0 auto;
  font-size: 1.4rem;
  padding-left: 7rem;
  padding-right: 7rem;
}

.c-cover__wrapper {
  margin: 0 auto;
}

.no-flexbox .c-cover--holding {
  display: table;
  height: 100%;
  width: 100%;
}
.no-flexbox .c-cover__wrapper {
  display: table-cell;
  vertical-align: middle;
}

.flexbox .c-cover--holding {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.c-newsletter--holding .c-button {
  position: relative;
}
.c-newsletter--holding .ico-arrow--right {
  font-size: 2rem;
  position: absolute;
  right: 2rem;
  top: 1.2rem;
}

.c-social--holding {
  margin-bottom: 5rem;
}
.c-social--holding .wpt {
  font-size: 1.4rem;
}
.c-social--holding .wpt img {
  margin-left: 1px;
}
.c-social--holding .c-social__link {
  font-size: 1.6rem;
  font-weight: 300;
  display: block;
  width: 100%;
  position: relative;
}
.c-social--holding .c-social__link i {
  display: inline-block;
}

/*# sourceMappingURL=style.css.map */
@media only screen and (min-width: 600px) {
  html {
    font-family: 'small';
  }
  .o-col--three .o-col {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.3333333333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .o-col--three .o-col:before, .o-col--three .o-col:after {
    content: '';
    display: table;
  }
  .o-col--three .o-col:after {
    clear: both;
  }
  .o-col--three .o-col:last-child {
    margin-right: 0%;
  }
  .o-grid--three .o-grid__item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.3333333333%;
    margin-left: 0%;
    margin-right: 3%;
    margin-bottom: 2%;
  }
  .o-grid--three .o-grid__item:before, .o-grid--three .o-grid__item:after {
    content: '';
    display: table;
  }
  .o-grid--three .o-grid__item:after {
    clear: both;
  }
  .o-grid--three .o-grid__item:nth-child(3n) {
    margin-right: 0%;
    float: right;
  }
  .o-grid--three .o-grid__item:nth-child(3n + 1) {
    clear: both;
  }
  .o-form__field-group:before, .o-form__field-group:after {
    content: "";
    display: table;
  }
  .o-form__field-group:after {
    clear: both;
  }
  .o-form__field-group .o-form__field {
    margin-top: inherit;
  }

  .o-form__field-group--two .o-form__field {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
  }
  .o-form__field-group--two .o-form__field:before, .o-form__field-group--two .o-form__field:after {
    content: '';
    display: table;
  }
  .o-form__field-group--two .o-form__field:after {
    clear: both;
  }
  .o-form__field-group--two .o-form__field:last-child {
    margin-right: 0%;
  }
  .c-nav--footer .c-nav__item {
    display: inline;
  }
  .c-nav--footer .c-nav__item + .c-nav__item:before {
    content: "";
    width: .1rem;
    height: 1.4rem;
    background-color: #FFFFFF;
    position: relative;
    display: inline-block;
    vertical-align: middle;
  }
  .c-nav--footer .c-nav__link {
    display: inline-block;
    padding: 1rem;
  }
  .s-free-content .o-table {
    margin: 3rem 0;
  }
  .t-about .t-social__link {
    display: inline-block;
  }
  .t-about .t-social__link + .t-social__link {
    margin-left: 1.4em;
  }
  .c-social--holding {
    text-align: center;
  }
  .c-social--holding .c-social__link {
    font-size: 1.6rem;
    font-weight: 300;
    display: inline-block;
    width: 49%;
  }
}
@media only screen and (min-width: 800px) {
  html {
    font-family: 'medium';
  }
  small,
  .u-small {
    font-size: 1.28rem;
  }
  body,
  input,
  textarea,
  select,
  button {
    font-size: 1.6rem;
  }
  .u-tera {
    font-size: 9.5367431641rem;
    padding-bottom: 0.35em;
  }

  .u-giga {
    font-size: 7.6293945313rem;
    padding-bottom: 0.35em;
  }

  .u-mega {
    font-size: 6.103515625rem;
    padding-bottom: 0.35em;
  }

  h1,
  .u-alpha {
    font-size: 4.8828125rem;
    padding-bottom: 0.35em;
  }

  .u-beta {
    font-size: 3.90625rem;
    padding-bottom: 0.35em;
  }

  h2,
  .u-gamma {
    font-size: 3.125rem;
    padding-bottom: 0.35em;
  }

  .u-delta {
    font-size: 2.5rem;
    padding-bottom: 0.35em;
  }

  h3,
  .u-epsilon {
    font-size: 2rem;
    padding-bottom: 0.35em;
  }

  h4,
  .u-zeta {
    font-size: 1.6rem;
    padding-bottom: 0.35em;
  }

  .u-intro {
    font-size: 2rem;
  }

  caption,
  figcaption {
    font-size: 1.28rem;
  }
  .o-wrap {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .o-section {
    padding-bottom: 8rem;
    padding-top: 8rem;
  }
  .o-col--cycle-four .o-col {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 23.5%;
    margin-left: 0%;
    margin-right: 2%;
    margin-bottom: 2.8em;
  }
  .o-col--cycle-four .o-col:before, .o-col--cycle-four .o-col:after {
    content: '';
    display: table;
  }
  .o-col--cycle-four .o-col:after {
    clear: both;
  }
  .o-col--cycle-four .o-col:nth-child(4n) {
    margin-right: 0%;
    float: right;
  }
  .o-col--cycle-four .o-col:nth-child(4n + 1) {
    clear: both;
  }

  .o-col--three-four .o-col--first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74.25%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .o-col--three-four .o-col--first:before, .o-col--three-four .o-col--first:after {
    content: '';
    display: table;
  }
  .o-col--three-four .o-col--first:after {
    clear: both;
  }
  .o-col--three-four .o-col--first:last-child {
    margin-right: 0%;
  }
  .o-col--three-four .o-col--last {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .o-col--three-four .o-col--last:before, .o-col--three-four .o-col--last:after {
    content: '';
    display: table;
  }
  .o-col--three-four .o-col--last:after {
    clear: both;
  }
  .o-col--three-four .o-col--last:last-child {
    margin-right: 0%;
  }
  .o-media {
    margin: 4rem 0;
  }
  .o-media img {
    border-radius: 0;
  }

  .o-media--left,
  .o-media--right {
    margin-bottom: 1.4em;
    margin-top: 1.4em;
    width: 40%;
  }
  .o-media--left + *,
  .o-media--right + * {
    margin-top: 1.4em;
  }

  .o-media--left {
    float: left;
    margin-right: 1.4em;
  }

  .o-media--right {
    float: right;
    margin-left: 1.4em;
  }
  .c-cover__logo {
    max-width: 20rem;
  }

  .c-cover__wrap {
    max-width: 80rem;
  }
  .s-free-content .o-table {
    margin: 4rem 0;
  }
  .c-cover--holding .c-cover__content-wrap {
    padding-top: 6rem;
    padding-bottom: 5rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .c-cover--holding img {
    margin-bottom: 5rem;
  }
  .c-cover--holding:before {
    position: absolute;
    border: 1px solid white;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    content: "";
    width: calc(100% - 4rem);
    bottom: 0;
    border-bottom: none;
  }

  .c-newsletter--holding:before {
    position: absolute;
    border: 1px solid white;
    /* top: 4rem; */
    left: 2rem;
    right: 2rem;
    content: "";
    width: calc(100% - 4rem);
    bottom: 2rem;
    border-top: none;
    height: 40rem;
  }
}
@media only screen and (min-width: 1000px) {
  html {
    font-family: 'large';
  }
  .o-page__inner {
    padding-top: 8.8rem;
  }
  .o-section .o-section__content {
    z-index: 1;
    position: relative;
  }
  .o-section:before {
    content: "";
    border-left: 2px solid #e63b46;
    border-right: 2px solid #e63b46;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    right: 4rem;
    left: 4rem;
  }

  .o-section--last:before {
    border-bottom: 2px solid #e63b46;
  }

  .o-section--red:before {
    border-color: #FFFFFF;
  }
  .o-logo-wrap .o-logo__item {
    max-width: 25%;
  }
  .c-header__logo-image {
    width: 12rem;
  }

  .c-header__inner {
    float: left;
  }

  .c-nav--main {
    float: right;
    clear: both;
    margin-top: 1rem;
  }

  .c-header__nav-wrap {
    float: right;
  }

  .c-header .c-social {
    float: right;
  }
  .c-nav--main {
    position: relative;
    z-index: 10;
  }
  .c-nav--main .c-nav__item {
    display: inline;
    position: relative;
  }
  .c-nav--main .c-nav__link {
    display: inline-block;
    padding: 1rem;
    transition: color 0.3s ease-out;
  }
  .c-nav--main .c-nav__link.is-active {
    color: #e63b46;
  }
  .c-nav--main .c-nav__list--parent {
    position: relative;
  }
  .c-nav--main .c-nav__list--sub {
    min-width: 20rem;
    color: #FFFFFF;
    background-color: #e63b46;
    position: absolute;
    left: 0;
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    -ms-transform: translateY(-0.3rem);
    transform: translateY(-0.3rem);
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out;
  }
  .c-nav--main .c-nav__list--sub .c-nav__item,
  .c-nav--main .c-nav__list--sub .c-nav__link {
    display: block;
  }
  .c-nav--main .c-nav__list--sub .c-nav__link {
    margin: 0;
    padding-top: 1rem;
  }
  .c-nav--main .c-nav__list--sub .c-nav__link:hover, .c-nav--main .c-nav__list--sub .c-nav__link:focus {
    color: #FFFFFF;
    background-color: #bc1823;
  }
  .c-nav--main .c-nav__list--sub .c-nav__link.is-active {
    color: #FFFFFF;
    background-color: #1c1c1c;
  }
  .c-nav--main .c-nav__list--sub .c-nav__link.is-active:hover, .c-nav--main .c-nav__list--sub .c-nav__link.is-active:focus {
    background-color: #1c1c1c;
  }
  .c-nav--main .c-nav__item--parent:hover .c-nav__list--sub {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .c-cover__logo {
    max-width: 24rem;
  }

  .c-cover__wrap {
    max-width: 88rem;
  }
  .c-calendar td {
    padding: .5rem 2rem;
  }

  .csscolumns .c-calendar {
    column-count: 4;
    column-gap: 1.4em;
  }
  .csscolumns .c-calendar__table {
    break-inside: avoid;
  }

  .no-csscolumns .c-calendar:before, .no-csscolumns .c-calendar:after {
    content: "";
    display: table;
  }
  .no-csscolumns .c-calendar:after {
    clear: both;
  }
  .no-csscolumns .c-calendar__table {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .no-csscolumns .c-calendar__table:before, .no-csscolumns .c-calendar__table:after {
    content: '';
    display: table;
  }
  .no-csscolumns .c-calendar__table:after {
    clear: both;
  }
  .no-csscolumns .c-calendar__table:nth-child(4n) {
    margin-right: 0%;
    float: right;
  }
  .no-csscolumns .c-calendar__table:nth-child(4n + 1) {
    clear: both;
  }
  .c-map {
    position: relative;
  }
  .c-map:before, .c-map:after {
    content: "";
    width: 2px;
    background: #e63b46;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
  }
  .c-map:before {
    left: 4rem;
  }
  .c-map:after {
    right: 4rem;
  }
  .c-social--holding .c-social__link {
    width: 32%;
  }

  .c-cover--holding .c-cover__content-wrap {
    min-width: 80rem;
  }

  .c-cover--holding:before {
    top: 4rem;
    left: 4rem;
    right: 4rem;
    width: calc(100% - 8rem);
  }

  .c-newsletter--holding:before {
    left: 4rem;
    right: 4rem;
    content: "";
    width: calc(100% - 8rem);
    bottom: 4rem;
  }
}
@media only screen and (min-width: 1280px) {
  html {
    font-family: 'x-large';
  }
  .o-media--large {
    margin-left: -15%;
    width: 130%;
  }
}
@media only screen and (min-width: 1500px) {
  html {
    font-family: 'xx-large';
  }
  .t-event-wrap {
    max-width: 140rem;
    margin-top: -28.6rem;
  }
}

@media only screen and (min-width: 600px) and (max-width: 799px) {
  small,
  .u-small {
    font-size: 1.3333333333rem;
  }
  .u-tera {
    font-size: 6.879707136rem;
    padding-bottom: 0.35em;
  }

  .u-giga {
    font-size: 5.73308928rem;
    padding-bottom: 0.35em;
  }

  .u-mega {
    font-size: 4.7775744rem;
    padding-bottom: 0.35em;
  }

  h1,
  .u-alpha {
    font-size: 3.981312rem;
    padding-bottom: 0.35em;
  }

  .u-beta {
    font-size: 3.31776rem;
    padding-bottom: 0.35em;
  }

  h2,
  .u-gamma {
    font-size: 2.7648rem;
    padding-bottom: 0.35em;
  }

  .u-delta {
    font-size: 2.304rem;
    padding-bottom: 0.35em;
  }

  h3,
  .u-epsilon {
    font-size: 1.92rem;
    padding-bottom: 0.35em;
  }

  h4,
  .u-zeta {
    font-size: 1.6rem;
    padding-bottom: 0.35em;
  }

  .u-intro {
    font-size: 1.92rem;
  }

  caption,
  figcaption {
    font-size: 1.3333333333rem;
  }
  .o-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .o-section {
    padding-bottom: 6rem;
    padding-top: 6rem;
  }
  .o-media {
    margin: 3rem 0;
  }
  .enhance .c-nav--main .c-nav__link {
    padding: 1rem 2rem;
  }
  .c-cover__logo {
    max-width: 12rem;
  }

  .c-cover__copy {
    padding: 2rem;
  }
  .c-cover:before {
    padding-top: 83.3333333333%;
  }
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dppx) {
  p {
    letter-spacing: 0.01em;
    word-spacing: 0.01em;
  }
}
@media only screen and (max-width: 599px) {
  .o-col + .o-col {
    margin-top: 1.4em;
  }
  .o-grid__item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .o-grid__item:before, .o-grid__item:after {
    content: '';
    display: table;
  }
  .o-grid__item:after {
    clear: both;
  }
  .o-grid__item:nth-child(2n) {
    margin-right: 0%;
    float: right;
  }
  .o-grid__item:nth-child(2n + 1) {
    clear: both;
  }
  .enhance .c-nav--main .c-nav__link {
    padding: 1rem 1.5rem;
  }
  .c-cover__logo {
    max-width: 20rem;
  }
  .c-cover:before {
    padding-top: 187.5%;
  }
  .c-nav__link-image {
    margin-left: 0;
  }
  .c-cover__logos-col__item__logo {
    max-width: 14rem;
    margin: 0.5rem;
    margin-top: 0;
  }
  .u-hide-mobile {
    display: none;
  }
  .t-about .t-social__link + .t-social__link {
    margin-top: 1.4em;
  }
}
@media only screen and (min-width: 1px) and (max-width: 799px) {
  .o-col--cycle-four .o-col {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 49%;
    margin-left: 0%;
    margin-right: 2%;
    margin-bottom: 1.4em;
  }
  .o-col--cycle-four .o-col:before, .o-col--cycle-four .o-col:after {
    content: '';
    display: table;
  }
  .o-col--cycle-four .o-col:after {
    clear: both;
  }
  .o-col--cycle-four .o-col:nth-child(2n) {
    margin-right: 0%;
    float: right;
  }
  .o-col--cycle-four .o-col:nth-child(2n + 1) {
    clear: both;
  }
  .o-col--cycle-four .o-col + .o-col {
    margin-top: inherit;
  }
}

@media only screen and (max-width: 799px) {
  .o-table--stacked thead {
    display: none;
  }
  .o-table--stacked td {
    display: block;
  }
  .o-table--stacked td:before {
    content: attr(data-label) ": ";
    display: block;
    width: 100%;
  }
  .o-table--stacked tr:nth-child(odd) td:first-child {
    border-radius: 0 0 0 0;
  }
  .o-table--stacked tr:nth-child(odd) td:last-child {
    border-radius: 0 0 0 0;
  }
  .c-cover__logos-col__item__logo {
    max-width: 16rem;
    margin: 0.75rem;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1279px) {
  .o-media--large {
    margin-left: -7.5%;
    width: 115%;
  }
  .t-event-wrap {
    max-width: 92rem;
  }
}

@media only screen and (max-width: 999px) {
  .enhance .c-header__toggle-menu-button {
    color: #FFFFFF;
    font-size: 3.2rem;
    display: block;
    float: right;
    padding: .9rem 1.3rem .8rem;
    transition: color 0.3s ease-out, background 0.3s ease;
  }
  .enhance .c-header__toggle-menu-button:hover, .enhance .c-header__toggle-menu-button:focus {
    color: #e63b46;
  }
  .enhance .c-header__logo-link {
    position: relative;
  }
  .enhance.nav-main-open .c-header__toggle-menu-button {
    color: #FFFFFF;
  }
  .enhance.nav-main-open .c-header__toggle-menu-button:hover, .enhance.nav-main-open .c-header__toggle-menu-button:focus {
    color: #e63b46;
  }
  .enhance .c-header__nav-wrap {
    position: absolute;
    right: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    background-color: #1c1c1c;
    -ms-transform: translateY(-1rem);
    transform: translateY(-1rem);
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out;
  }
  .enhance.js-nav-open .c-header__nav-wrap {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateY(0rem);
    transform: translateY(0rem);
  }
  .enhance.js-nav-open .c-header__nav-wrap .c-nav__link {
    color: #FFFFFF;
  }
  .enhance.js-nav-open .c-header__nav-wrap .c-nav__link.is-active {
    color: #e63b46;
  }
  .enhance.js-nav-open .c-header__nav-wrap .c-nav__link:hover, .enhance.js-nav-open .c-header__nav-wrap .c-nav__link:focus {
    color: #FFFFFF;
    background-color: #e63b46;
  }
  .enhance .c-social {
    display: -ms-flexbox;
    display: flex;
  }
  .enhance .c-social__link {
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    padding: 2rem;
  }
}
@media only screen and (min-width: 800px) and (max-width: 999px) {
  .enhance .c-nav--main .c-nav__link {
    padding: 1rem 4rem;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1799px) {
  .csstransforms .c-cover__content {
    top: 6%;
    -ms-transform: inherit;
    transform: inherit;
  }
}
@media only screen and (min-width: 1800px) {
  .csstransforms .c-cover__content {
    top: 3%;
    -ms-transform: inherit;
    transform: inherit;
  }
  .csstransforms .c-cover__logo {
    margin-bottom: 1.4em;
  }
  .c-cover:before {
    padding-top: 57.1428571429%;
  }
}
@media only screen and (min-width: 2000px) {
  .csstransforms .c-cover__content {
    top: 6%;
    -ms-transform: inherit;
    transform: inherit;
  }
  .csstransforms .c-cover__logo {
    margin-bottom: 1.4em;
  }
}
@media only screen and (min-width: 800px) and (max-width: 1799px) {
  .c-cover:before {
    padding-top: 62.5%;
  }

  .c-cover--letterbox:before {
    padding-top: 42.8571428571%;
  }
}

@media only screen and (min-width: 600px) and (max-width: 999px) {
  .csscolumns .c-calendar {
    column-count: 2;
    column-gap: 1.4em;
  }
  .csscolumns .c-calendar__table {
    break-inside: avoid;
  }

  .no-csscolumns .c-calendar:before, .no-csscolumns .c-calendar:after {
    content: "";
    display: table;
  }
  .no-csscolumns .c-calendar:after {
    clear: both;
  }
  .no-csscolumns .c-calendar__table {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .no-csscolumns .c-calendar__table:before, .no-csscolumns .c-calendar__table:after {
    content: '';
    display: table;
  }
  .no-csscolumns .c-calendar__table:after {
    clear: both;
  }
  .no-csscolumns .c-calendar__table:nth-child(2n) {
    margin-right: 0%;
    float: right;
  }
  .no-csscolumns .c-calendar__table:nth-child(2n + 1) {
    clear: both;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  .t-event-wrap {
    max-width: 120rem;
  }
}