/**
 * @file
 * CSS output file
 *
 * Combine all theme scss into a single CSS file
 */
/**
 * Variables
 * Contains global variables available to the theme.
 */
/**
 * Mixins
 * Contains global SCSS mixins
 */
/**
 * Animations
 * Contains all keyframe animations in use on the site.
 */
.main-nav > ul, .main-nav > ul ul, .fab-links, .fab-links-sidepanel, .footer .cta-bar, .footer__nav-holder ul, .social, .breadcrumbs ul, .events-section__events-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.ellipsis {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
     -moz-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #FFFF00;
  color: #000000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
  border-radius: 0;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: none;
  /* 2 */
  cursor: pointer;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type='checkbox'],
[type='radio'] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/**
 * @file
 * Typography
 * Base typography for the theme
 */
h1 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 10px;
}

@media (min-width: 700px) {
  h1 {
    font-size: 40px;
    line-height: 1.13;
  }
}

@media (min-width: 1025px) {
  h1 {
    font-size: 60px;
    line-height: 1.08;
  }
}

h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: normal;
  line-height: 1.18;
}

@media (min-width: 700px) {
  h2 {
    font-size: 30px;
    line-height: 1.23;
  }
}

@media (min-width: 1025px) {
  h2 {
    font-size: 40px;
    line-height: 1;
    margin: 0 0 28px;
  }
}

h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.29;
  margin: 0 0 10px;
}

@media (min-width: 700px) {
  h3 {
    font-size: 24px;
    line-height: 1.21;
  }
}

@media (min-width: 1025px) {
  h3 {
    font-size: 27px;
    line-height: 1.26;
  }
}

h4 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.26;
  margin: 0 0 10px;
}

@media (min-width: 700px) {
  h4 {
    font-size: 21px;
    line-height: 1.29;
  }
}

@media (min-width: 1025px) {
  h4 {
    font-size: 25px;
    line-height: 1.24;
  }
}

h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  margin: 0 0 10px;
}

@media (min-width: 700px) {
  h5 {
    font-size: 18px;
    line-height: 1.33;
  }
}

@media (min-width: 1025px) {
  h5 {
    font-size: 18px;
    line-height: 1.33;
    margin: 0 0 16px;
  }
}

h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.29;
  text-transform: uppercase;
  margin: 0 0 10px;
}

@media (min-width: 700px) {
  h6 {
    font-size: 14px;
    line-height: 1.29;
  }
}

@media (min-width: 1025px) {
  h6 {
    font-size: 16px;
    line-height: 1.13;
    margin: 0 0 16px;
  }
}

p {
  margin: 0 0 28px;
}

p:empty {
  display: none;
}

strong {
  font-weight: 700;
}

/**
 * Base theme styles
 * This file contains theme base styles.
 *
 * For example:
 * - WYSIWYG styles and layouts
 * - Images and Videos
 * - Tables
 */
html {
  font-size: 16px;
}

@media (min-width: 1025px) {
  html {
    font-size: 18px;
  }
}

body {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.63;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1025px) {
  body {
    line-height: 1.6;
  }
}

body.js-fixed {
  overflow: hidden;
}

* > p:last-child,
* > ul:last-child,
* > ol:last-child {
  margin-bottom: 0;
}

.visually-hidden {
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

a.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
}

