@charset "UTF-8";
/******************************************************************

Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file.

******************************************************************/
@font-face {
  font-family: 'Poppins';
  src: url(../../../../../../../../../themes/DailyPress/assets/fonts/Poppins-Bold.ttf);
  font-weight: 700; }

@font-face {
  font-family: 'Poppins';
  src: url(../../../../../../../../../themes/DailyPress/assets/fonts/Poppins-Medium.ttf);
  font-weight: 500; }

@font-face {
  font-family: 'Poppins';
  src: url(../../../../../../../../../themes/DailyPress/assets/fonts/Poppins-Medium.ttf);
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: 'Poppins';
  src: url(../../../../../../../../../themes/DailyPress/assets/fonts/Poppins-Regular.ttf);
  font-weight: 400; }

@font-face {
  font-family: 'Poppins';
  src: url(../../../../../../../../../themes/DailyPress/assets/fonts/Poppins-Italic.ttf);
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-family: 'WildSpirit';
  src: url(../../../../../../../../../themes/DailyPress/assets/fonts/WildSpirit.otf);
  font-weight: 400; }

@font-face {
  font-family: 'AmalfiCoast';
  src: url(../../../../../../../../../themes/DailyPress/assets/fonts/AmalfiCoast.ttf);
  font-weight: 400; }

@keyframes MoveUpDown {
  0%, 100% {
    top: 0; }
  50% {
    top: 5px; } }

body#tinymce.wp-editor {
  font-family: "Poppins", sans-serif !important; }

.mceContentBody.wp-editor {
  background-color: #b0b0b0; }

/* TinyMCE Custom Classes */
span.__underline_arrow_btn a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-right: 17px; }
  span.__underline_arrow_btn a:hover:before {
    right: 0; }
  span.__underline_arrow_btn a:hover:after {
    width: 100%;
    background-color: #be1e2d; }
  span.__underline_arrow_btn a:before {
    right: 2px;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s; }
  span.__underline_arrow_btn a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    height: 1px;
    width: calc(100% - 2px);
    background-color: transparent;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s; }

.button,
.__btn a {
  background-color: #be1e2d;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 15px;
  border: 0;
  cursor: pointer; }
  .button:hover,
  .__btn a:hover {
    background-color: #cf2132;
    color: #ffffff;
    text-decoration: none; }

