/*!*******************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/sass/main.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************/
/************** LOAD FONTS ******************/
@font-face {
  font-family: "Montserrat-Black";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Montserrat-Black.woff2) format("woff2"), url(fonts/Montserrat-Black.woff) format("woff");
}
@font-face {
  font-family: "Montserrat-Bold";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Montserrat-Bold.woff2) format("woff2"), url(fonts/Montserrat-Bold.woff) format("woff");
}
@font-face {
  font-family: "Montserrat-ExtraBold";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Montserrat-ExtraBold.woff2) format("woff2"), url(fonts/Montserrat-ExtraBold.woff) format("woff");
}
@font-face {
  font-family: "Montserrat-Light";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Montserrat-Light.woff2) format("woff2"), url(fonts/Montserrat-Light.woff) format("woff");
}
@font-face {
  font-family: "Montserrat-Medium";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Montserrat-Medium.woff2) format("woff2"), url(fonts/Montserrat-Medium.woff) format("woff");
}
@font-face {
  font-family: "Montserrat-Regular";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Montserrat-Regular.woff2) format("woff2"), url(fonts/Montserrat-Regular.woff) format("woff");
}
@font-face {
  font-family: "NeutraText-Bold";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/NeutraText-Bold.woff2) format("woff2"), url(fonts/NeutraText-Bold.woff) format("woff");
}
@font-face {
  font-family: "NeutraText-Demi";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/NeutraText-Demi.woff2) format("woff2"), url(fonts/NeutraText-Demi.woff) format("woff");
}
@font-face {
  font-family: "NeutraText-Light";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/NeutraText-Light.woff2) format("woff2"), url(fonts/NeutraText-Light.woff) format("woff");
}
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration:1s;
  --animate-delay:1s;
  --animate-repeat:1;
}

.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
  background: #869791;
}

.saffireMobileSize .header {
  padding: 0;
  font: inherit;
  color: inherit;
}
.saffireMobileSize .headerInnerContent {
  height: auto;
}

.generalmessage {
  box-sizing: border-box;
  white-space: normal;
  padding: 0 10px;
}

.saffireMobileSize .generalmessage {
  padding: 0 10px;
}

.loginstatus {
  float: none;
}

#weatherBugWidget {
  position: static;
  display: flex;
  align-items: center;
}
#weatherBugWidget img {
  flex-shrink: 0;
  margin: 0 5px;
}
#weatherBugWidget #weatherBugText,
#weatherBugWidget #weatherBugDescription {
  display: none;
}
#weatherBugWidget.weatherBugSet #weatherBugDescription {
  display: inline;
  color: inherit;
}

.ticket {
  padding: 0;
  height: auto;
}

.saffireMobileSize a.ticket,
.saffireMobileSize a.ticket:hover {
  position: static;
  display: inline-block;
  overflow: visible;
  white-space: normal;
  border: none;
  border-radius: 0;
  padding: 0;
}

.emailSignup {
  box-sizing: border-box;
}
.emailSignup > div {
  float: none;
}
.emailSignup .emailInputField input {
  box-sizing: border-box;
  border: none;
  box-shadow: none;
}
.emailSignup .emailSubmitButton {
  box-sizing: border-box;
}

.header .emailSignup {
  position: relative;
  z-index: 1;
}

.saffireMobileSize .header .emailSignup {
  float: none;
  font-size: inherit;
}
.saffireMobileSize .header .emailSignup:hover {
  cursor: pointer;
}

body.modalBody .emailSignup .emailInputField input {
  border: 1px solid #000;
  padding: 2px 5px;
  margin: 5px 0;
}

.header .searchBox {
  position: relative;
  z-index: 1;
}

.searchBox:not(.clonedSearchBox) > div {
  float: none;
}
.searchBox:not(.clonedSearchBox) #searchBoxClicker {
  display: none;
}
.searchBox:not(.clonedSearchBox) .searchBoxInput input {
  box-sizing: border-box;
  border: none;
  box-shadow: none;
}
.searchBox:not(.clonedSearchBox) .searchSubmitButton {
  box-sizing: border-box;
}

.saffireMobileSize .header .searchBox:not(.clonedSearchBox) {
  float: none;
  font-size: inherit;
}
.saffireMobileSize .header .searchBox:not(.clonedSearchBox) #searchBoxClicker {
  display: block;
}
.saffireMobileSize .header .searchBox:not(.clonedSearchBox):hover {
  cursor: pointer;
}

.saffireMobileSize .searchBox.clonedSearchBox {
  background: #222;
}
.saffireMobileSize .searchBox.clonedSearchBox:before {
  display: none;
}
.saffireMobileSize .searchBox.clonedSearchBox .searchBoxInput input.inputFieldTextbox.textbox {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 0 !important;
  font-family: "open_sansregular", Verdana, Arial !important;
}
.saffireMobileSize .searchBox.clonedSearchBox .searchBoxSubmit {
  display: flex;
  align-items: center;
  justify-content: center;
}
.saffireMobileSize .searchBox.clonedSearchBox .searchBoxSubmit a {
  border-color: #ddd;
  border-radius: 0 !important;
}
.saffireMobileSize .searchBox.clonedSearchBox .searchBoxSubmit:before {
  position: static;
}

.viewcart > span {
  position: relative;
  display: inline-block;
}

.saffireMobileSize .viewcart {
  float: none;
  width: auto;
  height: auto;
  font-family: inherit !important;
  font-size: inherit;
}
.saffireMobileSize .viewcart:before {
  display: none;
}
.saffireMobileSize .viewcart:hover .cartMenu {
  display: none !important;
}
.saffireMobileSize .viewcart .cartMenuLink {
  box-sizing: border-box;
}

.cartMenuRemoveButton {
  text-decoration: none;
}

.saffireLargeSize .nav .groups .group {
  float: none;
}
.saffireLargeSize .nav .groups .group > a {
  box-sizing: border-box;
}
.saffireLargeSize .nav .items {
  float: none;
}
.saffireLargeSize .nav .items .item a {
  box-sizing: border-box;
}
.saffireLargeSize .nav .subitems {
  float: none;
}

.saffireMobileSize .nav {
  display: inline-flex;
  display: none !important;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  float: none;
  height: 50px;
  width: 50px;
  color: #333;
  font-size: inherit;
}
.saffireMobileSize .nav:before {
  position: static;
  line-height: 1;
}
.saffireMobileSize .nav .mobileNavLink {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.saffireMobileSize .nav .groups {
  display: none;
}

.standAloneDirections {
  color: inherit;
}

.loginstatus a,
.myAccountNavButton a {
  color: inherit;
}

.pressPageTabs .tab {
  font-size: 14px;
}

.left.pressDate {
  width: 120px;
}

/*************** MEMBERS SITE **********************/
.arrowdown {
  border-color: transparent transparent #000;
}

.arrowdown_on {
  border-color: transparent transparent #444;
}

.arrowup {
  border-color: #000 transparent transparent;
}

.arrowup_on {
  border-color: #444 transparent transparent;
}

#directoryFilterOptions > li:hover {
  background: #cbdfe2;
}

.directoryHeader {
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
}

.eventList-container .eventCol1 .filter-group {
  line-height: 1.2;
}

.tiny,
.note {
  font-size: 12px;
}

input.textbox,
textarea.multi,
select.dropdown {
  font-size: 14px;
}

#eventFilterList li,
#eventDateList li a {
  padding: 0.5em 0.5em;
}

.featureLineup-buynow .button {
  font-size: 12px;
}

.featureLineup-social div {
  display: inline-flex;
  align-items: center;
}
.featureLineup-social div a {
  width: 26px;
  height: 26px;
  font-size: 22px;
}

body {
  color: #323232;
  font: 15px/1.5 "Montserrat-Light";
}

b,
strong {
  font-family: "Montserrat-Bold";
}

h1,
h2,
h3,
h5,
h6 {
  font-family: "Montserrat-Black";
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 0.67em 0;
  text-transform: none;
}

h1, h2 {
  color: #007096;
}

h3, h5, h6 {
  color: #00a7ed;
}

h4 {
  color: #e46a53;
  font-family: "Montserrat-Bold";
  line-height: 1.2;
  margin: 0 0 0.67em 0;
}