a.skip-link.visually-hidden {
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

a.skip-link.visually-hidden:active, a.skip-link.visually-hidden:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

a.skip-link.visually-hidden:focus {
  background-color: #ffffff;
  padding: 3px 10px;
  position: absolute !important;
  z-index: 10000;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

a {
  font-weight: 700;
  color: #000000;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  cursor: pointer;	
}

a:hover {
  color: #cc0a2f;
}

/* special styling for anchor tags to accomdate fixed header*/
a[id] {
	padding-top: 54px;
	font-weight: normal;
}

a[id]:hover {
	color: #000;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

figcaption {
  margin: 0.5rem 0 0;
  font-style: italic;
  font-size: .75rem;
}

.img-inline--full {
  margin: 0 auto 57px;
  padding: 0 20px;
  max-width: 824px;
  position: relative;
}

.img-inline--full:after {
  content: "";
  position: absolute;
  bottom: -37px;
  left: 20px;
  width: 124px;
  height: 14px;
  background-image: -o-radial-gradient(48% -118px, circle, #eabfc0, #ffffff 140px);
  background-image: radial-gradient(circle at 48% -118px, #eabfc0, #ffffff 140px);
}

@media (min-width: 700px) {
  .img-inline--full:after {
    width: 267px;
    height: 31px;
    left: 50px;
    background-image: -o-radial-gradient(48% -160px, circle, #eabfc0, #ffffff 200px);
    background-image: radial-gradient(circle at 48% -160px, #eabfc0, #ffffff 200px);
  }
}

@media (min-width: 1025px) {
  .img-inline--full:after {
    width: 349px;
    height: 41px;
    bottom: -55px;
    background-image: -o-radial-gradient(48% -230px, circle, #eabfc0, #ffffff 280px);
    background-image: radial-gradient(circle at 48% -230px, #eabfc0, #ffffff 280px);
  }
}

@media (min-width: 700px) {
  .img-inline--full {
    margin: 0 auto 54px;
    padding: 0 50px;
  }
}

@media (min-width: 1025px) {
  .img-inline--full {
    margin: 0 auto 92px;
    padding: 0 20px;
  }
}

.img-inline--float.float-right, .img-inline--float.float-left {
  margin: 0 0 25px;
}

@media (min-width: 700px) {
  .img-inline--float.float-right, .img-inline--float.float-left {
    margin: 9px 0 30px 20px;
    width: 51.8%;
  }
}

@media (min-width: 1025px) {
  .img-inline--float.float-right, .img-inline--float.float-left {
    display: table;
    margin: 29px -147px 30px 100px;
    width: auto;
  }
}

@media (min-width: 1025px) {
  .img-inline--float.float-right figcaption, .img-inline--float.float-left figcaption {
    display: table-caption;
    caption-side: bottom;
  }
}

@media (min-width: 700px) {
  .img-inline--float.float-left {
    margin: 9px 20px 30px 0;
    width: 51.8%;
  }
}

@media (min-width: 1025px) {
  .img-inline--float.float-left {
    margin: 29px 100px 30px -147px;
    width: auto;
  }
}

.img-inline figcaption {
  font: 12px/1.6 "Work Sans", Arial, Helvetica, sans-serif;
  margin: 7px 0 0;
}

@media (min-width: 700px) {
  .img-inline figcaption {
    margin: 14px 0 0;
  }
}

@media (min-width: 1025px) {
  .img-inline figcaption {
    margin: 19px 0 0;
  }
}

.img-inline .container {
  max-width: 824px;
}

.quote--full {
  margin: 0 0 42px;
  background-color: #182033;
  color: #ffffff;
  font-size: 23px;
  line-height: 1.48;
  padding: 60px 0 56px;
}

@media (min-width: 700px) {
  .quote--full {
    padding: 64px 0;
    font-size: 25px;
    line-height: 1.44;
    margin: 0 0 49px;
  }
}

@media (min-width: 1025px) {
  .quote--full {
    font-size: 36px;
    line-height: 1.42;
    padding: 94px 0 75px;
    margin: 0 0 80px;
  }
}

.quote--full .container {
  position: relative;
}

.quote--full .container:before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  border-top: 1px solid #ffffff;
}

@media (min-width: 700px) {
  .quote--full .container:before {
    right: 50px;
    left: 50px;
  }
}

@media (min-width: 1025px) {
  .quote--full .container:before {
    right: 20px;
    left: 20px;
  }
}

.quote__copy {
  padding: 38px 0 17px;
}

@media (min-width: 700px) {
  .quote__copy {
    padding: 38px 0 21px;
  }
}

@media (min-width: 1025px) {
  .quote__copy {
    padding: 43px 0 67px;
  }
}

.quote__attr {
  font-weight: 600;
  margin: 0 0 5px;
}

.quote footer {
  letter-spacing: .3px;
  font-size: 16px;
  line-height: 1.2;
}

table {
  clear: both;
}

.cta--button {
  text-decoration: none;
  color: #ffffff;
  background-color: #cc0a2f;
  font: 15px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  display: inline-block;
  padding: 22px 40px;
  min-width: 214px;
  letter-spacing: .28px;
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  position: relative;
}

@media (min-width: 700px) {
  .cta--button {
    margin: 0 0 13px;
  }
}

@media (min-width: 1025px) {
  .cta--button {
    min-width: 262px;
    padding: 28px 63px;
    font-size: 18px;
    margin: 0 0 23px;
  }
}

.cta--button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #182033;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.cta--button:hover {
  color: #ffffff;
}

.cta--button:hover:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.cta--link {
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
  color: #cc0a2f;
  letter-spacing: .42px;
}

@media (min-width: 700px) {
  .cta--link {
    margin: 0 0 15px;
  }
}

@media (min-width: 1025px) {
  .cta--link {
    font-size: 18px;
  }
}

.cta--link:after {
  content: "\e900";
  font-family: 'icomoon';
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
  margin: 0 0 0 9px;
}

@media (min-width: 1025px) {
  .cta--link:after {
    -webkit-transition: margin .3s;
    -o-transition: margin .3s;
    transition: margin .3s;
    position: relative;
    top: -1px;
  }
}

@media (min-width: 1025px) {
  .cta--link:hover {
    color: #182033;
  }
  .cta--link:hover:after {
    margin: 0 0 0 13px;
  }
}

button {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
}

.main--program-full .page-intro__title {
  margin-bottom: 0;
}

/**
 * @file
 * Print specific styliing
 */
@media print {
  .header,
  .footer {
    display: none;
  }
}

@font-face {
  font-family: 'icomoon';
  src: url("../assets/fonts/icomoon/icomoon.woff?8frmpq") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !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;
}

.icon-chevron-top:before {
  content: "\e90a";
}

.icon-chevron-right:before {
  content: "\e909";
}

.icon-close:before {
  content: "\e902";
}

.icon-location:before {
  content: "\e907";
}

.icon-search:before {
  content: "\e901";
}

.icon-arrow-right:before {
  content: "\e900";
}

.icon-yahoo:before {
  content: "\e90e";
}

.icon-windows8:before {
  content: "\e90b";
}

.icon-google:before {
  content: "\e90c";
}

.icon-apple:before {
  content: "\e90d";
}

.icon-youtube:before {
  content: "\e908";
}

.icon-linkedin:before {
  content: "\e903";
}

.icon-instagram:before {
  content: "\e905";
}

.icon-facebook:before {
  content: "\e906";
}

/**
 * @file
 * Page
 *
 * Contains styles for page wrapper layout.
 */
.container {
  padding: 0 20px;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .container {
    padding: 0 50px;
  }
}

@media (min-width: 1025px) {
  .container {
    padding: 0 20px;
  }
}

.index .container {
  max-width: 1040px;
}

.container_big {
  max-width: 940px;
}

.wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
}

/**
 * @file
 * Columns
 *
 * Base styles for all column layouts.
 */
.column {
  font-size: 14px;
  line-height: 1.72;
}

@media (min-width: 700px) {
  .column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1025px) {
  .column {
    font-size: 15px;
    line-height: 1.67;
  }
}

.column__col {
  margin: 0 0 20px;
  padding: 0 0 22px;
  border-bottom: 1px solid #000000;
}

.column__col:last-child {
  margin: 0;
}

@media (min-width: 700px) {
  .column__col {
    margin: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
}

@media (min-width: 1025px) {
  .column__col {
    padding: 0 0 32px;
  }
}

.column__img {
  margin: 0 0 10px;
}

@media (min-width: 1025px) {
  .column__img {
    margin: 0 0 14px;
  }
}

.column__img img {
  width: 100%;
}

.column__title {
  margin: 0 0 11px;
}

@media (min-width: 1025px) {
  .column__title {
    margin: 0 0 13px;
  }
}

.column__title h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

@media (min-width: 700px) {
  .column__title h3 {
    font-size: 21px;
  }
}

@media (min-width: 1025px) {
  .column__title h3 {
    font-size: 25px;
  }
}

.column__title a {
  text-decoration: none;
}

.column__title a:after {
  content: "\e900";
  font-family: 'icomoon';
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
  color: #cc0a2f;
  margin: 0 0 0 10px;
  -webkit-transition: margin .3s;
  -o-transition: margin .3s;
  transition: margin .3s;
}

@media (min-width: 1025px) {
  .column__title a:hover:after {
    margin: 0 0 0 14px;
  }
}

.column__subtitle {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1.04px;
  margin: 0 0 14px;
}

@media (min-width: 700px) {
  .column__subtitle {
    margin: 0 0 11px;
  }
}

@media (min-width: 1025px) {
  .column__subtitle {
    font-size: 15px;
    letter-spacing: 1.3px;
    margin: 0 0 18px;
  }
}

@media (min-width: 700px) {
  .column--two {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 700px) {
  .column--two .column__col {
    -webkit-flex-basis: calc(50% - 20px);
        -ms-flex-preferred-size: calc(50% - 20px);
            flex-basis: calc(50% - 20px);
  }
}

@media (min-width: 1025px) {
  .column--two .column__col {
    -webkit-flex-basis: calc(50% - 25px);
        -ms-flex-preferred-size: calc(50% - 25px);
            flex-basis: calc(50% - 25px);
  }
}

@media (min-width: 700px) {
  .column--three {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 700px) {
  .column--three .column__col {
    -webkit-flex-basis: calc((100% / 3) - (20px / 3));
        -ms-flex-preferred-size: calc((100% / 3) - (20px / 3));
            flex-basis: calc((100% / 3) - (20px / 3));
  }
}

@media (min-width: 1025px) {
  .column--three .column__col {
    -webkit-flex-basis: calc((100% / 3) - (50px / 3));
        -ms-flex-preferred-size: calc((100% / 3) - (50px / 3));
            flex-basis: calc((100% / 3) - (50px / 3));
  }
}

.column--three.slick-slider {
  display: block;
}

/**
 * @file
 * Section
 *
 * Base styles for all section content.
 */
.section {
  margin: 0 0 30px;
}

@media (min-width: 700px) {
  .section {
    margin: 0 0 44px;
  }
}

@media (min-width: 1025px) {
  .section {
    margin: 0 0 115px;
  }
}

.section__header {
  margin: 0 0 15px;
}

@media (min-width: 1025px) {
  .section__header {
    margin: 0 0 16px;
  }
}

.section__header h2 {
  margin: 0;
}

.section__intro {
  margin: 0 0 7px;
}

@media (min-width: 700px) {
  .section__intro {
    margin: 0 0 27px;
  }
}

@media (min-width: 1025px) {
  .section__intro {
    margin: 0 0 42px;
    max-width: 780px;
  }
}

.section__cta {
  margin: 1.5rem 0 0;
  text-align: center;
}

.section__cta a {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: #000000;
  color: #ffffff;
}

/**
 * @file
 * Page introduction
 *
 * Contains styles for accordion content object.
 */
.page-intro {
  padding: 27px 0 21px;
}

@media (min-width: 700px) {
  .page-intro {
    padding: 38px 0 29px;
  }
}

@media (min-width: 1025px) {
  .page-intro {
    padding: 49px 0 70px;
  }
}

.page-intro__title {
  display: block;
  font: 20px/1.4 "Work Sans", Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #000000;
  padding: 0 0 26px;
  margin: 0 0 23px;
}

@media (min-width: 700px) {
  .page-intro__title {
    font-size: 22px;
    line-height: 1.37;
    padding: 0 0 33px;
    margin: 0 0 32px;
  }
}

@media (min-width: 1025px) {
  .page-intro__title {
    font-size: 26px;
    line-height: 1.31;
    padding: 0 0 47px;
    margin: 0 0 60px;
  }
}

@media (min-width: 700px) {
  .page-intro_no-heading h1 {
    display: none;
  }
}

.alert {
  display: block;
  /*padding: 54px 20px 30px;*/
  padding: 24px 20px 10px;	
  font-size: 15px;
  line-height: 1.67;
}

@media (min-width: 700px) {
  .alert {
    padding: 48px 50px 37px;
  }
}

@media (min-width: 1025px) {
  .alert {
    /*padding: 79px 64px 65px;*/
	padding: 39px 64px 35px;  
    font-size: 18px;
    line-height: 1.56;
  }
}

.alert-display {
  padding: 0;
}

.alert-display h1, .alert-display__content {
  padding: 0 15px;
}

@media (min-width: 700px) {
  .alert-display h1, .alert-display__content {
    padding: 0 20px;
  }
}

.alert-display__content {
  margin: 0 0 5rem 0;
}

@media (min-width: 1025px) {
  .alert__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.alert__message {
  margin: 0 0 19px;
}

@media (min-width: 700px) {
  .alert__message {
    margin: 0 0 28px;
  }
}

@media (min-width: 1025px) {
  .alert__message {
    margin: 0;
    width: 57%;
  }
}

.alert__icon:before {
  position: absolute;
  display: inline-block;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -2em;
  width: 1.5em;
  height: 1.5em;
  background: url("../assets/icons/error.svg") no-repeat center left;
  background-size: contain;
  content: '';
}

.alert__title {
  position: relative;
  line-height: 1.2;
  font-size: 23px;
  font-weight: 700;
  margin: 0 0 15px;
}

@media (min-width: 1025px) {
  .alert__title {
    font-size: 27px;
    margin: 0 0 21px;
  }
}

.alert__cta {
  color: #ffffff;
  background-color: #000000;
  margin: 0;
  text-align: center;
  font-size: 14px;
  min-width: 0;
  padding: 16px 40px;
}

@media (min-width: 1025px) {
  .alert__cta {
    margin: 0 6% 0 0;
    font-size: 18px;
    min-width: 262px;
    padding: 28px 40px;
  }
}

.alert__cta:before {
  background-color: #cc0a2f;
}

.alert__close {
  position: absolute;
  top: 18px;
  right: 16px;
  border: none;
  padding: 0;
  background: none;
  width: 26px;
  height: 26px;
}

.alert__close:hover:before, .alert__close:hover:after {
  background: #cc0a2f;
}

@media (min-width: 700px) {
  .alert__close {
    top: 26px;
    right: 23px;
  }
}

@media (min-width: 1025px) {
  .alert__close {
    top: 21px;
    right: 21px;
  }
}

.alert__close:before, .alert__close:after {
  content: "";
  background: #000000;
  position: absolute;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 11px;
  left: 0;
  right: 0;
  height: 5px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.alert__close:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.alert--minor {
  /*background-color: #44D7B6;*/
  background-color: #ffffff;
}

.alert--medium {
  background-color: #f7b500;
}

.alert--major {
  background-color: #ff6068;
}

.alert + header {
  position: relative;
}

/**
 * @file
 * Accordion
 *
 * Contains styles for accordion content object.
 */
.accordion {
  padding: 33px 0 41px;
  margin: 0;
}

@media (min-width: 700px) {
  .accordion {
    padding: 43px 0 53px;
  }
}

@media (min-width: 1025px) {
  .accordion {
    padding: 81px 0 84px;
  }
}

.accordion__intro {
  margin: 0 0 21px;
}

@media (min-width: 700px) {
  .accordion__intro {
    margin: 0 0 31px;
  }
}

@media (min-width: 1025px) {
  .accordion__intro {
    margin: 0 0 37px;
  }
}

.accordion__header {
  margin: 0 0 13px;
}

@media (min-width: 700px) {
  .accordion__header {
    margin: 0 0 7px;
  }
}

@media (min-width: 1025px) {
  .accordion__header {
    margin: 0 0 11px;
  }
}

.accordion__header h2 {
  margin: 0;
}

.accordion__all {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 2px solid #000000;
  padding: 0 0 14px;
}

@media (min-width: 700px) {
  .accordion__all {
    text-align: right;
  }
}

.accordion__all button {
  background: none;
  border: 0;
  padding: 0;
  color: #000000;
  text-transform: uppercase;
  font: 700 13px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.accordion__all button:hover {
  color: #cc0a2f;
}

@media (min-width: 700px) {
  .accordion__all button {
    font-size: 14px;
  }
}

@media (min-width: 1025px) {
  .accordion__all button {
    font-size: 16px;
  }
}

.accordion__all button:before {
  content: "|";
  display: inline-block;
  vertical-align: top;
  margin: 0 15px;
  color: #000000;
}

@media (min-width: 700px) {
  .accordion__all button:before {
    margin: 0 17px;
  }
}

@media (min-width: 1025px) {
  .accordion__all button:before {
    margin: 0 19px;
  }
}

.accordion__all button:first-child:before {
  display: none;
}

.accordion__all button.js-disabled {
  color: #757575;
  pointer-events: none;
}

.accordion__item {
  border-bottom: 1px solid #000000;
}

.accordion__toggle {
  display: block;
  position: relative;
  padding: 20px 0 15px 39px;
  width: 100%;
  background: none;
  border: none;
  color: #000000;
  font: 18px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  text-align: left;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (min-width: 700px) {
  .accordion__toggle {
    padding: 30px 0 14px 59px;
  }
}

@media (min-width: 1025px) {
  .accordion__toggle {
    font-size: 20px;
    padding: 28px 5px 14px 59px;
  }
}

.accordion__toggle:hover .accordion__icon:before, .accordion__toggle:hover .accordion__icon:after {
  background-color: #000000;
}

.accordion__toggle:focus {
  outline-width: 2px;
}

.accordion__toggle.js-expanded .accordion__icon:before {
  height: 0;
}

.accordion__icon {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
}

@media (min-width: 700px) {
  .accordion__icon {
    left: 12px;
    width: 23px;
    height: 23px;
    margin: 8px 0 0;
  }
}

@media (min-width: 1025px) {
  .accordion__icon {
    width: 22px;
    height: 22px;
    left: 12px;
    margin: 7px 0 0;
  }
}

.accordion__icon:before, .accordion__icon:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #cc0a2f;
  content: '';
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.accordion__icon:before {
  left: calc(0.5em - 1px);
  height: 100%;
  width: 2px;
}

@media (min-width: 700px) {
  .accordion__icon:before {
    left: calc(0.7em - 3px);
    width: 3px;
  }
}

@media (min-width: 1025px) {
  .accordion__icon:before {
    left: 0.5em;
  }
}

.accordion__icon:after {
  height: 2px;
  width: 100%;
}

@media (min-width: 700px) {
  .accordion__icon:after {
    height: 3px;
  }
}

.accordion__content {
  display: none;
  padding: 7px 0 17px;
}

@media (min-width: 700px) {
  .accordion__content {
    padding: 7px 0 11px;
  }
}

@media (min-width: 1025px) {
  .accordion__content {
    padding: 23px 0 21px;
  }
}

.accordion__content .views-element-container {
  width: 100%;
}

.accordion__content ul {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  font-size: 14px;
  line-height: 1.72;
}

@media (min-width: 700px) {
  .accordion__content ul {
    margin: 0 0 41px;
  }
}

@media (min-width: 1025px) {
  .accordion__content ul {
    font-size: 15px;
    margin: 0 0 19px;
  }
}

.accordion__content ul a {
  font-weight: normal;
  text-decoration: none;
}

.accordion__copy {
  width: 100%;
}

.accordion__copy .table--wysiwyg {
  margin: 0;
  width: 100%;
}

@media (max-width: 699px) {
  .accordion__copy .table--wysiwyg {
    margin: 0 1em;
    width: calc(100% + 2em);
  }
}

.accordion__top {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  text-transform: uppercase;
  font: 700 13px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

@media (min-width: 700px) {
  .accordion__top {
    font-size: 14px;
  }
}

@media (min-width: 1025px) {
  .accordion__top {
    font-size: 16px;
  }
}

.accordion__top:hover {
  color: #cc0a2f;
}

/**
 * @file
 * Award
 *
 * Contains styles for Awards in WYSIWYG region.
 */
.award {
  clear: both;
}

.award__item {
  margin: 0 0 1em;
}

.award__title {
  font-weight: 700;
  margin: 0;
}

/**
 * @file
 * Form
 *
 * Contains styles for forms in main content region.
 */
.main .form {
  font-size: 15px;
  line-height: 1.2;
}

.main .form__item:not(.form--fieldset) label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 0 14px;
}

@media (min-width: 1025px) {
  .main .form__item:not(.form--fieldset) label {
    margin: 0 0 15px;
    font-size: 16px;
  }
}

.main .form__item.form--textarea {
  margin: 0 0 31px;
}

.main .form__item.form--textarea label {
  margin: 0 0 21px;
}

.main .form__item.form--fieldset {
  margin: 0 0 13px;
}

@media (min-width: 1025px) {
  .main .form__item.form--fieldset {
    margin: 0 0 10px;
  }
}

.main .form--select {
  position: relative;
}

.main .form--select:after {
  content: "\e90a";
  font-family: 'icomoon';
  position: absolute;
  left: 211px;
  bottom: 14px;
  font-size: 4px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  line-height: 1;
  font-weight: 700;
}

.main .form--fieldset {
  padding: 0;
  margin: 0;
  padding: 0;
  border: none;
}

.main .form__checkbox, .main .form__radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 23px;
}

.main .form__checkbox label, .main .form__radio label {
  margin: 0 0 0 14px;
  position: relative;
}

.main .form__checkbox label:before, .main .form__radio label:before {
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
  content: '';
  opacity: 0;
  position: absolute;
  top: 5px;
  left: -29px;
  cursor: pointer;
  border: 1px solid #ffffff;
  border-width: 0 0 2px 2px;
  width: 8px;
  height: 3px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.main .form__radio {
  border-radius: 50%;
}

.main .form__radio label:before {
  left: -26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: -1px 0 0;
  border: none;
  width: 5px;
  height: 5px;
  background-color: #000000;
  border-radius: 50%;
}

.main .form--actions {
  padding: 8px 0 0;
}

@media (min-width: 700px) {
  .main .form--actions {
    padding: 4px 0 0;
  }
}

@media (min-width: 1025px) {
  .main .form--actions {
    padding: 24px 0 0;
  }
}

.main .form select[multiple] {
  min-height: 70px;
  width: auto;
  min-width: 222px;
  max-width: 100%;
}

input[type="search"] {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="search"]::-webkit-input-placeholder {
  color: #000000;
  opacity: 1;
}

input[type="search"]:-moz-placeholder {
  color: #000000;
  opacity: 1;
}

input[type="search"]::-moz-placeholder {
  color: #000000;
  opacity: 1;
}

input[type="search"]:-ms-input-placeholder {
  color: #000000;
  opacity: 1;
}

input[type="text"],
input[type="email"],
select {
  display: block;
  width: 222px;
  border: solid #000000;
  border-width: 0 0 1px;
  height: 30px;
  margin: 0;
  padding: 2px 0;
  font: 15px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  background: none;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #000000;
}

input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
select:-moz-placeholder {
  color: #000000;
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
select::-moz-placeholder {
  color: #000000;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #000000;
}

textarea {
  width: 100%;
  height: 144px;
  border: 1px solid #000000;
  resize: none;
  padding: 10px;
  display: block;
}

legend {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 23px;
}

@media (min-width: 1025px) {
  legend {
    font-size: 16px;
  }
}

[type='checkbox'] {
  width: 20px;
  height: 20px;
  border: 1px solid #000000;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}

[type='checkbox']:checked {
  background-color: #000000;
}

[type='checkbox']:checked + label:before {
  opacity: 1;
}

[type='checkbox']:checked::-ms-check {
  display: none;
}

[type='radio'] {
  width: 20px;
  height: 20px;
  border: 1px solid #000000;
  border-radius: 50%;
}

[type='radio']:checked + label:before {
  opacity: 1;
}

button[type="submit"],
button[type="reset"] {
  padding: 0;
  margin: 0;
  width: 158px;
  height: 47px;
  border: none;
  background: #182033;
  letter-spacing: .26px;
  font-size: 14px;
  line-height: 1.2;
  color: #ffffff;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  position: relative;
}

button[type="submit"]:before,
button[type="reset"]:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #cc0a2f;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

button[type="submit"]:hover,
button[type="reset"]:hover {
  color: #ffffff;
}

button[type="submit"]:hover:before,
button[type="reset"]:hover:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

@media (min-width: 1025px) {
  button[type="submit"],
  button[type="reset"] {
    width: 211px;
    height: 62px;
    letter-spacing: normal;
    font-size: 18px;
  }
}

button[type="reset"] {
  border: 2px solid #000000;
  border-color: #182033;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #182033;
  -webkit-transition: background-color .3s, border 0.3s;
  -o-transition: background-color .3s, border 0.3s;
  transition: background-color .3s, border 0.3s;
}

@media screen and (min-width: 1025px) {
  button[type="reset"] {
    letter-spacing: normal;
    font-size: 18px;
  }
}

button[type="reset"]:hover {
  border: 2px solid #cc0a2f;
}

#id_multiselect {
  background-color: #F2F2F2;
  min-height: 70px;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
}

#id_multiselect option:checked {
  font-weight: bold;
}

.form-group,
.ou-ldp-form-element,
form > fieldset {
  font-size: 14px;
  margin: 0 0 14px;
}

@media screen and (min-width: 1025px) {
  .form-group,
  .ou-ldp-form-element,
  form > fieldset {
    margin: 0 0 15px;
    font-size: 16px;
  }
}

/**
 * @file
 * Generic Block: 2 Column
 *
 * Styles for Generic Block: 2 Column object.
 */
.gen2col {
  margin: 0;
  padding: 30px 0;
}

@media (min-width: 700px) {
  .gen2col {
    padding: 57px 0;
  }
}

@media (min-width: 1025px) {
  .gen2col {
    padding: 71px 0 79px;
  }
}

.gen2col__holder {
  border-top: 2px solid #000000;
  padding: 18px 0 0;
}

@media (min-width: 700px) {
  .gen2col__holder {
    padding: 34px 0 0;
  }
}

@media (min-width: 1025px) {
  .gen2col__holder {
    padding: 50px 0 0;
  }
}

/**
 * @file
 * Generic Block: 3 Column
 *
 * Styles for Generic Block: 3 Column object.
 */
.gen3col {
  background-color: #f2f2f2;
  padding: 33px 0 25px;
  margin: 0;
}

@media (min-width: 700px) {
  .gen3col {
    padding: 44px 0 46px;
  }
}

@media (min-width: 1025px) {
  .gen3col {
    padding: 83px 0 74px;
  }
}

@media (min-width: 700px) and (min-width: 700px) {
  .gen3col .column {
    display: block;
  }
}

@media (min-width: 700px) and (min-width: 1025px) {
  .gen3col .column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.gen3col .column__col:last-child {
  border: none;
  padding: 0;
}

@media (min-width: 700px) {
  .gen3col .column__col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 0 28px;
    margin: 0 0 20px;
  }
  .gen3col .column__col:last-child {
    margin: 0;
  }
}

@media (min-width: 1025px) {
  .gen3col .column__col {
    display: block;
    border: none;
    padding: 0;
    margin: 0;
  }
}

@media (min-width: 700px) {
  .gen3col .column__img {
    margin: 0;
    width: 23.5%;
  }
}

@media (min-width: 700px) and (max-width: 1024px) {
  .gen3col .column__img {
    position: relative;
    height: 0;
    padding-top: 23.5%;
  }
}

@media (min-width: 1025px) {
  .gen3col .column__img {
    width: 100%;
    margin: 0 0 9px;
  }
}

@media (min-width: 700px) and (max-width: 1024px) {
  .gen3col .column__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (min-width: 700px) {
  .gen3col .column__content {
    width: 76.5%;
    padding: 12px 0 0 25px;
  }
}

@media (min-width: 1025px) {
  .gen3col .column__content {
    padding: 0;
    width: 100%;
  }
}

@media (min-width: 700px) {
  .gen3col .column__subtitle {
    font-size: 15px;
    letter-spacing: 1.3px;
    margin: 0 0 13px;
  }
}

@media (min-width: 1025px) {
  .gen3col .column__subtitle {
    margin: 0 0 18px;
  }
}

@media (min-width: 700px) {
  .gen3col .column__title {
    margin: 0 0 10px;
  }
}

@media (min-width: 1025px) {
  .gen3col .column__title {
    margin: 0 0 8px;
  }
}

@media (min-width: 700px) {
  .gen3col .column__title h3 {
    font-size: 19px;
  }
}

@media (min-width: 1025px) {
  .gen3col .column__title h3 {
    font-size: 20px;
  }
}

.gen3col__intro {
  margin: 0 0 7px;
}

@media (min-width: 700px) {
  .gen3col__intro {
    margin: 0 0 37px;
  }
}

@media (min-width: 1025px) {
  .gen3col__intro {
    margin: 0 0 47px;
  }
}

/**
 * @file
 * Generic Block: Image list
 *
 * Styles for Generic Block: Image list object.
 */
@media (min-width: 700px) {
  .genimglist__intro {
    margin: 0 0 37px;
  }
}

@media (min-width: 1025px) {
  .genimglist__intro {
    margin: 0 0 54px;
  }
}

.genimglist__wrap {
  font-size: 14px;
  line-height: 1.72;
}

@media (min-width: 700px) {
  .genimglist__wrap {
    display: block;
  }
}

@media (min-width: 1025px) {
  .genimglist__wrap {
    font-size: 15px;
    line-height: 1.67;
  }
}

.genimglist__item {
  margin: 0 0 25px;
  padding: 0 0 22px;
  border-bottom: 1px solid #000000;
}

.genimglist__item:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

@media (min-width: 700px) {
  .genimglist__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 0 28px;
    margin: 0 0 20px;
  }
  .genimglist__item:last-child {
    margin: 0;
  }
}

@media (min-width: 1025px) {
  .genimglist__item {
    padding: 0 0 46px;
    margin: 0 0 56px;
  }
}

.genimglist__img {
  margin: 0 0 10px;
}

@media (min-width: 700px) {
  .genimglist__img {
    margin: 0;
    width: 23.5%;
  }
}

.genimglist__img img {
  width: 100%;
}

@media (min-width: 700px) and (max-width: 1024px) {
  .genimglist__img {
    position: relative;
    height: 0;
    padding-top: 23.5%;
  }
}

@media (min-width: 1025px) {
  .genimglist__img {
    width: 20.7%;
  }
}

@media (min-width: 700px) and (max-width: 1024px) {
  .genimglist__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (min-width: 700px) {
  .genimglist__content {
    width: 76.5%;
    padding: 12px 0 0 25px;
  }
}

@media (min-width: 1025px) {
  .genimglist__content {
    width: 79.3%;
    padding: 11px 0 0 25px;
  }
}

.genimglist__title {
  margin: 0 0 11px;
}

@media (min-width: 700px) {
  .genimglist__title {
    margin: 0 0 10px;
  }
}

@media (min-width: 1025px) {
  .genimglist__title {
    margin: 0 0 21px;
  }
}

.genimglist__title h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

@media (min-width: 700px) {
  .genimglist__title h3 {
    font-size: 19px;
  }
}

@media (min-width: 1025px) {
  .genimglist__title h3 {
    font-size: 25px;
  }
}

.genimglist__title a {
  text-decoration: none;
}

.genimglist__title a:after {
  content: "\e900";
  font-family: 'icomoon';
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
  color: #cc0a2f;
  margin: 0 0 0 10px;
  -webkit-transition: margin .3s;
  -o-transition: margin .3s;
  transition: margin .3s;
}

@media (min-width: 1025px) {
  .genimglist__title a:after {
    position: relative;
    top: -1px;
  }
}

@media (min-width: 1025px) {
  .genimglist__title a:hover:after {
    margin: 0 0 0 14px;
  }
}

.genimglist__subtitle {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1.04px;
  margin: 0 0 14px;
}

@media (min-width: 700px) {
  .genimglist__subtitle {
    font-size: 15px;
    letter-spacing: 1.3px;
    margin: 0 0 13px;
  }
}

@media (min-width: 1025px) {
  .genimglist__subtitle {
    margin: 0 0 13px;
  }
}

/**
 * @file
 * Hero
 *
 * Contains styles for hero object.
 */
.hero-section {
  height: 550px;
  background-image: url("../assets/img/hero-mobile.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0 47px;
  position: relative;
}

@media (min-width: 700px) {
  .hero-section {
    height: 475px;
    padding: 120px 0 47px;
    background-image: url("../assets/img/hero.jpg");
  }
}

@media (min-width: 1025px) {
  .hero-section {
    height: 749px;
    padding: 150px 0 142px;
  }
}

.hero-section:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 320px;
  height: 21px;
  background-image: -o-radial-gradient(48% -170px, circle, #eabfc0, #ffffff 200px);
  background-image: radial-gradient(circle at 48% -170px, #eabfc0, #ffffff 200px);
}

@media (min-width: 700px) {
  .hero-section:after {
    width: 383px;
    height: 21px;
  }
}

@media (min-width: 1025px) {
  .hero-section:after {
    width: 766px;
    height: 41px;
    background-image: -o-radial-gradient(48% -230px, circle, #eabfc0, #ffffff 280px);
    background-image: radial-gradient(circle at 48% -230px, #eabfc0, #ffffff 280px);
  }
}

.hero-section .container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: none;
}

@media (min-width: 1025px) {
  .hero-section .container {
    padding: 0 20px 0 100px;
  }
}

.hero-section h1 {
  font: 50px/1.2 Anton, Arial, Helvetica, sans-serif;
  margin: 0 0 15px;
}

@media (min-width: 1025px) {
  .hero-section h1 {
    font-size: 100px;
    margin: 0 0 27px;
  }
}

.hero-section__subtitle {
  display: block;
  font-size: 25px;
  line-height: 1.2;
  margin: 0 0 1px;
}

@media (min-width: 1025px) {
  .hero-section__subtitle {
    font-size: 50px;
    margin: 0 0 2px;
  }
}

.hero-section .cta {
  margin: 0;
}

/**
 * @file
 * Instagram
 *
 * Contains styles for instagram object.
 */
@media screen and (min-width: 700px) {
  .instafeed {
    position: relative;
  }
}

@media screen and (min-width: 1025px) {
  .instafeed {
    max-width: 1000px;
    margin: 0 auto 80px;
  }
}

@media (min-width: 700px) {
  .instafeed .container {
    position: relative;
  }
}

.instagram__tile {
  position: relative;
  padding-top: 91%;
  border: none;
}

@media screen and (min-width: 700px) {
  .instagram__tile {
    padding-top: 28.51%;
  }
}

@media (min-width: 1025px) {
  .instagram__tile {
    padding-top: 27.4%;
  }
}

.instagram__title {
  font: 700 21px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  position: relative;
  margin: 0 0 29px;
}

@media (min-width: 700px) {
  .instagram__title {
    font-size: 24px;
    margin: 0 0 37px;
  }
}

@media (min-width: 1025px) {
  .instagram__title {
    font-size: 27px;
    margin: 0 0 56px;
  }
}

.instagram__title span {
  display: inline-block;
  padding: 0 34px 0 70px;
  vertical-align: top;
  background-color: #ffffff;
}

@media (min-width: 700px) {
  .instagram__title span {
    padding: 0 28px 0 79px;
  }
}

@media screen and (min-width: 1025px) {
  .instagram__title span {
    padding-right: 60px;
  }
}

.instagram__title:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  background-image: url(../assets/icons/instagram-color.svg);
  width: 43px;
  height: 43px;
}

@media (min-width: 700px) {
  .instagram__title:before {
    top: -10px;
  }
}

@media (min-width: 700px) {
  .instagram__title:before {
    top: -7px;
  }
}

.instagram__title:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 12px;
  z-index: -1;
  height: 2px;
  background-color: #000000;
}

@media (min-width: 700px) {
  .instagram__title:after {
    top: 14px;
  }
}

@media (min-width: 1025px) {
  .instagram__title:after {
    top: 17px;
  }
}

.instagram__feed {
  padding: 0 0 16px;
  margin: 0 0 33px;
}

@media (min-width: 700px) {
  .instagram__feed {
    padding: 0;
    margin: 0;
  }
}

.instagram__feed:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  height: 21px;
  background-image: -o-radial-gradient(48% 0, circle, #eabfc0, #ffffff 90%);
  background-image: radial-gradient(circle at 48% 0, #eabfc0, #ffffff 90%);
  opacity: .2;
}

@media (min-width: 700px) {
  .instagram__feed:after {
    display: none;
  }
}

.instagram__feed .slick-slide {
  width: 260px;
  margin: 0 0 0 15px;
}

.instagram__feed .slick-slide > div {
  font-size: 0;
  line-height: 0;
}

.instagram__feed .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0;
  line-height: 0;
  padding: 0 24px 0 0;
}

@media (min-width: 1025px) {
  .instagram__feed .slick-dots {
    position: absolute;
    bottom: 23px;
    right: 50%;
    margin: 0 -250px 0 0;
  }
}

.instagram__feed .slick-dots button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.instagram__feed .slick-dots button:after {
  width: 4px;
  height: 4px;
  background-color: #182033;
}

.instagram__feed .slick-arrow {
  top: auto;
  bottom: 16px;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: auto;
  height: auto;
  color: #000000;
  text-indent: 0;
}

.instagram__feed .slick-arrow:after {
  content: "\e909";
  font-family: 'icomoon';
  display: block;
  font-size: 20px;
  line-height: 1;
  position: static;
  height: auto;
  width: auto;
  background: none;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.instagram__feed .slick-arrow.slick-prev:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.instagram__feed .slick-arrow.slick-next {
  right: 22px;
}

.instagram__feed .slick-arrow.slick-disabled:after {
  background: none;
}

.instagram__feed .slick-list {
  margin: 0 0 18px;
  overflow: visible;
}

.instagram__link {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.instagram__link:after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  background-image: url(../assets/icons/instagram-white.svg);
  background-size: contain;
}

@media screen and (min-width: 700px) {
  .instagram__link:after {
    bottom: 7px;
    right: 7px;
    width: 25px;
    height: 25px;
  }
}

@media screen and (min-width: 1025px) {
  .instagram__link:after {
    bottom: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }
}

.instagram__link:hover {
  opacity: 0.8;
}

.instagram__account {
  line-height: 1.2;
}

@media (min-width: 700px) {
  .instagram__account {
    position: absolute;
    top: 6px;
    right: 50px;
  }
}

@media (min-width: 1025px) {
  .instagram__account {
    right: 20px;
    top: 7px;
  }
}

.instagram__account .cta--link {
  font-size: 16px;
  margin: 0;
  position: relative;
  padding: 0 30px 0 0;
}

.instagram__account .cta--link:after {
  margin: 0;
  position: absolute;
  top: 3px;
  right: 0;
}

@media (min-width: 700px) {
  .instagram__account .cta--link {
    background-color: #ffffff;
    padding: 0 28px 0 19px;
  }
}

@media (min-width: 1025px) {
  .instagram__account .cta--link {
    font-size: 18px;
    padding: 0 33px 0 19px;
  }
  .instagram__account .cta--link:after {
    top: 5px;
    -webkit-transition: right .3s;
    -o-transition: right .3s;
    transition: right .3s;
  }
  .instagram__account .cta--link:hover:after {
    right: -4px;
  }
}

/**
 * @file
 * Program List
 *
 * Styles for Program List display object.
 */
.program-list {
  background-color: #182033;
  color: #ffffff;
  padding: 34px 0;
  margin: 0;
}

@media (min-width: 700px) {
  .program-list {
    padding: 63px 0 33px;
  }
}

@media (min-width: 1025px) {
  .program-list {
    padding: 86px 0 60px;
  }
}

@media (min-width: 700px) {
  .program-list__header {
    margin: 0 0 22px;
  }
}

.program-list__intro {
  margin: 0 0 20px;
}

@media (min-width: 700px) {
  .program-list__intro {
    margin: 0 0 24px;
  }
}

.program-list__content {
  font-size: 16px;
}

.program-list__item {
  padding: 12px 0 14px;
  border-top: 1px solid #ffffff;
  line-height: 1.5;
}

@media (min-width: 700px) {
  .program-list__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 18px 0;
  }
}

@media (min-width: 1025px) {
  .program-list__item {
    padding: 26px 0 21px;
  }
}

.program-list__program {
  -webkit-flex-basis: 60%;
      -ms-flex-preferred-size: 60%;
          flex-basis: 60%;
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 10px;
}

@media (min-width: 700px) {
  .program-list__program {
    font-size: 24px;
    margin: 0;
  }
}

@media (min-width: 1025px) {
  .program-list__program {
    font-size: 27px;
  }
}

.program-list__program a {
  text-decoration: none;
  font-weight: normal;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.program-list__program a:after {
  content: "\e900";
  font-family: 'icomoon';
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
  color: #cc0a2f;
  margin: 0 0 0 8px;
  -webkit-transition: margin .3s;
  -o-transition: margin .3s;
  transition: margin .3s;
}

@media (min-width: 1025px) {
  .program-list__program a:hover {
    color: #cc0a2f;
  }
  .program-list__program a:hover:after {
    margin: 0 0 0 12px;
  }
}

@media (min-width: 700px) {
  .program-list__type {
    -webkit-flex-basis: 28%;
        -ms-flex-preferred-size: 28%;
            flex-basis: 28%;
  }
}

@media (min-width: 1025px) {
  .program-list__type {
    -webkit-flex-basis: 34%;
        -ms-flex-preferred-size: 34%;
            flex-basis: 34%;
  }
}

.program-list a {
  color: #ffffff;
}

/**
 * @file
 * Statistic: 3 up feature
 *
 * Styles for Statistick: 3 up feature object.
 */
.stat3up {
  background-color: #182033;
  color: #ffffff;
  padding: 36px 0 31px;
}

@media (min-width: 700px) {
  .stat3up {
    padding: 62px 0;
  }
}

@media (min-width: 1025px) {
  .stat3up {
    padding: 96px 0 100px;
    margin: 0 0 105px;
  }
}

.index .stat3up {
  padding: 71px 0 55px;
}

@media (min-width: 700px) {
  .index .stat3up {
    padding: 59px 0 64px;
  }
}

@media (min-width: 1025px) {
  .index .stat3up {
    padding: 96px 0 100px;
  }
}

.stat3up__header {
  margin: 0 0 32px;
}

@media (min-width: 1025px) {
  .stat3up__header {
    margin: 0 0 57px;
  }
}

@media (min-width: 700px) {
  .index .stat3up__header {
    margin: 0 0 29px;
  }
}

@media (min-width: 1025px) {
  .index .stat3up__header {
    margin: 0 0 57px;
  }
}

.stat3up__item {
  border: solid #ffffff;
  border-width: 1px 0 0;
  padding: 41px 0 0;
  margin: 0 0 31px;
}

@media (min-width: 700px) {
  .stat3up__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 0 40px;
    padding: 40px 0 0;
  }
}

@media (min-width: 1025px) {
  .stat3up__item {
    display: block;
    margin: 0;
    padding: 41px 10px 0 0;
  }
}

.stat3up__item:last-child {
  margin: 0;
}

.stat3up__number {
  font: 60px/1 Anton, Arial, Helvetica, sans-serif;
  margin: 0 0 9px;
}

@media (min-width: 700px) {
  .stat3up__number {
    margin: 0;
  }
}

@media (min-width: 1025px) {
  .stat3up__number {
    margin: 0 0 9px;
  }
}

@media (min-width: 700px) {
  .stat3up__content {
    padding: 2px 0 0 50px;
  }
}

@media (min-width: 1025px) {
  .stat3up__content {
    padding: 0;
  }
}

.stat3up__caption {
  margin: 0 0 31px;
}

@media (min-width: 700px) {
  .stat3up__caption {
    margin: 0 0 9px;
  }
}

@media (min-width: 1025px) {
  .stat3up__caption {
    margin: 0 0 15px;
  }
}

.stat3up .column {
  font-size: 18px;
  line-height: 1.5;
}

@media (min-width: 700px) {
  .stat3up .column {
    display: block;
  }
}

@media (min-width: 1025px) {
  .stat3up .column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.stat3up .column .stat3up__item {
  -webkit-flex-basis: calc((100% / 3) - (60px / 3));
      -ms-flex-preferred-size: calc((100% / 3) - (60px / 3));
          flex-basis: calc((100% / 3) - (60px / 3));
}

@media (min-width: 1025px) {
  .index .stat3up .column .stat3up__item {
    -webkit-flex-basis: calc((100% / 3) - (160px / 3));
        -ms-flex-preferred-size: calc((100% / 3) - (160px / 3));
            flex-basis: calc((100% / 3) - (160px / 3));
  }
}

.stat3up .cta--link {
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  letter-spacing: .5px;
}

.stat3up .cta--link:after {
  color: #cc0a2f;
}

.stat3up .cta--link:hover {
  color: #cc0a2f;
}

.stat3up .container {
  position: relative;
}

.index .stat3up .container {
  max-width: 1040px;
}

.stat3up__section-cta {
  display: none;
}

@media (min-width: 700px) {
  .stat3up__section-cta {
    margin: 0;
    line-height: 1.2;
    display: block;
    position: absolute;
    top: 10px;
    right: 50px;
  }
}

@media (min-width: 1025px) {
  .stat3up__section-cta {
    top: 12px;
    right: 20px;
  }
}

@media (min-width: 700px) {
  .index .stat3up__section-cta {
    top: 20px;
  }
}

@media (min-width: 1025px) {
  .index .stat3up__section-cta {
    top: 12px;
  }
}

@media (min-width: 700px) {
  .stat3up__section-cta .cta--link {
    font-size: 16px;
    margin: 0;
    position: relative;
    padding: 0 23px 0 0;
    background: none;
  }
  .stat3up__section-cta .cta--link:after {
    margin: 0;
    position: absolute;
    top: 3px;
    right: 0;
  }
}

@media (min-width: 1025px) {
  .stat3up__section-cta .cta--link {
    font-size: 18px;
    padding: 0 24px 0 0;
  }
  .stat3up__section-cta .cta--link:after {
    top: 5px;
    -webkit-transition: right .3s;
    -o-transition: right .3s;
    transition: right .3s;
  }
  .stat3up__section-cta .cta--link:hover:after {
    right: -4px;
  }
}

@media (min-width: 700px) {
  .index .stat3up h2 {
    font-size: 40px;
  }
}

/**
 * @file
 * Events 3 Up Feature
 *
 * Contains styles for Events 3 Up content object.
 */
.events3up__intro {
  margin: 0 0 20px;
}

@media (min-width: 700px) {
  .events3up__intro {
    margin: 0 0 43px;
  }
}

@media (min-width: 1025px) {
  .events3up__intro {
    margin: 0 0 62px;
  }
}

.events3up__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 0 21px;
  margin: 0 0 23px;
}

@media (min-width: 700px) {
  .events3up__item {
    padding: 0 0 40px;
    margin: 0 0 29px;
  }
}

@media (min-width: 1025px) {
  .events3up__item {
    display: block;
    padding: 0 0 28px;
    margin: 0;
  }
}

.events3up__item:last-child {
  padding: 0;
  border: none;
}

@media (min-width: 1025px) {
  .events3up__item:last-child {
    padding: 0 0 28px;
    border-bottom: 1px solid #000000;
  }
}

.events3up__date {
  width: 44px;
  height: 46px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  border-radius: 50%;
  background-color: #cc0a2f;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1;
  margin: 4px 0 0;
}

@media (min-width: 700px) {
  .events3up__date {
    width: 58px;
    height: 58px;
    font-size: 13px;
    margin: 2px 0 0 3px;
  }
}

@media (min-width: 1025px) {
  .events3up__date {
    margin: 0 0 34px;
  }
}

.events3up .column {
  margin: 0 0 28px;
}

@media (min-width: 700px) {
  .events3up .column {
    display: block;
    margin: 0;
  }
}

@media (min-width: 1025px) {
  .events3up .column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.events3up__day {
  font-size: 17px;
  font-weight: 600;
}

@media (min-width: 700px) {
  .events3up__day {
    font-size: 22px;
  }
}

.events3up__data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 700px) {
  .events3up__data {
    font-size: 16px;
    margin: 0 0 5px;
  }
}

.events3up__location:before {
  content: "|";
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
}

.events3up__content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 5px 0 18px;
}

@media (min-width: 700px) {
  .events3up__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 0 38px;
  }
}

@media (min-width: 1025px) {
  .events3up__content {
    padding: 0;
  }
}

.events3up h3 {
  margin: 0 0 5px;
  font-size: 20px;
  line-height: 1.2;
}

@media (min-width: 700px) {
  .events3up h3 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 23px;
    margin: 0;
  }
}

.events3up h3 a {
  text-decoration: none;
  font-weight: 500;
}

.events3up__section-cta {
  line-height: 1.2;
}

@media (min-width: 700px) {
  .events3up__section-cta {
    margin: 0;
    position: absolute;
    top: 10px;
    right: 50px;
  }
}

@media (min-width: 1025px) {
  .events3up__section-cta {
    top: 12px;
    right: 20px;
  }
}

.events3up__section-cta .cta--link {
  font-size: 18px;
  margin: 0;
  position: relative;
  padding: 0 27px 0 0;
}

.events3up__section-cta .cta--link:after {
  margin: 0;
  position: absolute;
  top: 5px;
  right: 0;
}

@media (min-width: 700px) {
  .events3up__section-cta .cta--link {
    font-size: 16px;
    background: none;
  }
  .events3up__section-cta .cta--link:after {
    top: 3px;
  }
}

@media (min-width: 1025px) {
  .events3up__section-cta .cta--link {
    font-size: 18px;
    padding: 0 25px 0 0;
  }
  .events3up__section-cta .cta--link:after {
    top: 5px;
    -webkit-transition: right .3s;
    -o-transition: right .3s;
    transition: right .3s;
  }
  .events3up__section-cta .cta--link:hover:after {
    right: -4px;
  }
}

.events3up .container {
  position: relative;
}

/**
 * @file
 * Story Display
 *
 * Contains styles for Story Display object.
 */
.story-display {
  position: relative;
  padding: 30px 0 11px;
}

@media (min-width: 700px) {
  .story-display {
    padding: 45px 0 23px;
  }
}

@media (min-width: 1025px) {
  .story-display {
    padding: 99px 0 33px;
  }
}

@media (min-width: 700px) {
  .story-display__header {
    margin: 0 0 29px;
  }
}

.story-display:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  background-color: #f2f2f2;
  z-index: -1;
}

@media (min-width: 1025px) {
  .story-display:before {
    height: 607px;
  }
}

.story-display__intro {
  margin: 0 0 19px;
}

@media (min-width: 700px) {
  .story-display__intro {
    margin: 0 0 41px;
  }
}

@media (min-width: 1025px) {
  .story-display__intro {
    margin: 0 0 47px;
  }
}

.story-display__title {
  letter-spacing: .26px;
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 4px;
}

@media (min-width: 1025px) {
  .story-display__title {
    font-size: 16px;
  }
}

@media (min-width: 1025px) {
  .story-display__title {
    margin: 0 0 1px;
    letter-spacing: .3px;
  }
}

.story-display__title a {
  color: #cc0a2f;
  font-weight: 600;
  text-decoration: none;
}

.story-display__title a:hover {
  color: #182033;
}

@media (min-width: 700px) {
  .story-display__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.story-display__img {
  margin: 0 0 29px;
}

@media (min-width: 700px) {
  .story-display__img {
    margin: 0;
    margin-bottom: -55px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 46.6%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 46.6%;
            flex: 0 0 46.6%;
  }
}

@media (min-width: 1025px) {
  .story-display__img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 46.1%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 46.1%;
            flex: 0 0 46.1%;
    position: relative;
  }
  .story-display__img:after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: 349px;
    height: 41px;
    background-image: -o-radial-gradient(48% -230px, circle, #eabfc0, #ffffff 280px);
    background-image: radial-gradient(circle at 48% -230px, #eabfc0, #ffffff 280px);
  }
}

.story-display__img img {
  width: 100%;
}

@media (min-width: 700px) {
  .story-display__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 53.4%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 53.4%;
            flex: 0 0 53.4%;
    padding: 14px 0 0 40px;
  }
}

@media (min-width: 1025px) {
  .story-display__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 53.9%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 53.9%;
            flex: 0 0 53.9%;
    padding: 62px 0 0 58px;
  }
}

.story-display__quote {
  font-size: 22px;
  line-height: 1.37;
}

@media (min-width: 1025px) {
  .story-display__quote {
    font-size: 26px;
    line-height: 1.31;
  }
}

.story-display__subtitle {
  font-size: 14px;
  letter-spacing: .26px;
  margin: 0 0 22px;
}

@media (min-width: 1025px) {
  .story-display__subtitle {
    font-size: 16px;
    letter-spacing: .3px;
    margin: 0 0 50px;
  }
}

/**
 * @file
 * Video
 *
 * Contains styles for inline video objects.
 */
.vid-inline {
  overflow: hidden;
}

.vid-inline--full {
  padding: 0 20px;
  margin: 0 auto 40px;
  max-width: 884px;
  position: relative;
  overflow: visible;
}

.vid-inline--full:after {
  content: "";
  position: absolute;
  bottom: -37px;
  left: 20px;
  width: 124px;
  height: 14px;
  background-image: -o-radial-gradient(48% -118px, circle, #eabfc0, #ffffff 140px);
  background-image: radial-gradient(circle at 48% -118px, #eabfc0, #ffffff 140px);
}

@media (min-width: 700px) {
  .vid-inline--full:after {
    width: 267px;
    height: 31px;
    left: 50px;
    background-image: -o-radial-gradient(48% -160px, circle, #eabfc0, #ffffff 200px);
    background-image: radial-gradient(circle at 48% -160px, #eabfc0, #ffffff 200px);
  }
}

@media (min-width: 1025px) {
  .vid-inline--full:after {
    width: 349px;
    height: 41px;
    bottom: -55px;
    background-image: -o-radial-gradient(48% -230px, circle, #eabfc0, #ffffff 280px);
    background-image: radial-gradient(circle at 48% -230px, #eabfc0, #ffffff 280px);
  }
}

@media (min-width: 700px) {
  .vid-inline--full {
    padding: 0 50px;
    margin: 0 auto 56px;
  }
}

@media (min-width: 1025px) {
  .vid-inline--full {
    margin: -34px auto 91px;
  }
}

.vid-inline__container {
  position: relative;
}

.vid-inline__cover {
  position: relative;
  z-index: 2;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.vid-inline__cover:focus {
  outline-offset: -4px;
}

.vid-inline__cover:hover:before, .vid-inline__cover:hover:after {
  opacity: 1;
}

@media (min-width: 1025px) {
  .vid-inline__cover:hover:after {
    width: 66px;
    height: 66px;
  }
}

.vid-inline__cover:before, .vid-inline__cover:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.vid-inline__cover:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #ffffff;
  z-index: 2;
  margin: 0 0 0 2px;
}

@media screen and (min-width: 700px) {
  .vid-inline__cover:before {
    border-width: 6px 0 6px 10.4px;
  }
}

@media screen and (min-width: 1025px) {
  .vid-inline__cover:before {
    border-width: 8px 0 8px 13.9px;
  }
}

.vid-inline__cover:after {
  width: 22px;
  height: 22px;
  border: 1px solid #ffffff;
  border-radius: 100%;
  -webkit-transition: 0.2s all;
  -o-transition: 0.2s all;
  transition: 0.2s all;
}

@media screen and (min-width: 700px) {
  .vid-inline__cover:after {
    width: 47px;
    height: 47px;
    border-width: 2px;
  }
}

@media screen and (min-width: 1025px) {
  .vid-inline__cover:after {
    width: 62px;
    height: 62px;
  }
}

.vid-inline__cover.js-loading:hover:before {
  opacity: 1;
}

.vid-inline__cover.js-loading:before {
  margin: 0;
  height: 60px;
  width: 60px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.0' width='60px' height='60px' viewBox='0 0 128 128' xml:space='preserve'%3e%3cg%3e%3cpath d='M78.75 16.18V1.56a64.1 64.1 0 0 1 47.7 47.7H111.8a49.98 49.98 0 0 0-33.07-33.08zM16.43 49.25H1.8a64.1 64.1 0 0 1 47.7-47.7V16.2a49.98 49.98 0 0 0-33.07 33.07zm33.07 62.32v14.62A64.1 64.1 0 0 1 1.8 78.5h14.63a49.98 49.98 0 0 0 33.07 33.07zm62.32-33.07h14.62a64.1 64.1 0 0 1-47.7 47.7v-14.63a49.98 49.98 0 0 0 33.08-33.07z' fill='%23000000' fill-opacity='1'/%3e%3canimateTransform attributeName='transform' type='rotate' from='0 64 64' to='-90 64 64' dur='800ms' repeatCount='indefinite'%3e%3c/animateTransform%3e%3c/g%3e%3c/svg%3e");
  background-position: center;
  background-size: contain;
  border: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.vid-inline__cover.js-loading:after {
  display: none;
}

.vid-inline__cover.js-hide {
  display: block;
  z-index: 1;
  opacity: 0;
}

.vid-inline__embed {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.vid-inline__embed.js-show {
  z-index: 2;
  opacity: 1;
}

.vid-inline iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.vid-inline__caption {
  font: 12px/1.6 "Work Sans", Arial, Helvetica, sans-serif;
  margin: 7px 0 0;
}

@media (min-width: 700px) {
  .vid-inline__caption {
    margin: 15px 0 0;
  }
}

@media (min-width: 1025px) {
  .vid-inline__caption {
    margin: 19px 0 0;
  }
}

/**
 * @file
 * Pager
 *
 * Contains styles for the pager on listing pages.
 */
.pager__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.pager__list .pager__item {
  margin: 0 5px;
}

.pager__list .icon-arrow-left,
.pager__list .icon-arrow-right {
  display: block;
  position: relative;
  width: 40px;
  top: 50%;
}

.pager__list .icon-arrow-left:after,
.pager__list .icon-arrow-right:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  height: 0.75rem;
  width: 0.75rem;
  background: #000000;
  border: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/**
 * @file
 * Carousel
 *
 * Contains styles for carousel object.
 */
.carousel {
  padding: 56px 0 0;
  margin: 0;
}

@media (min-width: 700px) {
  .carousel {
    padding: 80px 0 92px;
  }
}

@media (min-width: 1025px) {
  .carousel {
    padding: 71px 0 87px;
  }
}

@media screen and (min-width: 700px) {
  .carousel .container {
    position: relative;
  }
}

@media screen and (min-width: 700px) {
  .carousel .container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1;
  }
}

@media screen and (min-width: 1025px) {
  .carousel .container:before {
    left: calc(-1 * (100vw - 940px) / 2);
    width: calc((100vw - 1000px) / 2);
  }
}

@media (min-width: 700px) {
  .carousel__header {
    margin: 0 0 10px;
  }
}

@media (min-width: 1025px) {
  .carousel__header {
    margin: 0 0 8px;
  }
}

@media (min-width: 700px) {
  .carousel__header h3 {
    font-size: 19px;
  }
}

@media (min-width: 1025px) {
  .carousel__header h3 {
    font-size: 20px;
  }
}

.carousel__intro {
  margin: 0 0 7px;
}

@media (min-width: 700px) {
  .carousel__intro {
    margin: 0 0 37px;
  }
}

@media (min-width: 1025px) {
  .carousel__intro {
    margin: 0 0 47px;
  }
}

.carousel__item {
  padding: 0 0 168px;
}

@media (min-width: 700px) {
  .carousel__item {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 0 65px;
  }
}

.carousel__wrapper:after {
  content: "";
  position: absolute;
  bottom: 71px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  height: 21px;
  background-image: -o-radial-gradient(48% -170px, circle, #eabfc0, #ffffff 200px);
  background-image: radial-gradient(circle at 48% -170px, #eabfc0, #ffffff 200px);
}

@media (min-width: 700px) {
  .carousel__wrapper:after {
    width: 280px;
    height: 41px;
    background-image: -o-radial-gradient(48% -230px, circle, #eabfc0, #ffffff 280px);
    background-image: radial-gradient(circle at 48% -230px, #eabfc0, #ffffff 280px);
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: 0;
    bottom: auto;
    top: 100%;
  }
}

@media (min-width: 1025px) {
  .carousel__wrapper:after {
    width: 349px;
    height: 41px;
  }
}

@media (min-width: 700px) {
  .carousel__content {
    width: 52.8%;
    padding: 41px 0 0 40px;
    font-size: 22px;
    line-height: 1.32;
  }
}

@media (min-width: 1025px) {
  .carousel__content {
    font-size: 26px;
    line-height: 1.31;
    width: 45.8%;
    padding: 35px 0 0 58px;
  }
}

.carousel__img {
  padding-top: 104%;
  position: relative;
}

@media (min-width: 700px) {
  .carousel__img {
    padding-top: 47.3%;
    width: 47.2%;
  }
}

@media (min-width: 1025px) {
  .carousel__img {
    padding-top: 54.3%;
    width: 54.2%;
  }
}

.carousel__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.carousel .slick-arrow {
  top: auto;
  bottom: 112px;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: auto;
  height: auto;
  color: #000000;
  text-indent: 0;
}

@media (min-width: 700px) {
  .carousel .slick-arrow {
    width: 66px;
    height: 66px;
    left: 215px;
    bottom: 0;
  }
}

@media (min-width: 1025px) {
  .carousel .slick-arrow {
    left: 349px;
  }
}

.carousel .slick-arrow:after {
  content: "\e909";
  font-family: 'icomoon';
  display: block;
  font-size: 20px;
  line-height: 1;
  position: static;
  height: auto;
  width: auto;
  background: none;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

@media (min-width: 700px) {
  .carousel .slick-arrow.slick-prev {
    left: 50px;
  }
}

@media (min-width: 1025px) {
  .carousel .slick-arrow.slick-prev {
    left: 190px;
  }
}

.carousel .slick-arrow.slick-prev:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.carousel .slick-arrow.slick-disabled:after {
  background: none;
}

@media (min-width: 700px) {
  .carousel .slick-arrow.slick-disabled {
    background: #182033;
    color: #ffffff;
  }
}

.carousel .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: 112px;
  left: 0;
  width: 100%;
}

@media (min-width: 700px) {
  .carousel .slick-dots {
    position: absolute;
    bottom: 23px;
    left: 140px;
    width: auto;
  }
}

@media (min-width: 1025px) {
  .carousel .slick-dots {
    left: 275px;
  }
}

.carousel .slick-dots button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.carousel .slick-dots button:after {
  width: 4px;
  height: 4px;
  background-color: #182033;
}

.carousel .cta--button {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (min-width: 700px) {
  .carousel .cta--button {
    position: static;
  }
}

@media (min-width: 700px) {
  .carousel .slick-list {
    overflow: visible;
  }
}

.carousel .slick-track {
  display: -webkit-flex !important;
  display: -moz-flex !important;
  display: -ms-flex !important;
  display: -o-flex !important;
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (min-width: 700px) {
  .carousel .slick-track {
    display: block !important;
  }
}

.carousel .slick-slide {
  height: inherit !important;
}

@media (min-width: 700px) {
  .carousel .slick-slide {
    width: 595px;
    margin: 0 0 0 35px;
    height: 100% !important;
  }
}

@media (min-width: 1025px) {
  .carousel .slick-slide {
    width: 765px;
    margin: 0 0 0 138px;
  }
}

.wysiwyg {
  padding: 0 0 9px;
}

@media (min-width: 700px) {
  .wysiwyg {
    padding: 0 0 18px;
  }
}

@media (min-width: 1025px) {
  .wysiwyg {
    padding: 0;
  }
}

.wysiwyg ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

@media (min-width: 700px) {
  .wysiwyg ol {
    padding: 0 0 0 24px;
  }
}

@media (min-width: 1025px) {
  .wysiwyg ol {
    padding: 0 0 0 33px;
  }
}

.wysiwyg ol li {
  margin: 0 0 6px;
}

.wysiwyg ol li:last-child {
  margin: 0;
}

@media (min-width: 1025px) {
  .wysiwyg ol li {
    margin: 0 0 10px;
  }
}

.wysiwyg ul {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

@media (min-width: 700px) {
  .wysiwyg ul {
    padding: 0 0 0 36px;
    margin: 0 0 27px;
  }
}

@media (min-width: 1025px) {
  .wysiwyg ul {
    padding: 0 0 0 32px;
    margin: 0 0 40px;
  }
}

.wysiwyg ul > li {
  padding: 0 0 0 31px;
  position: relative;
  margin: 0 0 4px;
}

@media (min-width: 1025px) {
  .wysiwyg ul > li {
    margin: 0 0 7px;
  }
}

.wysiwyg ul > li:last-child {
  margin: 0;
}

.wysiwyg ul > li:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000000;
}

.wysiwyg ul ul {
  padding: 4px 0 0;
  margin: 0;
}

@media (min-width: 1025px) {
  .wysiwyg ul ul {
    padding: 4px 0 0;
  }
}

.wysiwyg ul ul li {
  padding: 0 0 0 22px;
}

.wysiwyg ul ul li:before {
  width: 3px;
  height: 3px;
  left: 4px;
  top: 12px;
}

.wysiwyg hr {
  border-color: #000000;
  border-width: 1px 0 0;
  margin: 28px 0 30px;
}

@media (min-width: 700px) {
  .wysiwyg hr {
    margin: 42px 0;
  }
}

@media (min-width: 1025px) {
  .wysiwyg hr {
    margin: 60px 0 55px;
  }
}

.wysiwyg .container {
  margin: 0 auto 30px;
}

@media (min-width: 700px) {
  .wysiwyg .container {
    margin: 0 auto 40px;
  }
}

@media (min-width: 1025px) {
  .wysiwyg .container {
    margin: 0 auto 84px;
  }
}

.wysiwyg .quote .container,
.wysiwyg .img-inline--full .container {
  margin: 0 auto;
}

.wysiwyg table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.2;
  min-width: 640px;
}

@media (min-width: 640px) {
  .wysiwyg table {
    min-width: 700px;
  }
}

@media (min-width: 1025px) {
  .wysiwyg table {
    min-width: 0;
  }
}

.wysiwyg table a {
  /*color: #000000;
  font-weight: normal;
  text-decoration: none;*/
}

.wysiwyg table a:hover {
  /*text-decoration: underline;*/
}

.wysiwyg .table-block {
  position: relative;
  padding: 0;
  margin: 21px -20px 18px 0;
}

@media (min-width: 700px) {
  .wysiwyg .table-block {
    margin: 22px -50px 35px 0;
    clear: both;
  }
}

@media (min-width: 1025px) {
  .wysiwyg .table-block {
    margin: 0 0 25px;
  }
}

.wysiwyg .table-block__holder {
  overflow: auto;
}

.wysiwyg .table-block__holder.js-scroll--right .table-block__next {
  display: block;
}

.wysiwyg .table-block__holder.js-scroll--left .table-block__prev {
  display: block;
}

.wysiwyg .table-block__prev, .wysiwyg .table-block__next {
  display: none;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 73px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16;
  width: 46px;
  height: 46px;
  border: none;
  background: none;
  padding: 0;
}

@media (min-width: 700px) {
  .wysiwyg .table-block__prev, .wysiwyg .table-block__next {
    top: 80px;
  }
}

.wysiwyg .table-block__prev:after, .wysiwyg .table-block__next:after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  display: inline-block;
  vertical-align: top;
  content: '\e90a';
  color: #cc0a2f;
  font-family: 'icomoon';
  font-size: 16px;
  line-height: 1;
}

.wysiwyg .table-block__next {
  left: auto;
  right: 36px;
}

@media (min-width: 700px) {
  .wysiwyg .table-block__next {
    right: 8px;
  }
}

.wysiwyg .table-block__prev:after {
  content: '\e90a';
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.wysiwyg th {
  text-align: left;
  padding: 5px 0;
  width: auto;
}

.wysiwyg th:first-child {
  width: 39%;
}

.wysiwyg th:last-child {
  width: 27.5%;
}

.wysiwyg thead {
  font-size: 16px;
}

.wysiwyg thead tr {
  border-bottom: 2px solid #000000;
}

.wysiwyg tbody tr:nth-child(2n) {
  background-color: #f2f2f2;
}

.wysiwyg td {
  padding: 18px 15px 17px 0;
  vertical-align: top;
}

.wysiwyg tr {
  border-bottom: 1px solid #000000;
}

.wysiwyg .form {
  padding: 20px 0 0;
}

@media (min-width: 1025px) {
  .wysiwyg .form {
    padding: 8px 0 0;
  }
}

.wysiwyg .form__item {
  margin: 0 0 32px;
}

.wysiwyg .form--actions {
  margin: 0;
}

.header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  -webkit-transition: padding .3s;
  -o-transition: padding .3s;
  transition: padding .3s;
}

@media screen and (min-width: 700px) {
  .header {
    padding-top: 0 !important;
  }
}

.header .overlay {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s, visibility .3s;
  -o-transition: opacity .3s, visibility .3s;
  transition: opacity .3s, visibility .3s;
}

.header.nav-expanded .nav-opener__icon span {
  opacity: 0;
}

.header.nav-expanded .nav-opener__icon:after, .header.nav-expanded .nav-opener__icon:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 6px;
  left: 1px;
  right: 1px;
}

.header.nav-expanded .nav-opener__icon:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (min-width: 700px) {
  .header.nav-expanded .overlay {
    opacity: 1;
    visibility: visible;
  }
}

.header__holder {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px 0 15px;
  background-color: #182033;
}

@media (min-width: 700px) {
  .header__holder {
    padding: 20px 9px 15px;
  }
}

@media (min-width: 1025px) {
  .header__holder {
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .header__holder {
    padding: 0 36px;
  }
}

.header .search-form {
  display: none;
  position: absolute;
  top: -61px;
  right: 0;
  left: 0;
}

@media (min-width: 700px) {
  .header .search-form {
    top: 59px;
    left: 169px;
    -webkit-filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
            filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
  }
}

@media (min-width: 1025px) {
  .header .search-form {
    top: 70px;
    left: 215px;
  }
}

.header .nav-block {
  color: #ffffff;
  font: 500 17px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
}

.header .nav-block__holder {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 1;
}

@media (min-width: 700px) {
  .header .nav-block__holder {
    width: 320px;
    left: auto;
  }
}

@media (min-width: 1025px) {
  .header .nav-block__holder {
    display: block;
    position: static;
    width: auto;
  }
}

@media screen and (max-width: 1024px) {
  .header .nav-block__holder {
    overflow-y: auto;
    height: calc(100vh - 59px);
  }
}

.header .logo {
  width: 135px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

@media (min-width: 700px) {
  .header .logo {
    width: 169px;
    z-index: 1;
  }
}

@media (min-width: 1025px) {
  .header .logo {
    width: 215px;
  }
}

.header .logo img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 106px;
}

@media (min-width: 700px) {
  .header .logo img {
    width: 132px;
  }
}

@media (min-width: 1025px) {
  .header .logo img {
    width: 168px;
    -webkit-transition: opacity .3s, visibility .3s;
    -o-transition: opacity .3s, visibility .3s;
    transition: opacity .3s, visibility .3s;
  }
}

.header .logo img.logo-hover {
  opacity: 0;
  visibility: hidden;
}

.header .logo a {
  display: block;
  height: 88px;
  background-color: #182033;
  position: relative;
}

@media (min-width: 700px) {
  .header .logo a {
    height: 111px;
  }
}

@media (min-width: 1025px) {
  .header .logo a {
    height: 140px;
  }
  .header .logo a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
        -ms-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
}

.main-nav {
  background-color: #182033;
  padding: 64px 0 39px;
}

@media (min-width: 700px) {
  .main-nav {
    padding: 28px 0 39px;
  }
}

@media (min-width: 1025px) {
  .main-nav {
    padding: 0;
  }
}

.main-nav > ul {
  letter-spacing: .32px;
}

@media (min-width: 1025px) {
  .main-nav > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.main-nav > ul > li {
  position: relative;
  padding: 0 0 0 63px;
}

@media (min-width: 1025px) {
  .main-nav > ul > li {
    padding: 0;
    margin: 0 0 0 20px;
  }
  .main-nav > ul > li:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 7px;
    background-color: #cc0a2f;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s, visibility .3s;
    -o-transition: opacity .3s, visibility .3s;
    transition: opacity .3s, visibility .3s;
  }
  .main-nav > ul > li:hover:after, .main-nav > ul > li.js-hover:after {
    opacity: 1;
    visibility: visible;
  }
  .main-nav > ul > li:hover ul, .main-nav > ul > li.js-hover ul {
    opacity: 1;
    visibility: visible;
  }
}

@media (min-width: 1200px) {
  .main-nav > ul > li {
    margin: 0 0 0 45px;
  }
}

.main-nav > ul > li:first-child {
  margin: 0;
}

@media (min-width: 1025px) {
  .main-nav > ul > li:last-child ul {
    left: auto;
    right: -76px;
  }
}

@media (min-width: 1200px) {
  .main-nav > ul > li:last-child ul {
    right: -102px;
  }
}

.main-nav > ul > li > a {
  padding: 18px 10px 18px 32px;
  position: relative;
  -webkit-transition: background-color .3s, color .3s;
  -o-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
}

@media (min-width: 1025px) {
  .main-nav > ul > li > a {
    padding: 27px 0 23px;
    display: block;
  }
}

.main-nav > ul > li > a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: opacity .3s, visibility .3s;
  -o-transition: opacity .3s, visibility .3s;
  transition: opacity .3s, visibility .3s;
}

@media (min-width: 1025px) {
  .main-nav > ul > li > a:before {
    display: none;
  }
}

.main-nav > ul ul {
  display: none;
  background-color: #ffffff;
  font-size: 16px;
  padding: 10px 0;
  letter-spacing: normal;
}

@media (min-width: 1025px) {
  .main-nav > ul ul {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s, visibility .3s;
    -o-transition: opacity .3s, visibility .3s;
    transition: opacity .3s, visibility .3s;
    position: absolute;
    top: 100%;
    left: -102px;
    z-index: 1;
    width: 372px;
    -webkit-filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
            filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
  }
}

.main-nav > ul ul a {
  color: #000000;
  font-weight: normal;
  padding: 10px 10px 10px 30px;
}

.main-nav > ul ul a:hover {
  color: #cc0a2f;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  display: block;
}

@media (min-width: 1025px) {
  .main-nav a {
    display: inline-block;
    vertical-align: top;
  }
}

.main-nav__opener {
  background: none;
  border: none;
  padding: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 56px;
  width: 63px;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}

@media (min-width: 1025px) {
  .main-nav__opener {
    display: none;
  }
}

.main-nav__opener.active-item {
  background-color: #cc0a2f;
}

.main-nav__opener.active-item:after {
  opacity: 0;
  visibility: hidden;
}

.main-nav__opener.active-item + a {
  background-color: #cc0a2f;
}

.main-nav__opener.active-item + a:before {
  opacity: 0;
  visibility: hidden;
}

.main-nav__opener:before, .main-nav__opener:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 2px;
  width: 18px;
  background-color: #ffffff;
}

.main-nav__opener:after {
  width: 2px;
  height: 18px;
  -webkit-transition: opacity .3s, visibility .3s;
  -o-transition: opacity .3s, visibility .3s;
  transition: opacity .3s, visibility .3s;
}

.nav-opener {
  border: none;
  background: none;
  padding: 0;
  color: #ffffff;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.nav-opener:hover .nav-opener__icon:before, .nav-opener:hover .nav-opener__icon:after,
.nav-opener:hover .nav-opener__icon span {
  background: #cc0a2f;
}

.nav-opener__icon {
  width: 20px;
  height: 14px;
  position: relative;
  margin: 0 0 0 12px;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.nav-opener__icon:before, .nav-opener__icon:after,
.nav-opener__icon span {
  background: #ffffff;
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 2px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.nav-opener__icon:before, .nav-opener__icon:after {
  content: '';
  top: 0;
}

.nav-opener__icon:after {
  top: 12px;
}

.search-opener {
  border: none;
  background: none;
  width: 66px;
  height: 24px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  position: relative;
  color: #ffffff;
  margin: 0 0 0 23px;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

@media (min-width: 1025px) {
  .search-opener {
    margin: 0 0 0 10px;
  }
}

@media (min-width: 1200px) {
  .search-opener {
    margin: 0 0 0 23px;
  }
}

.search-opener:hover {
  color: #cc0a2f;
}

.search-opener:before {
  content: "\e901";
  font-family: 'icomoon';
  font-size: 23px;
  line-height: 1;
}

@media (min-width: 1025px) {
  .search-opener:before {
    font-weight: 600;
  }
}

.search-expanded .search-opener:before {
  content: "\e902";
  font-size: 14px;
}

@media (min-width: 1025px) {
  .search-expanded .search-opener:before {
    font-size: 19px;
  }
}

.search-opener:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background-color: #ffffff;
}

@media (min-width: 1025px) {
  .search-opener:after {
    display: none;
  }
}

.search-form {
  position: relative;
}

@media (min-width: 1025px) {
  .search-form {
    font-size: 20px;
  }
}

.search-form input[type="search"] {
  padding: 5px 80px 5px 20px;
  margin: 0;
  display: block;
  width: 100%;
  height: 61px;
  border: none;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
}

.search-form input[type="search"]::-webkit-input-placeholder {
  color: #000000;
}

.search-form input[type="search"]:-moz-placeholder {
  color: #000000;
}

.search-form input[type="search"]::-moz-placeholder {
  color: #000000;
}

.search-form input[type="search"]:-ms-input-placeholder {
  color: #000000;
}

@media (min-width: 700px) {
  .search-form input[type="search"] {
    height: 52px;
  }
}

@media (min-width: 1025px) {
  .search-form input[type="search"] {
    height: 70px;
    padding: 5px 150px 5px 45px;
  }
}

.search-form button[type='submit'] {
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 61px;
  border: none;
  padding: 0;
  font-size: 0;
  line-height: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
}

@media (min-width: 700px) {
  .search-form button[type='submit'] {
    height: 52px;
  }
}

@media (min-width: 1025px) {
  .search-form button[type='submit'] {
    height: 70px;
    width: 138px;
  }
}

.search-form button[type='submit']:after {
  content: "\e901";
  font-family: 'icomoon';
  font-size: 24px;
  line-height: 1;
  color: #cc0a2f;
}

.search-form button[type='submit']:before {
  display: none;
}

.alert + .header .fab-links-sidepanel {
  opacity: 0;
  -webkit-transition: opacity .3s .3s, top .3s;
  -o-transition: opacity .3s .3s, top .3s;
  transition: opacity .3s .3s, top .3s;
}

.alert + .header .fab-links-sidepanel.js-show {
  opacity: 1;
}

.fab-links {
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
}

@media screen and (min-width: 1025px) {
  .fab-links {
    display: none;
  }
}

.fab-links a {
  background-color: #cc0a2f;
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  padding: 33px 10px;
  position: relative;
}

@media (min-width: 1025px) {
  .fab-links a {
    padding: 7px 10px 7px 16px;
    position: relative;
    -webkit-transform: perspective(1px) translateZ(0);
            transform: perspective(1px) translateZ(0);
  }
  .fab-links a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #182033;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 50%;
        -ms-transform-origin: 50%;
            transform-origin: 50%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  .fab-links a:hover:before {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.fab-links a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  left: 15px;
  height: 1px;
  background-color: #cecece;
}

@media (min-width: 1025px) {
  .fab-links a:after {
    display: none;
  }
}

@media (min-width: 1025px) {
  .fab-links li {
    margin: 0 0 7px;
  }
  .fab-links li:last-child {
    margin: 0;
  }
}

.fab-links li:first-child a:after {
  display: none;
}

.fab-links-sidepanel {
  text-align: center;
  position: fixed;
  z-index: 0;
  top: 133px;
  right: 0;
  font-size: 14px;
  width: 92px;
  text-align: left;
  -webkit-filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
}

.alert-scrolled .fab-links-sidepanel {
  top: 100px !important;
}

@media (min-width: 1025px) {
  .alert-scrolled .fab-links-sidepanel {
    top: 133px !important;
  }
}

.fab-links-sidepanel a {
  background-color: #cc0a2f;
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  position: relative;
  padding: 7px 10px 7px 16px;
  position: relative;
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
}

.fab-links-sidepanel a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #182033;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.fab-links-sidepanel a:hover:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.fab-links-sidepanel a:after {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  left: 15px;
  height: 1px;
  background-color: #cecece;
}

.fab-links-sidepanel li {
  margin: 0 0 7px;
}

.fab-links-sidepanel li:last-child {
  margin: 0;
}

.fab-links-sidepanel li:first-child a:after {
  display: none;
}

.footer .cta-bar {
  background-color: #cc0a2f;
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 33px;
}

@media (min-width: 700px) {
  .footer .cta-bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    font-size: 18px;
    margin: 0 0 40px;
  }
}

@media (min-width: 1025px) {
  .footer .cta-bar {
    font-size: 20px;
    margin: 0 0 67px;
  }
}

.footer .cta-bar a {
  background-color: #cc0a2f;
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  padding: 33px 10px;
  position: relative;
}

@media (min-width: 700px) {
  .footer .cta-bar a {
    position: relative;
    -webkit-transform: perspective(1px) translateZ(0);
            transform: perspective(1px) translateZ(0);
    padding: 21px 10px;
  }
  .footer .cta-bar a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #182033;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 50%;
        -ms-transform-origin: 50%;
            transform-origin: 50%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  .footer .cta-bar a:hover:before {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@media (min-width: 1025px) {
  .footer .cta-bar a {
    padding: 37px 10px;
  }
}

.footer .cta-bar a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  left: 15px;
  height: 1px;
  background-color: #cecece;
}

@media (min-width: 700px) {
  .footer .cta-bar a:after {
    top: 18px;
    bottom: 13px;
    left: 0;
    right: auto;
    height: auto;
    width: 1px;
  }
}

@media (min-width: 700px) {
  .footer .cta-bar li {
    width: 33.3333333%;
  }
}

.footer .cta-bar li:first-child a:after {
  display: none;
}

.footer .container {
  max-width: 1040px;
}

.footer .logo {
  width: 178px;
  margin: 0 0 39px;
}

@media (min-width: 700px) {
  .footer .logo {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin: 0;
    width: 134px;
  }
}

@media (min-width: 1025px) {
  .footer .logo {
    width: 179px;
  }
}

.footer .logo a {
  display: block;
  position: relative;
  height: 113px;
}

@media (min-width: 700px) {
  .footer .logo a {
    height: 85px;
  }
}

@media (min-width: 1025px) {
  .footer .logo a {
    height: 113px;
  }
}

.footer .logo img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity .3s, visibility .3s;
  -o-transition: opacity .3s, visibility .3s;
  transition: opacity .3s, visibility .3s;
}

.footer .logo .hover {
  opacity: 0;
  visibility: hidden;
  height: 114px;
}

.footer .logo:hover img {
  opacity: 0;
  visibility: hidden;
}

.footer .logo:hover img.hover {
  opacity: 1;
  visibility: visible;
}

.footer__nav-block {
  border-bottom: 1px solid #000000;
  padding: 0 0 15px;
  position: relative;
}

@media (min-width: 700px) {
  .footer__nav-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 0 33px;
  }
}

@media (min-width: 1025px) {
  .footer__nav-block {
    padding: 0 0 46px;
  }
}

.footer__nav-holder {
  font-size: 12px;
  line-height: 1.2;
}

@media (min-width: 700px) {
  .footer__nav-holder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 54px 0 -10px;
    padding: 16px 0 0 48px;
  }
}

@media (min-width: 1025px) {
  .footer__nav-holder {
    font-size: 16px;
    margin: 0 -10px;
    padding: 26px 137px 0 96px;
  }
}

@media (min-width: 700px) {
  .footer__nav-holder ul {
    width: 50%;
    padding: 0 10px;
  }
}

.footer__nav-holder a {
  font-weight: normal;
  text-decoration: none;
}

@media (min-width: 1025px) {
  .footer__nav-holder a:hover {
    text-decoration: underline;
  }
}

.footer__nav-holder li {
  margin: 0 0 21px;
}

@media (min-width: 700px) {
  .footer__nav-holder li {
    margin: 0 0 13px;
  }
  .footer__nav-holder li:last-child {
    margin: 0;
  }
}

@media (min-width: 1025px) {
  .footer__nav-holder li {
    margin: 0 0 11px;
  }
}

.footer__contact-block {
  padding: 38px 0 11px;
}

@media (min-width: 700px) {
  .footer__contact-block {
    padding: 31px 0 18px;
  }
}

@media (min-width: 1025px) {
  .footer__contact-block {
    padding: 49px 0 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer .address-block {
  font-size: 12px;
  line-height: 1.67;
  margin: 0 0 50px;
}

@media (min-width: 700px) {
  .footer .address-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 -10px 3px;
  }
}

@media (min-width: 1025px) {
  .footer .address-block {
    font-size: 14px;
    line-height: 1.58;
    width: 66.4%;
    padding: 3px 0 0;
    margin: 0 -10px;
  }
}

.footer .address-block__holder {
  margin: 0 0 30px;
}

@media (min-width: 700px) {
  .footer .address-block__holder {
    width: 33.333333%;
    padding: 0 10px;
  }
}

.footer .address-block__holder:last-child {
  margin: 0;
}

.footer .address-block__box {
  position: relative;
  padding: 0 0 0 32px;
}

.footer .address-block__box:before {
  content: "\e907";
  font-family: 'icomoon';
  position: absolute;
  top: -4px;
  left: -2px;
  font-size: 24px;
  line-height: 1;
  color: #cc0a2f;
}

.footer address {
  font-style: normal;
}

.footer__heading {
  display: block;
  font: 600 12px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  letter-spacing: .23px;
  margin: 0 0 6px;
}

@media (min-width: 1025px) {
  .footer__heading {
    font-size: 16px;
    margin: 0 0 8px;
  }
}

@media (min-width: 700px) {
  .footer .social-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 1025px) {
  .footer .social-block {
    display: block;
    width: 30%;
  }
}

.footer .social-block__title {
  display: block;
  font: 700 14px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  letter-spacing: .39px;
  margin: 0 0 37px;
}

@media (min-width: 700px) {
  .footer .social-block__title {
    margin: 0;
  }
}

@media (min-width: 1025px) {
  .footer .social-block__title {
    font-size: 18px;
    margin: 0 0 33px;
  }
}

.footer .social-block__title a {
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-decoration: none;
}

.footer .social-block__title a:after {
  content: "\e909";
  font: 16px/1 'icomoon';
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0 14px;
}

@media (min-width: 1025px) {
  .footer .social-block__title a:after {
    font-size: 20px;
    margin: 2px 0 0 11px;
    position: relative;
    top: -1px;
  }
}

.footer .info-block {
  background-color: #f2f2f2;
  padding: 27px 0;
  font-size: 12px;
  line-height: 1.2;
}

@media (min-width: 700px) {
  .footer .info-block {
    padding: 19px 0;
  }
}

@media (min-width: 1025px) {
  .footer .info-block {
    font-size: 15px;
    padding: 32px 0;
  }
}

@media (min-width: 700px) {
  .footer .info-block .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer .info-block__copyright-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 13px;
}

@media (min-width: 700px) {
  .footer .info-block__copyright-block {
    margin: 0;
  }
}

.footer .info-block__copyright:after {
  content: "|";
  display: inline-block;
  vertical-align: top;
  margin: 0 16px;
}

@media (min-width: 700px) {
  .footer .info-block__copyright:after {
    margin: 0 29px;
  }
}

@media (min-width: 1025px) {
  .footer .info-block__copyright:after {
    margin: 0 38px;
  }
}

.footer .info-block__by a {
  font-weight: normal;
  text-decoration: none;
}

.social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 0 -10px;
  overflow: hidden;
}

.social li {
  margin: 0 0 10px 15px;
}

@media (min-width: 700px) {
  .social li {
    margin: 0 0 10px 19px;
  }
}

.social li.instagram a:before {
  content: "\e905";
}

.social li.linkedin a:before {
  content: "\e903";
}

.social li.youtube a:before {
  content: "\e908";
}

.social a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 43px;
  height: 43px;
  background-color: #cc0a2f;
  color: #ffffff;
  font-size: 0;
  line-height: 0;
  border-radius: 50%;
  text-decoration: none;
  font-weight: normal;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}

.social a:hover {
  background-color: #182033;
}

.social a:before {
  content: "\e906";
  font-family: 'icomoon';
  font-size: 24px;
  line-height: 1;
}

.back-to-top {
  position: absolute;
  top: 17px;
  right: -3px;
  font-size: 0;
  line-height: 0;
  background-color: #182033;
  border-radius: 50%;
  border: none;
  width: 54px;
  height: 54px;
  padding: 0;
  font-weight: normal;
  color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}

.back-to-top:hover {
  background-color: #cc0a2f;
}

@media (min-width: 700px) {
  .back-to-top {
    top: 9px;
  }
}

@media (min-width: 1025px) {
  .back-to-top {
    width: 90px;
    height: 90px;
    top: 20px;
    right: -2px;
  }
}

.back-to-top:before {
  content: "\e90a";
  font-family: 'icomoon';
  font-size: 10px;
  line-height: 1;
}

@media (min-width: 1025px) {
  .back-to-top:before {
    font-size: 18px;
  }
}

.hero-inner {
  padding: 100px 0 20px;
  min-height: 308px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #182033;
  position: relative;
}

@media (min-width: 700px) {
  .hero-inner {
    padding: 120px 0 33px;
  }
}

@media (min-width: 1025px) {
  .hero-inner {
    min-height: 527px;
    padding: 150px 0 55px;
  }
}

@media screen and (min-width: 1025px) and (-ms-high-contrast: active), (min-width: 1025px) and (-ms-high-contrast: none) {
  .hero-inner {
    height: 527px;
  }
}

@media (min-width: 1025px) {
  .hero-inner__calendar, .hero-inner__news {
    min-height: 366px;
  }
}

@media screen and (min-width: 1025px) and (-ms-high-contrast: active), (min-width: 1025px) and (-ms-high-contrast: none) {
  .hero-inner__calendar, .hero-inner__news {
    height: 366px;
  }
}

.hero-inner:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 114px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), #000000);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
  opacity: .85;
}

@media (min-width: 1025px) {
  .hero-inner:after {
    height: 197px;
  }
}

.hero-inner > .container {
  width: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.hero-inner h1 {
  color: #ffffff;
}

.hero-inner h1:only-child {
  margin: 0;
}

.hero-inner_no-bg {
  min-height: 240px;
}

@media (min-width: 700px) {
  .hero-inner_no-bg {
    min-height: 265px;
  }
}

@media (min-width: 1025px) {
  .hero-inner_no-bg {
    min-height: 370px;
  }
}

@media screen and (min-width: 1025px) and (-ms-high-contrast: active), (min-width: 1025px) and (-ms-high-contrast: none) {
  .hero-inner_no-bg {
    height: 370px;
  }
}

.hero-inner_no-bg:after {
  display: none;
}

.hero-inner__event-detail {
  color: #ffffff;
  min-height: 214px;
  padding: 20px 0 28px;
}

@media (min-width: 700px) {
  .hero-inner__event-detail {
    min-height: 280px;
    padding: 20px 0 51px;
  }
}

@media (min-width: 1025px) {
  .hero-inner__event-detail {
    min-height: 368px;
    padding: 40px 0 70px;
  }
}

@media screen and (min-width: 1025px) and (-ms-high-contrast: active), (min-width: 1025px) and (-ms-high-contrast: none) {
  .hero-inner__event-detail {
    height: 368px;
  }
}

.hero-inner__event-detail .container {
  padding: 0 10px 0 20px;
}

@media (min-width: 700px) {
  .hero-inner__event-detail .container {
    padding: 0 50px;
  }
}

@media (min-width: 1025px) {
  .hero-inner__event-detail .container {
    padding: 0 20px;
  }
}

.hero-inner__event-detail h1 {
  font: 500 20px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
}

@media (min-width: 700px) {
  .hero-inner__event-detail h1 {
    font-size: 28px;
  }
}

@media (min-width: 1025px) {
  .hero-inner__event-detail h1 {
    font-size: 35px;
  }
}

.hero-inner__news-detail {
  color: #ffffff;
  min-height: 204px;
  font-size: 13px;
  line-height: 1.2;
  padding: 100px 0 31px;
}

@media (min-width: 700px) {
  .hero-inner__news-detail {
    min-height: 260px;
    padding: 120px 0 42px;
  }
}

@media (min-width: 1025px) {
  .hero-inner__news-detail {
    min-height: 366px;
    padding: 150px 0 83px;
  }
}

@media screen and (min-width: 1025px) and (-ms-high-contrast: active), (min-width: 1025px) and (-ms-high-contrast: none) {
  .hero-inner__news-detail {
    height: 366px;
  }
}

.hero-inner__news-detail h1 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 16px;
}

@media (min-width: 700px) {
  .hero-inner__news-detail h1 {
    font-size: 35px;
    margin: 0 0 21px;
  }
}

.hero-inner_no-header h1 {
  display: none;
}

@media (min-width: 700px) {
  .hero-inner_no-header h1 {
    display: block;
  }
}

.breadcrumbs-wrapper {
  height: 43px;
}

@media (min-width: 1025px) {
  .breadcrumbs-wrapper {
    height: 42px;
  }
}

.breadcrumbs {
  background-color: #f2f2f2;
  padding: 15px 10px 10px 19px;
  position: relative;
  line-height: 1.2;
}

@media screen and (min-width: 700px) {
  .breadcrumbs {
    padding: 15px 10px 10px 49px;
  }
}

@media (min-width: 1025px) {
  .breadcrumbs {
    font-size: 15px;
    padding: 0 10px 0 31px;
    letter-spacing: .28px;
  }
}

.scrolled .breadcrumbs {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
}

@media screen and (max-width: 699px) {
  .breadcrumbs .link-trail {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .breadcrumbs .has-drop-down + .has-drop-down {
    padding: 0 0 0 20px;
  }
}

@media screen and (max-width: 699px) {
  .breadcrumbs .has-drop-down + .has-drop-down {
    padding: 0 0 0 46px;
  }
}

@media screen and (max-width: 1024px) {
  .breadcrumbs .has-drop-down + .has-drop-down + .has-drop-down {
    padding: 0 0 0 30px;
  }
}

@media screen and (max-width: 699px) {
  .breadcrumbs .has-drop-down + .has-drop-down + .has-drop-down {
    padding: 0 0 0 69px;
  }
}

@media screen and (max-width: 1024px) {
  .breadcrumbs .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down {
    padding: 0 0 0 40px;
  }
}

@media screen and (max-width: 699px) {
  .breadcrumbs .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down {
    padding: 0 0 0 92px;
  }
}

@media screen and (max-width: 1024px) {
  .breadcrumbs .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down {
    padding: 0 0 0 50px;
  }
}

@media screen and (max-width: 699px) {
  .breadcrumbs .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down {
    padding: 0 0 0 115px;
  }
}

@media screen and (max-width: 1024px) {
  .breadcrumbs .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down {
    padding: 0 0 0 60px;
  }
}

@media screen and (max-width: 699px) {
  .breadcrumbs .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down {
    padding: 0 0 0 138px;
  }
}

@media screen and (max-width: 1024px) {
  .breadcrumbs .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down {
    padding: 0 0 0 70px;
  }
}

@media screen and (max-width: 699px) {
  .breadcrumbs .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down + .has-drop-down {
    padding: 0 0 0 138px;
  }
}

.breadcrumbs__list {
  position: absolute;
  top: 100%;
  left: 11px;
  z-index: 1;
  width: calc(100% - 20px);
  background-color: #ffffff;
  height: 285px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

@media screen and (min-width: 700px) {
  .breadcrumbs__list {
    width: 297px;
  }
}

@media (max-width: 1024px) {
  .breadcrumbs__list {
    -webkit-filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
            filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
  }
}

@media screen and (min-width: 700px) and (max-width: 1024px) {
  .breadcrumbs__list {
    left: 50px;
  }
}

@media (min-width: 1025px) {
  .breadcrumbs__list {
    position: static;
    height: auto;
    width: auto;
    overflow: visible;
    background: none;
    visibility: visible;
    opacity: 1;
  }
}

.open .breadcrumbs__list {
  opacity: 1;
  visibility: visible;
}

.breadcrumbs__list > ul {
  padding: 35px 10px 10px 38px;
}

@media (min-width: 1025px) {
  .breadcrumbs__list > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
  }
}

.breadcrumbs__list > ul > li.has-drop-down:last-child > a {
  color: #000000;
}

.breadcrumbs__list > ul > li:last-child {
  display: none;
}

@media (min-width: 1025px) {
  .breadcrumbs__list > ul > li:last-child {
    display: block;
  }
}

.breadcrumbs__list > ul > li:last-child > a {
  color: #6E6E6E;
}

@media (min-width: 1025px) {
  .breadcrumbs__list > ul > li {
    padding: 0 44px;
    position: relative;
  }
  .breadcrumbs__list > ul > li:before {
    content: "/";
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 15px;
    line-height: 1;
  }
  .breadcrumbs__list > ul > li:first-child {
    padding: 0 40px 0 0;
  }
  .breadcrumbs__list > ul > li:first-child:before {
    display: none;
  }
}

@media (min-width: 1025px) {
  .breadcrumbs__list > ul > li > a {
    padding: 13px 0 11px;
    display: inline-block;
    vertical-align: top;
  }
}

.breadcrumbs ul ul {
  padding: 21px 0 0 24px;
}

@media (min-width: 1025px) {
  .breadcrumbs ul ul {
    position: absolute;
    top: 100%;
    left: 10px;
    z-index: 1;
    width: 231px;
    padding: 43px 20px 41px 43px;
    opacity: 0;
    -webkit-filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
            filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    letter-spacing: normal;
    background-color: #ffffff;
    font-size: 16px;
  }
}

.breadcrumbs ul ul li {
  margin: 0 0 23px;
}

.breadcrumbs .current-item a {
  font-weight: 700;
  position: relative;
}

.breadcrumbs .current-item a:after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: -18px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #cc0a2f;
}

.breadcrumbs a {
  text-decoration: none;
  font-weight: normal;
}

.breadcrumbs li {
  margin: 0 0 19px;
}

@media (min-width: 1025px) {
  .breadcrumbs li {
    margin: 0;
  }
}

@media screen and (max-width: 1024px) {
  .breadcrumbs li:not(:nth-last-child(2)) ul {
    display: none;
  }
}

.breadcrumbs li:last-child {
  margin: 0;
}

.breadcrumbs .has-drop-down {
  padding: 0 0 0 23px;
}

@media screen and (min-width: 700px) {
  .breadcrumbs .has-drop-down {
    padding: 0 0 0 10px;
  }
}

@media (min-width: 1025px) {
  .breadcrumbs .has-drop-down {
    padding: 0 32px 0 56px;
  }
  .breadcrumbs .has-drop-down:hover > ul, .breadcrumbs .has-drop-down.open > ul {
    opacity: 1;
    visibility: visible;
  }
  .breadcrumbs .has-drop-down:hover > a:after, .breadcrumbs .has-drop-down.open > a:after {
    top: -1px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

@media (min-width: 1025px) {
  .breadcrumbs .has-drop-down > a {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .breadcrumbs .has-drop-down > a:after {
    position: relative;
    top: 0px;
    content: '\e90a';
    font-family: 'icomoon';
    font-size: 4px;
    font-weight: 700;
    line-height: 1;
    -webkit-transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, -webkit-transform 0.3s;
    -o-transition: transform 0.3s, top 0.3s;
    transition: transform 0.3s, top 0.3s;
    transition: transform 0.3s, top 0.3s, -webkit-transform 0.3s;
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
    margin: 0 0 0 10px;
  }
}

.breadcrumbs__opener {
  border: none;
  background: none;
  padding: 0 16px 0 0;
  display: block;
  font: 600 15px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  position: relative;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.open .breadcrumbs__opener:after {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  top: 6px;
}

@media (min-width: 1025px) {
  .breadcrumbs__opener {
    display: none;
  }
}

.breadcrumbs__opener:after {
  content: '\e90a';
  font-family: 'icomoon';
  position: absolute;
  right: 0;
  top: 9px;
  font-size: 4px;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.events-section {
  padding: 12px 0;
}

@media (min-width: 700px) {
  .events-section {
    padding: 20px 0 27px;
  }
}

@media (min-width: 1025px) {
  .events-section {
    padding: 0;
  }
}

.events-section .container {
  max-width: 1040px;
}

@media (min-width: 700px) {
  .events-section .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
}

.events-section h2 {
  font-size: 30px;
}

@media (min-width: 700px) {
  .events-section h2 {
    font-size: 40px;
    line-height: 1.19;
  }
}

@media (min-width: 1025px) {
  .events-section h2 {
    font-size: 50px;
  }
}

.events-section__header {
  margin: 0 0 11px;
}

@media (min-width: 700px) {
  .events-section__header {
    margin: 0 0 23px;
  }
}

@media (min-width: 1025px) {
  .events-section__header {
    margin: 0 0 14px;
  }
}

.events-section__intro {
  margin: 0 0 21px;
  line-height: 1.5;
}

@media (min-width: 700px) {
  .events-section__intro {
    margin: 0 0 29px;
  }
}

@media (min-width: 1025px) {
  .events-section__intro {
    margin: 0 0 46px;
  }
}

.events-section__events-list {
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 32px;
}

@media (min-width: 700px) {
  .events-section__events-list {
    margin: 0;
  }
}

@media (min-width: 1025px) {
  .events-section__events-list {
    font-size: 16px;
    margin: 0 0 66px;
  }
}

.events-section__events-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 0 25px;
  margin: 0 0 23px;
  border-bottom: 1px solid #000000;
}

@media (min-width: 700px) {
  .events-section__events-list li {
    padding: 0 0 29px;
    margin: 0 0 23px;
  }
}

@media (min-width: 1025px) {
  .events-section__events-list li {
    padding: 0 0 36px;
    margin: 0 0 26px;
  }
}

.events-section__events-list li:last-child {
  padding: 0;
  border: none;
  margin: 0;
}

.events-section__date {
  width: 44px;
  height: 46px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  border-radius: 50%;
  background-color: #cc0a2f;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1;
  margin: 4px 0 0;
}

@media (min-width: 700px) {
  .events-section__date {
    width: 46px;
  }
}

@media (min-width: 1025px) {
  .events-section__date {
    width: 58px;
    height: 58px;
  }
}

.events-section__day {
  font-size: 17px;
  font-weight: 600;
}

.events-section__content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 5px 0 18px;
}

@media (min-width: 700px) {
  .events-section__content {
    padding: 8px 0 0 35px;
  }
}

@media (min-width: 1025px) {
  .events-section__content {
    padding: 2px 0 0 39px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.events-section h3 {
  margin: 0 0 9px;
  font-size: 20px;
  line-height: 1.2;
}

@media (min-width: 700px) {
  .events-section h3 {
    margin: 0 0 13px;
  }
}

@media (min-width: 1025px) {
  .events-section h3 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 23px;
    margin: 0;
  }
}

.events-section h3 a {
  text-decoration: none;
  font-weight: 500;
}

.events-section__data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 1025px) {
  .events-section__data {
    margin: 0 0 9px;
  }
}

.events-section__location:before {
  content: "|";
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
}

.events-section__section-cta {
  line-height: 1.2;
}

@media (min-width: 700px) {
  .events-section__section-cta {
    position: absolute;
    bottom: -2px;
    left: 50%;
    margin: 0 0 0 7.4%;
  }
}

@media (min-width: 1025px) {
  .events-section__section-cta {
    position: static;
    margin: 0;
  }
}

.events-section__section-cta .cta {
  font-size: 18px;
  margin: 0;
}

.events-section__text-block {
  margin: 0 0 32px;
}

@media (min-width: 700px) {
  .events-section__text-block {
    width: 50%;
    margin: 0;
  }
}

@media (min-width: 1025px) {
  .events-section__text-block {
    width: 44%;
  }
}

.events-section__img-block {
  font-size: 12px;
  line-height: 1.59;
}

@media (min-width: 700px) {
  .events-section__img-block {
    width: 41.4%;
    padding: 7px 0 60px;
  }
}

@media (min-width: 1025px) {
  .events-section__img-block {
    padding: 13px 0 40px;
  }
}

.events-section__img-block img {
  margin: 0 0 12px;
}

@media (min-width: 700px) {
  .events-section__img-block img {
    margin: 0 0 10px;
  }
}

@media (min-width: 1025px) {
  .events-section__img-block img {
    margin: 0 0 15px;
  }
}

.events-section__caption {
  position: relative;
  padding: 0 0 14px;
}

.events-section__caption:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 244px;
  height: 29px;
  background-image: -o-radial-gradient(48% -165px, circle, #eabfc0, #ffffff 200px);
  background-image: radial-gradient(circle at 48% -165px, #eabfc0, #ffffff 200px);
}

@media (min-width: 1025px) {
  .events-section__caption:after {
    width: 349px;
    height: 41px;
    background-image: -o-radial-gradient(48% -230px, circle, #eabfc0, #ffffff 280px);
    background-image: radial-gradient(circle at 48% -230px, #eabfc0, #ffffff 280px);
  }
}

/**
 * @file
 * Home slider
 *
 * Contains styles for home slider object.
 */
.home-slider {
  padding: 56px 0 44px;
  margin: 0;
}

@media (min-width: 700px) {
  .home-slider {
    padding: 80px 0 92px;
  }
}

@media (min-width: 1025px) {
  .home-slider {
    padding: 71px 0 87px;
  }
}

.home-slider .container {
  max-width: 1040px;
}

@media screen and (min-width: 700px) {
  .home-slider .container {
    position: relative;
  }
}

@media screen and (min-width: 700px) {
  .home-slider .container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1;
  }
}

@media screen and (min-width: 1025px) {
  .home-slider .container:before {
    left: calc(-1 * (100vw - 1040px) / 2);
    width: calc((100vw - 1000px) / 2);
  }
}

.home-slider h2 {
  font-size: 30px;
}

@media (min-width: 700px) {
  .home-slider h2 {
    font-size: 40px;
  }
}

@media (min-width: 1025px) {
  .home-slider h2 {
    font-size: 50px;
  }
}

.home-slider__header {
  margin: 0 0 27px;
}

@media (min-width: 1025px) {
  .home-slider__header {
    margin: 0 0 43px;
  }
}

.home-slider__item {
  padding: 0 0 168px;
}

@media (min-width: 700px) {
  .home-slider__item {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
  }
}

.home-slider__wrapper:after {
  content: "";
  position: absolute;
  bottom: 71px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  height: 21px;
  background-image: -o-radial-gradient(48% -170px, circle, #eabfc0, #ffffff 200px);
  background-image: radial-gradient(circle at 48% -170px, #eabfc0, #ffffff 200px);
}

@media (min-width: 700px) {
  .home-slider__wrapper:after {
    width: 280px;
    height: 41px;
    background-image: -o-radial-gradient(48% -230px, circle, #eabfc0, #ffffff 280px);
    background-image: radial-gradient(circle at 48% -230px, #eabfc0, #ffffff 280px);
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: 0;
    bottom: auto;
    top: 100%;
  }
}

@media (min-width: 1025px) {
  .home-slider__wrapper:after {
    width: 349px;
    height: 41px;
  }
}

@media (min-width: 700px) {
  .home-slider__content {
    width: 52.8%;
    padding: 41px 0 0 40px;
  }
}

@media (min-width: 1025px) {
  .home-slider__content {
    width: 45.8%;
    padding: 35px 0 0 58px;
  }
}

.home-slider__img {
  padding-top: 104%;
  position: relative;
}

@media (min-width: 700px) {
  .home-slider__img {
    padding-top: 47.3%;
    width: 47.2%;
  }
}

@media (min-width: 1025px) {
  .home-slider__img {
    padding-top: 54.3%;
    width: 54.2%;
  }
}

.home-slider__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.home-slider blockquote {
  position: relative;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 29px 0 0;
  font-size: 22px;
  line-height: 1.32;
}

@media (min-width: 700px) {
  .home-slider blockquote {
    padding: 0;
    margin: 0 0 23px;
  }
}

@media (min-width: 1025px) {
  .home-slider blockquote {
    font-size: 26px;
    line-height: 1.31;
    margin: 0 0 43px;
  }
}

.home-slider cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .26px;
  border-bottom: 1px solid #000000;
  padding: 0 0 19px;
  margin: 0 0 19px;
}

@media (min-width: 1025px) {
  .home-slider cite {
    font-size: 16px;
    padding: 0 0 37px;
    margin: 0 0 41px;
  }
}

.home-slider cite span {
  display: block;
  margin: 0 0 5px;
}

.home-slider cite span:last-child {
  margin: 0;
}

.home-slider__name {
  font-weight: 600;
}

.home-slider q {
  display: block;
}

.home-slider .slick-arrow {
  top: auto;
  bottom: 112px;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: auto;
  height: auto;
  color: #000000;
  text-indent: 0;
}

@media (min-width: 700px) {
  .home-slider .slick-arrow {
    width: 66px;
    height: 66px;
    left: 215px;
    bottom: 0;
  }
}

@media (min-width: 1025px) {
  .home-slider .slick-arrow {
    left: 349px;
  }
}

.home-slider .slick-arrow:after {
  content: "\e909";
  font-family: 'icomoon';
  display: block;
  font-size: 20px;
  line-height: 1;
  position: static;
  height: auto;
  width: auto;
  background: none;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

@media (min-width: 700px) {
  .home-slider .slick-arrow.slick-prev {
    left: 50px;
  }
}

@media (min-width: 1025px) {
  .home-slider .slick-arrow.slick-prev {
    left: 190px;
  }
}

.home-slider .slick-arrow.slick-prev:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.home-slider .slick-arrow.slick-disabled:after {
  background: none;
}

@media (min-width: 700px) {
  .home-slider .slick-arrow.slick-disabled {
    background: #182033;
    color: #ffffff;
  }
}

.home-slider .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: 112px;
  left: 0;
  width: 100%;
}

@media (min-width: 700px) {
  .home-slider .slick-dots {
    position: absolute;
    bottom: 23px;
    left: 140px;
    width: auto;
  }
}

@media (min-width: 1025px) {
  .home-slider .slick-dots {
    left: 275px;
  }
}

.home-slider .slick-dots button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.home-slider .slick-dots button:after {
  width: 4px;
  height: 4px;
  background-color: #182033;
}

.home-slider .cta--button {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (min-width: 700px) {
  .home-slider .cta--button {
    position: static;
  }
}

@media (min-width: 700px) {
  .home-slider .slick-list {
    overflow: visible;
  }
}

.home-slider .slick-track {
  display: -webkit-flex !important;
  display: -moz-flex !important;
  display: -ms-flex !important;
  display: -o-flex !important;
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (min-width: 700px) {
  .home-slider .slick-track {
    display: block !important;
  }
}

.home-slider .slick-slide {
  height: inherit !important;
}

@media (min-width: 700px) {
  .home-slider .slick-slide {
    width: 595px;
    margin: 0 0 0 35px;
    height: 100% !important;
  }
}

@media (min-width: 1025px) {
  .home-slider .slick-slide {
    width: 765px;
    margin: 0 0 0 138px;
  }
}

.start-section {
  min-height: 216px;
  background-size: cover;
  background-color: #000000;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media (min-width: 700px) {
  .start-section {
    min-height: 314px;
  }
}

@media (min-width: 1025px) {
  .start-section {
    min-height: 516px;
  }
}

.start-section:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.54)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.54));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.54));
  height: 216px;
}

@media (min-width: 700px) {
  .start-section:after {
    height: 289px;
  }
}

.start-section .container {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  z-index: 1;
}

.start-section h2 {
  font: 50px/1 Anton, Arial, Helvetica, sans-serif;
  margin: 0 0 27px;
}

@media (min-width: 700px) {
  .start-section h2 {
    margin: 0 0 31px;
  }
}

@media (min-width: 1025px) {
  .start-section h2 {
    font-size: 80px;
    margin: 0 0 88px;
  }
}

/**
 * @file
 * News
 *
 * Contains styles for news and news view modes.
 */
.news-detail__header {
  width: 100%;
}

.news-detail__data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.news-detail__author:before {
  content: "|";
  display: inline-block;
  vertical-align: top;
  margin: 0 12px;
}

.news-detail__author a {
  text-decoration: none;
  color: #ffffff;
  text-decoration: underline;
}

.news--full {
  padding: 27px 0 50px;
}

@media (min-width: 700px) {
  .news--full {
    padding: 40px 0 41px;
  }
}

@media (min-width: 1025px) {
  .news--full {
    padding: 70px 0 78px;
  }
}

.news--full .container {
  margin: 0 auto 26px;
}

@media (min-width: 700px) {
  .news--full .container {
    margin: 0 auto 40px;
  }
}

@media (min-width: 1025px) {
  .news--full .container {
    margin: 0 auto 55px;
  }
}

.news .quote .container {
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .news .quote--full {
    padding: 65px 0 63px;
    font-size: 25px;
    line-height: 1.44;
    margin: 0 0 57px;
  }
}

@media (min-width: 1025px) {
  .news .quote--full .container {
    max-width: 622px;
  }
}

@media (min-width: 1025px) {
  .news .quote__copy {
    padding: 37px 0 22px;
  }
}

.news__content .container {
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .news__tags {
    padding: 33px 0 0;
  }
}

.news__tags-label {
  font: 700 16px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  margin: 0 0 25px;
}

@media (min-width: 700px) {
  .news__tags-label {
    margin: 0 64px 0 0;
  }
}

.news__tags-wrapper {
  font-size: 15px;
  line-height: 1.2;
}

@media (min-width: 700px) {
  .news__tags-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.news__tags-wrapper a {
  font-weight: normal;
  display: block;
}

.news__tags-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.news__tags-list li {
  margin: 0 16px 0 0;
}

@media (min-width: 700px) {
  .news__tags-list li {
    margin: 0 31px 0 0;
  }
}

.news__tags-list li:last-child {
  margin: 0;
}

.news--listing {
  padding: 22px 0 42px;
  font-size: 14px;
  line-height: 1.72;
}

@media (min-width: 700px) {
  .news--listing {
    padding: 23px 0 42px;
  }
}

@media (min-width: 1025px) {
  .news--listing {
    padding: 66px 0 77px;
    font-size: 15px;
    line-height: 1.67;
  }
}

.news--listing .container {
  max-width: 754px;
}

.news--listing .news__item {
  margin: 0 0 45px;
}

@media (min-width: 700px) {
  .news--listing .news__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 0 33px;
  }
}

@media (min-width: 1025px) {
  .news--listing .news__item {
    margin: 0 0 50px;
  }
}

.news--listing .news__image {
  margin: 0 0 10px;
  position: relative;
}

@media (min-width: 700px) {
  .news--listing .news__image {
    width: 23.5%;
    margin: 0;
  }
}

@media (min-width: 1025px) {
  .news--listing .news__image {
    width: 29.3%;
  }
}

.news--listing .news__image img {
  width: 100%;
}

@media (min-width: 700px) {
  .news--listing .news__body {
    width: 76.5%;
    padding: 12px 0 0 25px;
  }
}

@media (min-width: 1025px) {
  .news--listing .news__body {
    width: 70.7%;
    padding: 13px 0 0 28px;
  }
}

.news--listing .news__teaser {
  display: none;
}

@media (min-width: 700px) {
  .news--listing .news__teaser {
    display: block;
  }
}

.news--listing .news__date {
  font-weight: normal;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1.04px;
  margin: 0 0 13px;
}

@media (min-width: 700px) {
  .news--listing .news__date {
    font-size: 15px;
    margin: 0 0 12px;
  }
}

@media (min-width: 1025px) {
  .news--listing .news__date {
    font-size: 14px;
  }
}

@media (min-width: 700px) {
  .news--listing .news__title {
    margin: 0 0 9px;
  }
}

.news--listing .news__title h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.27;
}

@media (min-width: 1025px) {
  .news--listing .news__title h2 {
    font-size: 25px;
  }
}

.news--listing .news__title a {
  text-decoration: none;
}

.news--listing .news__title a:after {
  content: "\e900";
  font-family: 'icomoon';
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
  color: #cc0a2f;
  margin: 0 0 0 10px;
}

.news__pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  line-height: 1;
}

.news__pagination a {
  font-weight: normal;
  text-decoration: none;
}

.news__pagination .ellipsis {
  margin: 0 9px;
}

.news__pagination > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.news .paginate_button {
  margin: 0 9px;
}

.news .paginate_button:hover {
  text-decoration: none;
}

.news .paginate_button.current {
  color: #757575;
}

.news .paginate_button.previous, .news .paginate_button.next {
  font-size: 0;
  line-height: 0;
  color: #cc0a2f;
  margin: 0 0 0 13px;
}

.news .paginate_button.previous:before, .news .paginate_button.next:before {
  position: relative;
  content: "\e90a";
  font-family: 'icomoon';
  display: block;
  font-size: 6px;
  line-height: 1;
  font-weight: 800;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: -1;
}

.news .paginate_button.disabled {
  color: #757575;
}

.news .paginate_button.previous {
  margin: 0 13px 0 0;
}

.news .paginate_button.previous:before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/**
 * @file
 * Program
 *
 * Contains styles for programs and program view modes.
 */
[id="program-list"] {
  padding: 20px 0 40px;
}

@media (min-width: 700px) {
  [id="program-list"] {
    padding: 31px 0 60px;
  }
}

@media (min-width: 1025px) {
  [id="program-list"] {
    padding: 59px 0 80px;
  }
}

[id="program-list"] .container {
  max-width: 1120px;
}

@media (min-width: 700px) {
  .program-finder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.program-finder select {
  width: 100%;
}

.program__filters {
  display: none;
  background-color: #f2f2f2;
  font-size: 15px;
  line-height: 1.2;
  padding: 22px 39px 31px 22px;
}

@media (min-width: 700px) {
  .program__filters {
    display: block;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    padding: 11px 0 0 11px;
    background: none;
    width: 188px;
  }
}

@media (min-width: 1025px) {
  .program__filters {
    padding: 0;
    width: 178px;
  }
}

.program__filters__holder {
  display: none;
  padding: 20px 0 0;
}

.program__filters__open {
  display: inline-block;
  vertical-align: top;
  background-color: #182033;
  font: 14px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  letter-spacing: .26px;
  border: none;
  padding: 16px 45px 15px 20px;
  min-width: 159px;
  text-align: left;
  position: relative;
  color: #ffffff;
  -webkit-transition: min-width .3s;
  -o-transition: min-width .3s;
  transition: min-width .3s;
}

@media (min-width: 700px) {
  .program__filters__open {
    display: none;
  }
}

.program__filters__open.active {
  min-width: 100%;
}

@media (min-width: 700px) {
  .program__filters__open.active {
    min-width: 159px;
  }
}

.program__filters__open.active:after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.program__filters__open:after {
  content: "+";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  font-size: 26px;
  line-height: 1;
  font-style: normal;
}

.program__filters__opener {
  background: none;
  border: solid #000000;
  border-width: 0 0 1px;
  width: 100%;
  text-align: left;
  padding: 0 0 6px;
  position: relative;
}

@media screen and (min-width: 700px) {
  .program__filters__opener {
    padding-top: 2px;
  }
}

@media (min-width: 1025px) {
  .program__filters__opener {
    padding: 2px 15px 6px 0;
  }
}

.program__filters__opener.is-expanded:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.program__filters__opener:after {
  content: "\e90a";
  font-family: 'icomoon';
  position: absolute;
  right: 15px;
  bottom: 11px;
  font-size: 4px;
  font-weight: 700;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  line-height: 1;
}

@media (min-width: 700px) {
  .program__filters__opener:after {
    right: 6px;
  }
}

.program__filters__fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 38px;
}

.program__filters__fieldset:last-child {
  margin: 0;
}

.program__filters__fieldset legend {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 19px;
}

.program__filters__field {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 18px;
}

.program__filters__field:last-child {
  margin: 0;
}

.program__filters__field input[type="radio"] {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.program__filters__field label {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 0 0 15px;
  outline: none;
}

.program__filters__field input[type="radio"]:checked + label:after {
  content: "";
  width: 5px;
  height: 5px;
  background: #000000;
  position: absolute;
  left: 8px;
  top: 8px;
  border-radius: 50%;
}

.program--list {
  padding: 33px 0 0;
}

@media (min-width: 700px) {
  .program--list {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 0 0 0 48px;
  }
}

@media (min-width: 1025px) {
  .program--list {
    padding: 0 0 0 92px;
  }
}

.program--list__sort {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  margin: 0 0 32px;
}

.program--list__sort:after {
  content: '\e90a';
  font-family: 'icomoon';
  position: absolute;
  right: 15px;
  bottom: 18px;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  font-size: 4px;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 1025px) {
  .program--list__sort:after {
    right: 14px;
    bottom: 17px;
  }
}

.program--list__sort label {
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  font: 700 16px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  margin: 0 0 17px;
}

@media (min-width: 700px) {
  .program--list__sort label {
    margin: 0 0 16px;
  }
}

.program--list__sort select {
  height: 34px;
  border: 1px solid #000000;
  padding: 5px 16px 5px 11px;
  height: 41px;
}

.program--list h2 {
  margin: 0 0 23px;
}

@media (min-width: 700px) {
  .program--list h2 {
    margin: 0 0 24px;
    font-size: 28px;
  }
}

@media (min-width: 1025px) {
  .program--list h2 {
    margin: 0 0 26px;
    font-size: 40px;
  }
}

.program--list__block {
  margin: 0 0 40px;
}

@media (min-width: 700px) {
  .program--list__block {
    margin: 0 0 72px;
  }
}

@media (min-width: 1025px) {
  .program--list__block {
    width: 84%;
  }
}

.program--list__block:last-child {
  margin: 0;
}

.program--list__items {
  padding: 0;
  margin: 0;
  list-style: none;
}

.program--list__items a {
  color: #000000;
  text-decoration: none;
  display: block;
  padding: 0 20px 14px 0;
  position: relative;
  font-weight: normal;
}

@media (min-width: 700px) {
  .program--list__items a {
    padding: 0 20px 17px 0;
  }
}

@media (min-width: 1025px) {
  .program--list__items a {
    padding: 0 60px 12px 0;
  }
}

.program--list__items a:after {
  content: "\e900";
  font-family: 'icomoon';
  color: #cc0a2f;
  position: absolute;
  right: 0;
  top: 9px;
  font-size: 12px;
  line-height: 1;
  margin: 0 0 0 11px;
  font-style: normal;
}

@media (min-width: 1025px) {
  .program--list__items a:after {
    top: 13px;
    right: 10px;
  }
}

@media (min-width: 1025px) {
  .program--list__items a:after {
    top: 7px;
    right: 0;
  }
}

.program--list__items a:hover {
  text-decoration: none;
}

.program--list__item {
  border-bottom: 1px solid #000000;
  margin: 0 0 17px;
}

@media (min-width: 1025px) {
  .program--list__item {
    margin: 0 0 20px;
  }
}

.program--list__item:last-child {
  margin: 0;
}

.program--list h3 {
  margin: 0;
  font: 18px/1.56 "Work Sans", Arial, Helvetica, sans-serif;
}

@media (min-width: 1025px) {
  .program--list h3 {
    font-size: 20px;
  }
}

.program--list span {
  display: block;
}

.program--list a:hover, .program--list a:focus {
  color: #cc0a2f;
}

/**
 * @file
 * Calendar
 *
 * Contains styles for the Calendar Detail Page
 */
.event-detail {
  padding: 29px 0 38px;
}

@media (min-width: 700px) {
  .event-detail {
    padding: 40px 0 35px;
  }
}

@media (min-width: 1025px) {
  .event-detail {
    padding: 79px 0 75px;
  }
}

.event-detail__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 13px;
  line-height: 1.2;
}

@media (min-width: 1025px) {
  .event-detail__header {
    font-size: 16px;
  }
}

.event-detail__data-holder {
  padding: 0 0 0 19px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (min-width: 700px) {
  .event-detail__data-holder {
    padding: 0 0 0 54px;
  }
}

@media (min-width: 1025px) {
  .event-detail__data-holder {
    padding: 0 0 0 68px;
  }
}

.event-detail__time {
  margin: 0 0 9px;
}

@media (min-width: 1025px) {
  .event-detail__time {
    margin: 0 0 11px;
  }
}

.event-detail__data {
  width: 100%;
}

.event-detail__tags-label, .event-detail__save-label {
  font: 700 16px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  margin: 0 0 25px;
}

@media (min-width: 700px) {
  .event-detail__tags-label, .event-detail__save-label {
    margin: 0 64px 0 0;
  }
}

.event-detail__tags-wrapper {
  font-size: 15px;
  line-height: 1.2;
  margin: 0 0 42px;
}

@media (min-width: 700px) {
  .event-detail__tags-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 0 44px;
  }
}

@media (min-width: 1025px) {
  .event-detail__tags-wrapper {
    margin: 0 0 60px;
  }
}

.event-detail__tags-wrapper a {
  font-weight: normal;
  display: block;
}

.event-detail__tags-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.event-detail__tags-list li {
  margin: 0 16px 0 0;
}

@media (min-width: 700px) {
  .event-detail__tags-list li {
    margin: 0 31px 0 0;
  }
}

.event-detail__tags-list li:last-child {
  margin: 0;
}

.event-detail__save {
  font-size: 0;
  line-height: 0;
}

.event-detail__save-icon {
  display: inline-block;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  color: #cc0a2f;
  margin: 0 18px 0 0;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  text-decoration: none;
}

.event-detail__save-icon:before {
  content: "\e90d";
  font-family: 'icomoon';
  display: block;
  font-size: 18px;
  line-height: 1;
}

.event-detail__save-icon:hover {
  text-decoration: none;
  color: #182033;
}

.event-detail .icon--google:before {
  content: "\e90c";
}

.event-detail .icon--windows:before {
  content: "\e90b";
}

.event-detail .icon--yahoo:before {
  content: "\e90e";
}

@media (min-width: 700px) {
  .event-detail .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.event-detail__date {
  text-align: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #cc0a2f;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin: 5px 0 0;
  font-size: 10px;
  line-height: 1;
}

@media (min-width: 700px) {
  .event-detail__date {
    width: 58px;
    height: 58px;
    margin: 11px 0 0;
    font-size: 13px;
  }
}

@media (min-width: 1025px) {
  .event-detail__date {
    width: 73px;
    height: 73px;
    font-size: 16px;
  }
}

.event-detail__day {
  font-weight: 600;
  font-size: 17px;
}

@media (min-width: 700px) {
  .event-detail__day {
    font-size: 22px;
  }
}

@media (min-width: 1025px) {
  .event-detail__day {
    font-size: 27px;
  }
}

.event-detail__body {
  margin: 0 0 36px;
}

@media (min-width: 700px) {
  .event-detail__body {
    border-bottom: 1px solid #000000;
    padding: 0 0 45px;
    margin: 0 0 47px;
  }
}

@media (min-width: 1025px) {
  .event-detail__body {
    padding: 0 0 64px;
  }
}

.event-detail__month {
  text-transform: uppercase;
}

.event-detail__rsvp a.cta {
  min-width: auto;
}

.event-detail__loc-dir {
  margin-top: 1.3em;
  margin-bottom: 1.3em;
}

.event-detail__map {
  margin-top: 1.3em;
}

.event-detail__map #map_canvas_single {
  height: 200px;
}

/**
 * @file
 * Blog
 *
 * Contains styles for Event list.
 */
.event-list__items {
  padding: 0;
  list-style: none;
}

.event-list__item {
  margin: 0 0 2rem;
}

.event-list__date {
  width: 80px;
  height: 80px;
  border: 1px solid;
  float: left;
  margin-right: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.event-list__data {
  overflow: hidden;
}

.event-list__time {
  font-weight: 700;
}

.event-list__title {
  margin-top: 0;
}

.event-list__location {
  font-style: italic;
}

/**
 * @file
 * Calendar List
 *
 * Contains styles for the Calendar List
 */
.calendar {
  padding: 19px 0 49px;
}

@media (min-width: 700px) {
  .calendar {
    padding: 23px 0 52px;
  }
}

@media (min-width: 1025px) {
  .calendar {
    padding: 56px 0 78px;
  }
}

.calendar .container {
  max-width: 1120px;
}

@media (min-width: 700px) {
  .calendar .container {
    position: relative;
  }
}

@media (min-width: 1025px) {
  .calendar .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.calendar a {
  text-decoration: none;
}

.calendar__expand-filters {
  display: inline-block;
  vertical-align: top;
  background-color: #182033;
  font: 14px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  letter-spacing: .26px;
  border: none;
  padding: 16px 45px 15px 20px;
  min-width: 159px;
  text-align: left;
  position: relative;
  color: #ffffff;
  -webkit-transition: min-width .3s;
  -o-transition: min-width .3s;
  transition: min-width .3s;
}

@media (min-width: 700px) {
  .calendar__expand-filters {
    position: absolute;
    top: 0;
    right: 50px;
  }
}

@media (min-width: 1025px) {
  .calendar__expand-filters {
    display: none;
  }
}

.calendar__expand-filters.expanded {
  min-width: 100%;
}

@media (min-width: 700px) {
  .calendar__expand-filters.expanded {
    min-width: 159px;
  }
}

.calendar__expand-filters.expanded:after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.calendar__expand-filters:after {
  content: "+";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  font-size: 26px;
  line-height: 1;
  font-style: normal;
}

.calendar__left-col {
  padding: 26px 0 0;
}

@media (min-width: 700px) {
  .calendar__left-col {
    padding: 9px 0 0;
  }
}

@media (min-width: 1025px) {
  .calendar__left-col {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 0 0 0 81px;
    max-width: 740px;
  }
}

.calendar__pagination__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
}

@media (min-width: 700px) {
  .calendar__pagination__list {
    font-size: 15px;
    margin: 3px 0 0 46px;
  }
}

@media (min-width: 1025px) {
  .calendar__pagination__list {
    padding: 9px 5px 0 0;
  }
}

.calendar__pagination__list li:after {
  content: '|';
  display: inline-block;
  vertical-align: middle;
  margin: 0 13px;
}

@media (min-width: 700px) {
  .calendar__pagination__list li:after {
    margin: 0 17px;
  }
}

.calendar__pagination__list li:last-child:after {
  content: none;
}

.calendar__pagination__list a {
  color: #000000;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  font-weight: normal;
}

.calendar__pagination__list a.active {
  color: #cc0a2f;
  font-weight: 700;
}

.calendar__pagination__list a:hover {
  text-decoration: none;
  color: #cc0a2f;
}

.calendar__pagination {
  margin: 0 0 39px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 700px) {
  .calendar__pagination {
    margin: 0 0 47px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (min-width: 1025px) {
  .calendar__pagination {
    margin: 0 0 79px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.calendar__pagination__date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  line-height: 1.2;
}

@media (min-width: 700px) {
  .calendar__pagination__date {
    font-size: 24px;
  }
}

@media (min-width: 1025px) {
  .calendar__pagination__date {
    font-size: 27px;
  }
}

.calendar__pagination strong {
  margin: 0 7px;
}

@media (min-width: 700px) {
  .calendar__pagination strong {
    margin: 0 15px;
  }
}

@media (min-width: 1025px) {
  .calendar__pagination strong {
    margin: 0 16px;
  }
}

.calendar .calendar__pagination__date .icon-arrow-left:after,
.calendar .calendar__pagination__date .icon-arrow-right:after {
  font-weight: 700;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

@media (min-width: 700px) {
  .calendar .calendar__pagination__date .icon-arrow-left:after,
  .calendar .calendar__pagination__date .icon-arrow-right:after {
    font-size: 10px;
  }
}

@media (min-width: 1025px) {
  .calendar .calendar__pagination__date .icon-arrow-left:after,
  .calendar .calendar__pagination__date .icon-arrow-right:after {
    font-size: 11px;
  }
}

.calendar .calendar__pagination__date .icon-arrow-left:hover:after,
.calendar .calendar__pagination__date .icon-arrow-right:hover:after {
  color: #182033;
}

.calendar__event__date {
  text-align: center;
  width: 46px;
  height: 46px;
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-color: #cc0a2f;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: normal;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 4px 0 0;
  text-transform: uppercase;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}

.inpage__calendar__event__date {
	text-align: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-color: #cc0a2f;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: normal;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px 0 0;
  text-transform: uppercase;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}

.inpage__calendar__event__date:hover {
  color: #ffffff;
  background-color: #182033;
}

@media (min-width: 700px) {
  .calendar__event__date {
    width: 65px;
    height: 65px;
    font-size: 14px;
  }
}

@media (min-width: 1025px) {
  .calendar__event__date {
    width: 73px;
    height: 74px;
    font-size: 16px;
    margin: 0;
  }
}

.calendar__event__date:hover {
  color: #ffffff;
  background-color: #182033;
}

.calendar__date {
  font-size: 17px;
  font-weight: 600;
}

@media (min-width: 700px) {
  .calendar__date {
    font-size: 24px;
  }
}

@media (min-width: 1025px) {
  .calendar__date {
    font-size: 27px;
  }
}

.calendar__event__time {
  margin: 0 0 6px;
}

@media (min-width: 700px) {
  .calendar__event__time {
    margin: 0 0 5px;
  }
}

@media (min-width: 1025px) {
  .calendar__event__time {
    margin: 0 0 3px;
  }
}

.calendar__event__text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 0 0 16px;
  font-size: 12px;
  line-height: 1.5;
}

@media (min-width: 700px) {
  .calendar__event__text {
    font-size: 13px;
    padding: 3px 0 0 32px;
  }
}

@media (min-width: 1025px) {
  .calendar__event__text {
    font-size: 16px;
    padding: 0 0 0 42px;
  }
}

.calendar__event__text h2 {
  margin: 0 0 9px;
  font: 20px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
}

@media (min-width: 700px) {
  .calendar__event__text h2 {
    font-size: 21px;
    margin: 0 0 12px;
  }
}

@media (min-width: 1025px) {
  .calendar__event__text h2 {
    font-size: 23px;
    margin: 0 0 12px;
  }
}

.calendar__event__text h2 a {
  color: #000000;
  font-weight: 500;
}

.calendar__event__text h2 a:hover {
  color: #cc0a2f;
}

.calendar__category-dates {
  display: none;
  background-color: #f2f2f2;
  padding: 11px 0 20px 21px;
}

@media (min-width: 1025px) {
  .calendar__category-dates {
    display: block !important;
    width: 190px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    padding: 7px 0 0;
    margin: 0;
    background: none;
  }
}

.calendar__category-dates h2 {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.3px;
  margin: 0 0 25px;
}

.calendar__event {
  padding: 27px 0 28px;
  border-bottom: 1px solid #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.inpage__calendar__event {
  padding: 20px 0 14px;
  border-bottom: 1px solid #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.inpage__calendar__viewall {
	text-align: right;
	padding: 10px;
}
.inpage__calendar__viewall a {
	font-size: 16px;
	text-decoration: none;		
	font-weight: bolder;
}

@media (min-width: 700px) {
  .calendar__event {
    padding: 29px 0 23px;
  }
}

@media (min-width: 1025px) {
  .calendar__event {
    padding: 40px 0 28px;
  }
}

.calendar__event:first-child {
  padding: 0 0 28px;
}

@media (min-width: 700px) {
  .calendar__event:first-child {
    padding: 0 0 23px;
  }
}

@media (min-width: 1025px) {
  .calendar__event:first-child {
    padding: 0 0 28px;
  }
}

.calendar__event:last-child {
  margin: 0;
}

.calendar .mini-cal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 1025px) {
  .calendar .mini-cal {
    display: block;
  }
}

.calendar .mini-cal__header {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0 17px;
}

@media (min-width: 1025px) {
  .calendar .mini-cal__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.calendar .mini-cal a {
  font-weight: normal;
}

.calendar .mini-cal .icon-arrow-left,
.calendar .mini-cal .icon-arrow-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.calendar .mini-cal__dates {
  font-size: 11px;
  line-height: 1.2;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.calendar .mini-cal__dates th {
  font-weight: normal;
  border-bottom: 1px solid #000000;
  padding: 0 0 12px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: inline-block;
  vertical-align: top;
}

.calendar .mini-cal__dates td {
  text-align: center;
  padding: 6px 0 5px;
  margin: 0 5px;
  display: inline-block;
  vertical-align: top;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 50%;
}

@media (min-width: 1025px) {
  .calendar .mini-cal__dates td {
    margin: 0 2px;
  }
}

.calendar .mini-cal__dates tr {
  margin: 0 0 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1025px) {
  .calendar .mini-cal__dates tr {
    margin: 0 0 11px;
  }
}

.calendar .mini-cal__dates a:hover {
  text-decoration: none;
}

.calendar .mini-cal__month {
  text-transform: uppercase;
  font: 700 15px/1.2 "Work Sans", Arial, Helvetica, sans-serif;
  letter-spacing: 1.25px;
  margin: 0 20px;
}

.calendar .mini-cal .events {
  background-color: #cc0a2f;
}

.calendar .mini-cal .events.current {
  background: #000000;
}

.calendar .mini-cal .events.current a {
  font-weight: 700;
}

.calendar .mini-cal .events a {
  color: #ffffff;
}

.calendar .icon-arrow-left,
.calendar .icon-arrow-right {
  position: relative;
}

.calendar .icon-arrow-left:hover,
.calendar .icon-arrow-right:hover {
  text-decoration: none;
}

.calendar .icon-arrow-left:after,
.calendar .icon-arrow-right:after {
  content: "\e90a";
  font-family: 'icomoon';
  font-size: 7px;
  line-height: 1;
  font-weight: normal;
  color: #cc0a2f;
  display: block;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.calendar .icon-arrow-left:before,
.calendar .icon-arrow-right:before {
  display: none;
}

.calendar .icon-arrow-left:after {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.calendar .control-wrap label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 18px;
  position: relative;
}

.calendar .control-wrap label input[type="checkbox"] {
  width: 21px;
  height: 21px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  border: 1px solid #000000;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}

.calendar .control-wrap label input[type="checkbox"]:checked {
  background-color: #000000;
}

.calendar .control-wrap label input[type="checkbox"]:checked + span:before {
  opacity: 1;
}

.calendar .control-wrap label:last-child {
  margin: 0;
}

.calendar .control-text {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 0 0 12px;
}

.calendar .control-text:before {
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
  content: '';
  opacity: 0;
  position: absolute;
  top: 7px;
  left: -27px;
  cursor: pointer;
  border: 1px solid #ffffff;
  border-width: 0 0 2px 2px;
  width: 8px;
  height: 3px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.calendar .category__drop fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.calendar .datepicker-holder {
  margin: 0 0 25px;
  width: 237px;
}

@media screen and (min-width: 700px) and (max-width: 1024px) {
  .calendar .datepicker-holder {
    margin-top: 12px;
  }
}

@media (min-width: 1025px) {
  .calendar .datepicker-holder {
    width: 189px;
    margin: 0 0 36px;
  }
}

.calendar .category-calendar {
  font-size: 15px;
}

/**
 * @file
 * Slick
 *
 * Slick carousel styles.
 */
.slick {
  position: relative;
}

.slick-slide {
  position: relative;
}

.slick-dots {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots button {
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  height: 40px;
  width: 40px;
  padding: 0;
}

.slick-dots button:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  height: 0.5rem;
  width: 0.5rem;
  background: #000000;
  border: 0;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  height: 40px;
  width: 40px;
  padding: 0;
  z-index: 5;
}

@media (min-width: 1025px) {
  .slick-arrow {
    -webkit-transition: color .3s, background-color .3s;
    -o-transition: color .3s, background-color .3s;
    transition: color .3s, background-color .3s;
  }
  .slick-arrow:hover {
    color: #cc0a2f;
  }
}

.slick-arrow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  height: 0.75rem;
  width: 0.75rem;
  background: #000000;
  border: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slick-arrow.slick-disabled:after {
  background: rgba(0, 0, 0, 0.5);
}

.slick-next {
  right: 0;
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
      transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.bounceIn {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
}

.animated.faster {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion: reduce), (print) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    -o-transition-duration: 1ms !important;
       transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

/*# sourceMappingURL=maps/main.css.map */

/* Components
   ========================================================================== */
/* For Ticket #258025 - START */
.meet-the-team-section {
    display: flex;
    justify-content: center;
    align-items: center;
	flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    overflow: hidden;
}

.meet-the-team-title {
    font-size: 52px;
	text-transform: uppercase;
    font-weight: 700;
	margin: 0,0,0,.01rem!important;
    text-align: center;
    width: 100%;
}


.team-member {
    background: none;
    border: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    width: 240px;
    height: 300px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
    transition: none;
    min-width: 0;
}

.team-headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.team-info {
    background-color: rgba(172, 26, 47, 0.9);
    color: white;
    padding: 0.5rem;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.team-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.team-title {
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 700px) {

    .meet-the-team-section {
        gap: 0.75rem;
        align-items: center;
    }
    .team-member {
        width: min(90vw, 180px);
        aspect-ratio: 1/1.2;
    }
}
/* For Ticket #258025 - END */