/**
 * Foundation for Sites by ZURB
 * Version 6.5.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal, .reveal.tiny, .reveal.small, .reveal.large {
    right: auto;
    left: auto;
    margin: 0 auto; } }

.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0); }

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0); }

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0); }

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0); }

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%); }

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%); }

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%); }

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%); }

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity; }

.fade-in.mui-enter.mui-enter-active {
  opacity: 1; }

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity; }

.fade-out.mui-leave.mui-leave-active {
  opacity: 0; }

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0; }

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0; }

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0; }

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0; }

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0; }

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0; }

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0; }

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1; }

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0; }

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1; }

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1; }

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0; }

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1; }

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0; }

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0; }

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1; }

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1; }

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0; }

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0; }

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1; }

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1; }

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0; }

.slow {
  transition-duration: 750ms !important; }

.fast {
  transition-duration: 250ms !important; }

.linear {
  transition-timing-function: linear !important; }

.ease {
  transition-timing-function: ease !important; }

.ease-in {
  transition-timing-function: ease-in !important; }

.ease-out {
  transition-timing-function: ease-out !important; }

.ease-in-out {
  transition-timing-function: ease-in-out !important; }

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }

.short-delay {
  transition-delay: 300ms !important; }

.long-delay {
  transition-delay: 700ms !important; }

.shake {
  animation-name: shake-7; }

@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%); }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%); } }

.spin-cw {
  animation-name: spin-cw-1turn; }

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn); }
  100% {
    transform: rotate(0); } }

.spin-ccw {
  animation-name: spin-cw-1turn; }

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(1turn); } }

.wiggle {
  animation-name: wiggle-7deg; }

@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg); }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg); }
  0%, 30%, 70%, 100% {
    transform: rotate(0); } }

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms; }

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

.slow {
  animation-duration: 750ms !important; }

.fast {
  animation-duration: 250ms !important; }

.linear {
  animation-timing-function: linear !important; }

.ease {
  animation-timing-function: ease !important; }

.ease-in {
  animation-timing-function: ease-in !important; }

.ease-out {
  animation-timing-function: ease-out !important; }

.ease-in-out {
  animation-timing-function: ease-in-out !important; }

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }

.short-delay {
  animation-delay: 300ms !important; }

.long-delay {
  animation-delay: 700ms !important; }

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

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

pre {
  font-family: monospace, monospace;
  font-size: 1em; }

a {
  background-color: transparent; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

b,
strong {
  font-weight: bolder; }

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

img {
  border-style: none; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  padding: 0.35em 0.75em 0.625em; }

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

progress {
  vertical-align: baseline; }

textarea {
  overflow: auto; }

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

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

details {
  display: block; }

summary {
  display: list-item; }

template {
  display: none; }

[hidden] {
  display: none; }

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; }

html {
  box-sizing: border-box;
  font-size: 100%; }

*,
*::before,
*::after {
  box-sizing: inherit; }

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic; }

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0; }

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0; }

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important; }

button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto; }
  [data-whatinput='mouse'] button {
    outline: 0; }

pre {
  overflow: auto; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; }

.is-visible {
  display: block !important; }

.is-hidden {
  display: none !important; }

.row {
  max-width: 78.125rem;
  margin-right: auto;
  margin-left: auto; }
  .row::before, .row::after {
    display: table;
    content: ' ';
    flex-basis: 0;
    order: 1; }
  .row::after {
    clear: both; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .row .row {
    margin-right: -0.625rem;
    margin-left: -0.625rem; }
    @media print, screen and (min-width: 40em) {
      .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem; } }
    @media print, screen and (min-width: 64em) {
      .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem; } }
    .row .row.collapse {
      margin-right: 0;
      margin-left: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-right: auto;
      margin-left: auto; }
  .row:not(.expanded) .row {
    max-width: none; }
  .row.gutter-small > .column, .row.gutter-small > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
  .row.gutter-medium > .column, .row.gutter-medium > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }

.column, .columns {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .column, .columns {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .column, .columns, .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
    clear: none; }
  .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: right; }
  .column.end:last-child:last-child, .end.columns:last-child:last-child {
    float: left; }

.column.row.row, .row.row.columns {
  float: none; }

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0; }

.small-1 {
  width: 8.33333%; }

.small-push-1 {
  position: relative;
  left: 8.33333%; }

.small-pull-1 {
  position: relative;
  left: -8.33333%; }

.small-offset-0 {
  margin-left: 0%; }

.small-2 {
  width: 16.66667%; }

.small-push-2 {
  position: relative;
  left: 16.66667%; }

.small-pull-2 {
  position: relative;
  left: -16.66667%; }

.small-offset-1 {
  margin-left: 8.33333%; }

.small-3 {
  width: 25%; }

.small-push-3 {
  position: relative;
  left: 25%; }

.small-pull-3 {
  position: relative;
  left: -25%; }

.small-offset-2 {
  margin-left: 16.66667%; }

.small-4 {
  width: 33.33333%; }

.small-push-4 {
  position: relative;
  left: 33.33333%; }

.small-pull-4 {
  position: relative;
  left: -33.33333%; }

.small-offset-3 {
  margin-left: 25%; }

.small-5 {
  width: 41.66667%; }

.small-push-5 {
  position: relative;
  left: 41.66667%; }

.small-pull-5 {
  position: relative;
  left: -41.66667%; }

.small-offset-4 {
  margin-left: 33.33333%; }

.small-6 {
  width: 50%; }

.small-push-6 {
  position: relative;
  left: 50%; }

.small-pull-6 {
  position: relative;
  left: -50%; }

.small-offset-5 {
  margin-left: 41.66667%; }

.small-7 {
  width: 58.33333%; }

.small-push-7 {
  position: relative;
  left: 58.33333%; }

.small-pull-7 {
  position: relative;
  left: -58.33333%; }

.small-offset-6 {
  margin-left: 50%; }

.small-8 {
  width: 66.66667%; }

.small-push-8 {
  position: relative;
  left: 66.66667%; }

.small-pull-8 {
  position: relative;
  left: -66.66667%; }

.small-offset-7 {
  margin-left: 58.33333%; }

.small-9 {
  width: 75%; }

.small-push-9 {
  position: relative;
  left: 75%; }

.small-pull-9 {
  position: relative;
  left: -75%; }

.small-offset-8 {
  margin-left: 66.66667%; }

.small-10 {
  width: 83.33333%; }

.small-push-10 {
  position: relative;
  left: 83.33333%; }

.small-pull-10 {
  position: relative;
  left: -83.33333%; }

.small-offset-9 {
  margin-left: 75%; }

.small-11 {
  width: 91.66667%; }

.small-push-11 {
  position: relative;
  left: 91.66667%; }

.small-pull-11 {
  position: relative;
  left: -91.66667%; }

.small-offset-10 {
  margin-left: 83.33333%; }

.small-12 {
  width: 100%; }

.small-offset-11 {
  margin-left: 91.66667%; }

.small-up-1 > .column, .small-up-1 > .columns {
  float: left;
  width: 100%; }
  .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
    clear: both; }
  .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
    float: left; }

.small-up-2 > .column, .small-up-2 > .columns {
  float: left;
  width: 50%; }
  .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
    clear: both; }
  .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
    float: left; }

.small-up-3 > .column, .small-up-3 > .columns {
  float: left;
  width: 33.33333%; }
  .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
    clear: both; }
  .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
    float: left; }

.small-up-4 > .column, .small-up-4 > .columns {
  float: left;
  width: 25%; }
  .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
    clear: both; }
  .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
    float: left; }

.small-up-5 > .column, .small-up-5 > .columns {
  float: left;
  width: 20%; }
  .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
    clear: both; }
  .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
    float: left; }

.small-up-6 > .column, .small-up-6 > .columns {
  float: left;
  width: 16.66667%; }
  .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
    clear: both; }
  .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
    float: left; }

.small-up-7 > .column, .small-up-7 > .columns {
  float: left;
  width: 14.28571%; }
  .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
    clear: both; }
  .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
    float: left; }

.small-up-8 > .column, .small-up-8 > .columns {
  float: left;
  width: 12.5%; }
  .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
    clear: both; }
  .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
    float: left; }

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0; }

.small-collapse .row {
  margin-right: 0;
  margin-left: 0; }

.expanded.row .small-collapse.row {
  margin-right: 0;
  margin-left: 0; }

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem; }

.small-centered {
  margin-right: auto;
  margin-left: auto; }
  .small-centered, .small-centered:last-child:not(:first-child) {
    float: none;
    clear: both; }

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  margin-right: 0;
  margin-left: 0; }
  .small-uncentered, .small-uncentered:last-child:not(:first-child),
  .small-push-0,
  .small-push-0:last-child:not(:first-child),
  .small-pull-0,
  .small-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none; }
  .small-uncentered:last-child:not(:first-child),
  .small-push-0:last-child:not(:first-child),
  .small-pull-0:last-child:not(:first-child) {
    float: right; }

@media print, screen and (min-width: 40em) {
  .medium-1 {
    width: 8.33333%; }
  .medium-push-1 {
    position: relative;
    left: 8.33333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.66667%; }
  .medium-push-2 {
    position: relative;
    left: 16.66667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    width: 33.33333%; }
  .medium-push-4 {
    position: relative;
    left: 33.33333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.66667%; }
  .medium-push-5 {
    position: relative;
    left: 41.66667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    width: 58.33333%; }
  .medium-push-7 {
    position: relative;
    left: 58.33333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.66667%; }
  .medium-push-8 {
    position: relative;
    left: 66.66667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    width: 83.33333%; }
  .medium-push-10 {
    position: relative;
    left: 83.33333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.66667%; }
  .medium-push-11 {
    position: relative;
    left: 91.66667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    float: left;
    width: 100%; }
    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
      float: left; }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    float: left;
    width: 50%; }
    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
      float: left; }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    float: left;
    width: 33.33333%; }
    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
      float: left; }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    float: left;
    width: 25%; }
    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
      float: left; }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    float: left;
    width: 20%; }
    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
      float: left; }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    float: left;
    width: 16.66667%; }
    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
      float: left; }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    float: left;
    width: 14.28571%; }
    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
      float: left; }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    float: left;
    width: 12.5%; }
    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
      float: left; }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
  .medium-centered {
    margin-right: auto;
    margin-left: auto; }
    .medium-centered, .medium-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0; }
    .medium-uncentered, .medium-uncentered:last-child:not(:first-child),
    .medium-push-0,
    .medium-push-0:last-child:not(:first-child),
    .medium-pull-0,
    .medium-pull-0:last-child:not(:first-child) {
      float: left;
      clear: none; }
    .medium-uncentered:last-child:not(:first-child),
    .medium-push-0:last-child:not(:first-child),
    .medium-pull-0:last-child:not(:first-child) {
      float: right; } }

@media print, screen and (min-width: 64em) {
  .large-1 {
    width: 8.33333%; }
  .large-push-1 {
    position: relative;
    left: 8.33333%; }
  .large-pull-1 {
    position: relative;
    left: -8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.66667%; }
  .large-push-2 {
    position: relative;
    left: 16.66667%; }
  .large-pull-2 {
    position: relative;
    left: -16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    width: 33.33333%; }
  .large-push-4 {
    position: relative;
    left: 33.33333%; }
  .large-pull-4 {
    position: relative;
    left: -33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.66667%; }
  .large-push-5 {
    position: relative;
    left: 41.66667%; }
  .large-pull-5 {
    position: relative;
    left: -41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    width: 58.33333%; }
  .large-push-7 {
    position: relative;
    left: 58.33333%; }
  .large-pull-7 {
    position: relative;
    left: -58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.66667%; }
  .large-push-8 {
    position: relative;
    left: 66.66667%; }
  .large-pull-8 {
    position: relative;
    left: -66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    width: 83.33333%; }
  .large-push-10 {
    position: relative;
    left: 83.33333%; }
  .large-pull-10 {
    position: relative;
    left: -83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.66667%; }
  .large-push-11 {
    position: relative;
    left: 91.66667%; }
  .large-pull-11 {
    position: relative;
    left: -91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-up-1 > .column, .large-up-1 > .columns {
    float: left;
    width: 100%; }
    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
      float: left; }
  .large-up-2 > .column, .large-up-2 > .columns {
    float: left;
    width: 50%; }
    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
      float: left; }
  .large-up-3 > .column, .large-up-3 > .columns {
    float: left;
    width: 33.33333%; }
    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
      float: left; }
  .large-up-4 > .column, .large-up-4 > .columns {
    float: left;
    width: 25%; }
    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
      float: left; }
  .large-up-5 > .column, .large-up-5 > .columns {
    float: left;
    width: 20%; }
    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
      float: left; }
  .large-up-6 > .column, .large-up-6 > .columns {
    float: left;
    width: 16.66667%; }
    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
      float: left; }
  .large-up-7 > .column, .large-up-7 > .columns {
    float: left;
    width: 14.28571%; }
    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
      float: left; }
  .large-up-8 > .column, .large-up-8 > .columns {
    float: left;
    width: 12.5%; }
    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
      float: left; }
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }
  .large-centered {
    margin-right: auto;
    margin-left: auto; }
    .large-centered, .large-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0; }
    .large-uncentered, .large-uncentered:last-child:not(:first-child),
    .large-push-0,
    .large-push-0:last-child:not(:first-child),
    .large-pull-0,
    .large-pull-0:last-child:not(:first-child) {
      float: left;
      clear: none; }
    .large-uncentered:last-child:not(:first-child),
    .large-push-0:last-child:not(:first-child),
    .large-pull-0:last-child:not(:first-child) {
      float: right; } }

.column-block {
  margin-bottom: 1.25rem; }
  .column-block > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 40em) {
    .column-block {
      margin-bottom: 1.875rem; }
      .column-block > :last-child {
        margin-bottom: 0; } }

.row {
  max-width: 78.125rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-flow: row wrap; }
  .row .row {
    margin-right: -0.625rem;
    margin-left: -0.625rem; }
    @media print, screen and (min-width: 40em) {
      .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem; } }
    @media print, screen and (min-width: 64em) {
      .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem; } }
    .row .row.collapse {
      margin-right: 0;
      margin-left: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-right: auto;
      margin-left: auto; }
  .row:not(.expanded) .row {
    max-width: none; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .row.is-collapse-child,
  .row.collapse > .column > .row,
  .row.collapse > .columns > .row {
    margin-right: 0;
    margin-left: 0; }

.column, .columns {
  flex: 1 1 0px;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  min-width: 0; }
  @media print, screen and (min-width: 40em) {
    .column, .columns {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }

.column.row.row, .row.row.columns {
  float: none;
  display: block; }

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0; }

.small-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.small-offset-0 {
  margin-left: 0%; }

.small-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.small-offset-1 {
  margin-left: 8.33333%; }

.small-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.small-offset-2 {
  margin-left: 16.66667%; }

.small-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.small-offset-3 {
  margin-left: 25%; }

.small-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.small-offset-4 {
  margin-left: 33.33333%; }

.small-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.small-offset-5 {
  margin-left: 41.66667%; }

.small-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.small-offset-6 {
  margin-left: 50%; }

.small-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.small-offset-7 {
  margin-left: 58.33333%; }

.small-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.small-offset-8 {
  margin-left: 66.66667%; }

.small-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.small-offset-9 {
  margin-left: 75%; }

.small-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.small-offset-10 {
  margin-left: 83.33333%; }

.small-12 {
  flex: 0 0 100%;
  max-width: 100%; }

.small-offset-11 {
  margin-left: 91.66667%; }

.small-up-1 {
  flex-wrap: wrap; }
  .small-up-1 > .column, .small-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%; }

.small-up-2 {
  flex-wrap: wrap; }
  .small-up-2 > .column, .small-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%; }

.small-up-3 {
  flex-wrap: wrap; }
  .small-up-3 > .column, .small-up-3 > .columns {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }

.small-up-4 {
  flex-wrap: wrap; }
  .small-up-4 > .column, .small-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%; }

.small-up-5 {
  flex-wrap: wrap; }
  .small-up-5 > .column, .small-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%; }

.small-up-6 {
  flex-wrap: wrap; }
  .small-up-6 > .column, .small-up-6 > .columns {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }

.small-up-7 {
  flex-wrap: wrap; }
  .small-up-7 > .column, .small-up-7 > .columns {
    flex: 0 0 14.28571%;
    max-width: 14.28571%; }

.small-up-8 {
  flex-wrap: wrap; }
  .small-up-8 > .column, .small-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%; }

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0; }

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem; }

@media print, screen and (min-width: 40em) {
  .medium-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-up-1 {
    flex-wrap: wrap; }
    .medium-up-1 > .column, .medium-up-1 > .columns {
      flex: 0 0 100%;
      max-width: 100%; }
  .medium-up-2 {
    flex-wrap: wrap; }
    .medium-up-2 > .column, .medium-up-2 > .columns {
      flex: 0 0 50%;
      max-width: 50%; }
  .medium-up-3 {
    flex-wrap: wrap; }
    .medium-up-3 > .column, .medium-up-3 > .columns {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
  .medium-up-4 {
    flex-wrap: wrap; }
    .medium-up-4 > .column, .medium-up-4 > .columns {
      flex: 0 0 25%;
      max-width: 25%; }
  .medium-up-5 {
    flex-wrap: wrap; }
    .medium-up-5 > .column, .medium-up-5 > .columns {
      flex: 0 0 20%;
      max-width: 20%; }
  .medium-up-6 {
    flex-wrap: wrap; }
    .medium-up-6 > .column, .medium-up-6 > .columns {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
  .medium-up-7 {
    flex-wrap: wrap; }
    .medium-up-7 > .column, .medium-up-7 > .columns {
      flex: 0 0 14.28571%;
      max-width: 14.28571%; }
  .medium-up-8 {
    flex-wrap: wrap; }
    .medium-up-8 > .column, .medium-up-8 > .columns {
      flex: 0 0 12.5%;
      max-width: 12.5%; } }

@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .medium-expand {
    flex: 1 1 0px; } }

.row.medium-unstack > .column, .row.medium-unstack > .columns {
  flex: 0 0 100%; }
  @media print, screen and (min-width: 40em) {
    .row.medium-unstack > .column, .row.medium-unstack > .columns {
      flex: 1 1 0px; } }

@media print, screen and (min-width: 40em) {
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; } }

@media print, screen and (min-width: 64em) {
  .large-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-up-1 {
    flex-wrap: wrap; }
    .large-up-1 > .column, .large-up-1 > .columns {
      flex: 0 0 100%;
      max-width: 100%; }
  .large-up-2 {
    flex-wrap: wrap; }
    .large-up-2 > .column, .large-up-2 > .columns {
      flex: 0 0 50%;
      max-width: 50%; }
  .large-up-3 {
    flex-wrap: wrap; }
    .large-up-3 > .column, .large-up-3 > .columns {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
  .large-up-4 {
    flex-wrap: wrap; }
    .large-up-4 > .column, .large-up-4 > .columns {
      flex: 0 0 25%;
      max-width: 25%; }
  .large-up-5 {
    flex-wrap: wrap; }
    .large-up-5 > .column, .large-up-5 > .columns {
      flex: 0 0 20%;
      max-width: 20%; }
  .large-up-6 {
    flex-wrap: wrap; }
    .large-up-6 > .column, .large-up-6 > .columns {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
  .large-up-7 {
    flex-wrap: wrap; }
    .large-up-7 > .column, .large-up-7 > .columns {
      flex: 0 0 14.28571%;
      max-width: 14.28571%; }
  .large-up-8 {
    flex-wrap: wrap; }
    .large-up-8 > .column, .large-up-8 > .columns {
      flex: 0 0 12.5%;
      max-width: 12.5%; } }

@media print, screen and (min-width: 64em) and (min-width: 64em) {
  .large-expand {
    flex: 1 1 0px; } }

.row.large-unstack > .column, .row.large-unstack > .columns {
  flex: 0 0 100%; }
  @media print, screen and (min-width: 64em) {
    .row.large-unstack > .column, .row.large-unstack > .columns {
      flex: 1 1 0px; } }

@media print, screen and (min-width: 64em) {
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; } }

.shrink {
  flex: 0 0 auto;
  max-width: 100%; }

.column-block {
  margin-bottom: 1.25rem; }
  .column-block > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 40em) {
    .column-block {
      margin-bottom: 1.875rem; }
      .column-block > :last-child {
        margin-bottom: 0; } }

.align-left {
  justify-content: flex-start; }

.align-right {
  justify-content: flex-end; }

.align-center {
  justify-content: center; }

.align-justify {
  justify-content: space-between; }

.align-spaced {
  justify-content: space-around; }

.align-left.vertical.menu > li > a {
  justify-content: flex-start; }

.align-right.vertical.menu > li > a {
  justify-content: flex-end; }

.align-center.vertical.menu > li > a {
  justify-content: center; }

.align-top {
  align-items: flex-start; }

.align-self-top {
  align-self: flex-start; }

.align-bottom {
  align-items: flex-end; }

.align-self-bottom {
  align-self: flex-end; }

.align-middle {
  align-items: center; }

.align-self-middle {
  align-self: center; }

.align-stretch {
  align-items: stretch; }

.align-self-stretch {
  align-self: stretch; }

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center; }

.small-order-1 {
  order: 1; }

.small-order-2 {
  order: 2; }

.small-order-3 {
  order: 3; }

.small-order-4 {
  order: 4; }

.small-order-5 {
  order: 5; }

.small-order-6 {
  order: 6; }

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1; }
  .medium-order-2 {
    order: 2; }
  .medium-order-3 {
    order: 3; }
  .medium-order-4 {
    order: 4; }
  .medium-order-5 {
    order: 5; }
  .medium-order-6 {
    order: 6; } }

@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1; }
  .large-order-2 {
    order: 2; }
  .large-order-3 {
    order: 3; }
  .large-order-4 {
    order: 4; }
  .large-order-5 {
    order: 5; }
  .large-order-6 {
    order: 6; } }

.flex-container {
  display: flex; }

.flex-child-auto {
  flex: 1 1 auto; }

.flex-child-grow {
  flex: 1 0 auto; }

.flex-child-shrink {
  flex: 0 1 auto; }

.flex-dir-row {
  flex-direction: row; }

.flex-dir-row-reverse {
  flex-direction: row-reverse; }

.flex-dir-column {
  flex-direction: column; }

.flex-dir-column-reverse {
  flex-direction: column-reverse; }

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: flex; }
  .medium-flex-child-auto {
    flex: 1 1 auto; }
  .medium-flex-child-grow {
    flex: 1 0 auto; }
  .medium-flex-child-shrink {
    flex: 0 1 auto; }
  .medium-flex-dir-row {
    flex-direction: row; }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse; }
  .medium-flex-dir-column {
    flex-direction: column; }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse; } }

@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex; }
  .large-flex-child-auto {
    flex: 1 1 auto; }
  .large-flex-child-grow {
    flex: 1 0 auto; }
  .large-flex-child-shrink {
    flex: 0 1 auto; }
  .large-flex-dir-row {
    flex-direction: row; }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse; }
  .large-flex-dir-column {
    flex-direction: column; }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse; } }

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility; }

em,
i {
  font-style: italic;
  line-height: inherit; }

strong,
b {
  font-weight: bold;
  line-height: inherit; }

small {
  font-size: 80%;
  line-height: inherit; }

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "WildSpirit", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility; }
  h1 small, .h1 small,
  h2 small, .h2 small,
  h3 small, .h3 small,
  h4 small, .h4 small,
  h5 small, .h5 small,
  h6 small, .h6 small {
    line-height: 0;
    color: #b0b0b0; }

h1, .h1 {
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h2, .h2 {
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h3, .h3 {
  font-size: 1.1875rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h4, .h4 {
  font-size: 1.125rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h5, .h5 {
  font-size: 1.0625rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h6, .h6 {
  font-size: 1rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.5rem; }

@media print, screen and (min-width: 40em) {
  h1, .h1 {
    font-size: 3rem; }
  h2, .h2 {
    font-size: 2.5rem; }
  h3, .h3 {
    font-size: 1.9375rem; }
  h4, .h4 {
    font-size: 1.5625rem; }
  h5, .h5 {
    font-size: 1.25rem; }
  h6, .h6 {
    font-size: 1rem; } }

a {
  line-height: inherit;
  color: #cf2132;
  text-decoration: none;
  cursor: pointer; }
  a:hover, a:focus {
    color: #b21c2b; }
  a img {
    border: 0; }

hr {
  clear: both;
  max-width: 78.125rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #b0b0b0;
  border-left: 0; }

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6; }

li {
  font-size: inherit; }

ul {
  margin-left: 1.25rem;
  list-style-type: disc; }

ol {
  margin-left: 1.25rem; }

ul ul, ol ul, ul ol, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0; }

dl {
  margin-bottom: 1rem; }
  dl dt {
    margin-bottom: 0.3rem;
    font-weight: bold; }

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #b0b0b0; }
  blockquote, blockquote p {
    line-height: 1.6;
    color: #8a8a8a; }

cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a; }
  cite:before {
    content: "— "; }

abbr, abbr[title] {
  border-bottom: 1px dotted #000000;
  cursor: help;
  text-decoration: none; }

figure {
  margin: 0; }

code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #b0b0b0;
  background-color: #f1f1f1;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #000000; }

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #f1f1f1;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #000000; }

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a; }

.lead {
  font-size: 125%;
  line-height: 1.6; }

.stat {
  font-size: 2.5rem;
  line-height: 1; }
  p + .stat {
    margin-top: -1rem; }

ul.no-bullet, ol.no-bullet {
  margin-left: 0;
  list-style: none; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left; }
  .medium-text-right {
    text-align: right; }
  .medium-text-center {
    text-align: center; }
  .medium-text-justify {
    text-align: justify; } }

@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left; }
  .large-text-right {
    text-align: right; }
  .large-text-center {
    text-align: center; }
  .large-text-justify {
    text-align: justify; } }

.show-for-print {
  display: none !important; }

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important; }
  .show-for-print {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  table.show-for-print {
    display: table !important; }
  thead.show-for-print {
    display: table-header-group !important; }
  tbody.show-for-print {
    display: table-row-group !important; }
  tr.show-for-print {
    display: table-row !important; }
  td.show-for-print {
    display: table-cell !important; }
  th.show-for-print {
    display: table-cell !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: ''; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .print-break-inside {
    page-break-inside: auto; } }

.close-button {
  position: absolute;
  color: #8a8a8a;
  cursor: pointer; }
  [data-whatinput='mouse'] .close-button {
    outline: 0; }
  .close-button:hover, .close-button:focus {
    color: #000000; }
  .close-button.small {
    right: 0.66rem;
    top: 0.33em;
    font-size: 1.5em;
    line-height: 1; }
  .close-button, .close-button.medium {
    right: 1rem;
    top: 0.5rem;
    font-size: 2em;
    line-height: 1; }

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto; }

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0; }

.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem; }

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #cf2132 transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px; }

[data-whatinput='mouse'] .dropdown.menu a {
  outline: 0; }

.dropdown.menu > li > a {
  padding: 0.7rem 1rem; }

.dropdown.menu > li.is-active > a {
  background: transparent;
  color: #be1e2d; }

.no-js .dropdown.menu ul {
  display: none; }

.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0; }

.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0; }

.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto; }

.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%; }

.dropdown.menu.vertical > li > a::after {
  right: 14px; }

.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #cf2132 transparent transparent;
  right: auto;
  left: 5px; }

.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #cf2132; }

@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto; }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #cf2132 transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px; }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto; }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px; }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #cf2132 transparent transparent;
    right: auto;
    left: 5px; }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #cf2132; } }

@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto; }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #cf2132 transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px; }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto; }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px; }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #cf2132 transparent transparent;
    right: auto;
    left: 5px; }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #cf2132; } }

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto; }

.is-dropdown-menu.vertical {
  width: 100px; }
  .is-dropdown-menu.vertical.align-right {
    float: right; }

.is-dropdown-submenu-parent {
  position: relative; }
  .is-dropdown-submenu-parent a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    left: auto;
    margin-top: -6px; }
  .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
    top: 100%;
    left: auto; }
  .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto; }
  .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #b0b0b0;
  background: #ffffff; }
  .dropdown .is-dropdown-submenu a {
    padding: 0.7rem 1rem; }
  .is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
    right: 14px; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #cf2132 transparent transparent;
    right: auto;
    left: 5px; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #cf2132; }
  .is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px; }
  .is-dropdown-submenu > li {
    width: 100%; }
  .is-dropdown-submenu.js-dropdown-active {
    display: block; }

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden; }
  .responsive-embed iframe,
  .responsive-embed object,
  .responsive-embed embed,
  .responsive-embed video,
  .flex-video iframe,
  .flex-video object,
  .flex-video embed,
  .flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .responsive-embed.widescreen,
  .flex-video.widescreen {
    padding-bottom: 56.25%; }

html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden; }
  html.is-reveal-open.zf-has-scroll {
    overflow-y: scroll; }
  html.is-reveal-open body {
    overflow-y: hidden; }

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(0, 0, 0, 0.45);
  overflow-y: auto; }

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #b0b0b0;
  border-radius: 0;
  background-color: #ffffff;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto; }
  [data-whatinput='mouse'] .reveal {
    outline: 0; }
  @media print, screen and (min-width: 40em) {
    .reveal {
      min-height: 0; } }
  .reveal .column, .reveal .columns {
    min-width: 0; }
  .reveal > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 40em) {
    .reveal {
      width: 600px;
      max-width: 78.125rem; } }
  .reveal.collapse {
    padding: 0; }
  @media print, screen and (min-width: 40em) {
    .reveal.tiny {
      width: 30%;
      max-width: 78.125rem; } }
  @media print, screen and (min-width: 40em) {
    .reveal.small {
      width: 50%;
      max-width: 78.125rem; } }
  @media print, screen and (min-width: 40em) {
    .reveal.large {
      width: 90%;
      max-width: 78.125rem; } }
  .reveal.full {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0; }
  @media screen and (max-width: 39.99875em) {
    .reveal {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      max-width: none;
      height: 100%;
      min-height: 100%;
      margin-left: 0;
      border: 0;
      border-radius: 0; } }
  .reveal.without-overlay {
    position: fixed; }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

@media screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important; } }

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important; } }

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important; } }

@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important; } }

@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important; } }

@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important; } }

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important; } }

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important; } }

@media screen and (min-width: 64em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important; } }

@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important; } }

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal; }

.show-for-landscape,
.hide-for-portrait {
  display: block !important; }
  @media screen and (orientation: landscape) {
    .show-for-landscape,
    .hide-for-portrait {
      display: block !important; } }
  @media screen and (orientation: portrait) {
    .show-for-landscape,
    .hide-for-portrait {
      display: none !important; } }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }
  @media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
      display: none !important; } }
  @media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
      display: block !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto; }

.clearfix::before, .clearfix::after {
  display: table;
  content: ' ';
  flex-basis: 0;
  order: 1; }

.clearfix::after {
  clear: both; }

/*********************
* Global Stylesheets *
**********************/
/* START HTML Tag */
* {
  image-rendering: -webkit-optimize-contrast; }