h1 {
  font-size: 30px;
}
@media screen and (min-width: 375px) {
  h1 {
    font-size: calc(30px + 10 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 22px;
}
@media screen and (min-width: 375px) {
  h2 {
    font-size: calc(22px + 8 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 20px;
}
@media screen and (min-width: 375px) {
  h3 {
    font-size: calc(20px + 2 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 18px;
}
@media screen and (min-width: 375px) {
  h4 {
    font-size: calc(18px + 2 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 18px;
}
@media screen and (min-width: 375px) {
  h5 {
    font-size: calc(18px + 0 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 16px;
}
@media screen and (min-width: 375px) {
  h6 {
    font-size: calc(16px + 0 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  h6 {
    font-size: 16px;
  }
}

a {
  color: #007096;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

.header a,
.footer a {
  text-decoration: none;
}

input.textbox,
select.dropdown,
textarea.multi {
  color: #323232;
  font: 15px/1.5 "Montserrat-Light";
  padding: 2px 6px;
}

.fa {
  color: #323232;
}
.fa.fa-print {
  color: #fff;
}

.tiny, .note, .small {
  font-size: 11px;
}

.error {
  color: #d15c46;
}

.show-lightbox h2 {
  color: #fff;
}

.expandedViewEventNameDescription {
  font-size: 13px !important;
}

/***************** CONTAINERS **************************/
body {
  background: #fff no-repeat fixed;
  background-size: cover;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
}
.pageIsLoaded .wrapper {
  opacity: 1;
  transition: 0.3s;
}

body:not(.homepage) .content {
  box-sizing: border-box;
  position: relative;
  max-width: 1400px;
  margin: 275px auto 0;
  padding: 0 50px;
  background: #fff;
}

body:not(.homepage).saffireMobileSize .content {
  padding: 20px;
  margin-top: 80px;
}

body:not(.homepage).saffireMobileSize.generalMessageOn .content {
  margin-top: 120px;
}

body:not(.homepage).saffireLargeSize.generalMessageOn .content {
  margin-top: 315px;
}

.saffireLargeSize.homepage .content {
  margin: 0;
}

.saffireMobileSize.homepage .content {
  margin-top: 100px !important;
}

.saffireMobileSize.homepage.generalMessageOn .content {
  margin-top: 140px !important;
}

.saffireMobileSize.homepage .content,
.saffireLargeSize.homepage .content {
  position: relative;
  max-width: 100%;
  padding: 0;
  background: none;
}

.saffireMobileSize .afterContent {
  display: block !important;
}

.subContainer {
  background: #eee;
  color: #323232;
}

.dateDisplayBar,
.dateDisplay {
  background: #007096;
  color: #fff;
}
.dateDisplayBar a,
.dateDisplay a {
  color: #fff;
}

#google_translate_element { /* |%  Google translate position */
  top: 0;
  right: 100px;
  z-index: 99;
}
.saffireMobileSize #google_translate_element {
  margin: 20px 0 0;
}

.mapLegend {
  padding: 10px;
}

.orderhistory {
  background: #007096;
}

.orderhistory th {
  color: #fff;
  padding: 8px 3px;
}

.alternateRow {
  background: #eee;
}

.listingItem {
  background: #eee;
  border-bottom: 1px solid #d5d5d5;
}
.listingItem:hover {
  background: #f6f6f6;
}

.generalmessage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #007096;
  font-family: "Montserrat-Regular";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  transition: 0.3s;
}
.generalmessage a {
  color: inherit;
  text-decoration: underline;
}

.saffireMobileSize .generalmessage {
  height: 40px;
  font-size: 14px;
  line-height: 1.2;
  transition: 0.3s;
}
@media screen and (max-width: 500px) {
  .saffireMobileSize .generalmessage {
    font-size: 12px;
  }
}

.saffireWindowScrolled .generalmessage {
  height: 0;
  font-size: 0;
  transition: 0.3s;
}

.header, .saffireMobileSize .header {
  position: fixed;
  top: 0;
  z-index: 999999999999;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.saffireLargeSize.homepage .header {
  transition: 0.3s;
}
@media screen and (max-width: 1400px) {
  .saffireLargeSize.homepage .header {
    top: 0;
  }
}

.saffireLargeSize.homepage.saffireWindowScrolled .header {
  top: 0;
  transition: 0.3s;
}

.headerInnerContent {
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.header-top, .header-bottom {
  position: relative;
  display: flex;
  justify-content: center;
}
.header-top .inner-container, .header-bottom .inner-container {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  padding: 0 10px;
}
.saffireMobileSize .header-top .inner-container, .saffireMobileSize .header-bottom .inner-container {
  height: 50px !important;
  padding: 0;
}

.header-top {
  background: #b8e0dc;
}
.header-top .inner-container {
  height: 70px;
  transition: 0.3s;
}
.saffireWindowScrolled .header-top .inner-container {
  height: 65px;
  transition: 0.3s;
}
.saffireMobileSize .header-top .inner-container {
  justify-content: center;
}
.header-top .widget-wrapper {
  display: flex;
  align-items: center;
}

.header-bottom {
  background: #007096;
}
.header-bottom .inner-container {
  height: 205px;
  transition: 0.3s;
}
.saffireWindowScrolled .header-bottom .inner-container {
  height: 115px;
  transition: 0.3s;
}
@media screen and (max-width: 1400px) {
  .header-bottom .inner-container {
    height: 115px;
  }
}
.saffireMobileSize .header-bottom .inner-container {
  border-bottom: 1px solid #fff;
}

.header-logo {
  display: block;
  width: 475px;
  height: 150px;
  background: url(images/logo.png) center/contain no-repeat;
  transition: 0.3s;
}
.saffireWindowScrolled .header-logo {
  width: 254px;
  height: 80px;
  transition: 0.3s;
}
@media screen and (max-width: 1400px) {
  .header-logo {
    width: 285px;
    height: 90px;
  }
}
.saffireMobileSize .header-logo {
  position: relative;
  left: 5px;
  width: 138px !important;
  height: 44px !important;
}

.ticket {
  background: none;
  color: inherit;
}
.ticket:hover {
  background: none;
  color: inherit;
}

.saffireMobileSize a.ticket {
  background: none;
  color: inherit;
}
.saffireMobileSize a.ticket:hover {
  background: none;
  color: inherit;
}

.header .searchBox:not(.clonedSearchBox),
.saffireMobileSize .header .searchBox:not(.clonedSearchBox) {
  display: none;
}

.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  vertical-align: top;
}
.mobile-nav-toggle:before {
  content: "";
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
  background: url(images/hamburger.png) center/contain no-repeat;
}
.mobile-nav-toggle:hover {
  cursor: pointer;
}

.saffireLargeSize .mobile-nav-toggle {
  display: none;
}

.saffireLargeSize .nav {
  position: static;
  display: flex;
  align-items: center;
  height: 100%;
}
.saffireLargeSize .nav .groups {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
}
.saffireLargeSize .nav .groups .group {
  position: static;
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}
.saffireLargeSize .nav .groups .group:hover .items, .saffireLargeSize .nav .groups .group:focus-within .items {
  display: flex;
}
.saffireLargeSize .nav .groups .group:hover:before, .saffireLargeSize .nav .groups .group:focus-within:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 275px;
  top: 100%;
  background: rgba(1, 64, 99, 0.9);
}
.saffireLargeSize .nav .groups .group:after {
  content: "|";
  font: 20px/1 "NeutraText-Demi";
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .saffireLargeSize .nav .groups .group:after {
    font-size: 18px;
  }
}
.saffireLargeSize .nav .groups .group:last-of-type:after {
  display: none;
}
.saffireLargeSize .nav .groups .group > a {
  display: inline-block;
  padding: 0 10px;
  background: none;
  font-family: "NeutraText-Demi", Arial, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .saffireLargeSize .nav .groups .group > a {
    font-size: 16px;
  }
}
.saffireLargeSize .nav .groups .group > a:hover,
.saffireLargeSize .nav .groups .group > a:focus {
  color: #f1eb9c;
}
.saffireLargeSize .nav .items {
  box-sizing: border-box;
  display: none;
  justify-content: center;
  padding: 2em;
  width: 100%;
  top: 100%;
  left: 0;
  background: transparent;
}
.saffireLargeSize .nav .items .item {
  width: auto;
  min-width: 200px;
  margin: 0 50px;
}
.saffireLargeSize .nav .items .item a {
  padding: 5px 10px;
  color: #f1eb9c;
  font: 18px/1 "NeutraText-Demi";
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .saffireLargeSize .nav .items .item a {
    font-size: 16px;
  }
}
.saffireLargeSize .nav .items .item a:hover, .saffireLargeSize .nav .items .item a:focus {
  color: #f1eb9c;
}
.saffireLargeSize .nav .subitems {
  position: static !important;
  padding: 0;
  background: transparent;
}
.saffireLargeSize .nav .subitems .item {
  margin: 0 !important;
}
.saffireLargeSize .nav .subitems .item a {
  font: 16px/1 "NeutraText-Demi";
  color: #fff !important;
  text-transform: none;
}
@media screen and (max-width: 1200px) {
  .saffireLargeSize .nav .subitems .item a {
    font-size: 14px;
  }
}

/*********************** FOOTER **************************/
.footer { /* set the height of the footer */
  position: relative;
  height: auto;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #009cbc;
  font: 13px "Montserrat-Light";
  color: #fff;
  text-align: left;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .widget-wrapper {
  box-sizing: border-box;
  display: flex;
  max-width: 1200px;
  margin: 0 auto 45px;
}
.saffireMobileSize .footer .widget-wrapper {
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.footer-main {
  box-sizing: border-box;
  background: url(images/coral.png) #009cbc center top no-repeat;
  background-size: cover;
  width: 100%;
  padding: 270px 20px 35px;
}
.saffireMobileSize .footer-main {
  padding: 175px 20px 15px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.saffireMobileSize .footer-info {
  order: 1;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo {
  display: block;
  width: 271px;
  height: 86px;
  background: url(images/footer-logo.png) center/contain no-repeat;
  margin-bottom: 25px;
}

.address {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.saffireMobileSize .address {
  text-align: center;
}

ul.footerItems2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 930px;
  margin: 0 auto;
}
.saffireMobileSize ul.footerItems2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
}
ul.footerItems2 li:first-of-type span {
  margin-left: 4px;
}

.mobile-menu-container {
  background: url(images/mobile-menu-bg.jpg) center bottom;
  background-size: cover;
}
.mobile-menu-container .mobile-menu-header {
  background-color: #b8e0dc;
}
.mobile-menu-container .close-mobile-menu {
  width: 25px;
  height: 26px;
  background: url(images/menu-close.png) center/contain no-repeat;
}
.mobile-menu-container .close-mobile-menu:before, .mobile-menu-container .close-mobile-menu:after {
  display: none;
}
.mobile-menu-container .mobile-menu-subheader,
.mobile-menu-container .mobile-menu-subheader-btn {
  display: none;
}
.mobile-menu-container .mobile-menu-login-showlinks .mobile-menu-login .mobile-menu-subheader-btn,
.mobile-menu-container .mobile-menu-subheader-btn:active {
  background-color: #135c75;
}
.mobile-menu-container .mobile-menu-login-links a {
  font-family: "Montserrat-Light";
}
.mobile-menu-container .cart-counter {
  font-family: "Montserrat-Light";
}
.mobile-menu-container .search-container input[type=text] {
  font: 15px/1 "Montserrat-Light";
  -webkit-appearance: none;
  border-radius: 0px;
  height: 50px;
}
.mobile-menu-container .search-container .search-submit-btn i {
  color: #8c8c8c;
}
.mobile-menu-container .mobile-menu-ticket-btn {
  background-color: #007096;
  font-family: "Montserrat-Light";
  color: #000;
  border-color: #fff;
}
.mobile-menu-container .mobile-menu-footer-links a {
  font: 13px/1 "Montserrat-Light";
  color: #000;
}

#mobile-nav ul {
  background-color: #fff;
}
#mobile-nav li {
  margin: 0;
}
#mobile-nav li.m-group, #mobile-nav li.m-item, #mobile-nav li.m-subitem {
  border-bottom: 1px solid #fff;
}
#mobile-nav a {
  background-color: #007096;
  font: 15px/1 "Montserrat-Bold";
  color: #fff;
}
#mobile-nav a:hover {
  background-color: #1a7fa1;
}
#mobile-nav .has-subitems span {
  background-color: #1a7fa1;
  color: #fff;
}
#mobile-nav .has-subitems span:hover {
  background-color: #007096;
}

/************************* MODAL CONTENT ********************/
.ui-dialog {
  background: #fff;
  box-shadow: 0 0 10px -5px #444;
  max-width: 97% !important;
}

.modal {
  background: #fff;
  padding-top: 15px;
  border: 10px solid #fff;
}

.modalBody { /* |%  set modal background color if not white */
  background: #fff;
  padding: 14px;
}
.modalBody .showorksModalTitle { /* |%  set font-family */
  font-size: 32px;
  line-height: 36px;
}
.modalBody .showorksBreadcrumbs { /* |%  set font-family */
  font-size: 20px;
  color: #007096;
  line-height: 22px;
}
.modalBody .showorksTableGrid th { /* |%  set font-family */
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding-bottom: 7px;
  padding-top: 7px;
}
.modalBody .showorksTableGrid td {
  color: #323232;
}
.modalBody .showorksTableGrid tr.odd {
  background: #fff;
  color: black;
}
.modalBody .showorksTableGrid tr.even {
  background: #e6e6e6;
  color: black;
}

.modalPageBackground {
  background-color: black;
  opacity: 0.5;
}

.modalContent #google_translate_element {
  top: 1px;
  right: 0;
}
.modalContent h1 {
  font-size: 24px;
  line-height: 1.2em;
}

.modalClose {
  top: 1px;
  background: none;
}
.modalClose .modalCloseButton {
  min-width: 40px;
}
.modalClose .modalCloseButton img {
  display: none;
}
.modalClose .modalCloseButton:before {
  content: "X";
  font-family: sans-serif;
}

.modalClose > a.modalCloseButton {
  position: relative;
  top: -25px;
  margin-right: 10px;
}

.getUpdatesPageEmailModule .emailSignup.modalOnly {
  max-width: 280px;
  margin: 0 auto;
}
.getUpdatesPageEmailModule .emailSignup.modalOnly .inputFieldTextbox {
  box-sizing: border-box;
  border-radius: 0 !important;
  border: 1px solid #333;
  padding: 5px 10px;
  color: #bbb;
}
.getUpdatesPageEmailModule .emailSignup.modalOnly .emailSubmitButton {
  border-radius: 0 !important;
}
.getUpdatesPageEmailModule .emailSignup.modalOnly .button {
  box-sizing: border-box;
}

.saffireMobileSize.modalBody a[onclick*="Unsubscribe.ascx"] {
  margin-top: -25px;
}

#dynamicModal {
  min-height: 210px !important;
}
.saffireMobileSize #dynamicModal {
  min-height: 240px !important;
}

/************* BUTTON STYLES *********************/
.button {
  padding: 7px 31px;
  font-size: 16px;
}

.button,
.buttonSmall {
  box-sizing: border-box;
  line-height: 1.75em;
  text-transform: uppercase;
  border-radius: 30px 0 30px 0;
  text-decoration: none;
  font-weight: normal !important;
  font-family: "Montserrat-Black";
  color: #fff !important;
  background: #e46a53;
  transition: 0.3s;
}

a.buttonSmall.button,
.buttonSmall {
  padding: 3px 16px;
  font-size: 10px;
  border-radius: 20px 0 20px 0;
}

.button:hover,
.buttonSmall:hover {
  background: #d15c46;
  transition: 0.3s;
}

a.updateButton.buttonSmall,
a.removeButton.buttonSmall,
a.cartMenuRemoveButton.button.buttonSmall {
  font-size: 10px;
}

.searchMapButton {
  font-size: 15px;
  padding: 1px 25px;
  border-radius: 20px 0 20px 0 !important;
}

.cartMenu .cartMenuCheckoutButton {
  margin-right: 10px;
}

.featureLineup-more,
.featureLineup-headline {
  display: none;
}

.button.widget-button {
  font-size: 19px;
  padding: 7px 26px;
}
.saffireMobileSize .button.widget-button {
  font-size: 14px;
  padding: 5px 17px;
  border-radius: 20px 0 20px 0;
}

.countdownButton {
  border-radius: 0;
  background: transparent;
  color: #e46a53 !important;
  font-family: "Montserrat-Bold";
  padding: 0;
  filter: none;
  opacity: 1 !important;
}
.countdownButton:hover {
  background: transparent;
  color: #e46a53 !important;
}

#cardWidget {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 9px solid #0383c5;
}
@media screen and (max-width: 900px) {
  #cardWidget {
    padding: 3px 0;
    border-bottom: none;
  }
}
#cardWidget .card-widget-item {
  position: relative;
  box-sizing: border-box;
  flex: 1 1 33%;
  display: flex;
  width: auto;
  height: 332px;
  text-decoration: none;
  overflow: hidden;
}
.saffireMobileSize #cardWidget .card-widget-item {
  height: 226px;
}
@media screen and (max-width: 900px) {
  #cardWidget .card-widget-item {
    flex: 1 1 100%;
    margin: 3px 6px;
  }
}
#cardWidget .card-widget-item:hover .image-container {
  filter: blur(5px);
  transform: scale(1.2);
}
#cardWidget .image-container {
  box-sizing: border-box;
  position: static;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  filter: none;
  transform: none;
}
#cardWidget .card-content {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 30px 50px;
}
@media screen and (max-width: 1400px) {
  #cardWidget .card-content {
    padding: 20px 30px;
  }
}
#cardWidget .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 44px/1 "NeutraText-Demi";
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 1400px) {
  #cardWidget .card-widget-title {
    font-size: 30px;
  }
}
#cardWidget .card-widget-description,
#cardWidget .buttonwrap {
  display: none;
}

#circularWidget {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 650px) {
  #circularWidget {
    padding: 0 15px;
  }
}
#circularWidget .card-widget-item {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 1265px;
}
@media screen and (max-width: 1600px) {
  #circularWidget .card-widget-item {
    width: 1100px;
  }
}
@media screen and (max-width: 1325px) {
  #circularWidget .card-widget-item {
    width: 900px;
  }
}
@media screen and (max-width: 1150px) {
  #circularWidget .card-widget-item {
    width: 750px;
  }
}
@media screen and (max-width: 800px) {
  #circularWidget .card-widget-item {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 650px) {
  #circularWidget .card-widget-item {
    width: 100%;
  }
}
#circularWidget .card-widget-item:nth-child(1), #circularWidget .card-widget-item:nth-child(2) {
  margin-bottom: 125px;
}
@media screen and (max-width: 1000px) {
  #circularWidget .card-widget-item:nth-child(1), #circularWidget .card-widget-item:nth-child(2) {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 800px) {
  #circularWidget .card-widget-item:nth-child(1), #circularWidget .card-widget-item:nth-child(2) {
    margin-bottom: 225px;
  }
}
#circularWidget .card-widget-item:nth-child(1), #circularWidget .card-widget-item:nth-child(3) {
  justify-content: flex-end;
}
#circularWidget .card-widget-item:nth-child(1) .image-container, #circularWidget .card-widget-item:nth-child(3) .image-container {
  left: 0;
}
#circularWidget .card-widget-item:nth-child(1) .card-content, #circularWidget .card-widget-item:nth-child(3) .card-content {
  align-items: flex-end;
  border-radius: 0 0 100px 0;
}
#circularWidget .card-widget-item:nth-child(1) .card-content {
  background: #b8e0dc;
}
#circularWidget .card-widget-item:nth-child(2) .card-content {
  order: 1;
  background: #92d5db;
  border-radius: 100px 0 0 0;
}
@media screen and (max-width: 800px) {
  #circularWidget .card-widget-item:nth-child(2) .card-content {
    border-radius: 0 0 100px 0;
  }
}
#circularWidget .card-widget-item:nth-child(2) .image-container {
  order: 2;
  right: 0;
}
@media screen and (max-width: 800px) {
  #circularWidget .card-widget-item:nth-child(2) .image-container {
    order: 1;
  }
}
#circularWidget .card-widget-item:nth-child(3) .card-content {
  background: #009cbc;
}
#circularWidget .card-widget-item:hover .card-content {
  background: #007096;
  transition: 0.3s;
}
#circularWidget .card-widget-item:hover .card-widget-title, #circularWidget .card-widget-item:hover .card-widget-description {
  color: #fff;
  transition: 0.3s;
}
#circularWidget .image-container {
  box-sizing: border-box;
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 565px;
  height: 565px;
  border-radius: 50%;
}
@media screen and (max-width: 1600px) {
  #circularWidget .image-container {
    width: 450px;
    height: 450px;
  }
}
@media screen and (max-width: 1325px) {
  #circularWidget .image-container {
    width: 325px;
    height: 325px;
  }
}
@media screen and (max-width: 800px) {
  #circularWidget .image-container {
    top: -205px;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    width: 265px;
    height: 265px;
  }
}
#circularWidget .card-content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 1050px;
  height: 420px;
  padding: 0 90px;
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}
@media screen and (max-width: 1600px) {
  #circularWidget .card-content {
    width: 800px;
    height: 320px;
    padding: 0 60px;
  }
}
@media screen and (max-width: 1325px) {
  #circularWidget .card-content {
    width: 700px;
    height: 280px;
  }
}
@media screen and (max-width: 1150px) {
  #circularWidget .card-content {
    width: 600px;
    height: 240px;
  }
}
@media screen and (max-width: 800px) {
  #circularWidget .card-content {
    justify-content: flex-end;
    align-items: center !important;
    height: 235px;
    padding: 0 50px 15px;
  }
}
@media screen and (max-width: 650px) {
  #circularWidget .card-content {
    width: 100%;
    height: auto;
    padding: 75px 20px 15px;
  }
}
#circularWidget .card-widget-title {
  position: static;
  display: block;
  font: 53px/1 "NeutraText-Bold";
  color: #000;
  text-transform: uppercase;
  transition: 0.3s;
}
@media screen and (max-width: 1600px) {
  #circularWidget .card-widget-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1325px) {
  #circularWidget .card-widget-title {
    font-size: 30px;
  }
}
#circularWidget .card-widget-description {
  font: 24px/1.5 "Montserrat-Light";
  color: #000;
  padding: 15px 0;
  transition: 0.3s;
}
@media screen and (max-width: 1600px) {
  #circularWidget .card-widget-description {
    font-size: 20px;
  }
}
@media screen and (max-width: 1325px) {
  #circularWidget .card-widget-description {
    font-size: 17px;
  }
}
@media screen and (max-width: 1150px) {
  #circularWidget .card-widget-description {
    font-size: 15px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 650px) {
  #circularWidget .card-widget-description {
    font-size: 13px;
  }
}
#circularWidget .card-widget-title,
#circularWidget .card-widget-description,
#circularWidget .buttonwrap {
  width: 575px;
}
@media screen and (max-width: 1325px) {
  #circularWidget .card-widget-title,
#circularWidget .card-widget-description,
#circularWidget .buttonwrap {
    width: 500px;
  }
}
@media screen and (max-width: 1150px) {
  #circularWidget .card-widget-title,
#circularWidget .card-widget-description,
#circularWidget .buttonwrap {
    width: 365px;
  }
}
@media screen and (max-width: 800px) {
  #circularWidget .card-widget-title,
#circularWidget .card-widget-description,
#circularWidget .buttonwrap {
    width: 100%;
  }
}