body {
  background: #ffffff; }

figure,
.responsive-embed {
  margin: 0; }

a,
input,
button,
textarea,
select {
  outline: none !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s; }

a:hover {
  text-decoration: underline; }

/* END HTML Tag */
/* START DEV Class */
.__preloader {
  background: #be1e2d;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 11111; }
  .__preloader--icon {
    margin-left: 5px;
    max-width: 60px; }
  .__preloader .__table--cell_middle {
    padding: 0 50px;
    text-align: center; }

.__loading {
  overflow: hidden; }

.__no_padding {
  padding: 0; }

.__no_margin {
  margin: 0; }

.__no_result {
  text-align: center;
  padding: 9.375rem 0; }

.__d_table {
  display: table !important;
  width: 100%;
  height: 100%; }
  .__d_table--cell_middle {
    display: table-cell;
    vertical-align: middle; }

.__dark_overlay,
.__light_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.__dark_overlay {
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s; }
  .__dark_overlay.__link, .__dark_overlay.__view {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
  .__dark_overlay.__link {
    background-image: var(--wpr-bg-4239d393-1e33-4d5f-a51e-f8f0f5121a33);
    background-size: 32px !important; }
  .__dark_overlay.__view {
    background-image: var(--wpr-bg-93521a1c-893a-4737-91c4-1dcae72c3457);
    background-size: 42px !important; }

.__light_overlay {
  background-color: rgba(255, 255, 255, 0.3); }

.__p_relative {
  position: relative; }

.__no_found {
  padding: 100px 0;
  text-align: center;
  font-size: 30px; }

.__row_wide {
  max-width: 100rem; }

.__row_semi_wide {
  max-width: 87.5rem; }

.__row_small_wide {
  max-width: 84.375rem; }

.__row_collapse {
  max-width: 68.75rem; }

.__scroll_down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  height: 70px;
  width: 110px; }
  @media screen and (max-width: 63.99875em) {
    .__scroll_down {
      display: none; } }
  .__scroll_down img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
    max-width: 40px;
    animation: MoveUpDown 1s linear infinite; }
  .__scroll_down span {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2px; }

.__link_arrow {
  position: relative;
  padding-right: 15px !important; }
  .__link_arrow:after {
    content: '';
    height: 1px;
    width: calc(100% - 3px);
    background-color: transparent;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s; }
  .__link_arrow:hover:after {
    width: 100%;
    background-color: #ffffff; }
  .__link_arrow:hover i {
    right: 0; }
  .__link_arrow i {
    position: absolute;
    right: 3px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s; }

.__bordered_form_wrapper {
  padding: 1.875rem 1.875rem 0.625rem;
  border: 1px solid #b0b0b0;
  max-width: 37.5rem;
  margin: auto; }
  @media screen and (max-width: 63.99875em) {
    .__bordered_form_wrapper {
      margin-bottom: 1.25rem; } }

.__g_message textarea {
  height: 9.375rem !important; }

@media screen and (max-width: 63.99875em) {
  .__medium_line_top {
    padding-top: 3.125rem !important; }
    .__medium_line_top:before {
      content: '';
      border-top: 1px solid #b0b0b0;
      top: 0;
      width: calc(100% - 30px);
      position: absolute;
      left: 50%;
      transform: translateX(-50%); } }

/* END DEV Class */
/* START THIRD PARTY Class */
.column, .columns,
.columns {
  position: relative; }
  .column:last-child:not(:first-child), .columns:last-child:not(:first-child),
  .columns:last-child:not(:first-child) {
    float: left; }

.is-reveal-open {
  overflow-y: hidden !important; }

.reveal-overlay {
  z-index: 111111; }
  @media screen and (max-width: 39.99875em) {
    .reveal-overlay {
      overflow-y: hidden !important; } }

#lightboxOverlay,
#lightbox {
  z-index: 11111; }

.gform_validation_errors {
  margin-bottom: 1.25rem !important; }
  .gform_validation_errors h2 {
    font-family: "Poppins", sans-serif; }

.gfield_validation_message {
  padding: 0.3125rem !important;
  font-size: 0.75rem !important;
  border-color: #ffd7d7 !important; }

.gform_title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem; }

.ginput_container_date .datepicker {
  width: 100% !important; }

.gform_button {
  margin-right: 0.3125rem; }

.alignright,
.aligncenter {
  display: block; }

.aligncenter {
  margin-right: auto;
  margin-left: auto; }

.alignright {
  margin-right: 0;
  margin-left: auto; }

.hamburger {
  outline: none;
  padding: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  vertical-align: middle; }
  .hamburger:hover {
    opacity: 1; }
    .hamburger:hover .hamburger-box .hamburger-inner {
      background-color: #ffffff; }
      .hamburger:hover .hamburger-box .hamburger-inner:before, .hamburger:hover .hamburger-box .hamburger-inner:after {
        background-color: #ffffff; }
  .hamburger.is-active:hover {
    opacity: 1; }
  .hamburger.is-active .hamburger-box .hamburger-inner {
    background-color: #ffffff; }
    .hamburger.is-active .hamburger-box .hamburger-inner:before, .hamburger.is-active .hamburger-box .hamburger-inner:after {
      background-color: #ffffff; }
  .hamburger .hamburger-box .hamburger-inner {
    background-color: #ffffff;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s; }
    .hamburger .hamburger-box .hamburger-inner:before, .hamburger .hamburger-box .hamburger-inner:after {
      background-color: #ffffff;
      border-radius: 0;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s; }

.wpcf7-not-valid {
  border-color: red !important; }

.wpcf7-not-valid-tip {
  font-size: 13px !important;
  color: red !important; }

.wpcf7-response-output {
  padding: 15px !important;
  margin: 0;
  margin: 10px 0 !important;
  color: #fff;
  border: 0 !important;
  font-size: 16px; }

.wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #46b450; }

.wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #dc3232; }

.wpcf7-response-output.wpcf7-spam-blocked {
  background: #f56e28; }

.wpcf7-response-output.wpcf7-validation-errors {
  background: #ffb900; }

.wpcf7 form.sent .wpcf7-response-output {
  background-color: #46b450;
  /* Green */ }

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  background-color: #dc3232;
  /* Red */ }

.wpcf7 form.spam .wpcf7-response-output {
  background-color: #f56e28;
  /* Orange */ }

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background-color: #ffb900;
  /* Yellow */ }

.wpcf7-submit {
  display: inline-block !important; }

.grecaptcha-badge {
  visibility: hidden; }

/* END THIRD PARTY Class */
@media screen and (max-width: 39.99875em) {
  body {
    padding-top: 100px; } }

header {
  position: fixed;
  padding: 40px 0;
  z-index: 11111;
  width: 100%;
  top: 0;
  right: 0;
  background: #ffffff;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s; }
  @media screen and (max-width: 39.99875em) {
    header {
      padding: 10px 0 !important;
      background: #ffffff !important; } }
  header.__sticky {
    padding: 20px 0;
    background: linear-gradient(0deg, white 0%, white 50%);
    box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.75); }
    header.__sticky .__header_inner .__header_logo {
      max-width: 150px; }
  header .__header_inner {
    position: relative; }
    @media screen and (max-width: 82.5em) {
      header .__header_inner {
        padding-left: 70px; } }
    @media screen and (max-width: 39.99875em) {
      header .__header_inner {
        padding-left: 0;
        padding-top: 35px; } }
    header .__header_inner .__header_logo {
      max-width: 180px;
      margin-right: 20px;
      display: inline-block;
      vertical-align: middle;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s; }
      @media screen and (min-width: 112.5em) {
        header .__header_inner .__header_logo {
          max-width: 200px; } }
      @media screen and (max-width: 95em) {
        header .__header_inner .__header_logo {
          max-width: 150px;
          margin-right: 10px; } }
      @media screen and (max-width: 82.5em) {
        header .__header_inner .__header_logo {
          margin-right: 0; } }
      @media screen and (max-width: 39.99875em) {
        header .__header_inner .__header_logo {
          max-width: 130px !important;
          margin-left: auto;
          margin-right: auto;
          display: table; } }
    header .__header_inner .__desktop_menu {
      position: relative;
      margin: 0;
      list-style: none;
      display: inline-block;
      vertical-align: middle; }
      @media screen and (max-width: 82.5em) {
        header .__header_inner .__desktop_menu {
          display: none; } }
      header .__header_inner .__desktop_menu > li {
        padding: 0 10px;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
        display: inline-block;
        vertical-align: middle; }
        @media screen and (max-width: 86.25em) {
          header .__header_inner .__desktop_menu > li {
            padding: 0 5px; } }
        header .__header_inner .__desktop_menu > li.current_page_item > a {
          pointer-events: none; }
        header .__header_inner .__desktop_menu > li.current_page_item > a:before, header .__header_inner .__desktop_menu > li.current_page_parent > a:before {
          border-color: #be1e2d; }
        header .__header_inner .__desktop_menu > li.menu-item-has-children > a {
          padding-right: 15px; }
          header .__header_inner .__desktop_menu > li.menu-item-has-children > a:after {
            right: 0;
            content: "\f107";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            top: 50%;
            transform: translateY(-50%); }
        header .__header_inner .__desktop_menu > li > a {
          position: relative;
          padding-bottom: 2px;
          color: #be1e2d;
          text-decoration: none; }
          header .__header_inner .__desktop_menu > li > a:hover:before {
            border-color: #be1e2d; }
          header .__header_inner .__desktop_menu > li > a:before {
            content: '';
            display: block;
            width: 100%;
            height: 0;
            border-bottom: 1px solid transparent;
            bottom: 0;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -o-transition: all 0.3s;
            -ms-transition: all 0.3s;
            transition: all 0.3s;
            position: absolute;
            left: 50%;
            transform: translateX(-50%); }
        header .__header_inner .__desktop_menu > li > ul {
          display: none;
          margin: 0;
          list-style: none;
          position: absolute;
          top: 35px;
          background: #be1e2d; }
          header .__header_inner .__desktop_menu > li > ul > li {
            padding: 5px 15px; }
            header .__header_inner .__desktop_menu > li > ul > li:first-child {
              padding-top: 15px; }
            header .__header_inner .__desktop_menu > li > ul > li:last-child {
              padding-bottom: 15px; }
            header .__header_inner .__desktop_menu > li > ul > li.current_page_item > a {
              pointer-events: none; }
              header .__header_inner .__desktop_menu > li > ul > li.current_page_item > a:before {
                border-color: #ffffff; }
            header .__header_inner .__desktop_menu > li > ul > li > a {
              position: relative;
              padding-bottom: 2px;
              color: #ffffff;
              text-decoration: none; }
              header .__header_inner .__desktop_menu > li > ul > li > a:hover:before {
                border-color: #ffffff; }
              header .__header_inner .__desktop_menu > li > ul > li > a:before {
                content: '';
                display: block;
                width: 100%;
                height: 0;
                border-bottom: 1px solid transparent;
                bottom: 0;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -o-transition: all 0.3s;
                -ms-transition: all 0.3s;
                transition: all 0.3s;
                position: absolute;
                left: 50%;
                transform: translateX(-50%); }
    header .__header_inner aside {
      right: 0;
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }
      @media screen and (max-width: 39.99875em) {
        header .__header_inner aside {
          transform: none;
          top: -10px;
          right: -15px;
          width: calc(100% + 30px);
          background: #be1e2d;
          padding: 5px 15px; } }
      header .__header_inner aside .__social_media {
        display: inline-block;
        vertical-align: middle; }
        @media screen and (max-width: 39.99875em) {
          header .__header_inner aside .__social_media {
            float: right; } }
        header .__header_inner aside .__social_media a {
          font-size: 24px;
          margin: 0 10px;
          color: #be1e2d; }
          @media screen and (max-width: 95em) {
            header .__header_inner aside .__social_media a {
              font-size: 18px;
              margin: 0 5px; } }
          @media screen and (max-width: 39.99875em) {
            header .__header_inner aside .__social_media a {
              color: #ffffff;
              font-size: 14px; } }
      header .__header_inner aside .__translate {
        position: relative;
        margin-left: 15px;
        padding-bottom: 3px;
        display: inline-block;
        vertical-align: middle; }
        @media screen and (max-width: 95em) {
          header .__header_inner aside .__translate {
            margin-left: 5px; } }
        @media screen and (max-width: 39.99875em) {
          header .__header_inner aside .__translate {
            float: right;
            margin-left: 0;
            padding: 0;
            border-right: 1px solid #ffffff;
            margin-right: 10px; } }
        header .__header_inner aside .__translate:before {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          display: block;
          width: calc(100% - 10px);
          height: 0;
          border-bottom: 1px solid #be1e2d; }
          @media screen and (max-width: 39.99875em) {
            header .__header_inner aside .__translate:before {
              display: none; } }
        header .__header_inner aside .__translate #gtranslate_selector {
          background: transparent;
          border: 0;
          width: auto;
          color: #be1e2d;
          padding: 0 5px;
          cursor: pointer;
          /* for Firefox */
          -moz-appearance: none;
          /* for Safari, Chrome, Opera */
          -webkit-appearance: none; }
          @media screen and (max-width: 39.99875em) {
            header .__header_inner aside .__translate #gtranslate_selector {
              color: #ffffff;
              font-size: 14px; } }
          header .__header_inner aside .__translate #gtranslate_selector::-ms-expand {
            display: none; }
          header .__header_inner aside .__translate #gtranslate_selector option {
            font-size: 14px; }
            @media screen and (max-width: 39.99875em) {
              header .__header_inner aside .__translate #gtranslate_selector option {
                color: #be1e2d; } }
        header .__header_inner aside .__translate > i {
          color: #be1e2d;
          left: 145px;
          position: absolute;
          top: 50%;
          transform: translateY(-50%); }
          @media screen and (max-width: 39.99875em) {
            header .__header_inner aside .__translate > i {
              color: #ffffff;
              left: 128px;
              transform: none;
              top: 5px; } }

/* Mobile Menu */
@media screen and (min-width: 82.5625em) {
  .__mobile_menu_container {
    display: none; } }

.__mobile_menu_container #open-mobile-menu {
  left: 15px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }
  @media screen and (max-width: 39.99875em) {
    .__mobile_menu_container #open-mobile-menu {
      transition: none;
      top: 55px; } }
  .__mobile_menu_container #open-mobile-menu span {
    display: block;
    width: 35px;
    height: 4px;
    background-color: #be1e2d; }
    .__mobile_menu_container #open-mobile-menu span:nth-child(2) {
      margin: 7px 0; }

.__mobile_menu_container #mobile-menu {
  display: none; }

.moby {
  overflow: unset; }
  .moby.moby-active .moby-close {
    right: -50px; }
  .moby .moby-close {
    padding: 0;
    position: absolute;
    padding: 5px;
    background: #be1e2d;
    right: 0;
    top: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s; }
    .moby .moby-close .moby-close-icon {
      height: 40px;
      width: 40px;
      margin: 0; }
      .moby .moby-close .moby-close-icon:before, .moby .moby-close .moby-close-icon:after {
        background: #ffffff; }
  .moby .moby-wrap {
    overflow-y: auto;
    height: 100%; }
    .moby .moby-wrap .__mobile_logo {
      max-width: 178px;
      margin: 25px auto; }
    .moby .moby-wrap .__mobile_menu {
      margin-left: 0; }
      .moby .moby-wrap .__mobile_menu > li:last-child > a {
        border-bottom: 1px solid #f1f1f1; }
      .moby .moby-wrap .__mobile_menu > li.current_page_item > a {
        pointer-events: none; }
        .moby .moby-wrap .__mobile_menu > li.current_page_item > a span {
          pointer-events: auto; }
      .moby .moby-wrap .__mobile_menu > li.current_page_item > a, .moby .moby-wrap .__mobile_menu > li.current_page_parent > a {
        background-color: #be1e2d;
        color: #ffffff; }
        .moby .moby-wrap .__mobile_menu > li.current_page_item > a span, .moby .moby-wrap .__mobile_menu > li.current_page_parent > a span {
          background-color: #cf2132;
          color: #ffffff; }
      .moby .moby-wrap .__mobile_menu > li > a {
        padding: 0;
        font-size: 14px;
        padding: 15px;
        border-top: 1px solid #f1f1f1;
        text-transform: uppercase;
        background-color: #ffffff;
        color: #be1e2d; }
        .moby .moby-wrap .__mobile_menu > li > a:hover {
          background-color: #be1e2d;
          color: #ffffff; }
          .moby .moby-wrap .__mobile_menu > li > a:hover span {
            background-color: #cf2132;
            color: #ffffff; }
        .moby .moby-wrap .__mobile_menu > li > a .moby-expand {
          background-color: #ffffff;
          color: #be1e2d;
          border-left: 1px solid #f1f1f1;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -o-transition: all 0.3s;
          -ms-transition: all 0.3s;
          transition: all 0.3s; }
      .moby .moby-wrap .__mobile_menu > li > ul {
        border-top: 2px solid #cf2132;
        margin: 0;
        background-color: #f1f1f1; }
        .moby .moby-wrap .__mobile_menu > li > ul > li:not(:last-child) > a {
          border-bottom: 1px solid #b0b0b0; }
        .moby .moby-wrap .__mobile_menu > li > ul > li.current_page_item a {
          pointer-events: none;
          background-color: #d0d0d0; }
        .moby .moby-wrap .__mobile_menu > li > ul > li > a {
          display: block;
          padding: 10px;
          color: #be1e2d; }
          .moby .moby-wrap .__mobile_menu > li > ul > li > a:hover {
            background-color: #d0d0d0; }

footer {
  padding: 50px 0;
  background-color: #d9d9d6; }
  @media screen and (max-width: 39.99875em) {
    footer .__address_contact .widget_text.widget_custom_html {
      border-bottom: 1px solid #ffffff;
      padding-bottom: 30px;
      margin-bottom: 22px; } }
  footer .__address_contact .widget_text.widget_custom_html p {
    position: relative;
    padding-left: 36px;
    line-height: 1; }
    @media screen and (max-width: 39.99875em) {
      footer .__address_contact .widget_text.widget_custom_html p {
        padding-left: 25px; } }
    footer .__address_contact .widget_text.widget_custom_html p:first-child {
      margin-bottom: 40px; }
      @media screen and (max-width: 39.99875em) {
        footer .__address_contact .widget_text.widget_custom_html p:first-child {
          margin-bottom: 20px; } }
    footer .__address_contact .widget_text.widget_custom_html p img {
      position: absolute;
      left: 0px; }
      @media screen and (max-width: 39.99875em) {
        footer .__address_contact .widget_text.widget_custom_html p img {
          width: 15px; } }
    footer .__address_contact .widget_text.widget_custom_html p span,
    footer .__address_contact .widget_text.widget_custom_html p a {
      color: #be1e2d;
      font-size: 14px; }
  @media screen and (max-width: 39.99875em) {
    footer .__links .widget_text {
      border-bottom: 1px solid #ffffff;
      padding-bottom: 20px;
      margin-bottom: 10px; } }
  footer .__links .widget_text ul {
    margin: 0;
    list-style: none; }
    footer .__links .widget_text ul li {
      position: relative;
      padding-left: 15px;
      margin-bottom: 5px; }
      footer .__links .widget_text ul li:before {
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 0;
        color: #be1e2d; }
      footer .__links .widget_text ul li a {
        color: #be1e2d;
        font-size: 14px; }
  @media screen and (min-width: 40em) and (max-width: 63.99875em) {
    footer .__venues {
      margin-top: 20px; } }
  footer .__venues .widget_media_image {
    text-align: center; }
    @media screen and (max-width: 39.99875em) {
      footer .__venues .widget_media_image {
        margin-top: 20px; } }
    @media screen and (max-width: 25em) {
      footer .__venues .widget_media_image {
        max-width: 100%;
        flex: 100%;
        margin-top: 30px; } }
    footer .__venues .widget_media_image img {
      max-width: 150px !important;
      max-height: 100px !important; }

.__hero_slider {
  position: relative; }
  .__hero_slider .slick-slide, .__hero_slider .slick-slide::before, .__hero_slider .caption {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .__hero_slider .slick-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .__hero_slider .main-slider {
    position: relative;
    width: 100%;
    height: 45vw;
    min-height: 8vw;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s ease; }
    @media (min-width: 1367px) {
      .__hero_slider .main-slider {
        height: 700px; } }
    .__hero_slider .main-slider.slick-initialized {
      opacity: 1;
      visibility: visible; }
    .__hero_slider .main-slider.__single_slide .slick-dots {
      display: none; }
  .__hero_slider .slick-list,
  .__hero_slider .slick-track,
  .__hero_slider .slick-slide {
    height: 100%; }
  .__hero_slider .slick-slide {
    position: relative;
    outline: none; }
    .__hero_slider .slick-slide::before {
      z-index: 1; }
    .__hero_slider .slick-slide video {
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%); }
    .__hero_slider .slick-slide iframe {
      position: relative;
      pointer-events: none; }
    .__hero_slider .slick-slide figure {
      position: relative;
      height: 100%; }
    .__hero_slider .slick-slide .__play_video,
    .__hero_slider .slick-slide .__pause_video {
      background: #be1e2d center/15px no-repeat;
      position: absolute;
      top: 15px;
      left: 15px;
      width: 30px;
      height: 30px;
      display: none;
      z-index: 11;
      cursor: pointer; }
    .__hero_slider .slick-slide .__play_video {
      background-image: var(--wpr-bg-c8f09cbb-726b-4b9d-8899-aa224c5a87e5); }
    .__hero_slider .slick-slide .__pause_video {
      background-image: url(../../../../../../../../../themes/DailyPress/assets/images/pause.png); }
    .__hero_slider .slick-slide .slide-image {
      opacity: 1;
      position: relative;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: all .8s ease; }
      .__hero_slider .slick-slide .slide-image .__inner_wrapper {
        position: absolute;
        width: 100%;
        height: 100%; }
        .__hero_slider .slick-slide .slide-image .__inner_wrapper.__overlay {
          background: rgba(0, 0, 0, 0.5); }
        .__hero_slider .slick-slide .slide-image .__inner_wrapper--details {
          text-align: center;
          padding-left: 15px;
          padding-right: 15px; }
        .__hero_slider .slick-slide .slide-image .__inner_wrapper h2,
        .__hero_slider .slick-slide .slide-image .__inner_wrapper h3 {
          margin: 0;
          color: #ffffff;
          margin: auto; }
        @media (min-width: 1082px) {
          .__hero_slider .slick-slide .slide-image .__inner_wrapper h2 {
            font-size: 40px; } }
        @media (max-width: 1082px) {
          .__hero_slider .slick-slide .slide-image .__inner_wrapper h2 {
            font-size: 16px; }
          .__hero_slider .slick-slide .slide-image .__inner_wrapper h3 {
            font-size: 13px; } }
    .__hero_slider .slick-slide .image-entity {
      width: 100%;
      opacity: 0;
      visibility: hidden; }
    .__hero_slider .slick-slide.slick-active {
      z-index: 1; }
      .__hero_slider .slick-slide.slick-active .caption {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.6s; }
  .__hero_slider .caption {
    position: absolute;
    top: 44%;
    left: 5%;
    text-align: center;
    padding: 20px;
    border: 3px solid;
    color: #fff;
    margin: 0;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: .02em;
    opacity: 0;
    z-index: 1;
    transition: all .3s ease;
    transform: translateY(100px); }
  .__hero_slider .slick-dots {
    position: absolute;
    left: 0;
    bottom: 20px;
    padding: 0;
    width: 100%;
    margin-left: 0;
    text-align: center; }
    @media (max-width: 700px) {
      .__hero_slider .slick-dots {
        margin: 5px 0 !important; } }
    .__hero_slider .slick-dots li {
      display: inline-block;
      vertical-align: top;
      margin: 0 8px; }
      .__hero_slider .slick-dots li button {
        width: 16px;
        height: 16px;
        border: none;
        cursor: pointer;
        border-radius: 50%;
        border: 2px solid #cf2132;
        box-shadow: 0 0 0 0 transparent;
        vertical-align: middle;
        color: #cf2132;
        background-color: #cf2132;
        transition: all .3s ease;
        opacity: .4; }
        .__hero_slider .slick-dots li button:focus {
          outline: none; }
        .__hero_slider .slick-dots li button:hover {
          opacity: 1; }
        @media (max-width: 700px) {
          .__hero_slider .slick-dots li button {
            width: 10px;
            height: 10px;
            color: transparent; } }
      .__hero_slider .slick-dots li.slick-active button {
        box-shadow: 0 0 0 2px #cf2132;
        opacity: 1; }

.__hero_banner {
  position: relative; }
  .__hero_banner img {
    width: 100%; }
  .__hero_banner h1 {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -55%);
    color: #ffffff;
    font-size: 80px;
    font-size: 10vw;
    text-shadow: 5px 6px 7px #000000; }
    @media screen and (max-width: 39.99875em) {
      .__hero_banner h1 {
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 15vw; } }

.__content_editor {
  position: relative;
  overflow: hidden; }
  .__content_editor.__image_style {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
  .__content_editor .__overlay,
  .__content_editor .__blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .__content_editor .__overlay {
    background-color: rgba(0, 0, 0, 0.5); }
  .__content_editor .__blur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    background-attachment: fixed !important;
    transform: scale(1.1); }

.__column_images_style_1 .columns {
  max-width: 275px; }
  @media print, screen and (min-width: 40em) {
    .__column_images_style_1 .columns {
      padding-left: 0.1875rem;
      padding-right: 0.1875rem; } }
  @media screen and (max-width: 63.99875em) {
    .__column_images_style_1 .columns {
      flex: 0 0 33.3%; } }
  @media screen and (max-width: 39.99875em) {
    .__column_images_style_1 .columns {
      flex: 0 0 50%; } }
  @media screen and (max-width: 21.875em) {
    .__column_images_style_1 .columns {
      flex: 0 0 100%;
      max-width: 200px; } }
  .__column_images_style_1 .columns > div {
    overflow: hidden;
    margin: 5px 0; }
    .__column_images_style_1 .columns > div a {
      position: relative;
      display: block; }
      .__column_images_style_1 .columns > div a:hover img {
        transform: scale(1.1); }
      .__column_images_style_1 .columns > div a h3 {
        position: absolute;
        left: 10px;
        bottom: 10px;
        background-color: #be1e2d;
        color: #ffffff;
        padding: 10px 10px 7px;
        line-height: 1; }
        @media screen and (max-width: 63.99875em) {
          .__column_images_style_1 .columns > div a h3 {
            font-size: 2.1875rem; } }
        @media screen and (max-width: 39.99875em) {
          .__column_images_style_1 .columns > div a h3 {
            font-size: 1.5625rem; } }
      .__column_images_style_1 .columns > div a img {
        transform: scale(1);
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s; }

.__column_images_style_1_reveal {
  padding: 15px;
  border: 0;
  border-radius: 0;
  outline: none;
  max-width: 975px !important;
  width: 100% !important;
  background-color: transparent; }
  @media screen and (max-width: 63.99875em) {
    .__column_images_style_1_reveal {
      top: 10px !important; } }
  @media screen and (max-width: 39.99875em) {
    .__column_images_style_1_reveal {
      top: 0 !important;
      padding-bottom: 30px !important; } }
  .__column_images_style_1_reveal .__reveal_inner {
    position: relative;
    background-color: #ffffff; }
    .__column_images_style_1_reveal .__reveal_inner.__has_img {
      display: flex; }
      .__column_images_style_1_reveal .__reveal_inner.__has_img .__img {
        flex: 0 0 55%; }
        @media screen and (max-width: 63.99875em) {
          .__column_images_style_1_reveal .__reveal_inner.__has_img .__img {
            display: none; } }
      .__column_images_style_1_reveal .__reveal_inner.__has_img .__content {
        flex: 0 0 45%; }
        @media screen and (max-width: 63.99875em) {
          .__column_images_style_1_reveal .__reveal_inner.__has_img .__content {
            flex: 0 0 100%; } }
    .__column_images_style_1_reveal .__reveal_inner .__content {
      padding-top: 30px; }
      @media screen and (max-width: 63.99875em) {
        .__column_images_style_1_reveal .__reveal_inner .__content {
          padding-top: 0; } }
      .__column_images_style_1_reveal .__reveal_inner .__content .__img_mobile {
        margin-bottom: 29px; }
        @media print, screen and (min-width: 64em) {
          .__column_images_style_1_reveal .__reveal_inner .__content .__img_mobile {
            display: none; } }
      .__column_images_style_1_reveal .__reveal_inner .__content .__content_inner {
        position: relative;
        padding: 30px;
        max-height: 620px;
        overflow: auto; }
        @media screen and (max-width: 63.99875em) {
          .__column_images_style_1_reveal .__reveal_inner .__content .__content_inner {
            max-height: 100%; } }
        @media screen and (max-width: 39.99875em) {
          .__column_images_style_1_reveal .__reveal_inner .__content .__content_inner {
            padding: 20px 15px; } }
        .__column_images_style_1_reveal .__reveal_inner .__content .__content_inner:before {
          content: '';
          position: absolute;
          top: 0;
          left: 30px;
          height: 1px;
          width: 180px;
          background-color: #be1e2d; }
          @media screen and (max-width: 39.99875em) {
            .__column_images_style_1_reveal .__reveal_inner .__content .__content_inner:before {
              left: 15px; } }
    .__column_images_style_1_reveal .__reveal_inner .close-button {
      width: 30px;
      right: 0;
      top: 0;
      background: #be1e2d;
      color: #ffffff; }

.__column_images_style_2 .columns {
  max-width: 300px; }
  @media print, screen and (min-width: 40em) {
    .__column_images_style_2 .columns {
      padding-left: 0.625rem;
      padding-right: 0.625rem; } }
  @media screen and (max-width: 63.99875em) {
    .__column_images_style_2 .columns {
      flex: 0 0 33.3%; } }
  @media screen and (max-width: 39.99875em) {
    .__column_images_style_2 .columns {
      flex: 0 0 50%; } }
  @media screen and (max-width: 21.875em) {
    .__column_images_style_2 .columns {
      flex: 0 0 100%;
      max-width: 260px; } }
  .__column_images_style_2 .columns > div {
    overflow: hidden;
    margin: 10px 0; }
    .__column_images_style_2 .columns > div a {
      position: relative;
      display: block; }
      .__column_images_style_2 .columns > div a:hover .__overlay {
        opacity: 1; }
      .__column_images_style_2 .columns > div a .__overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        background: rgba(0, 0, 0, 0.5);
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s; }
      .__column_images_style_2 .columns > div a h3 {
        display: table;
        min-height: 80px;
        background-color: #be1e2d;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 1.5rem;
        text-transform: uppercase;
        color: #ffffff;
        line-height: 1;
        letter-spacing: 2px;
        width: calc(100% - 30px);
        text-align: center;
        text-shadow: 2px 2px 4px #000000;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); }
        @media screen and (max-width: 39.99875em) {
          .__column_images_style_2 .columns > div a h3 {
            font-size: 1.25rem;
            min-height: 60px; } }
        @media screen and (max-width: 21.875em) {
          .__column_images_style_2 .columns > div a h3 {
            font-size: 1.125rem; } }
        .__column_images_style_2 .columns > div a h3 span {
          display: table-cell;
          vertical-align: middle;
          text-align: center;
          width: 100%;
          padding: 10px; }

.__column_images_style_2_reveal {
  padding: 15px;
  border: 0;
  border-radius: 0;
  outline: none;
  max-width: 975px !important;
  width: 100% !important;
  background-color: transparent; }
  @media screen and (max-width: 63.99875em) {
    .__column_images_style_2_reveal {
      top: 10px !important; } }
  @media screen and (max-width: 39.99875em) {
    .__column_images_style_2_reveal {
      top: 0 !important;
      padding-bottom: 30px !important; } }
  .__column_images_style_2_reveal .__reveal_inner {
    position: relative;
    background-color: #ffffff; }
    .__column_images_style_2_reveal .__reveal_inner.__has_img {
      display: flex; }
      .__column_images_style_2_reveal .__reveal_inner.__has_img .__img {
        flex: 0 0 55%; }
        @media screen and (max-width: 63.99875em) {
          .__column_images_style_2_reveal .__reveal_inner.__has_img .__img {
            display: none; } }
      .__column_images_style_2_reveal .__reveal_inner.__has_img .__content {
        flex: 0 0 45%; }
        @media screen and (max-width: 63.99875em) {
          .__column_images_style_2_reveal .__reveal_inner.__has_img .__content {
            flex: 0 0 100%; } }
    .__column_images_style_2_reveal .__reveal_inner .__content {
      padding-top: 30px; }
      @media screen and (max-width: 63.99875em) {
        .__column_images_style_2_reveal .__reveal_inner .__content {
          padding-top: 0; } }
      .__column_images_style_2_reveal .__reveal_inner .__content .__img_mobile {
        margin-bottom: 29px; }
        @media print, screen and (min-width: 64em) {
          .__column_images_style_2_reveal .__reveal_inner .__content .__img_mobile {
            display: none; } }
      .__column_images_style_2_reveal .__reveal_inner .__content .__content_inner {
        position: relative;
        padding: 30px;
        max-height: 620px;
        overflow: auto; }
        @media screen and (max-width: 63.99875em) {
          .__column_images_style_2_reveal .__reveal_inner .__content .__content_inner {
            max-height: 100%; } }
        @media screen and (max-width: 39.99875em) {
          .__column_images_style_2_reveal .__reveal_inner .__content .__content_inner {
            padding: 20px 15px; } }
        .__column_images_style_2_reveal .__reveal_inner .__content .__content_inner:before {
          content: '';
          position: absolute;
          top: 0;
          left: 30px;
          height: 1px;
          width: 180px;
          background-color: #be1e2d; }
          @media screen and (max-width: 39.99875em) {
            .__column_images_style_2_reveal .__reveal_inner .__content .__content_inner:before {
              left: 15px; } }
    .__column_images_style_2_reveal .__reveal_inner .close-button {
      width: 30px;
      right: 0;
      top: 0;
      background: #be1e2d;
      color: #ffffff; }

.__4_column_grid .columns {
  margin-top: 1.875rem; }
  @media print, screen and (min-width: 40em) {
    .__4_column_grid .columns {
      padding-left: 0.4375rem;
      padding-right: 0.4375rem; } }
  @media screen and (max-width: 53.125em) {
    .__4_column_grid .columns {
      flex: 0 0 50%;
      max-width: 21.875rem; } }
  @media screen and (max-width: 35em) {
    .__4_column_grid .columns {
      flex: 0 0 100%;
      margin-top: 1.25rem; } }

.__4_column_grid .__img {
  overflow: hidden; }
  .__4_column_grid .__img a img {
    width: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s; }
  .__4_column_grid .__img a:hover img {
    transform: scale(1.1); }

.__4_column_grid .__details {
  padding: 20px;
  background: #f1f1f1; }
  .__4_column_grid .__details h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center; }
    .__4_column_grid .__details h3 a {
      color: #000000;
      text-decoration: none; }
      .__4_column_grid .__details h3 a:hover {
        color: #cf2132; }
  .__4_column_grid .__details p {
    margin: 15px 0;
    text-align: center; }
  .__4_column_grid .__details .__link_arrow {
    display: table;
    margin: auto;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: #000000; }
    .__4_column_grid .__details .__link_arrow:hover::after {
      background-color: #000000; }
    .__4_column_grid .__details .__link_arrow i {
      font-style: normal; }

.__content_missing {
  border-bottom: 2px solid #be1e2d; }
  .__content_missing .__page_banner {
    height: 2000px;
    background-color: #8a8a8a;
    background-color: brown; }
  .__content_missing p {
    padding: 200px 0;
    text-align: center;
    font-size: 25px; }

#tribe-events-pg-template {
  max-width: 100%;
  padding: 0; }

.__tribe_events_list--inner .__tribe_event {
  position: relative;
  margin-top: 2.5rem;
  padding: 1.25rem 2.5rem; }
  @media screen and (max-width: 63.99875em) {
    .__tribe_events_list--inner .__tribe_event {
      padding: 0; } }
  .__tribe_events_list--inner .__tribe_event .__left_image,
  .__tribe_events_list--inner .__tribe_event .__right_image {
    position: absolute;
    max-width: 15.625rem; }
  .__tribe_events_list--inner .__tribe_event .__left_image {
    left: 0;
    top: 0; }
  .__tribe_events_list--inner .__tribe_event .__right_image {
    right: 0;
    bottom: 0; }
  .__tribe_events_list--inner .__tribe_event article {
    background: #000000;
    min-height: 18.75rem;
    padding: 1.875rem 15.625rem;
    text-align: center; }
    @media screen and (max-width: 63.99875em) {
      .__tribe_events_list--inner .__tribe_event article {
        padding: 1.875rem 1.25rem;
        min-height: auto; } }
    .__tribe_events_list--inner .__tribe_event article * {
      color: #ffffff !important; }
    .__tribe_events_list--inner .__tribe_event article h2 {
      font-family: "Poppins", sans-serif;
      font-weight: 700;
      font-size: 1.5rem; }
      .__tribe_events_list--inner .__tribe_event article h2 a {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s; }
        .__tribe_events_list--inner .__tribe_event article h2 a:hover {
          color: #cf2132 !important; }
    .__tribe_events_list--inner .__tribe_event article .__date {
      margin: 0.3125rem 0 0.625rem;
      font-weight: 700;
      font-size: 1.125rem;
      text-transform: uppercase; }
      .__tribe_events_list--inner .__tribe_event article .__date .__at {
        display: inline-block;
        vertical-align: text-bottom; }
    .__tribe_events_list--inner .__tribe_event article .__cost {
      font-weight: 700; }
    .__tribe_events_list--inner .__tribe_event article .__description {
      margin: 0.625rem 0 0.625rem; }
    .__tribe_events_list--inner .__tribe_event article .__view {
      font-style: italic; }

.__tribe_events_list--inner .tribe-events-calendar-list-nav {
  border-color: #000000 !important;
  margin: 2.5rem 0;
  padding-top: 2.5rem; }
  .__tribe_events_list--inner .tribe-events-calendar-list-nav button,
  .__tribe_events_list--inner .tribe-events-calendar-list-nav a {
    padding: 0.9375rem 1.25rem; }
    @media screen and (max-width: 50.9375em) {
      .__tribe_events_list--inner .tribe-events-calendar-list-nav button,
      .__tribe_events_list--inner .tribe-events-calendar-list-nav a {
        width: 105px !important;
        text-align: center; } }
    @media screen and (max-width: 39.99875em) {
      .__tribe_events_list--inner .tribe-events-calendar-list-nav button,
      .__tribe_events_list--inner .tribe-events-calendar-list-nav a {
        width: 85px !important;
        padding: 10px; } }
  .__tribe_events_list--inner .tribe-events-calendar-list-nav button {
    background: #b0b0b0 !important;
    color: #f1f1f1;
    cursor: not-allowed; }
    .__tribe_events_list--inner .tribe-events-calendar-list-nav button path {
      fill: #f1f1f1 !important; }
  .__tribe_events_list--inner .tribe-events-calendar-list-nav a {
    background: #be1e2d;
    color: #ffffff !important; }
    .__tribe_events_list--inner .tribe-events-calendar-list-nav a:hover {
      background: #cf2132; }
    .__tribe_events_list--inner .tribe-events-calendar-list-nav a path {
      fill: #ffffff !important; }

@media screen and (max-width: 56.25em) {
  .__single_event .__single_event_inner .columns {
    flex: 0 0 100%;
    max-width: 100%;
    float: none; } }

.__single_event .__single_event_inner .__event_content {
  padding: 3.125rem 0; }
  @media screen and (max-width: 56.25em) {
    .__single_event .__single_event_inner .__event_content {
      padding: 1.875rem 0; } }

.__single_event .__single_event_inner .__event_details {
  padding: 2.1875rem 1.875rem;
  margin-top: -1.875rem;
  background-color: #f1f1f1; }
  @media screen and (max-width: 56.25em) {
    .__single_event .__single_event_inner .__event_details {
      max-width: 23.125rem;
      margin: 0 auto 1.875rem;
      padding: 1.875rem 1.25rem; } }
  .__single_event .__single_event_inner .__event_details .__btn {
    display: block;
    margin-bottom: 1.875rem; }
    @media screen and (max-width: 56.25em) {
      .__single_event .__single_event_inner .__event_details .__btn {
        margin-bottom: 1.25rem; } }
    .__single_event .__single_event_inner .__event_details .__btn a {
      margin: 0 auto;
      padding: 0.9375rem 1.25rem;
      font-size: 1.5rem;
      font-weight: 400;
      display: table; }
      @media screen and (max-width: 39.99875em) {
        .__single_event .__single_event_inner .__event_details .__btn a {
          font-size: 1.25rem; } }
  .__single_event .__single_event_inner .__event_details > div {
    padding: 1.5625rem;
    border-top: 0.0625rem solid #000000;
    border-bottom: 0.0625rem solid #000000; }
    @media screen and (max-width: 39.99875em) {
      .__single_event .__single_event_inner .__event_details > div {
        padding: 1.5625rem 0; } }
    .__single_event .__single_event_inner .__event_details > div p {
      font-size: 1.125rem; }
      .__single_event .__single_event_inner .__event_details > div p i {
        margin-right: 0.625rem; }

.__single_event .__related_events hr {
  margin-top: 0;
  margin-bottom: 3.125rem;
  border-bottom: 1px solid #b0b0b0; }
  @media screen and (max-width: 56.25em) {
    .__single_event .__related_events hr {
      margin-bottom: 1.875rem; } }

@media screen and (max-width: 56.25em) {
  .__single_event .__related_events .__related_events_inner .columns {
    flex: 0 0 100%;
    max-width: 28.125rem;
    float: none; } }

.__single_event .__related_events .__related_events_inner .__img {
  overflow: hidden; }
  .__single_event .__related_events .__related_events_inner .__img a img {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s; }
  .__single_event .__related_events .__related_events_inner .__img a:hover img {
    transform: scale(1.1); }

.__single_event .__related_events .__related_events_inner .__details {
  padding: 1.25rem;
  margin-bottom: 3.125rem;
  background-color: #f1f1f1; }
  @media screen and (max-width: 56.25em) {
    .__single_event .__related_events .__related_events_inner .__details {
      margin-bottom: 1.875rem; } }
  .__single_event .__related_events .__related_events_inner .__details h3 {
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase; }
    .__single_event .__related_events .__related_events_inner .__details h3 a {
      color: #000000;
      text-decoration: none; }
      .__single_event .__related_events .__related_events_inner .__details h3 a:hover {
        color: #be1e2d; }
  .__single_event .__related_events .__related_events_inner .__details p {
    color: #8a8a8a; }
    .__single_event .__related_events .__related_events_inner .__details p .__cost {
      position: relative;
      padding-left: 0.5rem;
      margin-left: 0.3125rem; }
      .__single_event .__related_events .__related_events_inner .__details p .__cost:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: calc(100% - 4px);
        border-left: 1px solid #8a8a8a; }

.__acrhive_gallery {
  padding: 3.125rem 0 1.25rem; }
  @media print, screen and (min-width: 40em) {
    .__acrhive_gallery .columns {
      padding-left: 0.4375rem;
      padding-right: 0.4375rem; } }
  @media screen and (max-width: 39.99875em) {
    .__acrhive_gallery .columns {
      max-width: 28.125rem;
      margin: auto; } }
  .__acrhive_gallery .__gallery {
    position: relative;
    margin-bottom: 1.875rem; }
    .__acrhive_gallery .__gallery a {
      text-decoration: none; }
      .__acrhive_gallery .__gallery a:hover .__overlay {
        background: rgba(0, 0, 0, 0.5); }
      .__acrhive_gallery .__gallery a:hover h2 {
        background: #cf2132; }
      .__acrhive_gallery .__gallery a .__overlay {
        position: absolute;
        background: transparent;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s; }
      .__acrhive_gallery .__gallery a h2 {
        font-family: "Poppins", sans-serif;
        text-transform: uppercase;
        background: #be1e2d;
        color: #ffffff;
        margin: 0;
        width: auto;
        text-align: center;
        padding: 0.9375rem 1.25rem;
        font-size: 1.5rem;
        letter-spacing: 0.125rem;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s; }

.__single_gallery {
  padding: 3.125rem 0; }
  @media screen and (max-width: 39.99875em) {
    .__single_gallery {
      padding: 1.875rem 0; } }
  @media print, screen and (min-width: 40em) {
    .__single_gallery .__buttons .columns {
      padding-left: 0.3125rem;
      padding-right: 0.3125rem; } }
  .__single_gallery .__buttons .__buttons_inner {
    margin-bottom: 1.875rem;
    padding-bottom: 1.5625rem;
    border-bottom: 1px solid #b0b0b0; }
    .__single_gallery .__buttons .__buttons_inner h2 {
      font-family: "Poppins", sans-serif;
      font-size: 2.125rem;
      margin-bottom: 1.25rem; }
    .__single_gallery .__buttons .__buttons_inner ul {
      margin: 0;
      list-style: none; }
      .__single_gallery .__buttons .__buttons_inner ul li {
        margin-bottom: 0.3125rem;
        display: inline-block;
        vertical-align: middle; }
        .__single_gallery .__buttons .__buttons_inner ul li a {
          display: block; }
  .__single_gallery .__images .__gal_item {
    margin-bottom: 0.625rem; }
    @media print, screen and (min-width: 40em) {
      .__single_gallery .__images .__gal_item {
        padding-left: 0.3125rem;
        padding-right: 0.3125rem; } }
    .__single_gallery .__images .__gal_item a:hover div .__dark_overlay {
      opacity: 1; }
    .__single_gallery .__images .__gal_item a div {
      position: relative;
      height: 15.625rem; }
      @media screen and (max-width: 29.25em) {
        .__single_gallery .__images .__gal_item a div {
          height: 9.375rem; } }
      .__single_gallery .__images .__gal_item a div .__dark_overlay {
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s; }

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