#dailySchedule {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 25px 0 15px;
  padding: 0;
}
#dailySchedule::-webkit-scrollbar {
  width: 5px;
}
#dailySchedule::-webkit-scrollbar-track {
  background: #eee;
}
#dailySchedule::-webkit-scrollbar-thumb {
  background: #e46a53;
}
@media screen and (max-width: 850px) {
  #dailySchedule {
    max-width: 500px;
  }
}
@media screen and (max-width: 550px) {
  #dailySchedule {
    margin: 15px 0;
    max-width: 400px;
  }
}
@media screen and (max-width: 417px) {
  #dailySchedule {
    justify-content: center;
  }
}
@media screen and (max-width: 400px) {
  #dailySchedule {
    max-width: 300px;
  }
}
#dailySchedule .card-widget-item {
  box-sizing: border-box;
  display: flex;
  text-decoration: none;
  margin: 0 0 5px;
  padding-right: 20px;
  padding-top: 10px;
}
#dailySchedule .card-widget-item:first-of-type .card-content {
  background: url(images/turtle-calendar.png) center/contain no-repeat;
  border-radius: 0;
}
#dailySchedule .card-widget-item:first-of-type .card-content:hover {
  background: url(images/turtle-calendar.png) center/contain no-repeat;
}
#dailySchedule .card-widget-item:first-of-type .card-content:hover::before {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  content: "VIEW FULL SCHEDULE";
  background-color: #b8e0dc;
  font-family: "Montserrat-ExtraBold";
  color: #014063;
  font-size: 0.5rem;
  height: 25px;
  width: 100%;
}
#dailySchedule .card-widget-item:first-of-type .card-widget-title {
  display: none;
}
#dailySchedule .card-widget-item:last-of-type {
  margin: 0;
}
#dailySchedule .card-widget-item:hover .card-widget-description {
  background: #007096;
  color: #fff;
  transition: 0.3s;
}
#dailySchedule .card-content {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  max-width: 100%;
  background: #b8e0dc;
  height: 113px;
  width: 113px;
  border-radius: 50%;
}
#dailySchedule .card-content:hover {
  background: #8dcdc7;
}
#dailySchedule .card-widget-title {
  font: 14px/1 "Montserrat-ExtraBold";
  color: #014063;
  text-transform: uppercase;
}
@media screen and (max-width: 550px) {
  #dailySchedule .card-widget-title {
    font-size: 13px;
  }
}
#dailySchedule .card-widget-description {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font: 17px/1 "Montserrat-Light";
  color: #014063;
  background: #b8e0dc;
  width: 375px;
  height: 47px;
  padding: 0 20px;
  transition: 0.3s;
}
@media screen and (max-width: 550px) {
  #dailySchedule .card-widget-description {
    font-size: 13px;
    width: 270px;
    padding: 0 10px;
  }
}
#dailySchedule .buttonwrap {
  display: none;
}

.footer .emailSignup {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer .emailSignup:before {
  content: "STAY CONNECTED";
  font: 53px/1 "NeutraText-Bold";
  color: #2c81a2;
}
.saffireMobileSize .footer .emailSignup:before {
  font-size: 30px;
}
.footer .emailSignup .emailSignupText {
  font-size: 24px;
  color: #000;
}
@media screen and (max-width: 1200px) {
  .footer .emailSignup .emailSignupText {
    font-size: 20px;
  }
}
.saffireMobileSize .footer .emailSignup .emailSignupText {
  font-size: 15px;
}
.footer .emailSignup .emailInputField {
  display: flex;
  margin: 30px 0;
  border: 1px solid #000;
}
.saffireMobileSize .footer .emailSignup .emailInputField {
  margin: 20px 0;
}
@media screen and (max-width: 600px) {
  .footer .emailSignup .emailInputField {
    flex-direction: column;
    align-items: center;
    border: none;
  }
}
.footer .emailSignup .emailInputField input {
  height: 75px;
  width: 825px;
  padding: 0 20px;
  color: #bbb;
  font: 24px/1 "Montserrat-Light";
  border-radius: 0 !important;
  background-image: none;
}
@media screen and (max-width: 1200px) {
  .footer .emailSignup .emailInputField input {
    width: 600px;
  }
}
.saffireMobileSize .footer .emailSignup .emailInputField input {
  width: 330px;
  height: 45px;
  font-size: 20px;
}
@media screen and (max-width: 600px) {
  .footer .emailSignup .emailInputField input {
    border: 1px solid #000;
  }
}
.footer .emailSignup .emailSubmitButton {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  width: 245px;
  background: #007096;
  border-radius: 0 !important;
  font: 22px/1 "Montserrat-Black";
  color: #fff;
  text-decoration: none;
  trannsition: 0.3s;
}
.saffireMobileSize .footer .emailSignup .emailSubmitButton {
  height: 45px;
  width: 150px;
  font-size: 13px;
}
@media screen and (max-width: 600px) {
  .footer .emailSignup .emailSubmitButton {
    border: 1px solid #000;
    margin-top: 15px;
  }
}
.footer .emailSignup .emailSubmitButton:hover {
  background: #014063;
  transition: 0.3s;
}

.getUpdatesPageEmailModule .emailSignup.modalOnly {
  width: 100%;
  max-width: 100%;
  margin: 0 !important;
}
.getUpdatesPageEmailModule .emailSignup.modalOnly .emailInputField input {
  background-image: none !important;
  width: 300px;
  height: 42px;
}
.getUpdatesPageEmailModule .emailSignup.modalOnly .emailSubmitButton:last-of-type {
  display: none;
}

#featuredEvent {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 150px 0 0;
  padding: 0 0 45px;
}
@media screen and (max-width: 1450px) {
  #featuredEvent {
    margin: 0 auto 25px;
    padding: 0;
  }
}
#featuredEvent .card-widget-item {
  box-sizing: border-box;
  display: flex;
}
#featuredEvent .image-container {
  box-sizing: border-box;
  position: static;
  display: inline-block;
}
#featuredEvent .image-container img {
  max-width: 450px;
  max-height: 515px;
}
.saffireMobileSize #featuredEvent .image-container img {
  max-width: 225px;
  max-height: 265px;
}
#featuredEvent .card-content {
  display: none;
}

.footerColumn {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.footerColumn .card-widget-item {
  box-sizing: border-box;
  display: flex;
  text-decoration: none;
}
.footerColumn .card-widget-item:first-of-type {
  padding-bottom: 10px;
}
.footerColumn .card-widget-item:first-of-type:hover {
  text-decoration: none;
}
.footerColumn .card-widget-item:first-of-type .card-widget-title {
  font: 26px/1 "NeutraText-Bold";
  text-transform: uppercase;
  color: #f1eb9c;
}
.saffireMobileSize .footerColumn .card-widget-item:first-of-type {
  font-size: 24px;
}
.saffireMobileSize .footerColumn .card-widget-item:nth-child(n+2) {
  display: none;
}
.footerColumn .card-content {
  display: flex;
}
.footerColumn .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 13px/2 "Montserrat-Light";
}
.footerColumn .card-widget-description,
.footerColumn .buttonwrap {
  display: none;
}

.saffireMobileSize #footerColumn1 {
  order: 2;
}
.saffireMobileSize #footerColumn2 {
  order: 3;
}
.saffireMobileSize #footerColumn3 {
  order: 4;
}

#headerButtons {
  box-sizing: border-box;
  position: relative;
  display: flex;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
#headerButtons .card-widget-item {
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
#headerButtons .card-widget-item:first-of-type {
  margin-right: 15px;
}
#headerButtons .card-content {
  display: flex;
}
#headerButtons .card-widget-title {
  position: static;
  display: flex;
  font: 19px/1 "Montserrat-Black";
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  background: #e46a53;
  border-radius: 25px 0 25px 0;
  padding: 15px 35px;
  transition: 0.3s;
}
@media screen and (max-width: 1325px) {
  #headerButtons .card-widget-title {
    font-size: 13px;
    padding: 10px 15px;
    border-radius: 20px 0 20px 0;
  }
}
#headerButtons .card-widget-title:hover {
  background: #d15c46;
  transition: 0.3s;
}
#headerButtons .buttonwrap {
  display: none;
}

#headerLinks {
  box-sizing: border-box;
  position: relative;
  display: flex;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.saffireMobileSize #headerLinks {
  display: none;
}
#headerLinks .card-widget-item {
  box-sizing: border-box;
  display: flex;
}
#headerLinks .card-widget-item:after {
  content: "|";
  font: 16px/1 "Montserrat-Light";
  margin: 0 10px;
}
#headerLinks .card-widget-item:last-of-type:after {
  display: none;
}
#headerLinks .card-content {
  display: flex;
}
#headerLinks .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 16px/1 "Montserrat-Light";
  color: #007096;
  text-transform: uppercase;
}
@media screen and (max-width: 1325px) {
  #headerLinks .card-widget-title {
    font-size: 14px;
  }
}
#headerLinks .card-widget-title:hover {
  text-decoration: underline;
}
#headerLinks .buttonwrap {
  display: none;
}

#headerWidget {
  box-sizing: border-box;
  position: relative;
  display: flex;
  max-width: 100%;
  margin: 0 50px 0 0;
  padding: 0;
}
.saffireMobileSize #headerWidget {
  margin: 0;
}
#headerWidget .card-widget-item {
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
#headerWidget .card-widget-item:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(images/clock.png) center/contain no-repeat;
  margin-right: 20px;
}
.saffireMobileSize #headerWidget .card-widget-item:before {
  width: 20px;
  height: 20px;
  background-image: url(images/clock-mobile.png);
  margin-right: 10px;
}
#headerWidget .card-content {
  display: flex;
}
#headerWidget .card-widget-title {
  position: static;
  display: flex;
  align-items: center;
  width: 100%;
  font: 16px/1 "Montserrat-Light";
  color: #007096;
}
@media screen and (max-width: 1325px) {
  #headerWidget .card-widget-title {
    font-size: 14px;
  }
}
.saffireMobileSize #headerWidget .card-widget-title {
  font-size: 11px;
  color: #b8e0dc;
  max-width: 85px;
}
#headerWidget .buttonwrap {
  display: none;
}

#hoursLocation {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 350px;
  margin: 0;
  padding: 0 10px;
}
@media screen and (max-width: 550px) {
  #hoursLocation {
    width: 350px;
    max-width: 100%;
  }
}
#hoursLocation .card-widget-item {
  box-sizing: border-box;
  display: flex;
  width: 100%;
}
#hoursLocation .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
#hoursLocation .card-widget-title {
  font: 30px/1 "Montserrat-Black";
  text-transform: uppercase;
  color: #007096;
}
.saffireMobileSize #hoursLocation .card-widget-title {
  font-size: 24px;
}
#hoursLocation .card-widget-description {
  font: 17px/1.75 "Montserrat-Light";
  color: #014063;
  padding: 15px 60px 35px 0;
}
@media screen and (max-width: 550px) {
  #hoursLocation .card-widget-description {
    font-size: 13px;
    padding: 5px 0 15px;
  }
}

#infoCard {
  box-sizing: border-box;
  position: relative;
  display: flex;
  margin: 0;
  padding: 0;
}
#infoCard .card-widget-item {
  box-sizing: border-box;
  display: flex;
}
#infoCard .card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 750px;
  padding: 50px 50px 0;
}
@media screen and (max-width: 1325px) {
  #infoCard .card-content {
    padding: 30px 30px 0;
  }
}
.saffireMobileSize #infoCard .card-content {
  padding: 0 20px;
}
#infoCard .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 66px/1 "NeutraText-Bold";
  color: #f1eb9c;
  text-transform: uppercase;
}
@media screen and (max-width: 1450px) {
  #infoCard .card-widget-title {
    font-size: 52px;
  }
}
@media screen and (max-width: 1225px) {
  #infoCard .card-widget-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1095px) {
  #infoCard .card-widget-title {
    font-size: 28px;
  }
}
#infoCard .card-widget-description {
  font: 26px/1.5 "Montserrat-Light";
  color: #fff;
  padding: 0 0 20px;
}
@media screen and (max-width: 1650px) {
  #infoCard .card-widget-description {
    font-size: 22px;
  }
}
@media screen and (max-width: 1400px) {
  #infoCard .card-widget-description {
    font-size: 20px;
  }
}
@media screen and (max-width: 1225px) {
  #infoCard .card-widget-description {
    font-size: 17px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 500px) {
  #infoCard .card-widget-description {
    font-size: 13px;
  }
}

#mainFeature {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 0;
}
#mainFeature .card-widget-item {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
#mainFeature .image-container {
  box-sizing: border-box;
  position: static;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 55.75vw;
}
#mainFeature .card-content {
  position: absolute;
  bottom: 0;
  right: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 0 6.25% 5%;
}
@media screen and (max-width: 1600px) {
  #mainFeature .card-content {
    padding: 0 3% 4%;
  }
}
.saffireMobileSize #mainFeature .card-content {
  position: static;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  color: #007096;
  max-height: 150px;
  padding: 10px;
}
#mainFeature .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  max-width: 670px;
  font: 123px/0.85 "NeutraText-Bold";
  text-transform: uppercase;
}
@media screen and (max-width: 1600px) {
  #mainFeature .card-widget-title {
    font-size: 70px;
    max-width: 415px;
  }
}
.saffireMobileSize #mainFeature .card-widget-title {
  font-size: 26px;
  max-width: 100%;
}
#mainFeature .card-widget-description {
  font: 47px/1 "NeutraText-Demi";
  text-transform: uppercase;
  padding: 10px 0 15px;
  max-width: 65%;
}
@media screen and (max-width: 1600px) {
  #mainFeature .card-widget-description {
    font-size: 40px;
  }
}
.saffireMobileSize #mainFeature .card-widget-description {
  font-size: 20px;
  max-width: 100%;
}

#membership {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0;
  padding: 80px 0 0 100px;
}
@media screen and (max-width: 1450px) {
  #membership {
    padding: 50px 0 0 50px;
  }
}
@media screen and (max-width: 700px) {
  #membership {
    height: 375px;
    padding: 0;
  }
}
#membership .card-widget-item {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#membership .image-container {
  order: 2;
  box-sizing: border-box;
  position: static;
  display: flex;
}
#membership .image-container img {
  width: auto;
  height: auto;
  opacity: 0;
}
@media screen and (max-width: 1450px) {
  #membership .image-container img {
    max-width: 450px;
  }
}
.saffireMobileSize #membership .image-container img {
  max-width: 250px;
}
@media screen and (max-width: 700px) {
  #membership .image-container {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
  }
  #membership .image-container img {
    max-width: 185px !important;
    max-height: 185px;
  }
}
#membership .card-content {
  box-sizing: border-box;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  opacity: 0;
}
@media screen and (max-width: 1450px) {
  #membership .card-content {
    justify-content: flex-start;
  }
}
.saffireMobileSize #membership .card-content {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  #membership .card-content {
    padding: 40px 20px 0;
  }
}
#membership .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 44px/1 "Montserrat-Black";
  color: #007096;
  text-transform: uppercase;
}
.saffireMobileSize #membership .card-widget-title {
  font-size: 24px;
}
#membership .card-widget-description {
  box-sizing: border-box;
  font: 26px/1.25 "Montserrat-Light";
  color: #000;
  max-width: 785px;
  padding: 25px 0 35px;
}
.saffireMobileSize #membership .card-widget-description {
  font-size: 17px;
}
@media screen and (max-width: 700px) {
  #membership .card-widget-description {
    font-size: 13px !important;
    padding: 15px 0 50px;
  }
}

#multiScheduleFeature {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  min-height: 475px;
  padding-left: 75px;
}
.saffireMobileSize #multiScheduleFeature {
  padding: 0;
}
#multiScheduleFeature:before {
  position: absolute;
  top: 161px;
  left: -170px;
  content: "EVENT SCHEDULE";
  display: block;
  font: 48px/1 "NeutraText-Bold";
  color: #fff;
  padding-bottom: 30px;
  transform: rotate(-90deg);
}
.saffireMobileSize #multiScheduleFeature:before {
  position: static;
  transform: none;
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (max-width: 700px) {
  #multiScheduleFeature:before {
    font-size: 30px;
  }
}
#multiScheduleFeature .featureItem {
  box-sizing: border-box;
  display: flex;
  color: #007096;
  text-decoration: none;
  margin-bottom: 9px;
}
@media screen and (max-width: 700px) {
  #multiScheduleFeature .featureItem {
    margin-bottom: 5px;
  }
}
#multiScheduleFeature .featureItem:hover .featureItemTitle {
  background: #007096;
  color: #fff;
  transition: 0.3s;
}
#multiScheduleFeature .featureItemTitle,
#multiScheduleFeature .featureItemDate,
#multiScheduleFeature .button-container {
  box-sizing: border-box;
  display: flex;
  line-height: 1;
}
#multiScheduleFeature .featureItemTitle {
  align-items: center;
  background: #fff;
  font-family: "Montserrat-Light";
  font-weight: 400;
  font-size: 24px;
  color: #014063;
  height: 94px;
  width: 545px;
  padding: 0 20px;
  transition: 0.3s;
}
@media screen and (max-width: 700px) {
  #multiScheduleFeature .featureItemTitle {
    font-size: 13px;
    width: 300px;
    height: 52px;
    padding: 0 10px;
  }
}
#multiScheduleFeature .featureItemDate {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #014063;
  font-family: "Montserrat-Black";
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  width: 94px;
  height: 94px;
}
@media screen and (max-width: 700px) {
  #multiScheduleFeature .featureItemDate {
    font-size: 11px;
    width: 52px;
    height: 52px;
  }
}
#multiScheduleFeature .featureItemDate span {
  font-size: 30px;
}
.saffireMobileSize #multiScheduleFeature .featureItemDate span {
  font-size: 16px;
}
#multiScheduleFeature .all-events-btn {
  position: relative;
  margin-top: 10px;
  font-size: 20px;
}
@media screen and (max-width: 700px) {
  #multiScheduleFeature .all-events-btn {
    font-size: 14px;
  }
}
#multiScheduleFeature .featureItemDescription {
  display: none;
}

#seoWidget {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 765px;
  margin: 0;
  padding: 0;
}
.saffireMobileSize #seoWidget {
  padding: 0 30px;
}
#seoWidget .card-widget-item {
  box-sizing: border-box;
  display: flex;
}
#seoWidget .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#seoWidget .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 44px/1 "Montserrat-Black";
  color: #007096;
  text-transform: uppercase;
}
@media screen and (max-width: 850px) {
  #seoWidget .card-widget-title {
    font-size: 24px;
  }
}
#seoWidget .card-widget-description {
  font: 24px/1.5 "Montserrat-Light";
  color: #2c81a2;
  padding: 20px 0;
}
.saffireMobileSize #seoWidget .card-widget-description {
  padding: 20px 0 0;
}
@media screen and (max-width: 850px) {
  #seoWidget .card-widget-description {
    font-size: 17px;
  }
}
@media screen and (max-width: 550px) {
  #seoWidget .card-widget-description {
    font-size: 13px;
  }
}
.saffireMobileSize #seoWidget .buttonwrap {
  display: none;
}

.socialNetworks {
  display: flex;
  z-index: 80000000;
  position: static;
  transition: 0.6s ease;
  background: transparent;
  border-radius: 50px;
  padding: 5px 3px;
}
.socialNetworks img {
  display: block;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
}
.socialNetworks > span, .socialNetworks > a {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  left: 0;
  border: 3px solid transparent;
  margin: 0 12px;
  transition: 0.2s;
  border-radius: 50%;
  border: none;
  padding: 3px;
  background-color: transparent;
}
.socialNetworks > a:hover {
  left: -6px;
  z-index: 2;
  transition: 0.2s;
  left: 0;
}

/* Set the container ID*/
/* Size the container*/
/* Size the images*/
/* Format titles*/
/* Format arrows*/
#sponsorWidgetContainer {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}
#sponsorWidgetContainer .sponsorWidgetContainer .sponsor-controls-container:focus-within {
  bottom: 3px;
  opacity: 1;
  transition: 0.2s;
  pointer-events: auto;
}
#sponsorWidgetContainer .sponsorWidgetContainer.sponsors-paused .sponsorCarouselImageContainer {
  animation-play-state: paused;
}
#sponsorWidgetContainer .sponsorWidgetContainer.sponsors-paused .sponsor-playpause-btn:before {
  content: "Resume";
}
#sponsorWidgetContainer .sponsorWidgetContainer.sponsors-paused .sponsor-playpause-btn:after {
  content: "\f04b";
  padding-left: 2px;
}
#sponsorWidgetContainer .sponsorWidgetContainer:hover .sponsor-controls-container {
  bottom: 3px;
  opacity: 1;
  transition: 0.2s;
  pointer-events: auto;
}
#sponsorWidgetContainer .sponsorCarouselImageContainer a {
  margin: 0 40px;
}
.saffireMobileSize #sponsorWidgetContainer .sponsorCarouselImageContainer a {
  margin: 0 25px;
}
#sponsorWidgetContainer .sponsorCarouselImage img {
  max-height: 130px;
}
.saffireMobileSize #sponsorWidgetContainer .sponsorCarouselImage img {
  max-height: 65px;
}
#sponsorWidgetContainer #sponsorsTitleContainer {
  width: 100%;
  text-align: center;
  top: 0;
}
#sponsorWidgetContainer #sponsorsTitleContainer .homepageh1 {
  display: none;
}
#sponsorWidgetContainer #sponsorArrowRight,
#sponsorWidgetContainer #sponsorArrowLeft {
  display: none;
}
#sponsorWidgetContainer .sponsor-controls-container {
  box-sizing: border-box;
  position: absolute;
  bottom: -33px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 30px;
  background: #fff;
  box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: 0.2s;
  opacity: 0;
  pointer-events: none;
}
#sponsorWidgetContainer .sponsor-controls-container .sponsor-playpause-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 0 0 10px;
  border: none;
  background: #fff;
  color: #323232;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}
#sponsorWidgetContainer .sponsor-controls-container .sponsor-playpause-btn:before {
  content: "Pause";
  display: inline-block;
  width: 50px;
  font-size: 14px;
  line-height: 1;
  color: #323232;
  text-align: center;
}
#sponsorWidgetContainer .sponsor-controls-container .sponsor-playpause-btn:after {
  content: "\f04c";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  padding-left: 1px;
  width: 30px;
  height: 100%;
  font-family: "FontAwesome";
  font-size: 15px;
  color: #323232;
}

#sponsorWidgetContainer .sponsorWidgetContainer:not(.animate) .sponsor-controls-container,
.majorSponsor, #majorSponsorTitleContainer {
  display: none;
}

#support {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 50px auto;
  padding: 0;
}
@media screen and (max-width: 1025px) {
  #support {
    flex-direction: column;
    align-items: center;
    margin: 25px auto;
  }
}
#support .card-widget-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 40px;
}
@media screen and (max-width: 1025px) {
  #support .card-widget-item {
    margin: 0 auto 20px;
  }
  #support .card-widget-item:last-of-type {
    margin-bottom: 0;
  }
}
#support .image-container {
  box-sizing: border-box;
  position: static;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 250px;
  height: 250px;
}
@media screen and (max-width: 1400px) {
  #support .image-container {
    width: 200px;
    height: 200px;
  }
}
#support .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 375px;
  padding-top: 50px;
}
@media screen and (max-width: 1400px) {
  #support .card-content {
    width: 250px;
    padding-top: 15px;
  }
}
#support .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 40px/1 "Montserrat-Black";
  color: #007096;
  text-transform: uppercase;
}
@media screen and (max-width: 1400px) {
  #support .card-widget-title {
    font-size: 30px;
  }
}
#support .card-widget-description {
  font: 24px/1.5 "Montserrat-Light";
  color: #323232;
  padding: 20px 0;
}
@media screen and (max-width: 1400px) {
  #support .card-widget-description {
    font-size: 17px;
    padding: 10px 0;
  }
}

#ticketsReservations {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 450px;
  margin: 0 45px;
  padding: 0 10px;
}
@media screen and (max-width: 1450px) {
  #ticketsReservations {
    margin: 0 45px 0 0;
    max-width: 445px;
  }
}
@media screen and (max-width: 850px) {
  #ticketsReservations {
    margin: 30px auto;
    max-width: 515px;
  }
}
@media screen and (max-width: 550px) {
  #ticketsReservations {
    max-width: 350px;
  }
}
#ticketsReservations .card-widget-item {
  box-sizing: border-box;
  display: flex;
  width: 100%;
}
#ticketsReservations .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
#ticketsReservations .card-widget-title {
  font: 30px/1 "Montserrat-Black";
  text-transform: uppercase;
  color: #007096;
}
.saffireMobileSize #ticketsReservations .card-widget-title {
  font-size: 24px;
}
#ticketsReservations .card-widget-description {
  font: 17px/1.75 "Montserrat-Light";
  color: #014063;
  padding: 15px 60px 35px 0;
}
@media screen and (max-width: 550px) {
  #ticketsReservations .card-widget-description {
    font-size: 13px;
    padding: 5px 0 15px;
  }
}

#ticketWidget {
  box-sizing: border-box;
  position: absolute;
  bottom: -42px;
  left: 6.25%;
  display: flex;
  max-width: 100%;
  margin: 0;
  padding: 0 0;
  z-index: 99;
}
@media screen and (max-width: 1555px) {
  #ticketWidget {
    left: 20%;
  }
}
@media screen and (max-width: 1075px) {
  #ticketWidget {
    left: 17%;
  }
}
@media screen and (max-width: 850px) {
  #ticketWidget {
    padding: 0 10px;
  }
}
.saffireMobileSize #ticketWidget {
  position: static;
  justify-content: center;
  margin: 20px auto;
}
#ticketWidget .card-widget-item {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 780px;
  height: 85px;
  text-decoration: none;
  color: #014063;
  background: #b8e0dc;
  border-radius: 40px 0 40px 0;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  #ticketWidget .card-widget-item {
    width: 700px;
  }
}
#ticketWidget .card-widget-item:hover {
  background: #007096;
  color: #fff;
  transition: 0.3s;
}
#ticketWidget .card-widget-item:hover .card-widget-title:before {
  background-image: url(images/tickets-hover.png);
  transition: 0.3s;
}
@media screen and (max-width: 850px) {
  #ticketWidget .card-widget-item {
    max-width: 490px;
    height: 95px;
  }
}
@media screen and (max-width: 400px) {
  #ticketWidget .card-widget-item {
    max-width: 350px;
    height: 95px;
  }
}
#ticketWidget .card-content {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 35px;
}
@media screen and (max-width: 850px) {
  #ticketWidget .card-content {
    flex-direction: column;
    justify-content: center;
  }
}
#ticketWidget .card-widget-title {
  order: 2;
  position: static;
  display: flex;
  align-items: center;
  font: 26px/1 "Montserrat-Black";
  text-transform: uppercase;
}
@media screen and (max-width: 850px) {
  #ticketWidget .card-widget-title {
    font-size: 26px;
  }
}
#ticketWidget .card-widget-title:before {
  content: "";
  display: block;
  width: 49px;
  height: 51px;
  background: url(images/tickets.png) center/contain no-repeat;
  margin-right: 15px;
  transition: 0.3s;
}
@media screen and (max-width: 850px) {
  #ticketWidget .card-widget-title:before {
    width: 36px;
    height: 37px;
    margin-right: 10px;
  }
}
#ticketWidget .card-widget-description {
  order: 1;
  font: 20px/1 "Montserrat-Bold";
}
@media screen and (max-width: 850px) {
  #ticketWidget .card-widget-description {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
#ticketWidget .buttonwrap {
  display: none;
}

#videoSection {
  position: relative;
  display: inline-block;
  width: 950px;
  max-width: 100%;
  vertical-align: top;
  float: none;
  overflow: hidden;
}
@media screen and (max-width: 1650px) {
  #videoSection {
    width: 850px;
  }
}
@media screen and (max-width: 1400px) {
  #videoSection {
    width: 700px;
  }
}
@media screen and (max-width: 1225px) {
  #videoSection {
    width: 600px;
  }
}
.saffireMobileSize #videoSection {
  width: 100%;
}
#videoSection.single-video #arrow-container {
  display: none;
}

#videoWidget {
  box-sizing: border-box;
  position: relative;
  height: 0;
  width: 100%;
  max-width: 950px;
  padding-bottom: 57%;
  text-align: center;
}
@media screen and (max-width: 1650px) {
  #videoWidget {
    max-width: 850px;
  }
}
@media screen and (max-width: 1400px) {
  #videoWidget {
    max-width: 700px;
  }
}
@media screen and (max-width: 1225px) {
  #videoWidget {
    max-width: 600px;
  }
}
.saffireMobileSize #videoWidget {
  max-width: 100%;
}
#videoWidget iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100% !important;
  height: 100%;
  border: none !important;
  z-index: 1;
}
#videoWidget .video-loading {
  box-sizing: border-box;
  position: relative;
  top: calc(50% - 40px);
  left: 0;
  right: 0;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border: 10px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 100%;
  z-index: 0;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.home-pu {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  height: 100vh;
  background: rgba(0, 112, 150, 0.9);
  transition: 0.2s;
  z-index: 99999999;
}
.saffireMobileSize .home-pu {
  padding: 18px 0;
}
.home-pu.showing {
  display: flex;
}
.home-pu .home-pu__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: 756px;
  max-width: 100%;
  background: #b8e0dc;
  max-height: 95vh;
  overflow-y: auto;
  padding: 103px 34px 51px;
  border-radius: 40px 0 40px 0;
}
@media screen and (max-width: 910px) {
  .home-pu .home-pu__inner {
    padding: 20px;
    width: 90%;
  }
}
@media screen and (max-width: 750px) {
  .home-pu .home-pu__inner {
    display: block;
    padding: 20px 0;
    max-width: 88%;
  }
}
@media screen and (max-width: 750px) {
  .home-pu .home-pu__inner {
    display: block;
  }
}
.home-pu .home-pu__image {
  width: auto;
  height: auto;
  max-width: 219px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .home-pu .home-pu__image {
    padding: 31px 0 0;
    display: block;
    margin: auto;
    max-height: 30vh;
  }
}
.home-pu .home-pu__content {
  box-sizing: border-box;
  padding: 0;
}
.saffireMobileSize .home-pu .home-pu__content {
  padding: 20px 20px 0;
}
@media screen and (max-width: 750px) {
  .saffireMobileSize .home-pu .home-pu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 650px) {
  .saffireMobileSize .home-pu .home-pu__content {
    padding: 15px;
  }
}
.home-pu .home-pu__close {
  position: absolute;
  top: 0px;
  right: 0px;
  display: block;
  padding: 8px 14px;
  color: #007096;
  font-size: 17px;
  cursor: pointer;
  font-family: "Montserrat-Bold";
  font-size: 11px;
  text-transform: uppercase;
}
.home-pu .home-pu__close:hover, .home-pu .home-pu__close:focus {
  background: #eee;
}
.home-pu .home-pu__title {
  line-height: 1;
  margin-bottom: 3px;
}
.saffireMobileSize .home-pu .home-pu__title {
  font-size: 20px;
}
.home-pu .home-pu__desc {
  margin-top: 0.5em;
}
.saffireMobileSize .home-pu .home-pu__desc {
  font-size: 13px;
  line-height: 18px;
}
.home-pu .home-pu__button {
  margin-top: 1em;
  transition: 0.2s;
  padding: 10px 40px;
  font-weight: lighter !important;
  font-size: 18px;
}
.home-pu .home-pu__button:hover {
  transition: 0.2s;
}
.home-pu .home-pu__button:hover:after {
  border-left-color: #fff !important;
}

.tier-one {
  position: relative;
  width: 100%;
}

.tier-two {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1600px;
  margin: 90px auto 30px;
}
@media screen and (max-width: 1555px) {
  .tier-two {
    flex-direction: column;
    align-items: center;
  }
}
.saffireMobileSize .tier-two {
  margin-top: 35px;
}
.tier-two .widget-wrapper {
  display: flex;
}
@media screen and (max-width: 1450px) {
  .tier-two .widget-wrapper {
    margin: 30px auto;
  }
}
@media screen and (max-width: 850px) {
  .tier-two .widget-wrapper {
    flex-direction: column;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1450px) {
  .schedule-wrapper {
    box-sizing: border-box;
    max-width: 100%;
    padding: 0 10px;
  }
}

.widget-title {
  font: 30px/1 "Montserrat-Black";
  text-transform: uppercase;
  color: #007096;
}
@media screen and (max-width: 1024px) {
  .widget-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 550px) {
  .widget-title {
    padding-left: 14%;
  }
}
@media screen and (max-width: 400px) {
  .widget-title {
    padding-left: 3%;
  }
}

.tier-three {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 40px;
}
@media screen and (max-width: 1450px) {
  .tier-three {
    flex-direction: column;
  }
}

.stingray-1 {
  display: block;
  width: 576px;
  height: 455px;
  background: url(images/stingray-1.png) center/contain no-repeat;
  margin-right: 55px;
  opacity: 0;
}
@media screen and (max-width: 1450px) {
  .stingray-1 {
    margin: 0 auto 25px;
  }
}
.saffireMobileSize .stingray-1 {
  width: 185px;
  height: 146px;
}

.tier-four {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 660px;
  background: url(images/middle-bg.png) center top no-repeat;
  background-size: cover;
  padding-bottom: 20px;
}
@media screen and (max-width: 1450px) {
  .tier-four {
    height: auto;
    padding: 30px 10px;
  }
}
.saffireMobileSize .tier-four {
  padding-bottom: 15px;
}
.tier-four .widget-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 1400px;
}
@media screen and (max-width: 1450px) {
  .tier-four .widget-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.tier-seven {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-height: 605px;
}
.saffireMobileSize .tier-seven {
  flex-direction: column;
  padding: 10px;
  max-height: none;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .tier-seven {
    padding-bottom: 60px !important;
  }
}
.tier-seven .left-container {
  width: auto;
  max-width: 950px;
}
@media screen and (max-width: 1650px) {
  .tier-seven .left-container {
    max-width: 850px;
  }
}
@media screen and (max-width: 1400px) {
  .tier-seven .left-container {
    max-width: 750px;
  }
}
@media screen and (max-width: 1225px) {
  .tier-seven .left-container {
    max-width: 600px;
  }
}
.saffireMobileSize .tier-seven .left-container {
  max-width: 100%;
}
.tier-seven .right-container {
  width: 100%;
  background: url(images/info-card-bg.png) center/cover;
}
.saffireMobileSize .tier-seven .right-container {
  display: flex;
  align-items: center;
  height: 325px;
}

.tier-eight {
  box-sizing: border-box;
  position: relative;
  background: url(images/bottom-bg.jpg) center/cover;
  width: 100%;
  padding: 150px 0 250px;
}
@media screen and (max-width: 1325px) {
  .tier-eight {
    padding: 100px 0 250px;
  }
}
@media screen and (max-width: 1000px) {
  .tier-eight {
    padding: 235px 0 250px;
  }
}

.dolphin, .stingray-2 {
  position: absolute;
  z-index: 99;
  display: block;
  background: center/contain no-repeat;
  opacity: 0;
}

.dolphin {
  top: 500px;
  left: 0;
  width: 305px;
  height: 562px;
  background-image: url(images/dolphin.png);
}
@media screen and (max-width: 1600px) {
  .dolphin {
    top: 400px;
    width: 200px;
    height: 368px;
  }
}
@media screen and (max-width: 1000px) {
  .dolphin {
    top: -45px;
    z-index: initial;
  }
}
@media screen and (max-width: 650px) {
  .dolphin {
    width: 165px;
    height: 303px;
  }
}

.stingray-2 {
  bottom: 70px;
  right: 0;
  width: 292px;
  height: 382px;
  background-image: url(images/stingray-2.png);
}
@media screen and (max-width: 1600px) {
  .stingray-2 {
    width: 200px;
    height: 261px;
  }
}
@media screen and (max-width: 1000px) {
  .stingray-2 {
    bottom: 50px;
    z-index: initial;
  }
}
@media screen and (max-width: 650px) {
  .stingray-2 {
    bottom: 100px;
    width: 150px;
    height: 195px;
  }
}

.tier-nine {
  position: relative;
  top: -160px;
  width: 100%;
  background: url(images/minty-bg.png) center top;
  background-size: cover;
  padding: 95px 0 60px;
}
.saffireMobileSize .tier-nine {
  padding: 65px 0 55px;
}

.section-title {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.saffireMobileSize .section-title {
  padding: 0 50px;
}
.section-title span {
  letter-spacing: 10px;
}
@media screen and (max-width: 1200px) {
  .section-title span {
    letter-spacing: 7px;
  }
}
.section-title span:first-of-type {
  font: 56px/1 "NeutraText-Demi";
  color: #2c81a2;
  padding-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .section-title span:first-of-type {
    font-size: 30px;
  }
}
.section-title span:last-of-type {
  font: 70px/1 "NeutraText-Bold";
  color: #000;
}
@media screen and (max-width: 1200px) {
  .section-title span:last-of-type {
    font-size: 40px;
  }
}

.stay-connected {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.homepage .stay-connected {
  margin-top: -215px;
  background: url(images/white-curve.png) #b8e0dc center top;
  background-size: cover;
  width: 100%;
  padding: 130px 45px 30px;
}
@media screen and (max-width: 1200px) {
  .homepage .stay-connected {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1041px) {
  .homepage .stay-connected {
    margin-top: -185px;
    padding-top: 65px;
  }
}
body:not(.homepage) .stay-connected {
  background: #fff;
  padding: 50px 45px;
}

.partners {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 50px 0;
}
.saffireMobileSize .partners {
  padding: 35px 0 0;
}

.partners-title {
  font: 35px/1 "NeutraText-Demi";
  padding-bottom: 50px;
}
.saffireMobileSize .partners-title {
  font-size: 20px;
  padding-bottom: 35px;
}

.hero-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  background: center no-repeat fixed;
  background-size: cover;
}
.lightbox-showing .hero-wrapper {
  display: none;
}
.hero-wrapper:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 95px;
  background: url(images/content-topper.png) center/cover;
  z-index: 99;
}
.saffireMobileSize .hero-wrapper:after {
  display: none;
}
.hero-wrapper h1 {
  box-sizing: border-box;
  position: relative;
  top: 400px;
  color: #fff;
  font: 74px/1 "Montserrat-Regular";
  text-transform: uppercase;
  width: 100%;
  max-width: 1400px;
  padding: 0 50px;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-wrapper h1.event-title {
  font-size: 50px;
}
.event-id-0 .hero-wrapper h1 {
  font-size: 74px;
}
.event-id-0 .hero-wrapper h1:nth-child(n+2) {
  display: none;
}
.saffireMobileSize .hero-wrapper h1 {
  position: absolute;
  top: auto;
  bottom: 35px;
  font-size: 30px;
  padding: 0 20px;
  z-index: 99;
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
}

.saffireLargeSize .hero-wrapper {
  height: 650px;
}

.saffireMobileSize .hero-wrapper {
  position: relative;
  top: 100px;
  height: 50vw;
  background-size: contain;
  background-position: center top 100px;
}

.saffireMobileSize.generalMessageOn .hero-wrapper {
  top: 140px;
}

body:not(.homepage).saffireLargeSize .content {
  margin: 650px auto 100px !important;
}

.entityContainer .entityContainerRow.rowIndex-1 {
  display: none;
}

.faqQuestion {
  box-sizing: border-box;
  width: 100%;
  max-width: 100% !important;
  background: #b8e0dc;
  padding: 17px 20px 17px 0;
  color: #014063;
}
@media screen and (max-width: 700px) {
  .faqQuestion {
    padding-left: 20px;
  }
}
.faqQuestion:before {
  content: "\f067" !important;
  font-size: 15px;
  color: #fff;
  background: #007096;
  padding: 20px 24px;
}
@media screen and (max-width: 700px) {
  .faqQuestion:before {
    color: #007096;
    background: transparent;
    padding: 0 20px 0 0;
  }
}

.faqAnswer {
  background: #dbefed;
  padding: 20px;
  margin-left: 60px;
  color: #014063;
}

.faqSection {
  width: 100%;
  max-width: 1100px;
}
.faqSection .bold {
  font-weight: normal;
}

.FAQModule hr {
  display: none;
}

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

.printEvent {
  display: flex !important;
  align-items: center;
}
.printEvent .print {
  order: 2;
}
.printEvent .fa-print {
  order: 1;
}

*:focus {
  outline: none;
}

.expandedViewEventNameDescription {
  padding: 0 175px 50px 0 !important;
}
.saffireMobileSize .expandedViewEventNameDescription {
  padding: 0 0 50px 0 !important;
}

.calloutArrow, .calloutArrowGallery {
  display: none !important;
}

.itemImageContainer {
  display: none;
}

.featureLineup-buttons.subContainer {
  box-shadow: none !important;
}

.featureLineup-buynow {
  margin-left: 0;
}

.featureLineupContainer .featureLineup-buttons.subContainer {
  justify-content: center;
}

.custom .NavigationModule {
  position: relative;
  padding: 10px 0;
  background: #b8e0dc;
  width: 287px;
  margin: 0;
}
.custom .NavigationModule:before {
  box-sizing: border-box;
  position: absolute;
  top: -52px;
  content: "MENU";
  display: flex;
  align-items: center;
  width: 287px;
  height: 52px;
  padding: 5px 0 0 20px;
  font: 14px/1 "Montserrat-Black";
  color: #fff;
  background: url(images/menu-topper.png) center/contain no-repeat;
  z-index: 99;
}
.custom .NavigationModule .starlist {
  background: #b8e0dc;
  padding: 0;
  margin: 0;
}
.custom .NavigationModule .starlist li {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}
.custom .NavigationModule .starlist li li {
  padding: 0 20px;
}
.custom .NavigationModule .starlist a {
  text-decoration: none;
  background: transparent;
  padding: 5px 10px;
  transition: 0.3s;
}
.custom .NavigationModule .starlist a:hover {
  background: #dbefed;
  transition: 0.3s;
}

.saffireMobileSize.custom .NavigationModule {
  display: none;
}

.custom .entityContainerRow.columnCount-2:not(.rowIndex-2) {
  display: flex;
  flex-wrap: wrap;
}

.custom .entityContainer.twoColumn .entityContainerRow.columnCount-2.rowIndex-2 .column-4,
.custom .entityContainer.threeColumn .entityContainerRow.columnCount-2.rowIndex-2 .column-4 {
  display: flex;
  flex-direction: column !important;
  float: none;
  width: auto;
}

.custom .entityContainer.twoColumn .entityContainerRow.columnCount-2 .column-8,
.custom .entityContainer.threeColumn .entityContainerRow.columnCount-2 .column-8 {
  width: 75%;
}

.custom .sectionHeading {
  flex: 1 1 100%;
}

.custom .entityContainer.twoColumn .entityContainerRow.columnCount-2 .column-4,
.custom .entityContainer.threeColumn .entityContainerRow.columnCount-2 .column-4 {
  width: 25%;
}

.round {
  position: relative;
  overflow: hidden;
  width: 330px;
  height: 330px;
  border-radius: 50%;
}
.round:hover:before {
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
}
.round:hover img {
  transform: scale(1.15);
  transition: 0.6s;
}
.round:hover .media-text-Container h2 {
  display: none;
}
.round:hover .textMediaPhotoCaption {
  display: flex;
  opacity: 1;
  transition: 0.3s;
}
.round img {
  border-radius: 50%;
  width: 330px;
  height: 330px;
  transform: none;
  transition: 0.6s;
}
.round:before {
  position: absolute;
  bottom: -200px;
  right: -200px;
  z-index: 99;
  content: "";
  display: block;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: transparent;
  transition: 0.3s;
}
.round .media-text-Container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 330px;
  height: 330px;
  z-index: 99;
}
.round .media-text-Container h2 {
  font-size: 19px;
  color: #fff;
  max-width: 250px;
  height: 70px;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
}
.round .textMediaPhotoCaption {
  box-sizing: border-box;
  display: none;
  align-items: center;
  width: 100%;
  height: 100%;
  font: 15px/1.5 "Montserrat-Bold";
  color: #007096;
  padding: 20px;
  opacity: 0;
  transition: 0.3s;
}

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