@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes dissappear {
  0% {
    display: inline-block;
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none !important;
    opacity: 0;
  }
}
@keyframes point-r {
  0% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(10px, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
@keyframes point-d {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 25%);
  }
}
@keyframes slide_right {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide_left {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes centre-scale {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html, body, #page-con {
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

body {
  background-color: #f4f4f4;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    body.mob-menu-open #page-con {
      position: fixed;
      overflow: hidden;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }
  }
}

#page-con {
  background-size: 100% auto;
  background-repeat: repeat-y;
  position: relative;
  transition: all 350ms ease-out;
}

header, section, footer, .section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: rgb(51, 51, 51);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  header, section, footer, .section {
    font-size: 1.6rem;
  }
}

aside, section, .section, footer {
  align-items: stretch;
  align-content: stretch;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}
aside.reverse .row, aside.col-rev .row, section.reverse .row, section.col-rev .row, .section.reverse .row, .section.col-rev .row, footer.reverse .row, footer.col-rev .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  aside .row, section .row, .section .row, footer .row {
    flex-direction: row;
  }
  aside.reverse .row, section.reverse .row, .section.reverse .row, footer.reverse .row {
    flex-direction: row-reverse;
  }
  aside.col-rev .row, section.col-rev .row, .section.col-rev .row, footer.col-rev .row {
    flex-direction: row;
  }
}

section, .section {
  opacity: 1;
  transition: opacity 350ms ease-out;
}
section:nth-child(1n), .section:nth-child(1n) {
  transition-delay: 300ms;
}
section:nth-child(2n), .section:nth-child(2n) {
  transition-delay: 600ms;
}
section:nth-child(3n), .section:nth-child(3n) {
  transition-delay: 900ms;
}
section:nth-child(4n), .section:nth-child(4n) {
  transition-delay: 1200ms;
}
section:nth-child(5n), .section:nth-child(5n) {
  transition-delay: 1500ms;
}
section:nth-child(6n), .section:nth-child(6n) {
  transition-delay: 1800ms;
}
section:nth-child(7n), .section:nth-child(7n) {
  transition-delay: 2100ms;
}
section:nth-child(8n), .section:nth-child(8n) {
  transition-delay: 2400ms;
}
section.maf-h-c .header, .section.maf-h-c .header {
  padding: 0 !important;
}
section.maf-h-c .header .maf-content, .section.maf-h-c .header .maf-content {
  border: 0;
  padding: 0 !important;
}
section.maf-f-c .footer, .section.maf-f-c .footer {
  padding: 0 !important;
}
section.maf-f-c .footer .maf-content, .section.maf-f-c .footer .maf-content {
  display: none;
  padding: 0 !important;
}

.header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1188px;
  padding: 0 0 0 0;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 960px) {
  .header {
    padding: 0 10px 0 10px;
  }
}
.header .maf-content {
  align-items: center;
  padding: 60px 10px 0 10px;
  text-align: center;
}
@media only screen and (min-width: 960px) {
  .header .maf-content {
    padding: 80px 10px 0 10px;
  }
}
.header .maf-content > *:last-child {
  margin-bottom: 0;
}

.footer {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1188px;
  padding: 0 5px 40px 5px;
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .footer {
    padding: 0 10px 80px 10px;
  }
}
.footer .maf-content {
  padding: 0 5px;
}
@media only screen and (min-width: 576px) {
  .footer .maf-content {
    padding: 0 10px;
  }
}

.is-nav-dock {
  height: 100px;
  transition: height 350ms ease-out;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .is-nav-dock {
    height: 138px;
  }
}
.is-nav-dock.hero-under-nav {
  left: 0;
  position: absolute;
  top: 0;
}
div#page-con.squish .is-nav-dock {
  height: 100px;
}

#sub-nav-dock {
  height: 87px;
  width: 100%;
}
#sub-nav-dock #sub-nav {
  background-color: rgb(230, 230, 230);
  height: 87px;
  position: relative;
  transition: all 350ms ease-out;
}
#sub-nav-dock #sub-nav #sub-logo {
  align-items: center;
  color: white;
  display: flex;
  height: 40%;
  left: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#sub-nav-dock #sub-nav #sub-logo a {
  display: inline-block;
  height: 100%;
  padding-right: 10px;
}
#sub-nav-dock #sub-nav #sub-logo a img {
  height: 100%;
  transition: height 350ms ease-out;
  width: auto;
}
#sub-nav-dock #sub-nav #sub-logo span {
  display: inline-block;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}
@media only screen and (min-width: 1152px) {
  #sub-nav-dock #sub-nav #sub-logo span {
    font-size: 2.4rem;
    margin-top: 6px;
  }
}
@media only screen and (min-width: 1152px) {
  #sub-nav-dock #sub-nav #sub-logo {
    height: 60%;
  }
}
#sub-nav-dock #sub-nav #ticket-link {
  height: 30px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  transition: height 350ms ease-out;
}
#sub-nav-dock #sub-nav #ticket-link a.button {
  background-color: white;
  border-color: white;
  color: rgb(230, 230, 230);
  font-size: 1.8rem;
  height: 100%;
  transition: all 350ms ease-out;
}
#sub-nav-dock #sub-nav #ticket-link a.button:hover {
  color: rgb(222, 37, 149);
  box-shadow: 6px 6px 4px 0 rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 1024px) {
  #sub-nav-dock #sub-nav #ticket-link {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (min-width: 1152px) {
  #sub-nav-dock #sub-nav #ticket-link {
    height: 57px;
  }
  #sub-nav-dock #sub-nav #ticket-link a.button {
    font-size: 2.2rem;
  }
}
#sub-nav-dock #sub-nav #sub {
  right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#sub-nav-dock #sub-nav #sub .is-burger {
  height: 40px;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
}
#sub-nav-dock #sub-nav #sub.is-mobile {
  height: 100%;
}
#sub-nav-dock #sub-nav #sub.is-mobile .is-burger {
  display: none;
  visibility: hidden;
}
#sub-nav-dock #sub-nav #sub.is-mobile.maf-3 .links {
  display: none;
}
#sub-nav-dock #sub-nav #sub.is-mobile.maf-3 .links.active {
  display: none;
}
#sub-nav-dock #sub-nav #sub.is-web .is-burger {
  display: none;
}
#sub-nav-dock #sub-nav #sub.is-web > div .links > ul > li > a {
  text-transform: none;
}
@media only screen and (min-width: 1152px) {
  #sub-nav-dock #sub-nav #sub.is-web > div .links > ul > li > a {
    text-transform: uppercase;
  }
}
#sub-nav-dock #sub-nav.stuck {
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.2);
  height: 50px;
  left: 0;
  position: fixed;
  top: 50px;
  z-index: 100;
}
#sub-nav-dock #sub-nav.stuck #sub-logo span {
  font-size: 1.8rem;
  margin: 0;
}
#sub-nav-dock #sub-nav.stuck #ticket-link {
  height: 35px;
}

.content {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 100%;
}

.row {
  align-items: stretch;
  align-content: stretch;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 1188px;
  position: relative;
  width: 100%;
  padding: 0 10px;
}
@media only screen and (min-width: 576px) {
  .row {
    padding: 0 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.row.nested {
  padding: 0;
}
@media only screen and (min-width: 576px) {
  .row .header {
    padding-left: 0;
    padding-right: 0;
  }
}

.column {
  align-items: center;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  position: relative;
  padding: 60px 10px;
}
@media only screen and (min-width: 960px) {
  .column {
    padding: 80px 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .column {
    min-height: 0;
  }
}
.column.hide-mobile {
  display: none;
}
@media only screen and (min-width: 768px) {
  .column.hide-mobile {
    display: flex;
  }
}
.column.nested {
  margin: 0;
  padding: 0;
}

.maf-content {
  align-items: flex-start;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  z-index: 1;
  padding: 0;
}
.maf-content span[style*="background-color:"] {
  padding: 0.2em 0.3em;
}
.maf-content > *:first-child {
  margin-top: 0;
}
.maf-content > *:last-child {
  margin-bottom: 0;
}
.maf-content > *:last-child > *:last-child {
  margin-bottom: 0;
}
.maf-content.push-last {
  height: 100%;
}
.maf-content.push-last > *:last-child {
  margin-top: auto;
}

.maf-header {
  padding: 60px 10px;
  padding-bottom: 0;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .maf-header {
    padding: 80px 10px;
    padding-bottom: 0;
  }
}
.maf-header > *:last-child {
  margin-bottom: 0;
}
.maf-header > *:last-child > *:last-child {
  margin-bottom: 0;
}

.fifth {
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .fifth {
    width: 20%;
  }
}

.quarter {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .quarter {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .quarter {
    width: 25%;
  }
}

.third {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .third {
    width: 33.333%;
  }
}

.half {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .half {
    width: 50%;
  }
}

.two-thirds {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .two-thirds {
    width: 66.666%;
  }
}

.three-quarters {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .three-quarters {
    width: 75%;
  }
}

.whole {
  align-items: center;
  text-align: center;
  width: 100%;
}

.col-7 {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .col-7 {
    width: 58.333%;
  }
}

.col-5 {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .col-5 {
    width: 41.666%;
  }
}

.maf-bg-overlay, .maf-background, .maf-background-image, .image-overlay, .maf-sprite-layer {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100% + 1px);
  left: 50%;
  overflow: hidden;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
  top: 50%;
  width: calc(100% + 2px);
  z-index: 0;
}
.maf-bg-overlay .texture, .maf-background .texture, .maf-background-image .texture, .image-overlay .texture, .maf-sprite-layer .texture {
  height: 100%;
  width: 100%;
}
.maf-bg-overlay.is-texture, .maf-background.is-texture, .maf-background-image.is-texture, .image-overlay.is-texture, .maf-sprite-layer.is-texture {
  mix-blend-mode: overlay;
  opacity: 0.2;
}
.maf-bg-overlay.is-texture.screen, .maf-background.is-texture.screen, .maf-background-image.is-texture.screen, .image-overlay.is-texture.screen, .maf-sprite-layer.is-texture.screen {
  mix-blend-mode: screen;
  opacity: 0.8;
}

.maf-sprite-layer {
  height: 100%;
  left: 0;
  transform: none;
  top: 0;
  width: 100%;
}

.maf-background-image {
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transform-origin: bottom center;
}

.maf-c-f::after,
.maf-c-f::before {
  content: " ";
  display: table;
}

.maf-c-f::after {
  clear: both;
}

.bg-colour-page {
  background-color: #f4f4f4;
}

img {
  height: auto;
  line-height: 0;
  max-width: 100%;
  vertical-align: middle;
}

img.maxh {
  max-height: 100%;
  max-width: none;
  width: auto;
}

img.fluid {
  height: auto;
  max-width: none;
  width: 100%;
}

img.al-centre {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.al-right {
  display: block;
  margin-left: auto;
  margin-right: 0;
}

img.al-left {
  display: block;
  margin-left: 0;
  margin-right: auto;
}

figure {
  align-items: flex-start;
  align-content: flex-start;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  position: relative;
  width: auto;
}
figure figcaption {
  background-color: rgba(51, 56, 76, 0.8);
  bottom: 0;
  color: white;
  display: inline-block;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  left: 0;
  padding: 12px 20px;
  position: absolute;
  width: 100%;
}

h1, h2, h3, h4, h5, h6, p, a, div, li, span, address, blockquote {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, a:visited {
  color: rgb(198, 20, 127);
  line-height: 1.4;
  text-decoration: none;
  transition: all 350ms ease-out;
}

a:hover, a:focus, a:active {
  opacity: 0.8;
  text-decoration: underline;
}

h1, .h1-style, h2, .h2-style, h3, .h3-style, h4, .h4-style, h5, .h5-style, h6.h6-style, p, .p-style, address, blockquote {
  margin: 0 0 20px 0;
  width: 100%;
}
h1.bold, .h1-style.bold, h2.bold, .h2-style.bold, h3.bold, .h3-style.bold, h4.bold, .h4-style.bold, h5.bold, .h5-style.bold, h6.h6-style.bold, p.bold, .p-style.bold, address.bold, blockquote.bold {
  font-weight: 700;
}
h1.normal, .h1-style.normal, h2.normal, .h2-style.normal, h3.normal, .h3-style.normal, h4.normal, .h4-style.normal, h5.normal, .h5-style.normal, h6.h6-style.normal, p.normal, .p-style.normal, address.normal, blockquote.normal {
  font-weight: 400;
}

address {
  font-style: normal;
  font-weight: inherit;
  line-height: 1.4;
}

time {
  font-feature-settings: "lnum" 1;
}

h1, .h1-style, h2, .h2-style, h3, .h3-style, h4, .h4-style, h5, .h5-style, h6.h6-style {
  font-feature-settings: "lnum" 1;
  font-family: Georgia, Times, Times New Roman, serif;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.8em;
}

h1, .h1-style {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 0.8em;
  text-transform: none;
}

h2, .h2-style {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 2.8rem;
}

h3, .h3-style {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 2.6rem;
}

h4, .h4-style {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 2.2rem;
}

h5, .h5-style {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 2rem;
}

h6, .h6-style {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 2.8rem;
}

p, .p-style, li, blockquote, address, .body-text {
  font-feature-settings: "lnum" 1;
  line-height: 1.4;
}
p img.al-left, .p-style img.al-left, li img.al-left, blockquote img.al-left, address img.al-left, .body-text img.al-left {
  float: left;
  margin: 0 5px 5px 0;
}
p img.al-right, .p-style img.al-right, li img.al-right, blockquote img.al-right, address img.al-right, .body-text img.al-right {
  float: right;
  margin: 0 0 5px 5px;
}

.al-left {
  margin-right: auto;
  text-align: left !important;
}

.al-right {
  margin-left: auto;
  text-align: right !important;
}

.al-centre, .al-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center !important;
}

strong {
  font-weight: 700;
}

sup {
  font-size: 0.6em;
}

sub {
  font-size: 0.5em;
  vertical-align: baseline;
}

hr {
  background-color: rgb(234, 139, 73);
  border: 0;
  display: inline-block;
  height: 1px;
  margin: 10px auto 20px auto;
  width: 100%;
}
hr.heavy {
  margin: 20px 0 40px 0;
  border-top: 5px solid rgb(51, 51, 51);
}
hr.divider {
  background-color: transparent;
  background-image: url("/images/Layout/divider.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 22px;
  max-width: 1400px;
}

.drop-caps > *:first-child::first-letter {
  float: left;
  font-size: 6em;
  font-weight: 700;
  line-height: 1;
  margin-right: 0.1em;
}

.maf-content ul, .maf-content ol {
  list-style-position: outside;
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
  width: 100%;
}
.maf-content ul li, .maf-content ol li {
  margin: 0 0 20px 0;
}
.maf-content ul li > p, .maf-content ol li > p {
  margin: 0;
}
.maf-content ul {
  list-style-type: none;
}
.maf-content ul li {
  margin-bottom: 5px;
  position: relative;
}
.maf-content ul li::before {
  background-color: rgb(198, 20, 127);
  border-radius: 50%;
  content: "";
  color: inherit;
  display: inline-block;
  font-weight: 600;
  height: 5px;
  left: -17px;
  position: absolute;
  top: 0.5em;
  width: 5px;
}
.maf-content ul li ul {
  margin-top: 12px;
}
.maf-content ol {
  counter-reset: maf-ol-counter;
  list-style: none;
  padding-left: 30px;
  position: relative;
}
.maf-content ol li {
  counter-increment: maf-ol-counter;
  margin-bottom: 5px;
  position: relative;
}
.maf-content ol li::before {
  content: counter(maf-ol-counter) ".";
  color: rgb(198, 20, 127);
  display: inline-block;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 0.9em;
  font-weight: 700;
  height: 30px;
  left: -1.6em;
  line-height: 1;
  margin-right: 0.8rem;
  opacity: 1;
  position: absolute;
  top: 0.2em;
  transform: translateY(0.1em);
  vertical-align: top;
  width: 0.9em;
}

.is-faq dl {
  border-bottom: 1px solid rgb(234, 139, 73);
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  width: 100%;
}
.is-faq dl dt {
  background-color: transparent;
  border-top: 1px solid rgb(234, 139, 73);
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: 500;
  padding: 20px 0 20px 25px;
  position: relative;
  transition: background-color 350ms ease-out;
  width: 100%;
}
.is-faq dl dt::before {
  border-right: 2px solid rgb(127, 127, 127);
  border-bottom: 2px solid rgb(127, 127, 127);
  content: "";
  display: inline-block;
  height: 8px;
  left: 4px;
  position: absolute;
  top: 27px;
  transform: rotate(45deg);
  transform-origin: center;
  transition: all 350ms ease-out;
  width: 8px;
}
.is-faq dl dt:hover::before {
  top: 32px;
}
.is-faq dl dt:first-child {
  border-top: 0;
}
.is-faq dl dt.open::before {
  top: 30px;
  transform: rotate(45deg) scaleX(-1) scaleY(-1);
}
.is-faq dl dd {
  display: none;
  margin: 0 0 5px 0;
  padding: 0 0 16px 24px;
  width: 100%;
}
.is-faq dl dd > * {
  line-height: 1.6;
}
.is-faq dl dd > *:last-child {
  margin-bottom: 0;
}

blockquote {
  border-left: 5px solid rgb(198, 20, 127);
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 400;
  margin: 20px 0 40px;
  padding: 5px 0 5px 4%;
  position: relative;
  /*&::before {
    background-color: $colour-1;
    //background-image: url('/images/Layout/quote.png');
    //background-repeat: no-repeat;
    //background-size: 100%;
    //color: inherit;
    content: '';//open-quote;//
    display: inline-block;
    height: calc( 100% - 0.6em);
    left: 20px;
    //line-height: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
  }
  &::after {
    bottom: -0.25em;
    color: inherit;
    display: none;
    content: close-quote;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    right: 0;
  }*/
}
blockquote p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.4 !important;
  /*&:nth-of-type(2){
    color: $text-body-dark;
    font-family: $font-stack-body;
    font-size: 1.4rem;
  	font-style: italic;
    font-weight: 400;
    margin-top: 20px;
    text-transform: uppercase;
  }*/
}
blockquote p.small-text {
  color: rgb(51, 51, 51);
  font-size: 1.8rem !important;
  font-weight: 700 !important;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote.heavy {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 4rem;
  margin: auto 0 !important;
}
@media only screen and (min-width: 576px) {
  blockquote.heavy {
    font-size: 6rem;
  }
}
blockquote.heavy p {
  font-style: normal;
  line-height: 0.9;
  text-transform: uppercase;
}
blockquote.heavy p:last-child {
  color: rgb(127, 127, 127);
  font-size: 2.4rem;
}
blockquote + blockquote {
  margin-top: 0;
}

table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
}
table tr {
  margin: 0;
}
table tr td {
  padding: 5px;
  vertical-align: top;
}

form {
  transition: all 350ms ease-out;
  width: 100%;
}
form.hide {
  filter: blur(5px) !important;
  height: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  transform: scale(0) !important;
  width: 0 !important;
}

input, textarea {
  background-color: transparent;
  border: 0;
  border: 1px solid rgb(222, 37, 149);
  color: rgb(51, 51, 51);
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-feature-settings: "lnum" 1;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: normal;
  margin: 0;
  outline: none;
  outline-color: transparent;
  padding: 10px 15px;
  transition: all 350ms ease-out;
  width: 100%;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgb(222, 37, 149);
  font-family: "Open Sans", sans-serif;
}
input::placeholder, textarea::placeholder {
  color: rgb(222, 37, 149);
  font-family: "Open Sans", sans-serif;
}
input:focus, textarea:focus {
  background-color: rgba(255, 255, 255, 0.1);
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0.5;
}
input:focus::placeholder, textarea:focus::placeholder {
  opacity: 0.5;
}

textarea {
  resize: none;
}

label {
  display: inline-block;
  padding: 0;
}

select {
  margin-bottom: 1.2em;
  outline-color: rgb(222, 37, 149);
}

input[type=submit],
input[type=reset],
button.maf-button {
  align-items: center;
  align-self: flex-start;
  background: none;
  background-color: rgb(222, 37, 149);
  background-size: 100% 100%;
  border: 1px solid rgb(222, 37, 149);
  border-radius: 0;
  box-shadow: none;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  opacity: 1;
  outline: transparent;
  padding: 7px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 350ms ease-out;
  width: auto;
}
input[type=submit]:hover, input[type=submit]:focus,
input[type=reset]:hover,
input[type=reset]:focus,
button.maf-button:hover,
button.maf-button:focus {
  background-color: transparent;
  color: rgb(222, 37, 149);
  opacity: 1;
  text-decoration: none;
}

input[type=radio], input[type=checkbox] {
  display: inline;
  margin: 0 5px 0 0;
  vertical-align: middle;
  width: auto;
}

.control-group {
  margin-bottom: 30px;
}

.checkbox {
  align-items: flex-start;
  display: flex;
}
.checkbox .pretty-check {
  display: inline-block;
  flex: 0 0 auto;
  height: 20px;
  position: relative;
  margin: 2px;
  width: 20px;
}
.checkbox .pretty-check label {
  border-radius: 0;
  border: 2px solid rgb(222, 37, 149);
  cursor: pointer;
  height: 20px;
  left: 0;
  margin: 0;
  min-height: 0;
  outline: none;
  position: absolute;
  width: 20px;
  top: 1px;
}
.checkbox .pretty-check label:after {
  background: transparent;
  border: 2px solid #f4f4f4;
  border-top: none;
  border-right: none;
  content: "";
  height: 4px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 4px;
  transition: all 350ms ease-out;
  transform: rotate(-50deg);
  width: 10px;
}
.checkbox .pretty-check label:focus {
  background: rgba(222, 37, 149, 0.4);
}
.checkbox .pretty-check label:focus::after {
  opacity: 0.9;
}
.checkbox .pretty-check input[type=checkbox] {
  left: -100vw;
  position: absolute;
  visibility: hidden;
  z-index: 0;
}
.checkbox .pretty-check input[type=checkbox]:checked + label {
  background: rgb(222, 37, 149);
}
.checkbox .pretty-check input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.checkbox .pretty-check input[type=checkbox]:checked + label:focus {
  background: rgba(222, 37, 149, 0.4);
}
.checkbox .pretty-check input[type=checkbox]:checked + label:focus::after {
  opacity: 0.9;
}
.checkbox span {
  cursor: pointer;
  display: inline-block;
  padding-left: 5px;
  text-align: left;
}
.checkbox:hover .pretty-check label {
  background: rgba(222, 37, 149, 0.4);
}
.checkbox:hover .pretty-check label::after {
  opacity: 0.9;
}

.radio {
  align-items: center;
  cursor: pointer;
  display: flex;
  margin-bottom: 20px;
  width: 100%;
}
.radio .pretty-radio {
  display: inline-block;
  position: relative;
  margin: 0;
  width: 40px;
}
.radio .pretty-radio label {
  border-radius: 50%;
  border: 10px solid rgb(222, 37, 149);
  cursor: pointer;
  height: 40px;
  left: 0;
  margin: 0;
  position: absolute;
  transition: background-color 350ms ease-out;
  width: 40px;
  top: 1px;
}
.radio .pretty-radio label:after {
  background: transparent;
  border: 2px solid rgb(222, 37, 149);
  border-top: none;
  border-right: none;
  content: "";
  display: none;
  height: 4px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transition: all 350ms ease-out;
  transform: rotate(-50deg);
  width: 8px;
}
.radio .pretty-radio label:hover {
  background: rgb(39, 69, 122);
}
.radio .pretty-radio label:hover::after {
  opacity: 0.7;
}
.radio .pretty-radio input[type=radio] {
  height: 40px;
  visibility: hidden;
  width: 40px;
}
.radio .pretty-radio input[type=radio]:checked + label {
  background: rgb(39, 69, 122);
}
.radio .pretty-radio input[type=radio]:checked + label:after {
  opacity: 1;
}
.radio span {
  margin-bottom: 8px;
  padding-left: 10px;
  text-align: left;
  width: calc(100% - 40px);
}
.radio:hover .pretty-radio label {
  background: rgb(39, 69, 122);
}

.select {
  background-color: transparent;
  border: 1px solid rgb(222, 37, 149);
  cursor: pointer;
  height: 44px;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 0;
}
.select.short {
  max-width: 150px;
}
.select::before {
  background-color: transparent;
  border-left: 1px solid rgb(224, 223, 224);
  content: "";
  display: none;
  height: 100%;
  position: absolute;
  right: 0;
  transition: all 350ms ease-out;
  top: 0;
  width: 41px;
  z-index: -1;
}
.select::after {
  background-color: transparent;
  border: 1px solid rgb(222, 37, 149);
  border-left: 0;
  border-top: 0;
  content: "";
  height: 12px;
  position: absolute;
  right: 10px;
  transform: translate(-50%, -60%) rotate(45deg);
  transform-origin: center;
  transition: all 350ms ease-out;
  top: 45%;
  width: 12px;
  z-index: -1;
}
.select select {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: rgb(51, 51, 51);
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  height: 100%;
  outline: transparent;
  padding: 10px;
  transition: all 350ms ease-out;
  width: calc(100% + 25px);
  z-index: 1;
}
.select select option {
  font-family: "Open Sans", sans-serif;
}
.select:hover select {
  background-color: rgba(255, 255, 255, 0.1);
}
.select:hover::after {
  top: 50%;
}

.spinner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 102px;
}
.spinner label {
  display: inline-block;
  flex: 0 0 auto;
  width: 100%;
}
.spinner input[type=number]::-webkit-inner-spin-button,
.spinner input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.spinner input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
.spinner input {
  border: 1px solid rgb(51, 51, 51);
  border-right: 0;
  color: rgb(51, 51, 51);
  display: inline-block;
  flex: 0 0 auto;
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  font-style: normal;
  height: 54px;
  line-height: 1.65;
  margin: 0;
  padding: 20px;
  text-align: center;
  width: 74px;
}
.spinner input:focus {
  outline: 0;
}
.spinner .quantity-nav {
  display: inline-block;
  flex: 0 0 auto;
  position: relative;
  height: 54px;
  width: 27px;
}
.spinner .quantity-button {
  align-items: center;
  border: 1px solid rgb(51, 51, 51);
  color: rgb(51, 51, 51);
  cursor: pointer;
  display: flex;
  font-size: 2rem;
  font-family: "Open Sans", sans-serif;
  height: 27px;
  justify-content: center;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 27px;
}
.spinner .quantity-button > div {
  transition: all 350ms ease-out;
}
.spinner .quantity-button > div:hover {
  background-color: rgb(222, 37, 149);
}
.spinner .quantity-button.quantity-up {
  border-bottom: 0;
}

.spinner-2 {
  align-items: center;
  display: flex;
  flex-direction: row;
  width: auto;
}
.spinner-2 label {
  display: inline-block;
  flex: 0 0 auto;
  width: 100%;
}
.spinner-2 input[type=number]::-webkit-inner-spin-button,
.spinner-2 input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.spinner-2 input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
.spinner-2 input {
  border: 1px solid rgb(51, 51, 51);
  color: rgb(51, 51, 51);
  display: inline-block;
  flex: 0 0 auto;
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  margin: 0 10px;
  padding: 4px;
  text-align: center;
  width: 40px;
}
.spinner-2 input:focus {
  outline: 0;
}
.spinner-2 .quantity-button {
  background-color: rgb(222, 37, 149);
  border: 2px solid rgb(222, 37, 149);
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  height: 20px;
  justify-content: center;
  outline: none;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 20px;
}
.spinner-2 .quantity-button > div {
  transition: all 350ms ease-out;
}
.spinner-2 .quantity-button > div:hover {
  background-color: rgb(222, 37, 149);
}
.spinner-2 .quantity-button.quantity-up:before, .spinner-2 .quantity-button.quantity-up:after {
  background-color: white;
  content: "";
  display: inline-block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
}
.spinner-2 .quantity-button.quantity-up:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.spinner-2 .quantity-button.quantity-down:before {
  background-color: white;
  content: "";
  display: inline-block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
}
.spinner-2 .quantity-button:hover, .spinner-2 .quantity-button:focus {
  background-color: transparent;
}
.spinner-2 .quantity-button:hover:before, .spinner-2 .quantity-button:hover:after, .spinner-2 .quantity-button:focus:before, .spinner-2 .quantity-button:focus:after {
  background-color: rgb(222, 37, 149);
}

.g-recap-con {
  min-height: 80px;
  overflow: hidden;
  position: relative;
}
.g-recap-con .g-recaptcha {
  left: 0;
  position: absolute;
  top: 0;
}

.maf-form {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}
.maf-form form, .maf-form .form {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -10px;
  width: calc(100% + 20px);
}
.maf-form form .column.half, .maf-form .form .column.half {
  align-items: flex-start;
  text-align: left;
}
.maf-form form .maf-input, .maf-form .form .maf-input {
  display: inline-block;
  flex: 0 0 auto;
  margin-bottom: 20px;
  padding: 0 10px;
  position: relative;
  text-align: left;
  width: 100%;
}
.maf-form form .maf-input i, .maf-form .form .maf-input i {
  color: white;
  display: none;
  position: absolute;
  right: 8px;
  top: 8px;
}
.maf-form form .maf-input.half, .maf-form .form .maf-input.half {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .maf-form form .maf-input.half, .maf-form .form .maf-input.half {
    flex-basis: 50%;
  }
}
.maf-form form .maf-input.centre, .maf-form form .maf-input.center, .maf-form .form .maf-input.centre, .maf-form .form .maf-input.center {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.maf-form form .maf-input.multiple input, .maf-form .form .maf-input.multiple input {
  margin-bottom: 15px;
}
.maf-form form .maf-input.multiple input:last-child, .maf-form .form .maf-input.multiple input:last-child {
  margin-bottom: 0;
}
.maf-form form .maf-input.actions input + input, .maf-form .form .maf-input.actions input + input {
  margin-left: 20px;
}
.maf-form form label, .maf-form .form label {
  font-size: 1.8rem;
  margin: 10px 0 0 0;
  min-height: 28px;
  padding: 0;
}
.maf-form form .cap-con, .maf-form .form .cap-con {
  flex-wrap: wrap;
}
.maf-form form .cap-con .g-recap-con, .maf-form .form .cap-con .g-recap-con {
  margin: 0 auto;
  display: inline-block;
  width: 302px;
}
.maf-form .a-f-resp {
  opacity: 0;
  position: absolute;
  transition: opacity 700ms ease-out 700ms;
  width: 100%;
}
.maf-form .a-f-resp.show {
  opacity: 1;
  position: static;
}
.maf-form .a-f-resp h3 {
  margin: 0;
}

@keyframes button-anim {
  0% {
    height: 0;
    opacity: 0;
    width: 0;
  }
  20% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  99% {
    height: 600px;
    opacity: 0;
    width: 600px;
  }
  100% {
    height: 0;
    opacity: 0;
    width: 0;
  }
}
@keyframes button-arrow {
  0% {
    right: 0;
  }
  30% {
    right: 5px;
  }
  60% {
    right: 0;
  }
}
.button, .button:visited, .button:focus, .button:active {
  align-items: center;
  background-color: transparent;
  border: 1px solid rgb(51, 51, 51);
  border-radius: 0;
  color: rgb(51, 51, 51);
  cursor: pointer;
  display: inline-flex;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  justify-content: center;
  margin-right: 10px;
  opacity: 1;
  outline: transparent;
  line-height: 1;
  margin-top: 15px;
  padding: 15px 33px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 350ms ease-out;
  width: auto;
  z-index: 1;
}
.button::after, .button:visited::after, .button:focus::after, .button:active::after {
  border-top: 1px solid rgb(51, 51, 51);
  bottom: 0;
  content: "";
  display: none;
  height: 0;
  left: 50%;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  text-decoration: none;
  transform: translate(-50%, 0);
  transform-origin: center;
  transition: all 350ms ease-out;
  width: 100%;
  z-index: 0;
}
.button:hover, .button:focus, .button.active, .button:visited:hover, .button:visited:focus, .button:visited.active, .button:focus:hover, .button:focus:focus, .button:focus.active, .button:active:hover, .button:active:focus, .button:active.active {
  background-color: rgb(51, 51, 51);
  color: white;
  opacity: 1;
}
.button.tri, .button:visited.tri, .button:focus.tri, .button:active.tri {
  padding: 9px 40px 9px 18px;
}
.button.tri::after, .button:visited.tri::after, .button:focus.tri::after, .button:active.tri::after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid white;
  content: "";
  display: inline-block;
  height: 0;
  position: absolute;
  right: 20px;
  transform: translate(0, -50%);
  transition: all 350ms ease-out;
  top: 50%;
  width: 0;
}
.button.tri:hover::after, .button:visited.tri:hover::after, .button:focus.tri:hover::after, .button:active.tri:hover::after {
  right: 12px;
  transform: translate(0, -50%) scale(1.2);
}
.button.chevron::before, .button.chevron::after, .button:visited.chevron::before, .button:visited.chevron::after, .button:focus.chevron::before, .button:focus.chevron::after, .button:active.chevron::before, .button:active.chevron::after {
  background-color: rgb(51, 51, 51);
  content: "";
  display: inline-block;
  left: 50%;
  position: absolute;
  height: 2px;
  width: 40%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: right center;
  transition: transform 350ms ease-out;
}
.button.chevron::after, .button:visited.chevron::after, .button:focus.chevron::after, .button:active.chevron::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.button.chevron:hover::before, .button:visited.chevron:hover::before, .button:focus.chevron:hover::before, .button:active.chevron:hover::before {
  transform: translate(-50%, -50%) rotate(30deg);
}
.button.chevron:hover::after, .button:visited.chevron:hover::after, .button:focus.chevron:hover::after, .button:active.chevron:hover::after {
  transform: translate(-50%, -50%) rotate(-30deg);
}

.al-centre {
  text-align: center;
}
.al-centre img {
  display: inline-block;
}

.al-left {
  text-align: left;
}
.al-left img {
  display: inline-block;
}

.al-right {
  text-align: right;
}
.al-right img {
  display: inline-block;
}

div.al-right, img.al-right {
  margin-left: auto;
  margin-right: 0;
}
div.al-left, img.al-left {
  margin-left: 0;
  margin-right: auto;
}
div.al-centre, img.al-centre {
  margin-left: auto;
  margin-right: auto;
}

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

.maf-nps {
  margin-bottom: 0;
}

.snap-centre {
  transform: translate(-50%, -50%);
}

.snap-centre-y {
  transform: translate(0, -50%);
}

.go-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.no-pad {
  padding: 0 !important;
}

.is-link, .is-home-link, .nav-filter-link {
  cursor: pointer;
}

.is-toggle-group .toggle-click {
  background: none;
  color: rgb(51, 51, 51);
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  outline: none;
  padding: 5px 20px 5px 10px;
  position: relative;
  transition: all 350ms ease-out;
  text-align: left;
  width: 100%;
}
.is-toggle-group .toggle-click i {
  color: rgb(222, 37, 149);
  display: inline-block;
  height: 35px;
  font-size: 3rem;
  opacity: 1;
  position: relative;
  vertical-align: middle;
  width: 35px;
}
.is-toggle-group .toggle-click i::before {
  display: inline-block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -60%) rotate(0deg);
  transform-origin: center;
  transition: transform 400ms ease-out;
}
.is-toggle-group .toggle-click.active, .is-toggle-group .toggle-click:hover {
  background-color: rgb(222, 37, 149);
  color: white;
}
.is-toggle-group .toggle-click.active i, .is-toggle-group .toggle-click:hover i {
  color: white;
}
.is-toggle-group .toggle-click.active i::before, .is-toggle-group .toggle-click:hover i::before {
  transition: transform 300ms ease-out;
  transform: translate(-50%, -60%) rotate(180deg);
}
.is-toggle-group .toggle-group {
  max-height: 0;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.95, 0.55, 0.05, 0.445);
}
.is-toggle-group .toggle-group.is-on {
  max-height: 2000px;
  transition: all 600ms ease-out;
}
.is-toggle-group .toggle-group.is-on a:first-child {
  margin-top: 5px;
}

.is-modal {
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 9999;
}
.is-modal #content-container {
  background-color: rgb(39, 69, 122);
  border-radius: 3px 0 3px 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
}
.is-modal #content-container #close {
  background-color: rgb(39, 69, 122);
  border-radius: 3px 3px 0 0;
  color: rgb(198, 20, 127);
  cursor: pointer;
  padding: 5px 7px 3px 7px;
  position: absolute;
  font-size: 2rem;
  right: 0;
  top: -27px;
}
@media only screen and (min-width: 960px) {
  .is-modal #content-container {
    width: 60vw;
  }
}
@media only screen and (min-width: 1200px) {
  .is-modal #content-container {
    width: 35vw;
  }
}

.is-portal {
  align-content: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 35px;
}
.is-portal .portal-item {
  padding: 35px;
  flex: 0 0 100%;
}
@media only screen and (min-width: 576px) {
  .is-portal .portal-item {
    flex-basis: 50%;
  }
}
@media only screen and (min-width: 1200px) {
  .is-portal .portal-item {
    flex-basis: 33.333%;
  }
}
.is-portal .portal-item .portal-item-inner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.is-portal .portal-item .portal-item-inner::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.is-portal .portal-item .portal-item-inner .portal-item-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.meet-your-maker {
  text-decoration: none !important;
  transition: all 1000ms ease-out !important;
}
.meet-your-maker:hover {
  filter: blur(5px);
  text-decoration: none !important;
}

.maf-msg {
  align-items: center;
  display: inline-flex;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  justify-content: center;
  margin-bottom: 10px;
  padding: 10px 20px;
  text-align: center;
  width: 100%;
}
.maf-msg i, .maf-msg span {
  vertical-align: middle;
}
.maf-msg i {
  margin: 5px 5px 0 0;
}
.maf-msg.error-msg {
  background-color: rgba(255, 200, 200, 0.1);
  border: 1px solid rgb(222, 37, 149);
  color: rgb(222, 37, 149);
}
.maf-msg.success-msg {
  background-color: rgb(206, 240, 206);
  border: 1px solid rgb(30, 60, 30);
  color: rgb(30, 60, 30);
}
.maf-msg.input-msg {
  border-radius: 0 0 5px 5px;
  font-size: 1.4rem;
  margin: 0;
}

#http-error {
  background-color: transparent;
  height: 100vh;
  padding: 0;
}
#http-error.e404 {
  padding-top: 138px;
}
#http-error.e404 h1 {
  color: rgb(51, 51, 51);
  margin: 0 0 30px 0;
}
#http-error.e404 p {
  color: rgb(51, 51, 51);
  font-size: 2.5rem;
  margin: 0 auto 30px auto;
  width: 60%;
}
#http-error.e404 #error {
  margin: 0 auto;
  text-align: center;
  width: 80%;
}
#http-error.e404 .error-icon {
  display: block;
  margin: 0 auto;
  width: 25%;
}
#http-error.e404 .error-icon .a {
  fill: rgb(51, 51, 51);
}
#http-error.e404 .button {
  color: rgb(51, 51, 51);
  border-color: rgb(51, 51, 51);
  border-width: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  margin: 0 auto;
  padding: 5px 20px;
  text-transform: uppercase;
  width: auto;
}
#http-error.e404 .button:hover {
  background-color: rgb(51, 51, 51);
  color: white;
}

pre {
  background-color: rgb(250, 250, 220);
  border: 1px solid rgb(22, 22, 20);
  border-radius: 5px;
  color: rgb(22, 22, 22);
  font-size: 1.6rem;
  margin: 1em;
  overflow: scroll;
  padding: 1em;
  text-align: left;
  width: calc(100% - 3em);
  z-index: 9999999;
}
pre.dispell {
  bottom: 0;
  left: 0.5em;
  max-height: 50vh;
  position: fixed;
}

#print-container {
  margin: auto;
  padding-top: 30px;
  width: 700px;
}
#print-container h1, #print-container h2, #print-container h3 {
  color: rgb(51, 51, 51);
  text-transform: capitalize;
}
#print-container #header {
  align-items: flex-end;
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#print-container #header h1 {
  font-family: "Libre Franklin", sans-serif;
  font-size: 4rem;
  flex: 1 1 50%;
  margin: 0;
  width: 100%;
}
#print-container #header #left-col {
  flex: 1 1 50%;
}
#print-container #header #left-col img {
  max-height: 100px;
  filter: grayscale(100%);
}
#print-container #header #right-col {
  align-items: flex-end;
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
}
#print-container #header #right-col > * {
  display: inline-block;
}
#print-container #header #right-col img {
  vertical-align: middle;
}
#print-container #header #right-col .print {
  border: 2px solid black;
  border-radius: 40px;
  color: black;
  margin-top: auto;
  opacity: 0.5;
  padding: 10px;
}
#print-container #header #right-col .print img {
  height: 20px;
  width: auto;
}
#print-container #header #right-col .print:hover {
  opacity: 1;
  text-decoration: none;
}
@media print {
  #print-container #header #right-col .print {
    display: none;
  }
}
#print-container #header #right-col .logo {
  height: auto;
  width: 230px;
}
#print-container h2 {
  font-family: "Libre Franklin", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 15px;
}
#print-container .events .event {
  padding: 10px 5px;
}
#print-container .events .event h3 {
  font-family: "Libre Franklin", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
}
#print-container .events .event p {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
}
#print-container .events .event p.date {
  font-weight: 500;
}
#print-container .events .event:nth-child(odd) {
  background-color: rgba(100, 100, 100, 0.05);
}

#next-month-clear {
  background-color: rgb(198, 20, 127);
  border: 3px solid rgb(51, 51, 51);
  border-radius: 8px;
  color: rgb(51, 51, 51);
  bottom: 0.5em;
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  left: 0.5em;
  padding: 5px;
  position: fixed;
  text-align: center;
  z-index: 99999;
}
#next-month-clear span {
  display: inline-block;
  flex: 0 0 auto;
  margin-bottom: 3px;
}

.is-map {
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%;
}
.is-map .maf-map-pos {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.is-map .maf-map-pos .maf-obj-map {
  height: 100%;
  width: 100%;
}
.is-map .maf-map-pos .maf-obj-map button {
  min-height: 0;
  transform: none;
}
.is-map .maf-map-pos .maf-obj-map button::before, .is-map .maf-map-pos .maf-obj-map button::after {
  display: none;
}
.is-map .maf-map-pos .maf-obj-map a[title="Click to see this area on Google Maps"] {
  display: none !important;
}
.is-map .maf-map-pos .maf-obj-map .gmnoprint a, .is-map .maf-map-pos .maf-obj-map .gmnoprint span, .is-map .maf-map-pos .maf-obj-map .gm-style-cc {
  display: none;
}
.is-map .maf-map-pos .maf-obj-map .gm-style button.gm-fullscreen-control {
  background: rgba(14, 118, 188, 0.2) !important;
}
.is-map .maf-map-pos .maf-obj-map .gmnoprint div {
  background: none !important;
}
.is-map .maf-map-pos .maf-obj-map .gmnoprint div.gm-svpc {
  display: none;
}
.is-map .maf-map-pos .maf-obj-map .gmnoprint div button[title="Zoom in"], .is-map .maf-map-pos .maf-obj-map .gmnoprint div button[title="Zoom out"] {
  background: rgba(14, 118, 188, 0.2) !important;
  border: 1px solid rgb(66, 66, 66);
  border-radius: 5px;
}
.is-map .maf-map-pos .maf-obj-map .gmnoprint div button[title="Zoom in"] div, .is-map .maf-map-pos .maf-obj-map .gmnoprint div button[title="Zoom out"] div {
  left: 6px !important;
  top: 5px !important;
}

.social-icons {
  align-items: center;
  color: rgb(222, 37, 149);
  display: inline-flex;
  font-size: 2.2rem;
  justify-content: center;
  line-height: 0;
  margin: 0;
  width: auto;
}
.social-icons a {
  color: inherit;
  display: inline-block;
  line-height: 0;
  opacity: 1;
  padding: 3px;
}
.social-icons a:last-child {
  margin-right: 0;
}
.social-icons a i {
  background-color: white;
  border: 2px solid white;
  border-radius: 50px;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  height: 50px;
  line-height: 0;
  position: relative;
  transition: all 350ms ease-out;
  width: 50px;
}
.social-icons a i::before {
  color: inherit;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.social-icons a i:hover {
  color: white;
  background-color: transparent;
}
.social-icons.corporate-colours a i.tvw-facebook {
  background-color: #3b5999;
  border-color: #3b5999;
}
.social-icons.corporate-colours a i.tvw-twitter {
  background-color: #55acee;
  border-color: #55acee;
}
.social-icons.corporate-colours a i.tvw-flickr {
  background-color: #0063dc;
  border-color: #0063dc;
}
.social-icons.corporate-colours a i.tvw-linkedin {
  background-color: #0077b5;
  border-color: #0077b5;
}
.social-icons.corporate-colours a i.tvw-instagram {
  background-color: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: #d6249f;
}
.social-icons.corporate-colours a i.tvw-vimeo {
  background-color: #1ab7ea;
  border-color: #1ab7ea;
}
.social-icons.corporate-colours a i.tvw-youtube {
  background-color: #cd201f;
  border-color: #cd201f;
}
.social-icons.corporate-colours a i.tvw-gplus {
  background-color: #dd4b39;
  border-color: #dd4b39;
}
.social-icons.name-view {
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
.social-icons.name-view > a {
  align-content: center;
  align-items: center;
  display: flex;
  line-height: 1;
  width: auto;
}
.social-icons.name-view > a i {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  flex: 0 0 auto;
  height: 25px;
  width: 25px;
}
.social-icons.name-view > a span {
  display: inline-block;
  flex: 1 1 auto;
  font-size: 1.6rem;
  padding-left: 5px;
  transition: transform 350ms ease-out;
}
.social-icons.name-view > a:hover {
  color: white;
}
.social-icons.name-view > a:hover i {
  color: rgb(198, 20, 127);
}
.social-icons.name-view > a:hover span {
  transform: translateX(5px);
}

div#floater-menu {
  height: 100vh;
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(300px, 0);
  transition: transform 350ms ease-out;
}
div#floater-menu.out {
  transform: translate(0, 0);
}

div.maf-share-this {
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 20px;
  position: relative;
  width: auto;
}
div.maf-share-this i {
  font-size: 1.8rem;
}
div.maf-share-this .maf-share-btn {
  background-color: white;
  border: 1px solid rgb(186, 186, 186);
  height: 40px;
  padding: 5px;
  position: relative;
  transition: background-color 350ms ease-out;
  width: 40px;
}
div.maf-share-this .maf-share-btn i {
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
}
div.maf-share-this .maf-share-btn:hover {
  background-color: rgb(51, 51, 51);
}
div.maf-share-this .maf-share-btn:hover i {
  color: white;
}
div.maf-share-this .maf-share-acts {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgb(51, 51, 51);
  display: flex;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all 350ms ease-out;
  top: 100%;
  visibility: hidden;
}
div.maf-share-this .maf-share-acts a {
  color: rgb(51, 51, 51);
  display: inline-block;
  height: 40px;
  padding: 5px;
  position: relative;
  width: 40px;
}
div.maf-share-this .maf-share-acts a i {
  font-size: 2rem;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
}
div.maf-share-this .maf-share-acts a:hover {
  background-color: rgb(51, 51, 51);
}
div.maf-share-this .maf-share-acts a:hover i {
  color: white;
}
div.maf-share-this:hover .maf-share-acts {
  opacity: 1;
  visibility: visible;
}
div.maf-share-this.floater {
  height: 40px;
  position: absolute;
  right: 0;
  top: calc(50vh - 20px);
  width: 40px;
}
div.maf-share-this.floater i {
  font-size: 2rem;
}
@media only screen and (min-width: 576px) {
  div.maf-share-this.floater {
    height: 70px;
    top: calc(50vh - 35px);
    width: 70px;
  }
  div.maf-share-this.floater i {
    font-size: 3rem;
  }
}
div.maf-share-this.floater .maf-share-btn {
  height: 100%;
  width: 100%;
}
div.maf-share-this.floater .maf-share-acts {
  bottom: 100%;
  left: auto;
  right: 0;
  top: auto;
}

div#email-floater {
  background-color: #f4f4f4;
  border: 1px solid rgb(222, 37, 149);
  border-radius: 12px 0 0 12px;
  font-size: 1.4rem;
  height: auto;
  line-height: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 40vh;
  width: 40px;
}
@media only screen and (min-width: 1600px) {
  div#email-floater {
    height: auto;
    padding: 20px 15px;
    width: 142px;
  }
}
div#email-floater img {
  display: none;
  margin-bottom: 12px;
  width: 50px;
}
@media only screen and (min-width: 1600px) {
  div#email-floater img {
    display: inline-block;
  }
}
div#email-floater button, div#email-floater a {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: rgb(222, 37, 149);
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  height: 40px;
  justify-content: flex-start;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
  text-decoration: none;
  width: 40px;
}
div#email-floater button span, div#email-floater a span {
  transition: all 350ms ease-out;
}
div#email-floater button i, div#email-floater a i {
  font-size: 2rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
div#email-floater button span, div#email-floater a span {
  display: none;
}
@media only screen and (min-width: 1600px) {
  div#email-floater button, div#email-floater a {
    height: auto;
    margin: 0 0 12px 0;
    width: auto;
  }
  div#email-floater button i, div#email-floater a i {
    display: none;
  }
  div#email-floater button span, div#email-floater a span {
    display: inline;
  }
}
div#email-floater button {
  cursor: pointer;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 2.6rem;
  font-weight: 400;
  outline-color: transparent;
  text-transform: uppercase;
}
div#email-floater a {
  margin-bottom: 0;
}
div#email-floater hr {
  border-color: white;
  border-width: 1px;
  display: inline-block;
  margin: 0;
}
@media only screen and (min-width: 1600px) {
  div#email-floater hr {
    display: none;
  }
}
div#email-floater.no-show {
  display: none;
}

#conco-f {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0;
  border-left: 1px solid rgb(222, 37, 149);
  bottom: 0;
  color: rgb(51, 51, 51);
  display: flex;
  height: 100vh;
  flex-direction: row;
  float: none;
  margin: 0;
  max-width: 930px;
  overflow-y: auto;
  padding: 40px 15px 25px 25px;
  position: fixed;
  right: -110%;
  transform: rotateZ(0);
  transition: all 500ms ease;
  width: 100%;
  z-index: 999;
}
#conco-f #close {
  background-color: transparent;
  border: 1px solid rgb(222, 37, 149);
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  height: 40px;
  left: 25px;
  outline: transparent;
  position: absolute;
  top: 20px;
  transition: transform 350ms ease-out;
  width: 40px;
}
#conco-f #close::before, #conco-f #close::after {
  background-color: rgb(222, 37, 149);
  content: "";
  display: inline-block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 70%;
}
#conco-f #close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#conco-f #close:hover {
  transform: rotate(90deg);
}
#conco-f h2 {
  color: rgb(127, 127, 127);
  font-family: "Open Sans", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 3px;
  text-transform: none;
}
#conco-f p {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
#conco-f p a {
  color: rgb(51, 51, 51);
}
#conco-f .details {
  display: none;
  flex: 0 0 40%;
}
#conco-f .details a {
  color: rgb(51, 51, 51);
  text-decoration: none;
}
#conco-f .details .company-name {
  font-weight: 500;
}
@media only screen and (min-width: 576px) {
  #conco-f .details {
    order: 1;
    padding-right: 10px;
  }
}
#conco-f .form {
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  padding: 30px 0;
}
#conco-f .form .maf-form {
  max-width: 550px;
  margin: 0 auto 0 0;
  padding: 0 0 30px 0;
  width: 100%;
}
#conco-f .form .maf-form input, #conco-f .form .maf-form textarea {
  background-color: #f4f4f4;
  border-color: rgb(160, 160, 160);
  color: rgb(160, 160, 160);
}
#conco-f .form .maf-form input::-moz-placeholder, #conco-f .form .maf-form textarea::-moz-placeholder {
  color: rgb(160, 160, 160);
}
#conco-f .form .maf-form input::placeholder, #conco-f .form .maf-form textarea::placeholder {
  color: rgb(160, 160, 160);
}
#conco-f .form .maf-form textarea {
  height: 150px;
}
#conco-f .form .maf-form .g-recaptcha {
  float: left;
  margin-right: 10px;
}
#conco-f .form .maf-form .button {
  width: 100%;
}
#conco-f .form .maf-form i {
  font-size: 2rem;
}
#conco-f.open {
  right: 0;
}

#fader {
  background-color: rgb(51, 51, 51);
  height: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 350ms linear;
  width: 100vw;
  z-index: 0;
}
#fader.open {
  height: 100vh;
  opacity: 0.1;
  z-index: 997;
}

.flickity-slideshow, .flickity-slideshow-edit {
  width: 100%;
}
.flickity-slideshow .ss-slide, .flickity-slideshow-edit .ss-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.flickity-slideshow .ss-slide > div, .flickity-slideshow-edit .ss-slide > div {
  width: 100%;
}
.flickity-slideshow .flickity-page-dots, .flickity-slideshow-edit .flickity-page-dots {
  bottom: 10px;
  display: block;
  margin: 0;
  padding: 0;
}
.flickity-slideshow .flickity-page-dots .dot, .flickity-slideshow-edit .flickity-page-dots .dot {
  background: rgba(51, 56, 76, 0.4);
  border: 0;
  border-radius: 0;
  height: 16px;
  margin: 0 5px;
  opacity: 1;
  position: relative;
  width: 17px;
}
.flickity-slideshow .flickity-page-dots .dot::before, .flickity-slideshow-edit .flickity-page-dots .dot::before {
  background-color: rgb(222, 37, 149);
  border-radius: 0;
  content: "";
  display: inline-block;
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 350ms ease-out;
  width: 0;
}
.flickity-slideshow .flickity-page-dots .dot.is-selected::before, .flickity-slideshow-edit .flickity-page-dots .dot.is-selected::before {
  height: 100%;
  width: 100%;
}
.flickity-slideshow .flickity-button, .flickity-slideshow-edit .flickity-button {
  background-color: transparent;
  display: inline-block;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  height: 80px;
  margin: 0;
  opacity: 1;
  padding: 0;
  transform-origin: center;
  transform: translate(0, -50%);
  transition: all 350ms ease-out;
  width: 80px;
  z-index: 2;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button .flickity-button-icon path, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button .flickity-button-icon path {
  fill: rgb(222, 37, 149);
}
.flickity-slideshow .flickity-button.flickity-prev-next-button.previous, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button.previous {
  left: -30px;
}
@media only screen and (min-width: 576px) {
  .flickity-slideshow .flickity-button.flickity-prev-next-button.previous, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button.previous {
    left: -60px;
  }
}
.flickity-slideshow .flickity-button.flickity-prev-next-button.next, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button.next {
  right: -30px;
}
@media only screen and (min-width: 576px) {
  .flickity-slideshow .flickity-button.flickity-prev-next-button.next, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button.next {
    right: -60px;
  }
}
.flickity-slideshow .flickity-button.flickity-prev-next-button:hover, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.flickity-slideshow .flickity-button.flickity-prev-next-button:disabled, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button:disabled {
  opacity: 0.2;
}

.flickity-slideshow-edit {
  display: inline-block;
}
.flickity-slideshow-edit .ss-slide {
  height: 100%;
  min-height: 200px;
}

.blog-nav {
  width: 100%;
}
.blog-nav .nav-title {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 2.6rem;
  color: rgb(222, 37, 149);
  margin-bottom: 50px;
}
.blog-nav > hr {
  margin-top: 0;
}
.blog-nav .blog-aside-content {
  display: inline-block;
  margin-bottom: 10px;
  width: 100%;
}
.blog-nav .blog-aside-content a {
  color: rgb(39, 69, 122);
  display: inline-block;
  line-height: 1.2;
  text-decoration: none;
  width: 100%;
}
.blog-nav .blog-aside-content a .blog-current-item {
  background: none;
  border-bottom: 1px solid rgb(39, 69, 122);
  border-radius: 0;
  box-shadow: none;
  color: rgb(51, 51, 51);
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: flex-start;
  line-height: 1.3;
  margin: 0 0 0 0;
  outline: transparent;
  overflow: hidden;
  margin-top: 10px;
  padding: 0 0 15px 0;
  position: relative;
  text-align: left;
  text-transform: capitalize;
  transition: all 350ms ease-out;
  width: 100%;
  z-index: 1;
}
.blog-nav .blog-aside-content a .blog-current-item::before, .blog-nav .blog-aside-content a .blog-current-item::after {
  content: "";
  background-color: rgb(39, 69, 122);
  display: none;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  transform: skewX(-18deg);
  transform-origin: top right;
  transition: all 350ms ease-out;
  width: 120%;
  z-index: -1;
}
.blog-nav .blog-aside-content a .blog-current-item:hover, .blog-nav .blog-aside-content a .blog-current-item.active {
  border-bottom: 1px solid black;
}
.blog-nav .blog-aside-content a .blog-current-item:hover::before, .blog-nav .blog-aside-content a .blog-current-item:hover::after, .blog-nav .blog-aside-content a .blog-current-item.active::before, .blog-nav .blog-aside-content a .blog-current-item.active::after {
  right: 0;
}
.blog-nav .blog-aside-content a .blog-current-item p {
  line-height: 1.2;
  margin: 0;
}
.blog-nav .blog-aside-content a .blog-current-item time {
  display: inline-block;
  font-size: 1.6rem;
  margin-top: 5px;
  opacity: 0.8;
}
.blog-nav .blog-aside-content.nav-filter button {
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: rgb(51, 51, 51);
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: flex-start;
  line-height: 1.2;
  margin: 0 0 10px 0;
  outline: transparent;
  overflow: hidden;
  padding: 5px 3px;
  text-align: left;
  text-transform: capitalize;
  transition: all 350ms ease-out;
  width: 100%;
  z-index: 1;
}
.blog-nav .blog-aside-content.nav-filter button::before {
  content: "";
  background-color: rgb(39, 69, 122);
  display: inline-block;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  transform: skewX(-18deg);
  transform-origin: top right;
  transition: all 350ms ease-out;
  width: 120%;
  z-index: -1;
}
.blog-nav .blog-aside-content.nav-filter button:hover, .blog-nav .blog-aside-content.nav-filter button.active {
  color: white;
  padding-left: 8px;
}
.blog-nav .blog-aside-content.nav-filter button:hover::before, .blog-nav .blog-aside-content.nav-filter button.active::before {
  right: 0;
}
.blog-nav .blog-aside-content.is-toggle-group .toggle-group.is-on {
  border-top: none;
}
.blog-nav .blog-aside-content.is-toggle-group .toggle-group a {
  color: rgb(51, 51, 51);
  font-size: 1.6rem;
  font-weight: 400;
  padding: 5px 10px;
}
.blog-nav .blog-aside-content.is-toggle-group .toggle-group a:hover {
  background-color: rgb(222, 37, 149);
  color: white;
}
.blog-nav .blog-aside-content:first-child .nav-title {
  margin-top: 0;
}
.blog-nav .blog-aside-content .cardbox {
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .blog-nav .blog-aside-content .cardbox {
    justify-content: flex-end;
  }
}
.blog-nav .blog-aside-content .cardbox article.card {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .blog-nav .blog-aside-content .cardbox article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .blog-nav .blog-aside-content .cardbox article.card {
    width: 100%;
  }
}
.blog-nav .blog-aside-content .cardbox article.card .portal-item .portal-content .desc {
  min-height: 0;
}
.blog-nav .blog-aside-content .cardbox article.card .portal-item .portal-content .button {
  margin-top: 0;
}

aside.pg-nav {
  flex-direction: row;
  padding-bottom: 10px;
  width: 100%;
}
aside.pg-nav .button {
  margin: 0;
  min-height: 0;
  min-width: 80px;
}
aside.pg-nav .button.prev {
  margin-right: auto;
  margin-left: 10px;
}
aside.pg-nav .button.next {
  margin-right: 10px;
  margin-left: auto;
}

.pagination {
  align-self: flex-start;
  color: rgb(222, 37, 149);
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 2rem;
  margin-bottom: 20px;
  padding: 0;
  text-align: right;
  width: 100%;
}
.pagination a {
  color: rgb(222, 37, 149);
  text-decoration: none;
}
.pagination a:hover {
  color: black;
}
.pagination a.previous {
  margin-right: 2px;
}
.pagination a.next {
  margin-left: 2px;
}
.pagination span.active {
  color: rgb(39, 69, 122);
}

#gallery {
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
#gallery .item {
  flex: 0 1 33.333%;
}
#gallery .item > div {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: calc(100% - 76px);
  left: 0;
  margin: 20px;
  overflow: hidden;
  position: absolute;
  top: 0;
  transition: all 850ms ease-out;
  width: calc(100% - 76px);
}
#gallery .item > div:hover {
  background-size: 110% auto;
}
#gallery .item > div .fancybox {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#gallery .item > div .h-state {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid white;
  color: white;
  display: flex;
  height: 100%;
  justify-content: center;
  left: -100%;
  position: absolute;
  transition: all 850ms ease-out;
  top: -100%;
  width: 100%;
}
#gallery .item > div .h-state::before {
  background-color: white;
  content: "";
  display: block;
  height: 1px;
  left: 100%;
  position: absolute;
  top: 100%;
  width: 100%;
}
#gallery .item > div .h-state::after {
  background-color: white;
  content: "";
  display: block;
  height: 100%;
  left: 100%;
  position: absolute;
  top: 100%;
  width: 1px;
}
#gallery .item > div .h-state h2 {
  display: inline-block;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 3rem;
  font-weight: 200;
  margin: 0;
  text-transform: capitalize;
  width: auto;
}
#gallery .item > div:hover .h-state {
  left: 0;
  top: 0;
}
#gallery.gallery-alt {
  padding: 0;
}
#gallery.gallery-alt .item {
  flex: 0 1 50%;
}

.is-simple-gallery {
  margin: 0 -20px;
  max-width: none;
  width: calc(100% + 40px);
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.is-simple-gallery figure {
  display: inline-block;
  flex: 0 0 100%;
  margin: 0;
  max-width: 340px;
  padding: 40px 20px;
  position: relative;
}
@media only screen and (min-width: 576px) {
  .is-simple-gallery figure {
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 960px) {
  .is-simple-gallery figure {
    flex: 0 0 25%;
  }
}
.is-simple-gallery figure > a {
  display: block;
  height: 100%;
  opacity: 1;
  overflow: hidden;
  position: relative;
  transition: all 700ms ease-out;
  width: 100%;
}
.is-simple-gallery figure > a::after {
  content: "";
  display: table;
  padding-bottom: 100%;
}
.is-simple-gallery figure > a > div, .is-simple-gallery figure > a > img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(1);
  transform-origin: center;
  transition: all 700ms ease-out;
  width: 100%;
}
.is-simple-gallery figure > a > img {
  -o-object-fit: cover;
     object-fit: cover;
}
.is-simple-gallery figure > a figcaption {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0 15px 0 0;
  bottom: 0;
  color: white;
  display: none;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  left: 0;
  padding: 5px 8px;
  position: absolute;
}
.is-simple-gallery figure > a:hover > div, .is-simple-gallery figure > a:hover > img {
  transform: scale(1.05);
}

.gal-prod {
  background-color: #f4f4f4;
  display: inline-flex;
  flex-direction: row;
  font-size: 1.4rem;
  left: 50%;
  max-height: calc(100% - 90px);
  overflow-y: auto;
  padding: 10px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 90%;
}
.gal-prod > div {
  display: inline-block;
  flex: 1 1 auto;
  padding: 10px;
}
.gal-prod > div.p-img {
  width: 60%;
}
.gal-prod > div.p-img div {
  height: 100%;
}
.gal-prod > div.p-img img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.gal-prod > div.p-text {
  width: 40%;
}
.gal-prod > div.p-text p {
  margin-bottom: 10px;
}
.gal-prod > div.p-text .price {
  font-size: 2.2rem;
}
.gal-prod > div.p-text .embed input[type=submit] {
  background-color: rgb(198, 20, 127);
  border-color: rgb(198, 20, 127);
  background-image: linear-gradient(to top right, rgb(198, 20, 127), rgb(20, 151, 176));
  color: rgb(51, 51, 51);
  margin-top: 10px;
}
.gal-prod > div.p-text .embed .small-text {
  margin-top: 5px;
}

.fb-gallery {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -5px;
  width: calc(100% + 10px);
}
.fb-gallery > a {
  display: inline-block;
  flex: 0 0 auto;
  opacity: 1;
  padding: 5px;
  width: 100%;
}
.fb-gallery > a:nth-child(n+6) {
  display: none;
}
.fb-gallery > a > div {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.fb-gallery > a > div img.maf-tn {
  width: 100%;
  transition: all 350ms ease-out;
}
.fb-gallery > a > div:hover img.maf-tn {
  transform: scale(1.05);
}
.fb-gallery > a > div .deets {
  align-items: center;
  background-color: rgba(51, 56, 76, 0.5);
  bottom: 0;
  color: white;
  display: flex;
  left: 0;
  padding: 5px 15px;
  position: absolute;
  width: 100%;
}
.fb-gallery > a > div .deets > span {
  display: inline-block;
  padding: 5px;
}
.fb-gallery > a > div .deets > span i {
  font-size: 2.4rem;
  margin-left: 10px;
  vertical-align: middle;
}
.fb-gallery > a > div .deets > span:last-child {
  margin-left: auto;
}
.fb-gallery > a:not(:first-child) {
  width: 25%;
}
.fb-gallery > a:not(:first-child) > div::after {
  content: "";
  display: table;
  padding-bottom: 75%;
}
.fb-gallery > a:not(:first-child) > div img.maf-tn {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.fb-gallery > a.video-item > div .maf-vp {
  display: inline-block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
}
.fb-gallery > a.video-item > div .maf-vp img {
  filter: drop-shadow(0 0 7px black);
  transition: all 350ms ease-out;
}
.fb-gallery > a.video-item:hover > div .maf-vp img {
  transform: scale(1.3);
}
.fb-gallery > a:first-child {
  padding-top: 0;
}

.has-e-gal {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -5px;
  margin-bottom: 20px;
  width: calc(100% + 10px);
}
.has-e-gal .maf-em-gal-item {
  display: inline-block;
  flex: 0 0 auto;
  padding: 5px;
  width: 100%;
}
.has-e-gal .maf-em-gal-item:not(:first-child) {
  width: 20%;
}

div.text-box {
  border: 1px solid rgb(234, 139, 73);
  padding: 60px 20px;
  margin: 23px 0;
  width: 100%;
}

div.image-box {
  align-items: center;
  color: rgb(51, 51, 51);
  display: inline-flex;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  flex-direction: column;
  margin-bottom: 10px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  padding: 0;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  div.image-box {
    flex-direction: row;
  }
}
div.image-box p, div.image-box li {
  line-height: 1.2;
  max-width: none !important;
}
div.image-box li::before {
  color: rgb(51, 51, 51);
}
div.image-box > div {
  display: inline-block;
  flex: 0 0 auto;
  padding: 0 5px 10px 5px;
}
div.image-box > div > *:last-child {
  margin-bottom: 0;
}
div.image-box .image {
  width: auto;
}
div.image-box .image img, div.image-box .image svg {
  display: block;
  margin: 0;
  max-width: 100%;
  width: 100%;
}
div.image-box .image p.has-img {
  margin-right: 0;
  margin-left: 0;
  width: 100%;
}
div.image-box .image p.has-img img {
  margin: 0 !important;
}
div.image-box .text {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  text-align: left;
}
div.image-box.center {
  margin-right: auto;
  margin-left: auto;
}

div.content-callout {
  color: white;
  display: inline-flex;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  flex-direction: column;
  padding: 20px;
}
@media only screen and (min-width: 576px) {
  div.content-callout {
    flex-direction: row;
  }
}
div.content-callout > div {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding-top: 10px;
}
div.content-callout .button {
  margin: 0 0 10px 0;
  min-height: 60px;
  min-width: 0;
  width: 100%;
}
div.content-callout p {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 3.6rem;
  line-height: 1.1;
}

.is-video {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: 100%;
}
.is-video iframe {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100vw;
  width: 100%;
  height: 100%;
}

video.tvw-player {
  background-color: transparent;
  background-size: cover;
  height: auto;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: opacity 700ms ease-out;
  width: auto;
  z-index: 0;
}
video.tvw-player.ready {
  opacity: 1;
}

div.cardbox, aside.cardbox {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -20px;
  width: calc(100% + 40px);
}
div.cardbox .maf-content, aside.cardbox .maf-content {
  padding: 0;
}
div.cardbox article.card, aside.cardbox article.card {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  margin-bottom: 60px;
  padding: 0 20px;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 960px) {
  div.cardbox article.card, aside.cardbox article.card {
    width: 50%;
  }
}
div.cardbox article.card .portal-item, aside.cardbox article.card .portal-item {
  background-color: rgb(222, 37, 149);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  height: 100%;
  overflow: visible;
  max-width: 564px;
  opacity: 1;
  position: relative;
  text-align: left;
  text-decoration: none;
  transform: scale(1);
  transition: all 350ms ease-out;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  div.cardbox article.card .portal-item, aside.cardbox article.card .portal-item {
    font-size: 1.8rem;
  }
}
div.cardbox article.card .portal-item .portal-content, aside.cardbox article.card .portal-item .portal-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: all 350ms ease-out;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .card-cats, aside.cardbox article.card .portal-item .portal-content .card-cats {
  display: none;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn, aside.cardbox article.card .portal-item .portal-content .tn {
  display: inline-block;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
  transition: all 350ms ease-out;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn .tn-img, aside.cardbox article.card .portal-item .portal-content .tn .tn-img {
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: all 700ms ease-out;
  width: 100%;
  z-index: 0;
}
div.cardbox article.card .portal-item .portal-content .tn .maf-na, aside.cardbox article.card .portal-item .portal-content .tn .maf-na {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  height: 100%;
  font-size: 2rem;
  padding: 20px;
  position: absolute;
  top: 0;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn .maf-na span, div.cardbox article.card .portal-item .portal-content .tn .maf-na i, aside.cardbox article.card .portal-item .portal-content .tn .maf-na span, aside.cardbox article.card .portal-item .portal-content .tn .maf-na i {
  display: inline-block;
  flex: 0 0 auto;
}
div.cardbox article.card .portal-item .portal-content .tn .maf-na span, aside.cardbox article.card .portal-item .portal-content .tn .maf-na span {
  text-align: center;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn .maf-na i, aside.cardbox article.card .portal-item .portal-content .tn .maf-na i {
  font-size: 2em;
}
div.cardbox article.card .portal-item .portal-content .tn .tn-button, aside.cardbox article.card .portal-item .portal-content .tn .tn-button {
  background-color: rgb(222, 37, 149);
  bottom: 0;
  color: white;
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  padding: 12px 18px 8px 18px;
  position: absolute;
  right: calc(100% - 48px);
  transition: right 350ms ease-out;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn .tn-button::after, aside.cardbox article.card .portal-item .portal-content .tn .tn-button::after {
  border: 3px solid white;
  border-bottom: 0;
  border-left: 0;
  content: "";
  display: inline-block;
  height: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-18px, -50%) rotate(45deg);
  width: 15px;
}
div.cardbox article.card .portal-item .portal-content .tn.no-img .maf-na, aside.cardbox article.card .portal-item .portal-content .tn.no-img .maf-na {
  position: static;
}
div.cardbox article.card .portal-item .portal-content .tn.square::after, div.cardbox article.card .portal-item .portal-content .tn.fourthree::after, div.cardbox article.card .portal-item .portal-content .tn.custom::after, div.cardbox article.card .portal-item .portal-content .tn.show-all::after, aside.cardbox article.card .portal-item .portal-content .tn.square::after, aside.cardbox article.card .portal-item .portal-content .tn.fourthree::after, aside.cardbox article.card .portal-item .portal-content .tn.custom::after, aside.cardbox article.card .portal-item .portal-content .tn.show-all::after {
  content: "";
  display: table;
  padding-bottom: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn.square .tn-img, div.cardbox article.card .portal-item .portal-content .tn.fourthree .tn-img, div.cardbox article.card .portal-item .portal-content .tn.custom .tn-img, div.cardbox article.card .portal-item .portal-content .tn.show-all .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.square .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.fourthree .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.custom .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.show-all .tn-img {
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(1);
  min-width: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn.fourthree::after, aside.cardbox article.card .portal-item .portal-content .tn.fourthree::after {
  padding-bottom: 75%;
}
div.cardbox article.card .portal-item .portal-content .tn.static, aside.cardbox article.card .portal-item .portal-content .tn.static {
  overflow: visible;
  position: static;
}
div.cardbox article.card .portal-item .portal-content .tn.static .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.static .tn-img {
  height: auto;
  max-width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  transform-origin: center bottom;
  width: auto;
}
div.cardbox article.card .portal-item .portal-content .tn.static.no-img, aside.cardbox article.card .portal-item .portal-content .tn.static.no-img {
  min-height: 100px;
}
div.cardbox article.card .portal-item .portal-content .tn.show-all::after, aside.cardbox article.card .portal-item .portal-content .tn.show-all::after {
  padding-bottom: 50%;
}
div.cardbox article.card .portal-item .portal-content .tn.show-all .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.show-all .tn-img {
  -o-object-fit: contain;
     object-fit: contain;
}
div.cardbox article.card .portal-item .portal-content .tn.custom, aside.cardbox article.card .portal-item .portal-content .tn.custom {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}
div.cardbox article.card .portal-item .portal-content .info, aside.cardbox article.card .portal-item .portal-content .info {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 389px;
  min-width: 290px;
  padding: 30px;
  transition: all 350ms ease-out;
  width: 46%;
}
div.cardbox article.card .portal-item .portal-content .info::before, aside.cardbox article.card .portal-item .portal-content .info::before {
  background-image: url("/images/Layout/card-bg.png");
  background-size: 100% 100%;
  content: "";
  height: 100%;
  left: 0;
  min-width: 390px;
  position: absolute;
  top: 0;
  width: 80%;
}
div.cardbox article.card .portal-item .portal-content .title, aside.cardbox article.card .portal-item .portal-content .title {
  align-items: flex-start;
  display: flex;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 2.8rem;
  font-weight: 400;
  justify-content: flex-start;
  line-height: 1.1;
  margin: 0;
  padding: 0 0 15px 0;
  position: relative;
  text-transform: none;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  div.cardbox article.card .portal-item .portal-content .title, aside.cardbox article.card .portal-item .portal-content .title {
    font-size: 3.2rem;
  }
}
div.cardbox article.card .portal-item .portal-content .desc, aside.cardbox article.card .portal-item .portal-content .desc {
  color: inherit;
  display: inline-block;
  margin: 0;
  padding: 15px 0;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .desc p, aside.cardbox article.card .portal-item .portal-content .desc p {
  margin-bottom: 0;
}
div.cardbox article.card .portal-item .portal-content .attr, aside.cardbox article.card .portal-item .portal-content .attr {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .attr > span, aside.cardbox article.card .portal-item .portal-content .attr > span {
  display: inline-block;
  flex: 1 1 auto;
  font-weight: 700;
  line-height: 1;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .attr > span.date, aside.cardbox article.card .portal-item .portal-content .attr > span.date {
  background-color: white;
  color: rgb(51, 51, 51);
  flex: 0 0 auto;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 8px 15px;
  width: auto;
}
div.cardbox article.card .portal-item .portal-content .attr > span.date time, aside.cardbox article.card .portal-item .portal-content .attr > span.date time {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}
div.cardbox article.card .portal-item .portal-content .attr > span.date time .dl, aside.cardbox article.card .portal-item .portal-content .attr > span.date time .dl {
  font-weight: 400;
}
div.cardbox article.card .portal-item .portal-content .attr > span.year, aside.cardbox article.card .portal-item .portal-content .attr > span.year {
  font-size: 2.2rem;
  padding-bottom: 20px;
}
@media only screen and (min-width: 576px) {
  div.cardbox article.card .portal-item .portal-content .attr > span.year, aside.cardbox article.card .portal-item .portal-content .attr > span.year {
    font-size: 2.4rem;
  }
}
div.cardbox article.card .portal-item .portal-content .attr > span.price, aside.cardbox article.card .portal-item .portal-content .attr > span.price {
  font-size: 1.6rem;
  font-weight: 400;
  padding: 20px 0;
}
div.cardbox article.card .portal-item .portal-content .attr > span.price span, aside.cardbox article.card .portal-item .portal-content .attr > span.price span {
  font-weight: 700;
}
div.cardbox article.card .portal-item .portal-content .card-button, aside.cardbox article.card .portal-item .portal-content .card-button {
  background-color: rgb(39, 69, 122);
  border-color: rgb(39, 69, 122);
  color: white;
  margin: auto 0 0 0;
  min-width: 0;
}
div.cardbox article.card .portal-item .portal-content .card-button::after, aside.cardbox article.card .portal-item .portal-content .card-button::after {
  display: none;
}
div.cardbox article.card .portal-item.no-link, aside.cardbox article.card .portal-item.no-link {
  cursor: default;
}
div.cardbox article.card .portal-item.no-link .portal-content .info .card-button, aside.cardbox article.card .portal-item.no-link .portal-content .info .card-button {
  display: none;
}
div.cardbox article.card .portal-item.edit .portal-content .info, aside.cardbox article.card .portal-item.edit .portal-content .info {
  position: static;
  transform: none;
}
div.cardbox article.card .portal-item:hover .portal-content .tn .tn-img, div.cardbox article.card .portal-item:focus .portal-content .tn .tn-img, aside.cardbox article.card .portal-item:hover .portal-content .tn .tn-img, aside.cardbox article.card .portal-item:focus .portal-content .tn .tn-img {
  transform: scale(1.05);
}
div.cardbox article.card .portal-item:hover .portal-content .tn .tn-button, div.cardbox article.card .portal-item:focus .portal-content .tn .tn-button, aside.cardbox article.card .portal-item:hover .portal-content .tn .tn-button, aside.cardbox article.card .portal-item:focus .portal-content .tn .tn-button {
  right: 0;
}
div.cardbox article.card .portal-item:hover .portal-content .card-button, div.cardbox article.card .portal-item:focus .portal-content .card-button, aside.cardbox article.card .portal-item:hover .portal-content .card-button, aside.cardbox article.card .portal-item:focus .portal-content .card-button {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}
div.cardbox article.card:hover, div.cardbox article.card:focus-within, aside.cardbox article.card:hover, aside.cardbox article.card:focus-within {
  z-index: 100;
}
div.cardbox .no-articles, aside.cardbox .no-articles {
  font-size: 1.2em;
  padding: 0 10px;
  width: 100%;
}
div.cardbox .maf-msg, aside.cardbox .maf-msg {
  margin: 0 10px 30px 10px;
  z-index: 1;
}
@media only screen and (min-width: 1366px) {
  div.cardbox .maf-msg, aside.cardbox .maf-msg {
    margin: 0 20px 30px 20px;
  }
}
div.cardbox.catcard, aside.cardbox.catcard {
  margin-top: 20px;
}
div.cardbox.catcard article.card, aside.cardbox.catcard article.card {
  margin-bottom: 20px;
}
div.cardbox.catcard article.card .portal-item .portal-content, aside.cardbox.catcard article.card .portal-item .portal-content {
  background-color: rgb(222, 37, 149);
  color: white;
  overflow: hidden;
}
div.cardbox.catcard article.card .portal-item .portal-content .tn, aside.cardbox.catcard article.card .portal-item .portal-content .tn {
  opacity: 0.4;
}
div.cardbox.catcard article.card .portal-item .portal-content .cc-title, aside.cardbox.catcard article.card .portal-item .portal-content .cc-title {
  align-content: center;
  align-items: center;
  color: white;
  display: flex;
  font-size: 3rem;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  left: 0;
  line-height: 1.2;
  padding: 20px;
  position: absolute;
  text-shadow: 8px 8px 27px rgba(7, 7, 7, 0.48);
  transition: all 350ms ease-out;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  div.cardbox.catcard article.card .portal-item .portal-content .cc-title, aside.cardbox.catcard article.card .portal-item .portal-content .cc-title {
    font-size: 3.8rem;
  }
}
div.cardbox.catcard article.card .portal-item .portal-content .info, aside.cardbox.catcard article.card .portal-item .portal-content .info {
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
div.cardbox.catcard article.card .portal-item .portal-content .info .card-button, aside.cardbox.catcard article.card .portal-item .portal-content .info .card-button {
  background-color: transparent;
  border-color: white;
}
div.cardbox.catcard article.card .portal-item:hover .tn, div.cardbox.catcard article.card .portal-item:focus .tn, aside.cardbox.catcard article.card .portal-item:hover .tn, aside.cardbox.catcard article.card .portal-item:focus .tn {
  opacity: 0.1;
}
div.cardbox.catcard article.card .portal-item:hover .cc-title, div.cardbox.catcard article.card .portal-item:focus .cc-title, aside.cardbox.catcard article.card .portal-item:hover .cc-title, aside.cardbox.catcard article.card .portal-item:focus .cc-title {
  color: rgb(222, 37, 149);
  filter: blur(5px);
  opacity: 0;
}
div.cardbox.catcard article.card .portal-item:hover .info, div.cardbox.catcard article.card .portal-item:focus .info, aside.cardbox.catcard article.card .portal-item:hover .info, aside.cardbox.catcard article.card .portal-item:focus .info {
  opacity: 1;
}

div.catbox, aside.catbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 0;
  margin: 0 -10px;
  width: calc(100% + 20px);
}
div.catbox article.card, aside.catbox article.card {
  display: inline-block;
  flex: 0 0 auto;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  div.catbox article.card, aside.catbox article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  div.catbox article.card, aside.catbox article.card {
    width: 25%;
  }
}
div.catbox article.card .portal-item, aside.catbox article.card .portal-item {
  display: inline-block;
  height: 100%;
  line-height: 0;
  padding: 10px;
  text-decoration: none;
  width: 100%;
}
div.catbox article.card .portal-item .portal-content, aside.catbox article.card .portal-item .portal-content {
  background-color: black;
  height: 100%;
  position: relative;
}
div.catbox article.card .portal-item .portal-content .tn, aside.catbox article.card .portal-item .portal-content .tn {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
div.catbox article.card .portal-item .portal-content .tn::after, aside.catbox article.card .portal-item .portal-content .tn::after {
  content: "";
  display: table;
  padding-bottom: 100%;
}
div.catbox article.card .portal-item .portal-content .tn .tn-img, aside.catbox article.card .portal-item .portal-content .tn .tn-img {
  height: 100%;
  left: 0;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.47;
  position: absolute;
  top: 0;
  transform: scale(1);
  transform-origin: center;
  transition: all 700ms ease-out;
  width: 100%;
}
div.catbox article.card .portal-item .portal-content .tn.no-img .tn-img, aside.catbox article.card .portal-item .portal-content .tn.no-img .tn-img {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
div.catbox article.card .portal-item .portal-content .info, aside.catbox article.card .portal-item .portal-content .info {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow: hidden;
  padding: 7%;
  position: absolute;
  top: 0;
  transition: all 350ms ease-out;
  width: 100%;
}
div.catbox article.card .portal-item .portal-content .info .ico, aside.catbox article.card .portal-item .portal-content .info .ico {
  display: flex;
  min-height: 69px;
}
div.catbox article.card .portal-item .portal-content .info .ico .ico-img, aside.catbox article.card .portal-item .portal-content .info .ico .ico-img {
  display: inline-block;
  flex: 0 0 auto;
  margin: auto;
  transition: transform 350ms ease-out;
}
div.catbox article.card .portal-item .portal-content .info .title, aside.catbox article.card .portal-item .portal-content .info .title {
  align-items: center;
  color: white;
  display: inline-flex;
  font-weight: 400;
  font-size: 3.6rem;
  justify-content: center;
  margin: 0;
  padding: 5px 0;
  transition: all 350ms ease-out;
  width: auto;
}
div.catbox article.card .portal-item .portal-content .info .desc, aside.catbox article.card .portal-item .portal-content .info .desc {
  align-items: center;
  background-color: rgba(51, 56, 76, 0.8);
  color: white;
  display: none;
  justify-content: center;
  padding: 8px 10px;
  position: absolute;
  transition: top 350ms ease-out;
  width: 100%;
}
div.catbox article.card .portal-item .portal-content .info .desc > *, aside.catbox article.card .portal-item .portal-content .info .desc > * {
  color: white;
  font-size: 1.4rem;
  max-width: 325px;
  width: 100%;
}
div.catbox article.card .portal-item .portal-content .info .desc > *:last-child, aside.catbox article.card .portal-item .portal-content .info .desc > *:last-child {
  margin-bottom: 0;
}
div.catbox article.card .portal-item:hover .portal-content .tn .tn-img, aside.catbox article.card .portal-item:hover .portal-content .tn .tn-img {
  opacity: 0.3;
  transform: scale(1.1);
}
div.catbox article.card .portal-item:hover .portal-content .info, aside.catbox article.card .portal-item:hover .portal-content .info {
  box-shadow: 0 0 100px 10px rgba(0, 0, 0, 0.4) inset;
}
div.catbox article.card .portal-item:hover .portal-content .info .ico .ico-img, aside.catbox article.card .portal-item:hover .portal-content .info .ico .ico-img {
  transform: scale(1.2);
}
div.catbox article.card .portal-item:hover .portal-content .info .title, aside.catbox article.card .portal-item:hover .portal-content .info .title {
  margin-bottom: 8px;
  text-shadow: 0 0 18px black;
}
div.catbox.cols-2 article.card, aside.catbox.cols-2 article.card {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  div.catbox.cols-2 article.card, aside.catbox.cols-2 article.card {
    width: 50%;
  }
  div.catbox.cols-2 article.card.maf-cs-2, div.catbox.cols-2 article.card.maf-cs-3, div.catbox.cols-2 article.card.maf-cs-4, aside.catbox.cols-2 article.card.maf-cs-2, aside.catbox.cols-2 article.card.maf-cs-3, aside.catbox.cols-2 article.card.maf-cs-4 {
    width: 100%;
  }
}
div.catbox.cols-3, aside.catbox.cols-3 {
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  div.catbox.cols-3, aside.catbox.cols-3 {
    justify-content: space-between;
  }
}
div.catbox.cols-3 article.card, aside.catbox.cols-3 article.card {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  div.catbox.cols-3 article.card, aside.catbox.cols-3 article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 1152px) {
  div.catbox.cols-3 article.card, aside.catbox.cols-3 article.card {
    width: 33.333%;
  }
  div.catbox.cols-3 article.card.maf-cs-2, aside.catbox.cols-3 article.card.maf-cs-2 {
    width: 66.666%;
  }
  div.catbox.cols-3 article.card.maf-cs-3, aside.catbox.cols-3 article.card.maf-cs-3 {
    width: 100%;
  }
}
div.catbox.cols-4 article.card, aside.catbox.cols-4 article.card {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  div.catbox.cols-4 article.card, aside.catbox.cols-4 article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 1152px) {
  div.catbox.cols-4 article.card, aside.catbox.cols-4 article.card {
    width: 25%;
  }
  div.catbox.cols-4 article.card.maf-cs-2, aside.catbox.cols-4 article.card.maf-cs-2 {
    width: 50%;
  }
  div.catbox.cols-4 article.card.maf-cs-3, aside.catbox.cols-4 article.card.maf-cs-3 {
    width: 75%;
  }
  div.catbox.cols-4 article.card.maf-cs-4, aside.catbox.cols-4 article.card.maf-cs-4 {
    width: 100%;
  }
}

div.masobox, aside.masobox {
  margin: 0 -10px;
  width: calc(100% + 20px);
}
div.masobox .card, div.masobox .maso-sizer, aside.masobox .card, aside.masobox .maso-sizer {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  div.masobox .card, div.masobox .maso-sizer, aside.masobox .card, aside.masobox .maso-sizer {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  div.masobox .card, div.masobox .maso-sizer, aside.masobox .card, aside.masobox .maso-sizer {
    width: 33.333%;
  }
}
div.masobox article.card, aside.masobox article.card {
  float: left;
  line-height: 1;
  padding: 10px;
  transition: none;
}
div.masobox article.card .portal-item, aside.masobox article.card .portal-item {
  display: inline-block;
  opacity: 1;
  overflow: hidden;
  width: 100%;
}
div.masobox article.card .portal-item .portal-content, aside.masobox article.card .portal-item .portal-content {
  display: inline-block;
  position: relative;
  width: 100%;
}
div.masobox article.card .portal-item .portal-content .card-cats, aside.masobox article.card .portal-item .portal-content .card-cats {
  color: white;
}
div.masobox article.card .portal-item .portal-content .tn, aside.masobox article.card .portal-item .portal-content .tn {
  display: inline-block;
  width: 100%;
}
div.masobox article.card .portal-item .portal-content .tn .tn-img, aside.masobox article.card .portal-item .portal-content .tn .tn-img {
  height: auto;
  line-height: 1;
  width: 100%;
}
div.masobox article.card .portal-item .portal-content .info, aside.masobox article.card .portal-item .portal-content .info {
  align-items: center;
  background-color: rgba(0, 87, 147, 0.8);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 10px;
  position: absolute;
  transition: all 350ms ease-out;
  top: 0;
  width: 100%;
}
div.masobox article.card .portal-item .portal-content .info > *, aside.masobox article.card .portal-item .portal-content .info > * {
  transition: all 350ms ease-out;
  opacity: 0;
}
div.masobox article.card .portal-item .portal-content .info > *:nth-child(1n), aside.masobox article.card .portal-item .portal-content .info > *:nth-child(1n) {
  transition-delay: 100ms;
}
div.masobox article.card .portal-item .portal-content .info > *:nth-child(2n), aside.masobox article.card .portal-item .portal-content .info > *:nth-child(2n) {
  transition-delay: 200ms;
}
div.masobox article.card .portal-item .portal-content .info > *:nth-child(3n), aside.masobox article.card .portal-item .portal-content .info > *:nth-child(3n) {
  transition-delay: 300ms;
}
div.masobox article.card .portal-item .portal-content .info > *:nth-child(4n), aside.masobox article.card .portal-item .portal-content .info > *:nth-child(4n) {
  transition-delay: 400ms;
}
div.masobox article.card .portal-item .portal-content .info > *:nth-child(5n), aside.masobox article.card .portal-item .portal-content .info > *:nth-child(5n) {
  transition-delay: 500ms;
}
div.masobox article.card .portal-item .portal-content .info > *:nth-child(6n), aside.masobox article.card .portal-item .portal-content .info > *:nth-child(6n) {
  transition-delay: 600ms;
}
div.masobox article.card .portal-item .portal-content .info > *:nth-child(7n), aside.masobox article.card .portal-item .portal-content .info > *:nth-child(7n) {
  transition-delay: 700ms;
}
div.masobox article.card .portal-item .portal-content .info > *:nth-child(8n), aside.masobox article.card .portal-item .portal-content .info > *:nth-child(8n) {
  transition-delay: 800ms;
}
div.masobox article.card .portal-item .portal-content .info > *:nth-child(9n), aside.masobox article.card .portal-item .portal-content .info > *:nth-child(9n) {
  transition-delay: 900ms;
}
div.masobox article.card .portal-item .portal-content .info > *:nth-child(10n), aside.masobox article.card .portal-item .portal-content .info > *:nth-child(10n) {
  transition-delay: 1000ms;
}
div.masobox article.card .portal-item .portal-content .info .title, aside.masobox article.card .portal-item .portal-content .info .title {
  color: white;
  font-size: 2.4rem;
  margin: 0 0 20px 0;
}
div.masobox article.card .portal-item .portal-content .info hr, aside.masobox article.card .portal-item .portal-content .info hr {
  background-color: transparent;
  border-top: 3px dashed white;
  margin: 0 0 20px 0;
  max-width: 100px;
}
div.masobox article.card .portal-item .portal-content .info .attr, aside.masobox article.card .portal-item .portal-content .info .attr {
  display: none;
}
div.masobox article.card .portal-item:hover .portal-content .info, aside.masobox article.card .portal-item:hover .portal-content .info {
  opacity: 1;
}
div.masobox article.card .portal-item:hover .portal-content .info > *, aside.masobox article.card .portal-item:hover .portal-content .info > * {
  opacity: 1;
}
div.masobox article.card.filter-item, aside.masobox article.card.filter-item {
  transition: none;
}

#filters {
  margin-top: 50px;
  width: 100%;
}
#filters .filter-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
#filters .filter-content .filter-set {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
#filters .filter-content .filter-set .label {
  display: none;
  margin: 0 30px 8px 0;
  width: auto;
}
#filters .filter-content .filter-set button {
  background-color: transparent;
  border: 2px solid rgb(222, 37, 149);
  border-radius: 0;
  box-shadow: none;
  color: rgb(222, 37, 149);
  cursor: pointer;
  flex: 0 0 auto;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  justify-content: flex-start;
  line-height: 1;
  margin: 5px;
  min-width: 170px;
  outline: transparent;
  padding: 18px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: all 350ms ease-out;
  white-space: nowrap;
  width: auto;
  z-index: 1;
}
#filters .filter-content .filter-set button:hover, #filters .filter-content .filter-set button.active {
  background-color: rgb(222, 37, 149);
  color: white;
}
#filters .filter-content .filter-set button.active:not(:first-of-type):hover {
  background-color: transparent;
  color: rgb(222, 37, 149);
}
#filters .filter-content .filter-set button.hide {
  opacity: 0.5;
}

.filtered .filter-target {
  min-height: 200px;
}
.filtered .filter-target .filter-item {
  transform: scale(1);
  transform-origin: center;
  transition: all 200ms ease-out;
  transition-property: transform, left, top, opacity;
}
.filtered .filter-target .filter-item.hide {
  height: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  transform: scale(0);
  transform-origin: center;
  transition: all 200ms ease-out;
  transition-property: transform, left, top, opacity;
  width: 0 !important;
}
.filtered .filter-target #no-results {
  left: 50%;
  padding: 50px 0;
  position: absolute;
  top: 0;
  transform: translateX(-50%) scale(0);
  transition: transform 350ms ease-out;
  visibility: hidden;
}
.filtered .filter-target #no-results.show {
  transform: translateX(-50%) scale(1);
  visibility: visible;
}

.itin-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
}
.itin-controls .button {
  border-color: rgb(230, 230, 230);
  background-color: rgb(230, 230, 230);
  cursor: pointer;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 1.4rem;
  line-height: 1.1;
  margin-left: 10px;
}
.itin-controls .button i {
  font-size: 1.6rem;
  margin-right: 4px;
  vertical-align: middle;
}
.itin-controls .button:hover, .itin-controls .button.active {
  background-color: transparent;
  color: rgb(230, 230, 230);
}
.itin-controls form {
  display: inline-block;
  line-height: 1.1;
  width: auto;
}
.itin-controls form .button {
  margin: 0;
}
.itin-controls.hide {
  display: none;
}

.search-box {
  background-color: white;
  border: 2px solid rgb(39, 69, 122);
  border-radius: 50px;
  color: rgb(39, 69, 122);
  display: inline-block;
  font-size: 2rem;
  height: 34px;
  padding: 0;
  position: relative;
  transition: all 350ms ease-out;
  vertical-align: top;
  width: 34px;
}
.search-box input {
  background-color: white;
  border: 0;
  border-radius: 15px 0 0 15px;
  color: rgb(51, 51, 51);
  font-size: 1.6rem;
  font-weight: 500;
  height: 26px;
  margin: 0 30px 0 0;
  outline: transparent;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
}
.search-box input::-moz-placeholder {
  color: rgb(51, 51, 51);
  opacity: 1;
  -moz-transition: all 350ms ease-out;
  transition: all 350ms ease-out;
}
.search-box input::placeholder {
  color: rgb(51, 51, 51);
  opacity: 1;
  transition: all 350ms ease-out;
}
.search-box input:focus {
  background-color: white;
  color: rgb(51, 51, 51);
}
.search-box input:focus::-moz-placeholder {
  opacity: 0.5;
}
.search-box input:focus::placeholder {
  opacity: 0.5;
}
.search-box i {
  border-radius: 50%;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  height: 24px;
  margin: 3px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 350ms ease-out;
  width: 24px;
}
.search-box i::before {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-55%, -55%);
}
.search-box:hover {
  background-color: rgb(39, 69, 122);
}
.search-box:hover i {
  color: white;
}
.search-box.on {
  background-color: white;
  width: 180px;
}
@media only screen and (min-width: 960px) {
  .search-box.on {
    width: 200px;
  }
}
.search-box.on i {
  color: rgb(39, 69, 122);
}
.search-box.on input {
  padding: 8px 5px 5px 10px;
  width: calc(100% - 34px);
}
.search-box.hero {
  background-color: rgba(0, 0, 0, 0.3);
  border: 3px solid white;
  height: 46px;
  margin-top: 10px;
}
.search-box.hero input {
  background-color: transparent;
  border-radius: 20px 0 0 20px;
  color: white;
  font-size: 1.8rem;
  height: 40px;
  margin: 0 50px 0 0;
  text-align: right;
}
.search-box.hero input::-moz-placeholder {
  color: white;
}
.search-box.hero input::placeholder {
  color: white;
}
.search-box.hero input:focus {
  background-color: rgba(0, 0, 0, 0.5);
}
.search-box.hero i {
  background-color: transparent;
  border-radius: 0 23px 23px 0;
  color: white;
  font-size: 2.4rem;
  height: 46px;
  padding: 5px;
  right: -3px;
  top: -3px;
  width: 50px;
}
.search-box.hero i::before {
  color: inherit;
}
.search-box.hero:hover {
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 16px 3px rgba(0, 0, 0, 0.7);
}
.search-box.hero.on {
  max-width: 475px;
  padding-left: 20px;
  width: 100%;
}
.search-box.hero.on input {
  width: calc(100% - 50px);
}
.search-box.hero.search-page {
  background-color: #f4f4f4;
  border-color: rgb(222, 37, 149);
}
.search-box.hero.search-page input {
  background-color: transparent;
  color: rgb(51, 51, 51);
  text-align: left;
}
.search-box.hero.search-page input::-moz-placeholder {
  color: rgb(51, 51, 51);
}
.search-box.hero.search-page input::placeholder {
  color: rgb(51, 51, 51);
}
.search-box.hero.search-page i {
  color: rgb(222, 37, 149);
}
.search-box.hero.search-page:hover {
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
}
.search-box.dtop {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .search-box.dtop {
    display: inline-block;
  }
}
.search-box.mob {
  background-color: white;
  border-color: rgba(0, 0, 0, 0.6);
  box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.2) inset;
  width: 100%;
}
.search-box.mob i {
  color: rgb(51, 51, 51);
}
.search-box.mob input {
  background-color: transparent;
  padding: 10px 5px 8px 10px;
  width: calc(100% - 34px);
}
.search-box.mob input::-moz-placeholder {
  opacity: 0.4;
}
.search-box.mob input::placeholder {
  opacity: 0.4;
}

#basket-link {
  align-items: center;
  color: rgb(51, 51, 51);
  display: flex;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 1;
  position: relative;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
}
#basket-link span {
  display: none;
  flex: 0 0 auto;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  #basket-link span {
    display: inline-block;
  }
}
#basket-link span:first-child {
  padding: 0 5px 0 0;
}
#basket-link i {
  border: 2px solid rgb(20, 151, 176);
  border-radius: 50%;
  color: rgb(51, 51, 51);
  cursor: pointer;
  display: inline-block;
  font-size: 2rem;
  height: 40px;
  padding: 10px;
  position: relative;
  transition: color 350ms ease-out;
  width: 40px;
}
#basket-link i::before {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
#basket-link .items {
  align-items: center;
  background-color: rgb(20, 151, 176);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  height: 19px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -5px;
  top: -5px;
  width: 19px;
}
#basket-link:hover i {
  background-color: rgb(222, 37, 149);
  border-color: rgb(222, 37, 149);
  color: white;
}

.maf-bc {
  width: 100%;
}
.maf-bc .maf-bc-i {
  color: rgb(51, 51, 51);
  font-size: 1.2rem;
  padding: 0 0 35px 0;
}
.maf-bc .maf-bc-i a {
  color: rgb(51, 51, 51);
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
.maf-bc .maf-bc-i a::before {
  background-color: rgb(51, 51, 51);
  bottom: -3px;
  content: "";
  display: inline-block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  transition: width 700ms ease-out;
  width: 0;
  z-index: -1;
}
.maf-bc .maf-bc-i a:hover::before {
  width: 100%;
}
.maf-bc .maf-bc-i span.dl {
  display: inline-block;
  margin: 0 10px;
}

#sub-menu-toc {
  background-color: rgb(39, 69, 122);
  color: white;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (min-width: 576px) {
  #sub-menu-toc {
    font-weight: 600;
  }
}
@media only screen and (min-width: 768px) {
  #sub-menu-toc {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 960px) {
  #sub-menu-toc {
    font-size: 2.2rem;
  }
}
#sub-menu-toc .row .column {
  padding-top: 30px;
  padding-bottom: 30px;
}
#sub-menu-toc nav {
  -moz-columns: 2 auto;
       columns: 2 auto;
  display: inline-block;
  max-width: 980px;
  padding-bottom: 30px;
  width: 100%;
}
#sub-menu-toc nav div a {
  color: white;
  display: inline-block;
  line-height: 1;
  outline: none;
  opacity: 1.2;
  padding: 5px 10px;
  width: auto;
}
#sub-menu-toc nav div a:hover, #sub-menu-toc nav div a:focus {
  background-color: white;
  color: rgb(39, 69, 122);
}

.modal {
  background-color: rgba(0, 0, 0, 0.8);
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  height: 100vh;
  left: 0;
  opacity: 0;
  padding: 20px;
  position: fixed;
  top: 0;
  transition: all 200ms ease-out;
  visibility: hidden;
  width: 100vw;
  z-index: 99999;
}
@media only screen and (min-width: 768px) {
  .modal {
    padding: 30px;
  }
}
@media only screen and (min-width: 960px) {
  .modal {
    padding: 50px;
  }
}
.modal > div {
  align-items: center;
  background-color: #f4f4f4;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  height: 0;
  left: 50%;
  max-height: 90%;
  max-width: 400px;
  min-height: 300px;
  opacity: 0;
  padding: 40px 0 20px 20px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 200ms ease-out;
  width: 0;
}
.modal > div .mod-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  overflow-y: auto;
  padding-right: 30px;
  text-align: center;
}
.modal > div .close {
  background-color: transparent;
  border: 0;
  color: rgb(222, 37, 149);
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  height: 30px;
  position: absolute;
  right: 10px;
  text-transform: uppercase;
  top: 10px;
  width: 30px;
}
.modal > div .close i {
  font-size: 2rem;
  vertical-align: -15%;
}
.modal > div .close::before, .modal > div .close::after {
  background-color: rgb(222, 37, 149);
  content: "";
  display: inline-block;
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
  transition: transform 350ms ease;
  width: 75%;
}
.modal > div .close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal > div .close:hover::before, .modal > div .close:hover::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.modal.show {
  display: inline-block;
  opacity: 1;
  visibility: visible;
}
.modal.show > div {
  height: auto;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  width: 90%;
}

#mp-age-consent {
  color: rgb(51, 51, 51);
}
#mp-age-consent .logo {
  margin: 0 0 30px 0;
  padding: 20px;
  width: 100%;
}
#mp-age-consent .logo img, #mp-age-consent .logo svg {
  display: block;
  margin: 0 auto;
  max-width: 350px;
  width: 100%;
}
#mp-age-consent p {
  font-size: 2rem;
  width: 100%;
}
#mp-age-consent p strong {
  text-transform: uppercase;
}
#mp-age-consent p.small {
  font-size: 1.4rem;
}
#mp-age-consent button {
  background-color: transparent;
  border-color: rgb(51, 51, 51);
  color: rgb(51, 51, 51);
  font-size: 2rem;
  margin: auto 20px;
  width: auto;
}
#mp-age-consent button:hover {
  background-color: rgb(222, 37, 149);
  border-color: rgb(222, 37, 149);
  color: white;
}
#mp-age-consent > div {
  max-height: 500px;
  max-width: 500px;
  padding: 20px;
  z-index: 1;
}
#mp-age-consent > div::before {
  content: "";
  display: none;
  border: 2px solid rgb(39, 69, 122);
  border-radius: 25px;
  height: calc(100% - 14px);
  left: 5px;
  position: absolute;
  top: 5px;
  width: calc(100% - 14px);
  z-index: 0;
}
#mp-age-consent > div .mod-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  text-align: center;
  z-index: 2;
}
#mp-age-consent.has-img > div {
  display: flex;
  max-width: 500px;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  #mp-age-consent.has-img > div {
    max-width: 1000px;
  }
}
#mp-age-consent.has-img .mod-content {
  flex: 1 1 0;
  max-width: 500px;
  padding: 20px;
}
#mp-age-consent.has-img .mod-content.img {
  background-color: black;
  background-position: center;
  background-size: cover;
  display: none;
}
@media only screen and (min-width: 1024px) {
  #mp-age-consent.has-img .mod-content.img {
    display: flex;
  }
}

#mp-nagger > div .mod-content p {
  color: rgb(39, 69, 122);
}
#mp-nagger > div .mod-content p.title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin: 40px 0 20px 0;
}

#ticket-op > div {
  border: 5px solid rgb(222, 37, 149);
  border-radius: 10px;
}
#ticket-op > div .mod-content p {
  font-size: 1.8rem;
}
#ticket-op > div .mod-content p.boo {
  color: rgb(222, 37, 149);
  margin-bottom: 10px;
}
#ticket-op > div .mod-content p.boo i {
  font-size: 5rem;
}

@keyframes point-a-d {
  0% {
    transform: translate(0, 0);
  }
  5% {
    transform: translate(0, -10px);
  }
  10% {
    transform: translate(0, 0);
  }
  15% {
    transform: translate(0, 10px);
  }
  20% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(0, -10px);
  }
  30% {
    transform: translate(0, 0);
  }
  35% {
    transform: translate(0, 10px);
  }
  40% {
    transform: translate(0, 0);
  }
}
#maf-btn-dwn {
  background-color: rgba(239, 231, 228, 0.2);
  border: 0;
  border-radius: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  opacity: 0.3;
  padding: 0;
  position: absolute;
  transition: opacity 350ms ease-out;
  width: 10%;
}
#maf-btn-dwn::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
#maf-btn-dwn .spr {
  animation: point-a-d 4000ms infinite linear;
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
#maf-btn-dwn .spr .a {
  bottom: 30%;
  display: inline-block;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 35%;
}
#maf-btn-dwn .spr .a::before, #maf-btn-dwn .spr .a::after {
  background-color: white;
  border-radius: 2px;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 2px;
  position: absolute;
  right: 50%;
  transform: rotate(45deg);
  transform-origin: right bottom;
  width: 60%;
}
@media only screen and (min-width: 960px) {
  #maf-btn-dwn .spr .a::before, #maf-btn-dwn .spr .a::after {
    height: 6px;
  }
}
#maf-btn-dwn .spr .a::after {
  left: 50%;
  transform: rotate(-45deg);
  transform-origin: left bottom;
  right: auto;
}
#maf-btn-dwn .spr .b {
  background-color: white;
  border-radius: 2px;
  bottom: calc(30% + 2px);
  display: inline-block;
  height: 30%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 2px;
}
@media only screen and (min-width: 960px) {
  #maf-btn-dwn .spr .b {
    width: 6px;
  }
}
#maf-btn-dwn:hover {
  opacity: 0.7;
}

.opening-times {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
}
.opening-times span {
  display: inline-block;
  font-weight: 400;
  padding-right: 10px;
}

.nav-underline {
  width: 100%;
  margin: 0 auto;
  max-width: 1188px;
  padding: 0 10px;
}
.nav-underline .line {
  background-color: rgb(51, 51, 51);
  height: 1px;
  width: 100%;
}
.nav-underline.hide {
  display: none;
}

.maf-portal {
  justify-content: center;
  min-height: 280px;
  padding-top: 0;
  padding-bottom: 0;
}
.maf-portal .maf-content {
  background-color: rgb(222, 37, 149);
  border: 1px solid rgb(198, 20, 127);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0);
  cursor: pointer;
  filter: drop-shadow(0 0 0px rgba(0, 0, 0, 0));
  height: calc(100% - 40px);
  justify-content: center;
  padding: 10px;
  text-align: center;
  transition: all 350ms ease-out;
  width: 100%;
}
.maf-portal .maf-content:hover {
  background-color: rgb(39, 69, 122) !important;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.7));
}
@media only screen and (min-width: 576px) {
  .maf-portal {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .maf-portal .maf-content {
    width: calc(100% - 40px);
  }
}
main {
  background-size: cover;
  padding: 0 0;
}
@media only screen and (min-width: 576px) {
  main {
    padding: 0 0;
  }
}
body.manageable-bo main {
  padding-top: 0;
  min-height: 0;
}

section, .section {
  overflow: hidden;
}

section p.page-lead, section span.page-lead, .section p.page-lead, .section span.page-lead, footer p.page-lead, footer span.page-lead, .bo-row p.page-lead, .bo-row span.page-lead {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
section p.small-text, section span.small-text, .section p.small-text, .section span.small-text, footer p.small-text, footer span.small-text, .bo-row p.small-text, .bo-row span.small-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
}
section p.massive-text, section span.massive-text, .section p.massive-text, .section span.massive-text, footer p.massive-text, footer span.massive-text, .bo-row p.massive-text, .bo-row span.massive-text {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1;
}
section p.tiny-text, section span.tiny-text, .section p.tiny-text, .section span.tiny-text, footer p.tiny-text, footer span.tiny-text, .bo-row p.tiny-text, .bo-row span.tiny-text {
  font-family: "Open Sans", sans-serif;
  font-size: 0.5em !important;
}
section p.script-text, section span.script-text, .section p.script-text, .section span.script-text, footer p.script-text, footer span.script-text, .bo-row p.script-text, .bo-row span.script-text {
  font-family: cursive;
}
section p.p-yes, section p.p-no, section span.p-yes, section span.p-no, .section p.p-yes, .section p.p-no, .section span.p-yes, .section span.p-no, footer p.p-yes, footer p.p-no, footer span.p-yes, footer span.p-no, .bo-row p.p-yes, .bo-row p.p-no, .bo-row span.p-yes, .bo-row span.p-no {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  padding-left: 11%;
  position: relative;
}
section p.p-yes::before, section p.p-no::before, section span.p-yes::before, section span.p-no::before, .section p.p-yes::before, .section p.p-no::before, .section span.p-yes::before, .section span.p-no::before, footer p.p-yes::before, footer p.p-no::before, footer span.p-yes::before, footer span.p-no::before, .bo-row p.p-yes::before, .bo-row p.p-no::before, .bo-row span.p-yes::before, .bo-row span.p-no::before {
  background-image: url("/images/Layout/ui/tick-circ.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 9%;
}
section p.p-yes::before, section span.p-yes::before, .section p.p-yes::before, .section span.p-yes::before, footer p.p-yes::before, footer span.p-yes::before, .bo-row p.p-yes::before, .bo-row span.p-yes::before {
  background-image: url("/images/Layout/ui/tick-circ.svg");
}
section p.p-no::before, section span.p-no::before, .section p.p-no::before, .section span.p-no::before, footer p.p-no::before, footer span.p-no::before, .bo-row p.p-no::before, .bo-row span.p-no::before {
  background-image: url("/images/Layout/ui/cross-circ.svg");
}
section p.has-img img, .section p.has-img img, footer p.has-img img, .bo-row p.has-img img {
  margin: 0 20px 20px 0 !important;
}
section p.has-img figure img, .section p.has-img figure img, footer p.has-img figure img, .bo-row p.has-img figure img {
  margin: 0 !important;
}
section p.p-links, .section p.p-links, footer p.p-links, .bo-row p.p-links {
  margin: 10px -15px 30px -15px;
  position: relative;
  width: calc(100% + 30px);
}
section p.p-links a, .section p.p-links a, footer p.p-links a, .bo-row p.p-links a {
  margin: 0 15px 10px 15px;
}
section p.p-links a img, .section p.p-links a img, footer p.p-links a img, .bo-row p.p-links a img {
  display: inline-block;
}
section p.has-figs, .section p.has-figs, footer p.has-figs, .bo-row p.has-figs {
  align-items: flex-end;
  align-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -15px;
  width: calc(100% + 30px);
}
section p.has-figs figure, .section p.has-figs figure, footer p.has-figs figure, .bo-row p.has-figs figure {
  flex: 0 1 auto;
  margin: 0 15px 20px 15px;
}
section h1.page-lead, section .h1-style.page-lead, section h2.page-lead, section .h2-style.page-lead, section h3.page-lead, section .h3-style.page-lead, section h4.page-lead, section .h4-style.page-lead, section h5.page-lead, section .h5-style.page-lead, section h6.page-lead, section .h6-style.page-lead, section p.page-lead, section .p-style.page-lead, .section h1.page-lead, .section .h1-style.page-lead, .section h2.page-lead, .section .h2-style.page-lead, .section h3.page-lead, .section .h3-style.page-lead, .section h4.page-lead, .section .h4-style.page-lead, .section h5.page-lead, .section .h5-style.page-lead, .section h6.page-lead, .section .h6-style.page-lead, .section p.page-lead, .section .p-style.page-lead, footer h1.page-lead, footer .h1-style.page-lead, footer h2.page-lead, footer .h2-style.page-lead, footer h3.page-lead, footer .h3-style.page-lead, footer h4.page-lead, footer .h4-style.page-lead, footer h5.page-lead, footer .h5-style.page-lead, footer h6.page-lead, footer .h6-style.page-lead, footer p.page-lead, footer .p-style.page-lead, .bo-row h1.page-lead, .bo-row .h1-style.page-lead, .bo-row h2.page-lead, .bo-row .h2-style.page-lead, .bo-row h3.page-lead, .bo-row .h3-style.page-lead, .bo-row h4.page-lead, .bo-row .h4-style.page-lead, .bo-row h5.page-lead, .bo-row .h5-style.page-lead, .bo-row h6.page-lead, .bo-row .h6-style.page-lead, .bo-row p.page-lead, .bo-row .p-style.page-lead {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
section h1.no-margin, section .h1-style.no-margin, section h2.no-margin, section .h2-style.no-margin, section h3.no-margin, section .h3-style.no-margin, section h4.no-margin, section .h4-style.no-margin, section h5.no-margin, section .h5-style.no-margin, section h6.no-margin, section .h6-style.no-margin, section p.no-margin, section .p-style.no-margin, .section h1.no-margin, .section .h1-style.no-margin, .section h2.no-margin, .section .h2-style.no-margin, .section h3.no-margin, .section .h3-style.no-margin, .section h4.no-margin, .section .h4-style.no-margin, .section h5.no-margin, .section .h5-style.no-margin, .section h6.no-margin, .section .h6-style.no-margin, .section p.no-margin, .section .p-style.no-margin, footer h1.no-margin, footer .h1-style.no-margin, footer h2.no-margin, footer .h2-style.no-margin, footer h3.no-margin, footer .h3-style.no-margin, footer h4.no-margin, footer .h4-style.no-margin, footer h5.no-margin, footer .h5-style.no-margin, footer h6.no-margin, footer .h6-style.no-margin, footer p.no-margin, footer .p-style.no-margin, .bo-row h1.no-margin, .bo-row .h1-style.no-margin, .bo-row h2.no-margin, .bo-row .h2-style.no-margin, .bo-row h3.no-margin, .bo-row .h3-style.no-margin, .bo-row h4.no-margin, .bo-row .h4-style.no-margin, .bo-row h5.no-margin, .bo-row .h5-style.no-margin, .bo-row h6.no-margin, .bo-row .h6-style.no-margin, .bo-row p.no-margin, .bo-row .p-style.no-margin {
  margin: 0 !important;
}
section h1.small-margin, section .h1-style.small-margin, section h2.small-margin, section .h2-style.small-margin, section h3.small-margin, section .h3-style.small-margin, section h4.small-margin, section .h4-style.small-margin, section h5.small-margin, section .h5-style.small-margin, section h6.small-margin, section .h6-style.small-margin, section p.small-margin, section .p-style.small-margin, .section h1.small-margin, .section .h1-style.small-margin, .section h2.small-margin, .section .h2-style.small-margin, .section h3.small-margin, .section .h3-style.small-margin, .section h4.small-margin, .section .h4-style.small-margin, .section h5.small-margin, .section .h5-style.small-margin, .section h6.small-margin, .section .h6-style.small-margin, .section p.small-margin, .section .p-style.small-margin, footer h1.small-margin, footer .h1-style.small-margin, footer h2.small-margin, footer .h2-style.small-margin, footer h3.small-margin, footer .h3-style.small-margin, footer h4.small-margin, footer .h4-style.small-margin, footer h5.small-margin, footer .h5-style.small-margin, footer h6.small-margin, footer .h6-style.small-margin, footer p.small-margin, footer .p-style.small-margin, .bo-row h1.small-margin, .bo-row .h1-style.small-margin, .bo-row h2.small-margin, .bo-row .h2-style.small-margin, .bo-row h3.small-margin, .bo-row .h3-style.small-margin, .bo-row h4.small-margin, .bo-row .h4-style.small-margin, .bo-row h5.small-margin, .bo-row .h5-style.small-margin, .bo-row h6.small-margin, .bo-row .h6-style.small-margin, .bo-row p.small-margin, .bo-row .p-style.small-margin {
  margin-bottom: 0.2em !important;
}
section h1.big-text, section .h1-style.big-text, section h2.big-text, section .h2-style.big-text, section h3.big-text, section .h3-style.big-text, section h4.big-text, section .h4-style.big-text, section h5.big-text, section .h5-style.big-text, section h6.big-text, section .h6-style.big-text, section p.big-text, section .p-style.big-text, .section h1.big-text, .section .h1-style.big-text, .section h2.big-text, .section .h2-style.big-text, .section h3.big-text, .section .h3-style.big-text, .section h4.big-text, .section .h4-style.big-text, .section h5.big-text, .section .h5-style.big-text, .section h6.big-text, .section .h6-style.big-text, .section p.big-text, .section .p-style.big-text, footer h1.big-text, footer .h1-style.big-text, footer h2.big-text, footer .h2-style.big-text, footer h3.big-text, footer .h3-style.big-text, footer h4.big-text, footer .h4-style.big-text, footer h5.big-text, footer .h5-style.big-text, footer h6.big-text, footer .h6-style.big-text, footer p.big-text, footer .p-style.big-text, .bo-row h1.big-text, .bo-row .h1-style.big-text, .bo-row h2.big-text, .bo-row .h2-style.big-text, .bo-row h3.big-text, .bo-row .h3-style.big-text, .bo-row h4.big-text, .bo-row .h4-style.big-text, .bo-row h5.big-text, .bo-row .h5-style.big-text, .bo-row h6.big-text, .bo-row .h6-style.big-text, .bo-row p.big-text, .bo-row .p-style.big-text {
  font-size: 2.8rem;
}
section h1.massive-text, section .h1-style.massive-text, section h2.massive-text, section .h2-style.massive-text, section h3.massive-text, section .h3-style.massive-text, section h4.massive-text, section .h4-style.massive-text, section h5.massive-text, section .h5-style.massive-text, section h6.massive-text, section .h6-style.massive-text, section p.massive-text, section .p-style.massive-text, .section h1.massive-text, .section .h1-style.massive-text, .section h2.massive-text, .section .h2-style.massive-text, .section h3.massive-text, .section .h3-style.massive-text, .section h4.massive-text, .section .h4-style.massive-text, .section h5.massive-text, .section .h5-style.massive-text, .section h6.massive-text, .section .h6-style.massive-text, .section p.massive-text, .section .p-style.massive-text, footer h1.massive-text, footer .h1-style.massive-text, footer h2.massive-text, footer .h2-style.massive-text, footer h3.massive-text, footer .h3-style.massive-text, footer h4.massive-text, footer .h4-style.massive-text, footer h5.massive-text, footer .h5-style.massive-text, footer h6.massive-text, footer .h6-style.massive-text, footer p.massive-text, footer .p-style.massive-text, .bo-row h1.massive-text, .bo-row .h1-style.massive-text, .bo-row h2.massive-text, .bo-row .h2-style.massive-text, .bo-row h3.massive-text, .bo-row .h3-style.massive-text, .bo-row h4.massive-text, .bo-row .h4-style.massive-text, .bo-row h5.massive-text, .bo-row .h5-style.massive-text, .bo-row h6.massive-text, .bo-row .h6-style.massive-text, .bo-row p.massive-text, .bo-row .p-style.massive-text {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1;
}
section h1.tiny-text, section .h1-style.tiny-text, section h2.tiny-text, section .h2-style.tiny-text, section h3.tiny-text, section .h3-style.tiny-text, section h4.tiny-text, section .h4-style.tiny-text, section h5.tiny-text, section .h5-style.tiny-text, section h6.tiny-text, section .h6-style.tiny-text, section p.tiny-text, section .p-style.tiny-text, .section h1.tiny-text, .section .h1-style.tiny-text, .section h2.tiny-text, .section .h2-style.tiny-text, .section h3.tiny-text, .section .h3-style.tiny-text, .section h4.tiny-text, .section .h4-style.tiny-text, .section h5.tiny-text, .section .h5-style.tiny-text, .section h6.tiny-text, .section .h6-style.tiny-text, .section p.tiny-text, .section .p-style.tiny-text, footer h1.tiny-text, footer .h1-style.tiny-text, footer h2.tiny-text, footer .h2-style.tiny-text, footer h3.tiny-text, footer .h3-style.tiny-text, footer h4.tiny-text, footer .h4-style.tiny-text, footer h5.tiny-text, footer .h5-style.tiny-text, footer h6.tiny-text, footer .h6-style.tiny-text, footer p.tiny-text, footer .p-style.tiny-text, .bo-row h1.tiny-text, .bo-row .h1-style.tiny-text, .bo-row h2.tiny-text, .bo-row .h2-style.tiny-text, .bo-row h3.tiny-text, .bo-row .h3-style.tiny-text, .bo-row h4.tiny-text, .bo-row .h4-style.tiny-text, .bo-row h5.tiny-text, .bo-row .h5-style.tiny-text, .bo-row h6.tiny-text, .bo-row .h6-style.tiny-text, .bo-row p.tiny-text, .bo-row .p-style.tiny-text {
  font-family: "Open Sans", sans-serif;
  font-size: 0.5em !important;
}
section h1.highlight-text, section .h1-style.highlight-text, section h2.highlight-text, section .h2-style.highlight-text, section h3.highlight-text, section .h3-style.highlight-text, section h4.highlight-text, section .h4-style.highlight-text, section h5.highlight-text, section .h5-style.highlight-text, section h6.highlight-text, section .h6-style.highlight-text, section p.highlight-text, section .p-style.highlight-text, .section h1.highlight-text, .section .h1-style.highlight-text, .section h2.highlight-text, .section .h2-style.highlight-text, .section h3.highlight-text, .section .h3-style.highlight-text, .section h4.highlight-text, .section .h4-style.highlight-text, .section h5.highlight-text, .section .h5-style.highlight-text, .section h6.highlight-text, .section .h6-style.highlight-text, .section p.highlight-text, .section .p-style.highlight-text, footer h1.highlight-text, footer .h1-style.highlight-text, footer h2.highlight-text, footer .h2-style.highlight-text, footer h3.highlight-text, footer .h3-style.highlight-text, footer h4.highlight-text, footer .h4-style.highlight-text, footer h5.highlight-text, footer .h5-style.highlight-text, footer h6.highlight-text, footer .h6-style.highlight-text, footer p.highlight-text, footer .p-style.highlight-text, .bo-row h1.highlight-text, .bo-row .h1-style.highlight-text, .bo-row h2.highlight-text, .bo-row .h2-style.highlight-text, .bo-row h3.highlight-text, .bo-row .h3-style.highlight-text, .bo-row h4.highlight-text, .bo-row .h4-style.highlight-text, .bo-row h5.highlight-text, .bo-row .h5-style.highlight-text, .bo-row h6.highlight-text, .bo-row .h6-style.highlight-text, .bo-row p.highlight-text, .bo-row .p-style.highlight-text {
  border-top: 1px solid rgb(51, 51, 51);
  border-bottom: 1px solid rgb(51, 51, 51);
  font-size: 3rem;
  font-weight: 600;
  margin-top: 10px;
  padding: 10px 0;
  text-transform: uppercase;
  width: auto;
}
section h1.small-margin, section .h1-style.small-margin, section h2.small-margin, section .h2-style.small-margin, section h3.small-margin, section .h3-style.small-margin, section h4.small-margin, section .h4-style.small-margin, section h5.small-margin, section .h5-style.small-margin, section h6.small-margin, section .h6-style.small-margin, section p.small-margin, section .p-style.small-margin, .section h1.small-margin, .section .h1-style.small-margin, .section h2.small-margin, .section .h2-style.small-margin, .section h3.small-margin, .section .h3-style.small-margin, .section h4.small-margin, .section .h4-style.small-margin, .section h5.small-margin, .section .h5-style.small-margin, .section h6.small-margin, .section .h6-style.small-margin, .section p.small-margin, .section .p-style.small-margin, footer h1.small-margin, footer .h1-style.small-margin, footer h2.small-margin, footer .h2-style.small-margin, footer h3.small-margin, footer .h3-style.small-margin, footer h4.small-margin, footer .h4-style.small-margin, footer h5.small-margin, footer .h5-style.small-margin, footer h6.small-margin, footer .h6-style.small-margin, footer p.small-margin, footer .p-style.small-margin, .bo-row h1.small-margin, .bo-row .h1-style.small-margin, .bo-row h2.small-margin, .bo-row .h2-style.small-margin, .bo-row h3.small-margin, .bo-row .h3-style.small-margin, .bo-row h4.small-margin, .bo-row .h4-style.small-margin, .bo-row h5.small-margin, .bo-row .h5-style.small-margin, .bo-row h6.small-margin, .bo-row .h6-style.small-margin, .bo-row p.small-margin, .bo-row .p-style.small-margin {
  margin-bottom: 10px;
}
section h1.big-margin, section .h1-style.big-margin, section h2.big-margin, section .h2-style.big-margin, section h3.big-margin, section .h3-style.big-margin, section h4.big-margin, section .h4-style.big-margin, section h5.big-margin, section .h5-style.big-margin, section h6.big-margin, section .h6-style.big-margin, section p.big-margin, section .p-style.big-margin, .section h1.big-margin, .section .h1-style.big-margin, .section h2.big-margin, .section .h2-style.big-margin, .section h3.big-margin, .section .h3-style.big-margin, .section h4.big-margin, .section .h4-style.big-margin, .section h5.big-margin, .section .h5-style.big-margin, .section h6.big-margin, .section .h6-style.big-margin, .section p.big-margin, .section .p-style.big-margin, footer h1.big-margin, footer .h1-style.big-margin, footer h2.big-margin, footer .h2-style.big-margin, footer h3.big-margin, footer .h3-style.big-margin, footer h4.big-margin, footer .h4-style.big-margin, footer h5.big-margin, footer .h5-style.big-margin, footer h6.big-margin, footer .h6-style.big-margin, footer p.big-margin, footer .p-style.big-margin, .bo-row h1.big-margin, .bo-row .h1-style.big-margin, .bo-row h2.big-margin, .bo-row .h2-style.big-margin, .bo-row h3.big-margin, .bo-row .h3-style.big-margin, .bo-row h4.big-margin, .bo-row .h4-style.big-margin, .bo-row h5.big-margin, .bo-row .h5-style.big-margin, .bo-row h6.big-margin, .bo-row .h6-style.big-margin, .bo-row p.big-margin, .bo-row .p-style.big-margin {
  margin-bottom: 30px;
}
section h1.dark-glow, section .h1-style.dark-glow, section h2.dark-glow, section .h2-style.dark-glow, section h3.dark-glow, section .h3-style.dark-glow, section h4.dark-glow, section .h4-style.dark-glow, section h5.dark-glow, section .h5-style.dark-glow, section h6.dark-glow, section .h6-style.dark-glow, section p.dark-glow, section .p-style.dark-glow, .section h1.dark-glow, .section .h1-style.dark-glow, .section h2.dark-glow, .section .h2-style.dark-glow, .section h3.dark-glow, .section .h3-style.dark-glow, .section h4.dark-glow, .section .h4-style.dark-glow, .section h5.dark-glow, .section .h5-style.dark-glow, .section h6.dark-glow, .section .h6-style.dark-glow, .section p.dark-glow, .section .p-style.dark-glow, footer h1.dark-glow, footer .h1-style.dark-glow, footer h2.dark-glow, footer .h2-style.dark-glow, footer h3.dark-glow, footer .h3-style.dark-glow, footer h4.dark-glow, footer .h4-style.dark-glow, footer h5.dark-glow, footer .h5-style.dark-glow, footer h6.dark-glow, footer .h6-style.dark-glow, footer p.dark-glow, footer .p-style.dark-glow, .bo-row h1.dark-glow, .bo-row .h1-style.dark-glow, .bo-row h2.dark-glow, .bo-row .h2-style.dark-glow, .bo-row h3.dark-glow, .bo-row .h3-style.dark-glow, .bo-row h4.dark-glow, .bo-row .h4-style.dark-glow, .bo-row h5.dark-glow, .bo-row .h5-style.dark-glow, .bo-row h6.dark-glow, .bo-row .h6-style.dark-glow, .bo-row p.dark-glow, .bo-row .p-style.dark-glow {
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
}
section h1.light-glow, section .h1-style.light-glow, section h2.light-glow, section .h2-style.light-glow, section h3.light-glow, section .h3-style.light-glow, section h4.light-glow, section .h4-style.light-glow, section h5.light-glow, section .h5-style.light-glow, section h6.light-glow, section .h6-style.light-glow, section p.light-glow, section .p-style.light-glow, .section h1.light-glow, .section .h1-style.light-glow, .section h2.light-glow, .section .h2-style.light-glow, .section h3.light-glow, .section .h3-style.light-glow, .section h4.light-glow, .section .h4-style.light-glow, .section h5.light-glow, .section .h5-style.light-glow, .section h6.light-glow, .section .h6-style.light-glow, .section p.light-glow, .section .p-style.light-glow, footer h1.light-glow, footer .h1-style.light-glow, footer h2.light-glow, footer .h2-style.light-glow, footer h3.light-glow, footer .h3-style.light-glow, footer h4.light-glow, footer .h4-style.light-glow, footer h5.light-glow, footer .h5-style.light-glow, footer h6.light-glow, footer .h6-style.light-glow, footer p.light-glow, footer .p-style.light-glow, .bo-row h1.light-glow, .bo-row .h1-style.light-glow, .bo-row h2.light-glow, .bo-row .h2-style.light-glow, .bo-row h3.light-glow, .bo-row .h3-style.light-glow, .bo-row h4.light-glow, .bo-row .h4-style.light-glow, .bo-row h5.light-glow, .bo-row .h5-style.light-glow, .bo-row h6.light-glow, .bo-row .h6-style.light-glow, .bo-row p.light-glow, .bo-row .p-style.light-glow {
  text-shadow: 0 0 0.1em rgba(255, 255, 255, 0.7);
}
section h1.p-style, section .h1-style.p-style, section h2.p-style, section .h2-style.p-style, section h3.p-style, section .h3-style.p-style, section h4.p-style, section .h4-style.p-style, section h5.p-style, section .h5-style.p-style, section h6.p-style, section .h6-style.p-style, section p.p-style, section .p-style.p-style, .section h1.p-style, .section .h1-style.p-style, .section h2.p-style, .section .h2-style.p-style, .section h3.p-style, .section .h3-style.p-style, .section h4.p-style, .section .h4-style.p-style, .section h5.p-style, .section .h5-style.p-style, .section h6.p-style, .section .h6-style.p-style, .section p.p-style, .section .p-style.p-style, footer h1.p-style, footer .h1-style.p-style, footer h2.p-style, footer .h2-style.p-style, footer h3.p-style, footer .h3-style.p-style, footer h4.p-style, footer .h4-style.p-style, footer h5.p-style, footer .h5-style.p-style, footer h6.p-style, footer .h6-style.p-style, footer p.p-style, footer .p-style.p-style, .bo-row h1.p-style, .bo-row .h1-style.p-style, .bo-row h2.p-style, .bo-row .h2-style.p-style, .bo-row h3.p-style, .bo-row .h3-style.p-style, .bo-row h4.p-style, .bo-row .h4-style.p-style, .bo-row h5.p-style, .bo-row .h5-style.p-style, .bo-row h6.p-style, .bo-row .h6-style.p-style, .bo-row p.p-style, .bo-row .p-style.p-style {
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  section h1.p-style, section .h1-style.p-style, section h2.p-style, section .h2-style.p-style, section h3.p-style, section .h3-style.p-style, section h4.p-style, section .h4-style.p-style, section h5.p-style, section .h5-style.p-style, section h6.p-style, section .h6-style.p-style, section p.p-style, section .p-style.p-style, .section h1.p-style, .section .h1-style.p-style, .section h2.p-style, .section .h2-style.p-style, .section h3.p-style, .section .h3-style.p-style, .section h4.p-style, .section .h4-style.p-style, .section h5.p-style, .section .h5-style.p-style, .section h6.p-style, .section .h6-style.p-style, .section p.p-style, .section .p-style.p-style, footer h1.p-style, footer .h1-style.p-style, footer h2.p-style, footer .h2-style.p-style, footer h3.p-style, footer .h3-style.p-style, footer h4.p-style, footer .h4-style.p-style, footer h5.p-style, footer .h5-style.p-style, footer h6.p-style, footer .h6-style.p-style, footer p.p-style, footer .p-style.p-style, .bo-row h1.p-style, .bo-row .h1-style.p-style, .bo-row h2.p-style, .bo-row .h2-style.p-style, .bo-row h3.p-style, .bo-row .h3-style.p-style, .bo-row h4.p-style, .bo-row .h4-style.p-style, .bo-row h5.p-style, .bo-row .h5-style.p-style, .bo-row h6.p-style, .bo-row .h6-style.p-style, .bo-row p.p-style, .bo-row .p-style.p-style {
    font-size: 1.6rem;
  }
}
section div.hr-button, .section div.hr-button, footer div.hr-button, .bo-row div.hr-button {
  display: inline-block;
  margin: 30px 0;
  max-width: 800px;
  overflow: hidden;
  width: 100%;
}
section div.hr-button a, .section div.hr-button a, footer div.hr-button a, .bo-row div.hr-button a {
  border: 2px solid rgb(39, 69, 122);
  border-radius: 50px;
  color: rgb(39, 69, 122);
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 3px 50px;
  position: relative;
  text-transform: uppercase;
}
section div.hr-button a::before, section div.hr-button a::after, .section div.hr-button a::before, .section div.hr-button a::after, footer div.hr-button a::before, footer div.hr-button a::after, .bo-row div.hr-button a::before, .bo-row div.hr-button a::after {
  background-color: rgb(39, 69, 122);
  content: "";
  height: 2px;
  left: calc(100% + 50px);
  position: absolute;
  top: 50%;
  transition: all 350ms ease-out;
  width: 700px;
}
section div.hr-button a::after, .section div.hr-button a::after, footer div.hr-button a::after, .bo-row div.hr-button a::after {
  left: auto;
  right: calc(100% + 50px);
}
section div.hr-button a:hover, .section div.hr-button a:hover, footer div.hr-button a:hover, .bo-row div.hr-button a:hover {
  background-color: rgb(39, 69, 122);
  color: white;
}
section div.hr-button a:hover::before, .section div.hr-button a:hover::before, footer div.hr-button a:hover::before, .bo-row div.hr-button a:hover::before {
  left: 100%;
}
section div.hr-button a:hover::after, .section div.hr-button a:hover::after, footer div.hr-button a:hover::after, .bo-row div.hr-button a:hover::after {
  right: 100%;
}
section a.button.square, section div.button.square, section button.button.square, section button.maf-button.square, .section a.button.square, .section div.button.square, .section button.button.square, .section button.maf-button.square, footer a.button.square, footer div.button.square, footer button.button.square, footer button.maf-button.square, .bo-row a.button.square, .bo-row div.button.square, .bo-row button.button.square, .bo-row button.maf-button.square {
  border: 1px solid rgb(222, 37, 149);
  border-radius: 0;
  color: rgb(222, 37, 149);
}
section a.button.square::after, section div.button.square::after, section button.button.square::after, section button.maf-button.square::after, .section a.button.square::after, .section div.button.square::after, .section button.button.square::after, .section button.maf-button.square::after, footer a.button.square::after, footer div.button.square::after, footer button.button.square::after, footer button.maf-button.square::after, .bo-row a.button.square::after, .bo-row div.button.square::after, .bo-row button.button.square::after, .bo-row button.maf-button.square::after {
  display: none;
}
section a.button.square:hover, section div.button.square:hover, section button.button.square:hover, section button.maf-button.square:hover, .section a.button.square:hover, .section div.button.square:hover, .section button.button.square:hover, .section button.maf-button.square:hover, footer a.button.square:hover, footer div.button.square:hover, footer button.button.square:hover, footer button.maf-button.square:hover, .bo-row a.button.square:hover, .bo-row div.button.square:hover, .bo-row button.button.square:hover, .bo-row button.maf-button.square:hover {
  background-color: rgb(222, 37, 149);
  color: white;
}
section a.button.light, section div.button.light, section button.button.light, section button.maf-button.light, .section a.button.light, .section div.button.light, .section button.button.light, .section button.maf-button.light, footer a.button.light, footer div.button.light, footer button.button.light, footer button.maf-button.light, .bo-row a.button.light, .bo-row div.button.light, .bo-row button.button.light, .bo-row button.maf-button.light {
  background-color: rgb(39, 69, 122);
}
section a.button.light::before, section a.button.light::after, section div.button.light::before, section div.button.light::after, section button.button.light::before, section button.button.light::after, section button.maf-button.light::before, section button.maf-button.light::after, .section a.button.light::before, .section a.button.light::after, .section div.button.light::before, .section div.button.light::after, .section button.button.light::before, .section button.button.light::after, .section button.maf-button.light::before, .section button.maf-button.light::after, footer a.button.light::before, footer a.button.light::after, footer div.button.light::before, footer div.button.light::after, footer button.button.light::before, footer button.button.light::after, footer button.maf-button.light::before, footer button.maf-button.light::after, .bo-row a.button.light::before, .bo-row a.button.light::after, .bo-row div.button.light::before, .bo-row div.button.light::after, .bo-row button.button.light::before, .bo-row button.button.light::after, .bo-row button.maf-button.light::before, .bo-row button.maf-button.light::after {
  background-color: rgb(222, 37, 149);
}
section a.button.chev-point, section div.button.chev-point, section button.button.chev-point, section button.maf-button.chev-point, .section a.button.chev-point, .section div.button.chev-point, .section button.button.chev-point, .section button.maf-button.chev-point, footer a.button.chev-point, footer div.button.chev-point, footer button.button.chev-point, footer button.maf-button.chev-point, .bo-row a.button.chev-point, .bo-row div.button.chev-point, .bo-row button.button.chev-point, .bo-row button.maf-button.chev-point {
  background-color: transparent;
  border: 0;
  color: rgb(237, 105, 102);
  box-shadow: none;
  line-height: 1;
  padding: 15px 18px 15px 0;
  position: relative;
}
section a.button.chev-point::after, section div.button.chev-point::after, section button.button.chev-point::after, section button.maf-button.chev-point::after, .section a.button.chev-point::after, .section div.button.chev-point::after, .section button.button.chev-point::after, .section button.maf-button.chev-point::after, footer a.button.chev-point::after, footer div.button.chev-point::after, footer button.button.chev-point::after, footer button.maf-button.chev-point::after, .bo-row a.button.chev-point::after, .bo-row div.button.chev-point::after, .bo-row button.button.chev-point::after, .bo-row button.maf-button.chev-point::after {
  background-color: transparent;
  border: 3px solid rgb(237, 105, 102);
  border-top: 0;
  border-left: 0;
  content: "";
  display: inline-block;
  height: 8px;
  left: auto;
  position: absolute;
  right: 0;
  top: 42%;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
  transition: all 350ms ease-out;
  width: 8px;
}
section a.button.chev-point:hover::after, section div.button.chev-point:hover::after, section button.button.chev-point:hover::after, section button.maf-button.chev-point:hover::after, .section a.button.chev-point:hover::after, .section div.button.chev-point:hover::after, .section button.button.chev-point:hover::after, .section button.maf-button.chev-point:hover::after, footer a.button.chev-point:hover::after, footer div.button.chev-point:hover::after, footer button.button.chev-point:hover::after, footer button.maf-button.chev-point:hover::after, .bo-row a.button.chev-point:hover::after, .bo-row div.button.chev-point:hover::after, .bo-row button.button.chev-point:hover::after, .bo-row button.maf-button.chev-point:hover::after {
  top: 46%;
}
section a.button.dl-pdf, section div.button.dl-pdf, section button.button.dl-pdf, section button.maf-button.dl-pdf, .section a.button.dl-pdf, .section div.button.dl-pdf, .section button.button.dl-pdf, .section button.maf-button.dl-pdf, footer a.button.dl-pdf, footer div.button.dl-pdf, footer button.button.dl-pdf, footer button.maf-button.dl-pdf, .bo-row a.button.dl-pdf, .bo-row div.button.dl-pdf, .bo-row button.button.dl-pdf, .bo-row button.maf-button.dl-pdf {
  background-color: transparent;
  border: 0;
  color: rgb(39, 69, 122);
  font-size: 1.8rem;
  font-weight: 400;
  min-height: 67px;
  max-width: 530px;
  padding-left: 85px;
  position: relative;
  text-align: left;
  text-transform: none;
  z-index: 1;
}
section a.button.dl-pdf::before, section div.button.dl-pdf::before, section button.button.dl-pdf::before, section button.maf-button.dl-pdf::before, .section a.button.dl-pdf::before, .section div.button.dl-pdf::before, .section button.button.dl-pdf::before, .section button.maf-button.dl-pdf::before, footer a.button.dl-pdf::before, footer div.button.dl-pdf::before, footer button.button.dl-pdf::before, footer button.maf-button.dl-pdf::before, .bo-row a.button.dl-pdf::before, .bo-row div.button.dl-pdf::before, .bo-row button.button.dl-pdf::before, .bo-row button.maf-button.dl-pdf::before {
  background-image: url("/images/Layout/ui/pdf.png");
  content: "";
  display: inline-block;
  height: 67px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 350ms ease-out;
  width: 66px;
}
section a.button.dl-pdf:hover, section div.button.dl-pdf:hover, section button.button.dl-pdf:hover, section button.maf-button.dl-pdf:hover, .section a.button.dl-pdf:hover, .section div.button.dl-pdf:hover, .section button.button.dl-pdf:hover, .section button.maf-button.dl-pdf:hover, footer a.button.dl-pdf:hover, footer div.button.dl-pdf:hover, footer button.button.dl-pdf:hover, footer button.maf-button.dl-pdf:hover, .bo-row a.button.dl-pdf:hover, .bo-row div.button.dl-pdf:hover, .bo-row button.button.dl-pdf:hover, .bo-row button.maf-button.dl-pdf:hover {
  background-color: white;
}
section a.button.dl-pdf:hover::before, section div.button.dl-pdf:hover::before, section button.button.dl-pdf:hover::before, section button.maf-button.dl-pdf:hover::before, .section a.button.dl-pdf:hover::before, .section div.button.dl-pdf:hover::before, .section button.button.dl-pdf:hover::before, .section button.maf-button.dl-pdf:hover::before, footer a.button.dl-pdf:hover::before, footer div.button.dl-pdf:hover::before, footer button.button.dl-pdf:hover::before, footer button.maf-button.dl-pdf:hover::before, .bo-row a.button.dl-pdf:hover::before, .bo-row div.button.dl-pdf:hover::before, .bo-row button.button.dl-pdf:hover::before, .bo-row button.maf-button.dl-pdf:hover::before {
  animation: point-d 1.5s ease-out infinite;
}
section a.button.tri-box, section div.button.tri-box, section button.button.tri-box, section button.maf-button.tri-box, .section a.button.tri-box, .section div.button.tri-box, .section button.button.tri-box, .section button.maf-button.tri-box, footer a.button.tri-box, footer div.button.tri-box, footer button.button.tri-box, footer button.maf-button.tri-box, .bo-row a.button.tri-box, .bo-row div.button.tri-box, .bo-row button.button.tri-box, .bo-row button.maf-button.tri-box {
  background-color: rgb(222, 37, 149);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: white;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: flex-start;
  min-height: 42px;
  min-width: 0;
  padding: 5px 50px 5px 20px;
  text-transform: uppercase;
  width: 100%;
}
section a.button.tri-box::before, section div.button.tri-box::before, section button.button.tri-box::before, section button.maf-button.tri-box::before, .section a.button.tri-box::before, .section div.button.tri-box::before, .section button.button.tri-box::before, .section button.maf-button.tri-box::before, footer a.button.tri-box::before, footer div.button.tri-box::before, footer button.button.tri-box::before, footer button.maf-button.tri-box::before, .bo-row a.button.tri-box::before, .bo-row div.button.tri-box::before, .bo-row button.button.tri-box::before, .bo-row button.maf-button.tri-box::before {
  background-color: rgb(39, 69, 122);
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
}
section a.button.tri-box::after, section div.button.tri-box::after, section button.button.tri-box::after, section button.maf-button.tri-box::after, .section a.button.tri-box::after, .section div.button.tri-box::after, .section button.button.tri-box::after, .section button.maf-button.tri-box::after, footer a.button.tri-box::after, footer div.button.tri-box::after, footer button.button.tri-box::after, footer button.maf-button.tri-box::after, .bo-row a.button.tri-box::after, .bo-row div.button.tri-box::after, .bo-row button.button.tri-box::after, .bo-row button.maf-button.tri-box::after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid white;
  content: "";
  display: inline-block;
  height: 0;
  position: absolute;
  right: 15px;
  transform: translate(0, -50%);
  transition: right 350ms ease-out;
  top: 50%;
  width: 0;
}
section a.button.tri-box:hover, section div.button.tri-box:hover, section button.button.tri-box:hover, section button.maf-button.tri-box:hover, .section a.button.tri-box:hover, .section div.button.tri-box:hover, .section button.button.tri-box:hover, .section button.maf-button.tri-box:hover, footer a.button.tri-box:hover, footer div.button.tri-box:hover, footer button.button.tri-box:hover, footer button.maf-button.tri-box:hover, .bo-row a.button.tri-box:hover, .bo-row div.button.tri-box:hover, .bo-row button.button.tri-box:hover, .bo-row button.maf-button.tri-box:hover {
  background-color: rgb(222, 37, 149);
  border-color: rgb(222, 37, 149);
}
section a.button.tri-box:hover::after, section div.button.tri-box:hover::after, section button.button.tri-box:hover::after, section button.maf-button.tri-box:hover::after, .section a.button.tri-box:hover::after, .section div.button.tri-box:hover::after, .section button.button.tri-box:hover::after, .section button.maf-button.tri-box:hover::after, footer a.button.tri-box:hover::after, footer div.button.tri-box:hover::after, footer button.button.tri-box:hover::after, footer button.maf-button.tri-box:hover::after, .bo-row a.button.tri-box:hover::after, .bo-row div.button.tri-box:hover::after, .bo-row button.button.tri-box:hover::after, .bo-row button.maf-button.tri-box:hover::after {
  right: 10px;
}
section a.button.white, section div.button.white, section button.button.white, section button.maf-button.white, .section a.button.white, .section div.button.white, .section button.button.white, .section button.maf-button.white, footer a.button.white, footer div.button.white, footer button.button.white, footer button.maf-button.white, .bo-row a.button.white, .bo-row div.button.white, .bo-row button.button.white, .bo-row button.maf-button.white {
  border-color: white;
  color: white;
}
section a.button.white:hover, section div.button.white:hover, section button.button.white:hover, section button.maf-button.white:hover, .section a.button.white:hover, .section div.button.white:hover, .section button.button.white:hover, .section button.maf-button.white:hover, footer a.button.white:hover, footer div.button.white:hover, footer button.button.white:hover, footer button.maf-button.white:hover, .bo-row a.button.white:hover, .bo-row div.button.white:hover, .bo-row button.button.white:hover, .bo-row button.maf-button.white:hover {
  background-color: white;
  color: rgb(51, 51, 51);
}
section a.button.coral, section div.button.coral, section button.button.coral, section button.maf-button.coral, .section a.button.coral, .section div.button.coral, .section button.button.coral, .section button.maf-button.coral, footer a.button.coral, footer div.button.coral, footer button.button.coral, footer button.maf-button.coral, .bo-row a.button.coral, .bo-row div.button.coral, .bo-row button.button.coral, .bo-row button.maf-button.coral {
  background-color: rgb(198, 20, 127);
  border-color: rgb(198, 20, 127);
  color: white;
}
section a.button.coral:hover, section div.button.coral:hover, section button.button.coral:hover, section button.maf-button.coral:hover, .section a.button.coral:hover, .section div.button.coral:hover, .section button.button.coral:hover, .section button.maf-button.coral:hover, footer a.button.coral:hover, footer div.button.coral:hover, footer button.button.coral:hover, footer button.maf-button.coral:hover, .bo-row a.button.coral:hover, .bo-row div.button.coral:hover, .bo-row button.button.coral:hover, .bo-row button.maf-button.coral:hover {
  background-color: transparent;
  color: rgb(198, 20, 127);
}
section.animate .maf-content, section.animate .insta-feed, section.animate .cardbox .card, section.animate .column, section.animate .row::after, .section.animate .maf-content, .section.animate .insta-feed, .section.animate .cardbox .card, .section.animate .column, .section.animate .row::after, footer.animate .maf-content, footer.animate .insta-feed, footer.animate .cardbox .card, footer.animate .column, footer.animate .row::after, .bo-row.animate .maf-content, .bo-row.animate .insta-feed, .bo-row.animate .cardbox .card, .bo-row.animate .column, .bo-row.animate .row::after {
  filter: grayscale(100%);
  opacity: 0;
  transform: translateY(60px);
  transition: all 1200ms ease-out;
}
section.animate .footer, .section.animate .footer, footer.animate .footer, .bo-row.animate .footer {
  filter: grayscale(100%);
  opacity: 0;
  transform: translateY(60px);
  transition: all 1200ms ease-out;
}
section.animate .cardbox .card:nth-child(1), .section.animate .cardbox .card:nth-child(1), footer.animate .cardbox .card:nth-child(1), .bo-row.animate .cardbox .card:nth-child(1) {
  transition-delay: 350ms;
}
section.animate .cardbox .card:nth-child(2), .section.animate .cardbox .card:nth-child(2), footer.animate .cardbox .card:nth-child(2), .bo-row.animate .cardbox .card:nth-child(2) {
  transition-delay: 700ms;
}
section.animate .cardbox .card:nth-child(3), .section.animate .cardbox .card:nth-child(3), footer.animate .cardbox .card:nth-child(3), .bo-row.animate .cardbox .card:nth-child(3) {
  transition-delay: 1050ms;
}
section.animate .cardbox .card:nth-child(4), .section.animate .cardbox .card:nth-child(4), footer.animate .cardbox .card:nth-child(4), .bo-row.animate .cardbox .card:nth-child(4) {
  transition-delay: 1400ms;
}
section.animate .cardbox .card:nth-child(5), .section.animate .cardbox .card:nth-child(5), footer.animate .cardbox .card:nth-child(5), .bo-row.animate .cardbox .card:nth-child(5) {
  transition-delay: 1750ms;
}
section.animate .cardbox .card:nth-child(6), .section.animate .cardbox .card:nth-child(6), footer.animate .cardbox .card:nth-child(6), .bo-row.animate .cardbox .card:nth-child(6) {
  transition-delay: 2100ms;
}
section.animate .cardbox .card:nth-child(7), .section.animate .cardbox .card:nth-child(7), footer.animate .cardbox .card:nth-child(7), .bo-row.animate .cardbox .card:nth-child(7) {
  transition-delay: 2450ms;
}
section.animate .cardbox .card:nth-child(8), .section.animate .cardbox .card:nth-child(8), footer.animate .cardbox .card:nth-child(8), .bo-row.animate .cardbox .card:nth-child(8) {
  transition-delay: 2800ms;
}
section.animate .cardbox .card:nth-child(9), .section.animate .cardbox .card:nth-child(9), footer.animate .cardbox .card:nth-child(9), .bo-row.animate .cardbox .card:nth-child(9) {
  transition-delay: 3150ms;
}
section.animate .cardbox .card:nth-child(10), .section.animate .cardbox .card:nth-child(10), footer.animate .cardbox .card:nth-child(10), .bo-row.animate .cardbox .card:nth-child(10) {
  transition-delay: 3500ms;
}
section.animate .cardbox .card:nth-child(11), .section.animate .cardbox .card:nth-child(11), footer.animate .cardbox .card:nth-child(11), .bo-row.animate .cardbox .card:nth-child(11) {
  transition-delay: 3850ms;
}
section.animate .cardbox .card:nth-child(12), .section.animate .cardbox .card:nth-child(12), footer.animate .cardbox .card:nth-child(12), .bo-row.animate .cardbox .card:nth-child(12) {
  transition-delay: 4200ms;
}
section.animate .cardbox .card:nth-child(13), .section.animate .cardbox .card:nth-child(13), footer.animate .cardbox .card:nth-child(13), .bo-row.animate .cardbox .card:nth-child(13) {
  transition-delay: 4550ms;
}
section.animate .cardbox .card:nth-child(14), .section.animate .cardbox .card:nth-child(14), footer.animate .cardbox .card:nth-child(14), .bo-row.animate .cardbox .card:nth-child(14) {
  transition-delay: 4900ms;
}
section.animate .cardbox .card:nth-child(15), .section.animate .cardbox .card:nth-child(15), footer.animate .cardbox .card:nth-child(15), .bo-row.animate .cardbox .card:nth-child(15) {
  transition-delay: 5250ms;
}
section.animate .cardbox .card:nth-child(16), .section.animate .cardbox .card:nth-child(16), footer.animate .cardbox .card:nth-child(16), .bo-row.animate .cardbox .card:nth-child(16) {
  transition-delay: 5600ms;
}
section.animate .cardbox .card:nth-child(17), .section.animate .cardbox .card:nth-child(17), footer.animate .cardbox .card:nth-child(17), .bo-row.animate .cardbox .card:nth-child(17) {
  transition-delay: 5950ms;
}
section.animate .cardbox .card:nth-child(18), .section.animate .cardbox .card:nth-child(18), footer.animate .cardbox .card:nth-child(18), .bo-row.animate .cardbox .card:nth-child(18) {
  transition-delay: 6300ms;
}
section.animate .cardbox .card:nth-child(19), .section.animate .cardbox .card:nth-child(19), footer.animate .cardbox .card:nth-child(19), .bo-row.animate .cardbox .card:nth-child(19) {
  transition-delay: 6650ms;
}
section.animate .cardbox .card:nth-child(20), .section.animate .cardbox .card:nth-child(20), footer.animate .cardbox .card:nth-child(20), .bo-row.animate .cardbox .card:nth-child(20) {
  transition-delay: 7000ms;
}
section.animate .cardbox .card:nth-child(21), .section.animate .cardbox .card:nth-child(21), footer.animate .cardbox .card:nth-child(21), .bo-row.animate .cardbox .card:nth-child(21) {
  transition-delay: 7350ms;
}
section.animate .cardbox .card:nth-child(22), .section.animate .cardbox .card:nth-child(22), footer.animate .cardbox .card:nth-child(22), .bo-row.animate .cardbox .card:nth-child(22) {
  transition-delay: 7700ms;
}
section.animate .cardbox .card:nth-child(23), .section.animate .cardbox .card:nth-child(23), footer.animate .cardbox .card:nth-child(23), .bo-row.animate .cardbox .card:nth-child(23) {
  transition-delay: 8050ms;
}
section.animate.anim-1 .maf-content, section.animate.anim-1 .column, section.animate.anim-1 .row::after, .section.animate.anim-1 .maf-content, .section.animate.anim-1 .column, .section.animate.anim-1 .row::after, footer.animate.anim-1 .maf-content, footer.animate.anim-1 .column, footer.animate.anim-1 .row::after, .bo-row.animate.anim-1 .maf-content, .bo-row.animate.anim-1 .column, .bo-row.animate.anim-1 .row::after {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0);
}
section.animate.anim-2 .insta-feed, section.animate.anim-2 .cardbox .card, .section.animate.anim-2 .insta-feed, .section.animate.anim-2 .cardbox .card, footer.animate.anim-2 .insta-feed, footer.animate.anim-2 .cardbox .card, .bo-row.animate.anim-2 .insta-feed, .bo-row.animate.anim-2 .cardbox .card {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0);
}
section.animate.anim-3 .footer, .section.animate.anim-3 .footer, footer.animate.anim-3 .footer, .bo-row.animate.anim-3 .footer {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0);
}

@keyframes bgcolourfade {
  0% {
    background: rgb(51, 51, 51);
  }
  20% {
    background: rgb(39, 69, 122);
  }
  40% {
    background: rgb(230, 230, 230);
  }
  60% {
    background: rgb(198, 20, 127);
  }
  80% {
    background: rgb(20, 151, 176);
  }
  100% {
    background: rgb(51, 51, 51);
  }
}
.bg-1 {
  background-color: rgb(222, 37, 149) !important;
}

.bg-2 {
  background-color: rgb(39, 69, 122) !important;
  color: white;
}
.bg-2 .maf-content * {
  color: white;
}
.bg-2 .maf-content hr {
  border-color: white;
}
.bg-2 .maf-content a.button {
  color: white;
}
.bg-2 .maf-content a.button::after {
  border-color: white;
}

.bg-3 {
  background-color: rgb(198, 20, 127) !important;
  color: white;
}

.bg-4 {
  background-color: rgb(20, 151, 176) !important;
}

.bg-5 {
  background-color: rgb(230, 230, 230) !important;
}

.bg-6 {
  animation: bgcolourfade 90s infinite;
  color: rgb(127, 127, 127);
}
.bg-6 .maf-content * {
  color: rgb(127, 127, 127);
}
.bg-6 .maf-content hr {
  border-color: rgb(127, 127, 127);
}
.bg-6 .maf-content a.button {
  background-color: transparent;
  border-color: rgb(127, 127, 127);
  color: rgb(127, 127, 127);
}
.bg-6 .maf-content a.button:hover {
  background-color: rgb(127, 127, 127);
  color: white;
}

.is-main-header {
  background-color: white;
  border-bottom: 1px solid transparent;
  color: rgb(51, 51, 51);
  display: inline-block;
  height: 100px;
  padding: 0 0;
  transition: all 350ms ease-out;
  width: 100%;
  z-index: 666;
}
.is-main-header.is-fixed {
  left: 0;
  position: fixed;
  top: 0;
  transform: translateZ(0);
}
@media only screen and (min-width: 768px) {
  .is-main-header {
    height: 138px;
  }
}
.is-main-header > div.h-con {
  align-items: center;
  align-content: center;
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: flex-start;
  margin-left: auto;
  margin-right: auto;
  max-width: 1188px;
  padding: 0;
  position: relative;
  text-align: center;
  transition: all 350ms ease-out;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con {
    padding: 0 10px;
  }
}
.is-main-header > div.h-con .ui-con {
  display: flex;
  flex: 0 1 auto;
  height: auto;
  justify-content: flex-start;
  line-height: 0;
  margin: auto;
  max-height: 100%;
  padding: 10px 0 10px 10px;
  position: relative;
  text-align: center;
  transition: all 350ms ease-out;
  z-index: 100;
}
.is-main-header > div.h-con .ui-con .company-brand {
  align-items: center;
  align-content: center;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 0;
  max-height: 60px;
  max-width: 100%;
  padding-bottom: 20px;
  position: relative;
  text-align: left;
  width: auto;
  z-index: 102;
}
.is-main-header > div.h-con .ui-con .company-brand #logo, .is-main-header > div.h-con .ui-con .company-brand svg {
  display: inline-block;
  flex: 0 0 0;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  opacity: 1;
  transition: opacity 700ms ease-out 700ms;
  width: auto;
}
.is-main-header > div.h-con .ui-con .company-brand #maf-strap {
  color: rgb(51, 51, 51);
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con .ui-con .company-brand #maf-strap {
    font-size: 3rem;
  }
}
.is-main-header > div.h-con .n-con {
  align-items: flex-end;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 170px;
  padding: 0 10px;
  padding-left: 0;
  transition: opacity 350ms ease-out 500ms;
  width: auto;
  z-index: 101;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con .n-con {
    min-width: 200px;
  }
}
.is-main-header > div.h-con .n-con #dash-links .button {
  font-size: 1.4rem;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px 10px;
}
@media only screen and (min-width: 768px) {
  .is-main-header > div.h-con .n-con #dash-links .button {
    font-size: 1.6rem;
    padding: 5px 20px;
  }
}
.is-main-header > div.h-con .n-con #dash-links .button span {
  display: none;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con .n-con #dash-links .button span {
    display: inline;
  }
}
.is-main-header > div.h-con .n-con #dash-links .button.coral {
  background-color: rgb(198, 20, 127);
  border-color: rgb(198, 20, 127);
  color: white;
}
.is-main-header > div.h-con .n-con #dash-links .button.coral:hover {
  background-color: transparent;
  color: rgb(198, 20, 127);
}
.is-main-header > div.h-con .n-con #dash-links .button:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .is-main-header > div.h-con .n-con #dash-links .button:last-child {
    margin-right: 10px;
  }
}
.is-main-header > div.h-con #header-ui {
  align-items: flex-end;
  color: rgb(51, 51, 51);
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0;
  margin-left: auto;
  max-width: 1188px;
  padding: 10px 0;
  transition: top 350ms ease-out;
  width: auto;
  z-index: 103;
}
.is-main-header > div.h-con #header-ui a {
  text-decoration: none;
}
.is-main-header > div.h-con #header-ui .button {
  background-color: transparent;
  border-color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  min-height: 30px;
  max-height: 30px;
  min-width: 0;
  padding: 5px 15px 3px 15px;
  vertical-align: top;
}
.is-main-header > div.h-con #header-ui .button:hover {
  background-color: white;
  color: rgb(222, 37, 149);
}
.is-main-header > div.h-con #header-ui .button.gray {
  display: none;
  text-transform: none;
}
@media only screen and (min-width: 360px) {
  .is-main-header > div.h-con #header-ui .button.gray {
    display: inline-flex;
  }
}
.is-main-header > div.h-con #header-ui .button span {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .is-main-header > div.h-con #header-ui .button span {
    display: inline;
  }
}
.is-main-header > div.h-con #header-ui .phone {
  color: rgb(51, 51, 51);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
}
.is-main-header > div.h-con #header-ui .phone i {
  vertical-align: middle;
}
.is-main-header > div.h-con #header-ui .phone span {
  display: inline-block;
  font-weight: 400;
  margin-right: 5px;
  vertical-align: middle;
}
.is-main-header > div.h-con #header-ui .phone span img {
  max-width: 30px;
  transition: max-width 350ms ease-out;
}
@media only screen and (min-width: 768px) {
  .is-main-header > div.h-con #header-ui .phone span img {
    max-width: 43px;
  }
}
.is-main-header > div.h-con #header-ui .login {
  background-color: black;
  border-radius: 8px 8px 0 0;
  color: white;
  display: inline-block;
  font-size: 1.6rem;
  margin: 0 1px 0 8px;
  padding: 8px 10px 10px 10px;
  transition: all 350ms ease-out;
  transform: translateY(0);
  width: auto;
}
.is-main-header > div.h-con #header-ui .login:hover {
  color: rgb(222, 37, 149);
  padding: 8px 10px 16px 10px;
  transform: translateY(-8px);
}
.is-main-header > div.h-con #header-ui .icons {
  text-align: right;
}
.is-main-header > div.h-con #header-ui .icons hr.show-mobile {
  border: 0;
  height: 0;
  margin: 0;
  max-width: none;
}
@media only screen and (min-width: 768px) {
  .is-main-header > div.h-con #header-ui .icons hr.show-mobile {
    display: none;
  }
}
.is-main-header > div.h-con #header-ui-alt {
  left: 0;
  opacity: 1;
  position: absolute;
  text-align: left;
  top: -200px;
  transition: all 350ms ease-out;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con #header-ui-alt {
    left: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .is-main-header.menu-split > div.h-con .ui-con .company-brand {
    display: none;
  }
}
.is-main-header.menu-split > div.h-con .n-con {
  justify-content: center;
}
.is-main-header.menu-split > div.h-con .n-con .maf-acc-menu #menu-con ul.nav > li.home-link {
  display: none;
  line-height: 1;
}
@media only screen and (min-width: 1024px) {
  .is-main-header.menu-split > div.h-con .n-con .maf-acc-menu #menu-con ul.nav > li.home-link {
    display: inline-block;
  }
}
.is-main-header.menu-split > div.h-con .n-con .maf-acc-menu #menu-con ul.nav > li.home-link a svg {
  display: inline-block;
}
.is-main-header.menu-split > div.h-con .n-con .maf-acc-menu #menu-con ul.nav > li.home-link a svg path {
  fill: #fff;
  transition: fill 350ms ease-out;
}
@media only screen and (min-width: 1024px) {
  .is-main-header.menu-split > div.h-con .n-con .maf-acc-menu #menu-con ul.nav > li.home-link-mob {
    display: none;
  }
}
@media only screen and (min-width: 1280px) {
  .is-main-header.menu-split > div.h-con .n-con .maf-acc-menu.dtop-view .nav > li {
    min-width: 140px;
  }
}
.is-main-header.menu-split > div.h-con .n-con .maf-acc-menu.dtop-view .nav > li:nth-child(2) {
  margin-left: auto;
}
.is-main-header.menu-split > div.h-con .n-con .maf-acc-menu.dtop-view .nav > li.home-link {
  margin: 0 auto;
}
.is-main-header.menu-split > div.h-con .n-con .maf-acc-menu.dtop-view .nav > li:last-child {
  margin-right: auto;
}
.is-main-header.squish {
  height: 100px;
  top: 0;
}
.is-main-header.squish > div.h-con .n-con #ss-con {
  margin-bottom: 25px;
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .is-main-header.squish > div.h-con .n-con #ss-con {
    margin-bottom: 0;
  }
}

section .header p, .section .header p {
  max-width: 700px;
}
section.is-hero, .section.is-hero {
  background-color: rgb(222, 37, 149);
  color: white;
  position: relative;
  transition: all 350ms ease-out;
}
section.is-hero h2, section.is-hero .h2-style, .section.is-hero h2, .section.is-hero .h2-style {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 3.6rem;
  font-weight: 600;
}
section.is-hero p, .section.is-hero p {
  font-size: 2.4rem;
  max-width: 700px;
}
@media only screen and (min-width: 576px) {
  section.is-hero p, .section.is-hero p {
    font-size: 2.8rem;
  }
}
section.is-hero a.button, .section.is-hero a.button {
  font-size: 2rem;
  padding: 10px 25px;
}
@media only screen and (min-width: 576px) {
  section.is-hero a.button, .section.is-hero a.button {
    font-size: 2.8rem;
    padding: 15px 35px;
  }
}
section.is-hero #hero-logo, .section.is-hero #hero-logo {
  display: none;
  margin: auto;
  transition: all 350ms ease-out;
}
section.is-hero #hero-logo p, .section.is-hero #hero-logo p {
  display: inline-block;
}
section.is-hero > .maf-background, .section.is-hero > .maf-background {
  background-image: url("/images/Layout/hero-pg-bg.jpg");
  transition: opacity 350ms ease-out;
}
section.is-hero .row, .section.is-hero .row {
  min-height: 200px;
  transition: opacity 350ms ease-out;
}
@media only screen and (min-width: 576px) {
  section.is-hero .row, .section.is-hero .row {
    min-height: 400px;
  }
}
section.is-hero .row .column, .section.is-hero .row .column {
  justify-content: center;
}
section.is-hero .row .column .maf-content, .section.is-hero .row .column .maf-content {
  align-content: center;
  align-items: center;
}
section.is-hero .row .column .maf-content > *, .section.is-hero .row .column .maf-content > * {
  text-shadow: 8px 8px 27px rgba(7, 7, 7, 0.48);
}
body.is-home section.is-hero, body.is-home .section.is-hero {
  min-height: 100vh;
}
body.is-home section.is-hero > .maf-background, body.is-home .section.is-hero > .maf-background {
  background-image: none;
  opacity: 1;
}
body.is-home section.is-hero.animate .row .column.maf-col-1, body.is-home .section.is-hero.animate .row .column.maf-col-1 {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0);
}
body.is-home section.is-hero.below-nav, body.is-home .section.is-hero.below-nav {
  min-height: calc(100vh - 100px);
}
@media only screen and (min-width: 768px) {
  body.is-home section.is-hero.below-nav, body.is-home .section.is-hero.below-nav {
    min-height: calc(100vh - 138px);
  }
}
body.is-home section.is-hero.below-nav.squish, body.is-home .section.is-hero.below-nav.squish {
  min-height: calc(100vh - 100px);
}
body.manageable-bo section.is-hero > .maf-background, body.manageable-bo .section.is-hero > .maf-background {
  margin: 0;
}
body.manageable-bo section.is-hero .row, body.manageable-bo .section.is-hero .row {
  padding-top: 0;
}
section.is-hero.slideshow > .maf-background, .section.is-hero.slideshow > .maf-background {
  background-image: none;
}
section.is-hero.slideshow .flickity-slideshow, section.is-hero.slideshow .flickity-slideshow-edit, .section.is-hero.slideshow .flickity-slideshow, .section.is-hero.slideshow .flickity-slideshow-edit {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide, .section.is-hero.slideshow .flickity-slideshow .ss-slide, .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-background, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-background, .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-background, .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-background {
  opacity: 0.5;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content, .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content, .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content {
  align-content: center;
  align-items: center;
  max-width: 1188px;
  padding: 20px 10px;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content, .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content, .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content {
    padding: 20px;
  }
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *, .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *, .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > * {
  opacity: 0;
  transform: translateX(50px);
  transition: all 700ms ease-out;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(1), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(1), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(1), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(1) {
  transition-delay: 250ms;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(2), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(2), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(2), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(2) {
  transition-delay: 500ms;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(3), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(3), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(3), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(3) {
  transition-delay: 750ms;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(4), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(4), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(4), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(4) {
  transition-delay: 1000ms;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(5), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(5), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(5), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(5) {
  transition-delay: 1250ms;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(6), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(6), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(6), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(6) {
  transition-delay: 1500ms;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(7), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(7), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(7), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(7) {
  transition-delay: 1750ms;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(8), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(8), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(8), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(8) {
  transition-delay: 2000ms;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(9), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(9), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(9), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(9) {
  transition-delay: 2250ms;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide.is-selected .maf-content > *, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide.is-selected .maf-content > *, .section.is-hero.slideshow .flickity-slideshow .ss-slide.is-selected .maf-content > *, .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide.is-selected .maf-content > * {
  opacity: 1;
  transform: translateX(0);
}
section.is-hero.slideshow .flickity-slideshow .flickity-page-dots, section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots, .section.is-hero.slideshow .flickity-slideshow .flickity-page-dots, .section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots {
  bottom: 5px;
}
@media only screen and (min-width: 576px) {
  section.is-hero.slideshow .flickity-slideshow .flickity-page-dots, section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots, .section.is-hero.slideshow .flickity-slideshow .flickity-page-dots, .section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots {
    bottom: 10%;
  }
}
section.is-hero.slideshow .flickity-slideshow .flickity-page-dots .dot, section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots .dot, .section.is-hero.slideshow .flickity-slideshow .flickity-page-dots .dot, .section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots .dot {
  background: rgba(255, 255, 255, 0.4);
}
section.is-hero.slideshow .flickity-slideshow .flickity-page-dots .dot::before, section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots .dot::before, .section.is-hero.slideshow .flickity-slideshow .flickity-page-dots .dot::before, .section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots .dot::before {
  background-color: white;
}
section.one-column p, .section.one-column p {
  max-width: 700px;
}
section.one-column .row .column .maf-content, .section.one-column .row .column .maf-content {
  align-items: center;
  text-align: center;
}
section.one-column.brands hr, .section.one-column.brands hr {
  border-color: rgb(39, 69, 122);
  max-width: 126px;
}
section.one-column.brands .row .column, .section.one-column.brands .row .column {
  padding-top: 20px;
}
section.one-column.brands .row .column .maf-content, .section.one-column.brands .row .column .maf-content {
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
section.one-column.brands .row .column .maf-content p, .section.one-column.brands .row .column .maf-content p {
  margin: 20px 30px;
  width: auto;
}
section.one-column.bg-right .maf-background, .section.one-column.bg-right .maf-background {
  background-position: right;
}
section.one-column.bg-right .row .column, .section.one-column.bg-right .row .column {
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
section.one-column.bg-right .row .column .maf-content, .section.one-column.bg-right .row .column .maf-content {
  align-items: flex-start;
  max-width: 505px;
}
section.one-column.bg-left, .section.one-column.bg-left {
  min-height: 666px;
}
section.one-column.bg-left .maf-background, .section.one-column.bg-left .maf-background {
  background-position: right;
}
section.one-column.bg-left .row .column, .section.one-column.bg-left .row .column {
  justify-content: center;
  text-align: left;
}
@media only screen and (min-width: 1024px) {
  section.one-column.bg-left .row .column, .section.one-column.bg-left .row .column {
    align-items: flex-end;
  }
}
section.one-column.bg-left .row .column .maf-content, .section.one-column.bg-left .row .column .maf-content {
  align-items: flex-start;
  max-width: 600px;
}
section.one-column.video .row, .section.one-column.video .row {
  max-width: none;
  padding: 0;
}
section.one-column.video .row .column, .section.one-column.video .row .column {
  padding: 0;
}
section.one-column.video .row .column .maf-content, .section.one-column.video .row .column .maf-content {
  max-width: none;
}
section.one-column.quote, .section.one-column.quote {
  background-color: rgb(222, 37, 149);
  color: white;
  min-height: 620px;
}
section.one-column.quote p, .section.one-column.quote p {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 3.6rem;
  font-size: 3rem;
  line-height: 1.2;
  max-width: 865px;
  text-shadow: 8px 8px 27px rgba(7, 7, 7, 0.48);
}
@media only screen and (min-width: 576px) {
  section.one-column.quote p, .section.one-column.quote p {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 768px) {
  section.one-column.quote p, .section.one-column.quote p {
    font-size: 4.2rem;
  }
}
section.one-column.quote .row .column, .section.one-column.quote .row .column {
  justify-content: center;
}
section.two-column .row, .section.two-column .row {
  padding: 0 10px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 576px) {
  section.two-column .row, .section.two-column .row {
    padding: 0 10px;
    padding-bottom: 80px;
  }
}
section.two-column .row .column, .section.two-column .row .column {
  padding: 60px 10px;
  padding-bottom: 0;
  justify-content: flex-start;
}
@media only screen and (min-width: 960px) {
  section.two-column .row .column, .section.two-column .row .column {
    padding: 80px 10px;
    padding-bottom: 0;
  }
}
section.two-column .row .column .maf-content, .section.two-column .row .column .maf-content {
  align-items: flex-start;
  justify-content: center;
}
section.two-column.full-width .row, .section.two-column.full-width .row {
  max-width: none;
}
section.two-column.maf-col-bg-full, .section.two-column.maf-col-bg-full {
  padding: 0;
}
section.two-column.maf-col-bg-full .row, .section.two-column.maf-col-bg-full .row {
  max-width: none;
  padding: 0;
}
section.two-column.maf-col-bg-full .row .column .maf-col-i, .section.two-column.maf-col-bg-full .row .column .maf-col-i {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full .row .column .maf-col-i, .section.two-column.maf-col-bg-full .row .column .maf-col-i {
    max-width: 554px;
  }
}
section.two-column.maf-col-bg-full .row .column .maf-col-i .maf-content, .section.two-column.maf-col-bg-full .row .column .maf-col-i .maf-content {
  max-width: 450px;
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full .row .column.maf-col-1, .section.two-column.maf-col-bg-full .row .column.maf-col-1 {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full .row .column.maf-col-2, .section.two-column.maf-col-bg-full .row .column.maf-col-2 {
    align-items: flex-start;
  }
}
section.two-column.maf-col-bg-full .row .column.has-bg, .section.two-column.maf-col-bg-full .row .column.has-bg {
  min-height: 100vw;
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full .row .column.has-bg, .section.two-column.maf-col-bg-full .row .column.has-bg {
    min-height: 50vw;
  }
}
section.two-column.maf-col-bg-full.full-width .row .column .maf-col-i, .section.two-column.maf-col-bg-full.full-width .row .column .maf-col-i {
  max-width: none;
}
section.two-column.bg-right > .maf-background, .section.two-column.bg-right > .maf-background {
  align-content: flex-end;
  align-items: flex-end;
  display: flex;
  justify-content: flex-end;
}
section.two-column.bg-right > .maf-background img, .section.two-column.bg-right > .maf-background img {
  max-height: 100%;
  max-width: 55%;
}
section.two-column.bg-left .row, .section.two-column.bg-left .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  section.two-column.bg-left .row, .section.two-column.bg-left .row {
    flex-direction: row;
  }
}
section.two-column.bg-left .row .column, .section.two-column.bg-left .row .column {
  padding-bottom: 25px;
}
section.two-column.bg-left .row .column .maf-col-i, .section.two-column.bg-left .row .column .maf-col-i {
  justify-content: center;
}
section.two-column.bg-left .row .column.maf-col-1, .section.two-column.bg-left .row .column.maf-col-1 {
  padding-left: 0;
}
section.two-column.bg-left .row .column.maf-col-1 .maf-background, .section.two-column.bg-left .row .column.maf-col-1 .maf-background {
  height: auto;
  left: auto;
  position: static;
  text-align: left;
  top: auto;
  transform: none;
  width: 100%;
}
section.two-column.bg-left .row .column.maf-col-1 .maf-background img, .section.two-column.bg-left .row .column.maf-col-1 .maf-background img {
  height: auto;
  width: 100%;
}
section.two-column.bg-left .row .column.maf-col-1 .maf-col-i, .section.two-column.bg-left .row .column.maf-col-1 .maf-col-i {
  color: white;
  max-width: 490.745px;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
}
@media only screen and (min-width: 1024px) {
  section.two-column.bg-left .row .column.maf-col-1 .maf-col-i, .section.two-column.bg-left .row .column.maf-col-1 .maf-col-i {
    right: 0;
    transform: translate(0, -50%);
  }
}
section.two-column.img-right > .maf-background, .section.two-column.img-right > .maf-background {
  background-position: right;
}
section.two-column.img-right .row > .maf-background, .section.two-column.img-right .row > .maf-background {
  background-position: right;
}
section.two-column.img-right .row .column.maf-col-2, .section.two-column.img-right .row .column.maf-col-2 {
  min-height: 500px;
}
@media only screen and (min-width: 1024px) {
  section.two-column.img-right .row .column.maf-col-2, .section.two-column.img-right .row .column.maf-col-2 {
    min-height: 0;
  }
}
section.two-column.img-left > .maf-background, .section.two-column.img-left > .maf-background {
  background-position: left;
}
section.two-column.img-left .row > .maf-background, .section.two-column.img-left .row > .maf-background {
  background-position: left;
}
@media only screen and (min-width: 1024px) {
  section.two-column.img-left .row .column.maf-col-2, .section.two-column.img-left .row .column.maf-col-2 {
    align-items: flex-start;
    padding-left: 0;
  }
}
section.two-column.img-left.round .row .column.maf-col-1 .maf-content p img, .section.two-column.img-left.round .row .column.maf-col-1 .maf-content p img {
  border-radius: 50%;
}
section.two-column.maf-rep-pad .row, .section.two-column.maf-rep-pad .row {
  padding: 0 10px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 576px) {
  section.two-column.maf-rep-pad .row, .section.two-column.maf-rep-pad .row {
    padding: 0 10px;
    padding-bottom: 80px;
  }
}
section.two-column.maf-rep-pad .row .column, .section.two-column.maf-rep-pad .row .column {
  padding: 60px 10px;
  padding-bottom: 0;
}
@media only screen and (min-width: 960px) {
  section.two-column.maf-rep-pad .row .column, .section.two-column.maf-rep-pad .row .column {
    padding: 80px 10px;
    padding-bottom: 0;
  }
}
section.divider .row, .section.divider .row {
  max-width: 1188px;
}
section.page-content-section h1, section.page-content-section .h1-style, section.page-content-section h2, section.page-content-section .h2-style, section.page-content-section h3, section.page-content-section .h3-style, section.page-content-section h4, section.page-content-section .h4-style, section.page-content-section h5, section.page-content-section .h5-style, section.page-content-section h6.h6-style, .section.page-content-section h1, .section.page-content-section .h1-style, .section.page-content-section h2, .section.page-content-section .h2-style, .section.page-content-section h3, .section.page-content-section .h3-style, .section.page-content-section h4, .section.page-content-section .h4-style, .section.page-content-section h5, .section.page-content-section .h5-style, .section.page-content-section h6.h6-style {
  color: rgb(198, 20, 127);
  margin: 0.3em 0 0.8em 0;
}
section.page-content-section h1, section.page-content-section .h1-style, .section.page-content-section h1, .section.page-content-section .h1-style {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 2.6rem;
}
section.page-content-section h2, section.page-content-section .h2-style, .section.page-content-section h2, .section.page-content-section .h2-style {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 2.2rem;
}
section.page-content-section h3, section.page-content-section .h3-style, .section.page-content-section h3, .section.page-content-section .h3-style {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 2rem;
}
section.page-content-section h4, section.page-content-section .h4-style, section.page-content-section h5, section.page-content-section .h5-style, .section.page-content-section h4, .section.page-content-section .h4-style, .section.page-content-section h5, .section.page-content-section .h5-style {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 2.8rem;
}
section.page-content-section a:not(.button), .section.page-content-section a:not(.button) {
  text-decoration: underline;
}
section.page-content-section a:not(.button):hover, .section.page-content-section a:not(.button):hover {
  text-decoration: none;
}
section.page-content-section .is-simple-gallery, .section.page-content-section .is-simple-gallery {
  margin-bottom: 20px;
}
section.page-content-section .is-simple-gallery figure figcaption, .section.page-content-section .is-simple-gallery figure figcaption {
  display: none;
}
section.page-content-section .row .column, .section.page-content-section .row .column {
  text-align: left;
}
section.page-content-section .row .column .maf-content, .section.page-content-section .row .column .maf-content {
  align-items: flex-start;
  max-width: 855px;
}
section.page-content-section .row .column .maf-content ul.big-list, .section.page-content-section .row .column .maf-content ul.big-list {
  margin-top: 20px;
}
section.page-content-section .row .column .maf-content ul.big-list li, .section.page-content-section .row .column .maf-content ul.big-list li {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-bottom: 30px;
}
section.page-content-section .row .column .maf-content ul.big-list li::before, .section.page-content-section .row .column .maf-content ul.big-list li::before {
  top: 10px;
}
section.event-section.is-hero .row .column .maf-content .pub-date, .section.event-section.is-hero .row .column .maf-content .pub-date {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 600;
  margin: 5px;
  opacity: 0.5;
}
section.event-section.event-highlight, .section.event-section.event-highlight {
  background-position: top center;
}
section.event-section.event-highlight .card-box-slider, .section.event-section.event-highlight .card-box-slider {
  width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card, .section.event-section.event-highlight .card-box-slider article.card {
  line-height: 0;
  padding: 15px;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.event-section.event-highlight .card-box-slider article.card, .section.event-section.event-highlight .card-box-slider article.card {
    padding: 30px;
  }
}
section.event-section.event-highlight .card-box-slider article.card .portal-item, .section.event-section.event-highlight .card-box-slider article.card .portal-item {
  background-color: #f4f4f4;
  box-shadow: 8px 8px 27px 1px rgba(7, 7, 7, 0.31);
  color: rgb(51, 51, 51);
  cursor: pointer;
  display: inline-block;
  line-height: 0;
  opacity: 1;
  width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item *, .section.event-section.event-highlight .card-box-slider article.card .portal-item * {
  color: rgb(51, 51, 51);
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content {
  align-content: stretch;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: all 350ms ease-out;
}
@media only screen and (min-width: 768px) {
  section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content {
    flex-direction: row;
  }
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .card-cats, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .card-cats {
  display: none;
  font-size: 1.4rem;
  font-weight: 400;
  min-height: 20px;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn {
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn {
    width: 50%;
  }
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.no-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.no-img {
  display: none;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn .tn-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn .tn-img {
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: all 700ms ease-out;
  width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.square::after, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree::after, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.square::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after {
  content: "";
  display: table;
  padding-bottom: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.square .tn-img, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree .tn-img, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom .tn-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.square .tn-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree .tn-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom .tn-img {
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(1);
  min-width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree::after {
  padding-bottom: 75%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after {
  padding-bottom: 60%;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after {
    padding-bottom: 82.4%;
  }
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .info, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .info {
  align-items: flex-start;
  color: rgb(51, 51, 51);
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 20px 5%;
  text-align: left;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .info, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .info {
    width: 50%;
  }
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .title, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .title {
  align-items: center;
  color: rgb(51, 51, 51);
  display: inline-flex;
  font-size: 3.8rem;
  font-weight: 700;
  justify-content: flex-start;
  line-height: 1.2;
  margin: 0 0 25px 0;
  width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .date, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .date {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 25px 0;
  width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .date i, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .date i {
  display: none;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .date time, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .date time {
  color: rgb(198, 20, 127);
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .desc, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .desc {
  color: rgb(51, 51, 51);
  justify-content: center;
  line-height: 1.4;
  margin: 0 0 25px 0;
  width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr {
  display: none;
  width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr div, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr time, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr div, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr time {
  display: block;
  width: auto;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .card-button, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .card-button {
  background-color: transparent;
  border-color: rgb(51, 51, 51);
  box-shadow: none;
  color: rgb(51, 51, 51);
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  margin: 0;
  min-width: 0;
  padding: 10px 20px;
  text-transform: none;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item.no-link, .section.event-section.event-highlight .card-box-slider article.card .portal-item.no-link {
  cursor: default;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item.no-link .portal-content .info .card-button, .section.event-section.event-highlight .card-box-slider article.card .portal-item.no-link .portal-content .info .card-button {
  display: none;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item:hover .portal-content .button, .section.event-section.event-highlight .card-box-slider article.card .portal-item:hover .portal-content .button {
  background-color: rgb(51, 51, 51);
  color: white;
}
section.event-section.event-highlight .card-box-slider .flickity-page-dots, .section.event-section.event-highlight .card-box-slider .flickity-page-dots {
  bottom: -10px;
  display: block;
  margin: 0;
  padding: 0;
}
section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot, .section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot {
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  border-radius: 0;
  height: 16px;
  margin: 0 5px;
  opacity: 1;
  position: relative;
  width: 17px;
}
section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot::before, .section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot::before {
  background-color: white;
  border-radius: 0;
  content: "";
  display: inline-block;
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 350ms ease-out;
  width: 0;
}
section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot.is-selected::before, .section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot.is-selected::before {
  height: 100%;
  width: 100%;
}
section.event-section.event-highlight div.cardbox article.card .portal-item .portal-content .tn, section.event-section.event-highlight aside.cardbox article.card .portal-item .portal-content .tn, .section.event-section.event-highlight div.cardbox article.card .portal-item .portal-content .tn, .section.event-section.event-highlight aside.cardbox article.card .portal-item .portal-content .tn {
  display: none;
}
section.event-section.event-highlight .row, .section.event-section.event-highlight .row {
  padding: 0;
}
section.event-section.event-highlight .row .column, .section.event-section.event-highlight .row .column {
  padding-right: 0;
  padding-bottom: 50px;
  padding-left: 0;
}
section.event-section.event-highlight .row .footer .maf-content .button, .section.event-section.event-highlight .row .footer .maf-content .button {
  margin: 0;
}
section.event-section.event-cat-highlight div.cardbox article.card .portal-item .portal-content .title, section.event-section.event-cat-highlight aside.cardbox article.card .portal-item .portal-content .title, .section.event-section.event-cat-highlight div.cardbox article.card .portal-item .portal-content .title, .section.event-section.event-cat-highlight aside.cardbox article.card .portal-item .portal-content .title {
  font-size: 2.4rem;
  margin: 0;
  padding-bottom: 5px;
}
@media only screen and (min-width: 576px) {
  section.event-section.event-cat-highlight div.cardbox article.card .portal-item .portal-content .title, section.event-section.event-cat-highlight aside.cardbox article.card .portal-item .portal-content .title, .section.event-section.event-cat-highlight div.cardbox article.card .portal-item .portal-content .title, .section.event-section.event-cat-highlight aside.cardbox article.card .portal-item .portal-content .title {
    min-height: 90px;
  }
}
section.event-section.event-cat-highlight div.cardbox article.card .portal-item .portal-content .desc, section.event-section.event-cat-highlight aside.cardbox article.card .portal-item .portal-content .desc, .section.event-section.event-cat-highlight div.cardbox article.card .portal-item .portal-content .desc, .section.event-section.event-cat-highlight aside.cardbox article.card .portal-item .portal-content .desc {
  border-top: 1px solid rgb(222, 37, 149);
  padding-top: 20px;
  margin-bottom: auto;
}
section.event-section.event-cat-highlight .footer, .section.event-section.event-cat-highlight .footer {
  padding-bottom: 15px;
}
section.event-section.event-cat-highlight .footer .maf-content, .section.event-section.event-cat-highlight .footer .maf-content {
  align-items: flex-end;
  text-align: right;
}
section.event-section.event-cat-highlight .footer .maf-content .button, .section.event-section.event-cat-highlight .footer .maf-content .button {
  margin: 0;
}
section.event-section.event-portal .row, .section.event-section.event-portal .row {
  max-width: 1250px;
}
section.event-section.event-portal.maf-h-h .header, .section.event-section.event-portal.maf-h-h .header {
  background-color: rgb(20, 151, 176);
  max-width: none;
}
section.event-section.event-portal.maf-h-h .header .maf-content, .section.event-section.event-portal.maf-h-h .header .maf-content {
  padding-top: 30px;
  padding-bottom: 30px;
}
section.event-section.event-portal.maf-h-h .header .maf-content p, .section.event-section.event-portal.maf-h-h .header .maf-content p {
  margin-bottom: 20px;
}
section.event-section.event-portal.maf-h-h .header .maf-content .cats .button, .section.event-section.event-portal.maf-h-h .header .maf-content .cats .button {
  margin: 5px;
}
section.event-section.event-detail .event-thumb img, .section.event-section.event-detail .event-thumb img {
  width: 100%;
}
section.event-section.event-detail .title, .section.event-section.event-detail .title {
  background-color: rgb(222, 37, 149);
  color: white;
  margin: 0;
  padding: 18px 20px;
}
section.event-section.event-detail p.venue-details > span, .section.event-section.event-detail p.venue-details > span {
  display: inline-block;
  width: 100%;
}
section.event-section.event-detail p.venue-details > span span, .section.event-section.event-detail p.venue-details > span span {
  font-weight: 500;
  margin-right: 10px;
}
section.event-section.event-detail p.tour-full-date, .section.event-section.event-detail p.tour-full-date {
  font-weight: 600;
}
section.event-section.event-detail p.tour-full-date a, .section.event-section.event-detail p.tour-full-date a {
  display: inline-block;
  padding-right: 20px;
  position: relative;
}
section.event-section.event-detail p.tour-full-date a::after, .section.event-section.event-detail p.tour-full-date a::after {
  border: 2px solid rgb(198, 20, 127);
  border-top: 0;
  border-right: 0;
  content: "";
  display: inline-block;
  height: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -75%) rotate(-45deg);
  transition: transform 350ms ease-out;
  width: 8px;
}
section.event-section.event-detail .desc-l, .section.event-section.event-detail .desc-l {
  background-color: rgb(198, 20, 127);
  color: white;
  padding: 25px 20px 15px 20px;
  width: 100%;
}
section.event-section.event-detail .desc-l p, .section.event-section.event-detail .desc-l p {
  max-width: 480px;
}
section.event-section.event-detail .desc-l p:first-of-type, .section.event-section.event-detail .desc-l p:first-of-type {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
section.event-section.event-detail .desc-l p a:not(.button), .section.event-section.event-detail .desc-l p a:not(.button) {
  color: white;
}
section.event-section.event-detail .desc-l p a:not(.button):hover, .section.event-section.event-detail .desc-l p a:not(.button):hover {
  color: white;
}
section.event-section.event-detail .venue-details, .section.event-section.event-detail .venue-details {
  background-color: rgb(198, 20, 127);
  color: white;
  padding: 15px 20px 5px 20px;
  width: 100%;
}
section.event-section.event-detail .site-link, .section.event-section.event-detail .site-link {
  font-size: 1.5rem;
  font-weight: 600;
}
@media only screen and (min-width: 576px) {
  section.event-section.event-detail .site-link, .section.event-section.event-detail .site-link {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  section.event-section.event-detail .site-link, .section.event-section.event-detail .site-link {
    font-size: 1.8rem;
  }
}
section.event-section.event-detail .price-details, .section.event-section.event-detail .price-details {
  margin-bottom: 20px;
}
section.event-section.event-detail .is-map, .section.event-section.event-detail .is-map {
  margin-bottom: 20px;
  min-height: 300px;
}
section.event-section.event-detail .back, .section.event-section.event-detail .back {
  background-color: rgb(198, 20, 127);
  padding: 50px 20px 30px 20px;
}
section.event-section.event-detail .back a, .section.event-section.event-detail .back a {
  color: white;
  font-weight: 600;
  padding-left: 14px;
  position: relative;
  text-decoration: none;
}
section.event-section.event-detail .back a::before, .section.event-section.event-detail .back a::before {
  border-top: 5px solid transparent;
  border-right: 6px solid white;
  border-bottom: 5px solid transparent;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  transition: left 350ms ease-out;
  width: 0;
}
section.event-section.event-detail .back a:hover::before, .section.event-section.event-detail .back a:hover::before {
  left: -3px;
}
section.event-section.event-detail .tickets, .section.event-section.event-detail .tickets {
  background-color: white;
  display: flex;
  flex-direction: column;
  min-height: 50vh;
  padding: 0 10px 10px 10px;
  width: 100%;
}
section.event-section.event-detail .tickets .ticket, .section.event-section.event-detail .tickets .ticket {
  padding-top: 10px;
}
section.event-section.event-detail .tickets .ticket .ticket-name, .section.event-section.event-detail .tickets .ticket .ticket-name {
  background-color: rgb(198, 20, 127);
  color: white;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 600;
  outline: none;
  padding: 5px 25px 5px 10px;
  position: relative;
}
section.event-section.event-detail .tickets .ticket .ticket-name::after, .section.event-section.event-detail .tickets .ticket .ticket-name::after {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid white;
  content: "";
  height: 0;
  right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 350ms ease-out;
  width: 0;
}
section.event-section.event-detail .tickets .ticket .ticket-name:hover, section.event-section.event-detail .tickets .ticket .ticket-name:focus, .section.event-section.event-detail .tickets .ticket .ticket-name:hover, .section.event-section.event-detail .tickets .ticket .ticket-name:focus {
  background-color: rgb(20, 151, 176);
}
section.event-section.event-detail .tickets .ticket .ticket-name.open::after, .section.event-section.event-detail .tickets .ticket .ticket-name.open::after {
  transform: translateY(-50%) rotate(90deg);
}
section.event-section.event-detail .tickets .ticket .ticket-options, .section.event-section.event-detail .tickets .ticket .ticket-options {
  display: none;
  padding: 5px 0 10px 0;
}
section.event-section.event-detail .tickets .ticket .ticket-options .option, .section.event-section.event-detail .tickets .ticket .ticket-options .option {
  align-items: flex-start;
  border-top: 1px solid rgb(230, 230, 230);
  display: flex;
  flex-wrap: wrap;
  margin: 0 10px;
  padding: 15px 0 25px 0;
}
section.event-section.event-detail .tickets .ticket .ticket-options .option:first-child, .section.event-section.event-detail .tickets .ticket .ticket-options .option:first-child {
  border-top: 0;
}
section.event-section.event-detail .tickets .ticket .ticket-options .option .description, .section.event-section.event-detail .tickets .ticket .ticket-options .option .description {
  flex: 0 0 auto;
  padding-top: 5px;
  width: calc(100% - 100px);
}
section.event-section.event-detail .tickets .ticket .ticket-options .option .description .name, .section.event-section.event-detail .tickets .ticket .ticket-options .option .description .name {
  font-size: 1.8rem;
}
section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price, .section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price {
  display: flex;
  font-size: 1.8rem;
  padding: 5px 0;
}
section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price > div, .section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price > div {
  padding-right: 15px;
}
section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price > div.original, .section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price > div.original {
  text-decoration: line-through;
}
section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price > div.actual, .section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price > div.actual {
  color: rgb(222, 37, 149);
  font-weight: 700;
}
section.event-section.event-detail .tickets .ticket .ticket-options .option .control, .section.event-section.event-detail .tickets .ticket .ticket-options .option .control {
  flex: 0 0 auto;
  padding-top: 5px;
  width: 100px;
}
section.event-section.event-detail .tickets .ticket .ticket-options .option .more, .section.event-section.event-detail .tickets .ticket .ticket-options .option .more {
  display: inline-block;
  flex: 0 0 auto;
  padding-top: 5px;
  width: 100%;
}
section.event-section.event-detail .tickets .ticket .ticket-options .option .more p, .section.event-section.event-detail .tickets .ticket .ticket-options .option .more p {
  margin-bottom: 10px;
}
section.event-section.event-detail .tickets .ticket .ticket-options .option .more .discount, .section.event-section.event-detail .tickets .ticket .ticket-options .option .more .discount {
  background-color: rgb(20, 151, 176);
  color: white;
  display: inline-block;
  margin-top: 5px;
  padding: 5px 15px;
  text-transform: uppercase;
  width: auto;
}
section.event-section.event-detail .tickets .ticket .ticket-options .extras, .section.event-section.event-detail .tickets .ticket .ticket-options .extras {
  background-color: rgb(230, 230, 230);
  padding: 10px 0 0 0;
}
section.event-section.event-detail .tickets .ticket .ticket-options .extras .etitle, .section.event-section.event-detail .tickets .ticket .ticket-options .extras .etitle {
  border-bottom: 2px solid rgb(198, 20, 127);
  color: rgb(198, 20, 127);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 10px;
  padding: 5px 0;
  text-transform: uppercase;
}
section.event-section.event-detail .tickets .ticket .ticket-options .extras .option, .section.event-section.event-detail .tickets .ticket .ticket-options .extras .option {
  border-color: white;
}
section.event-section.event-detail .tickets .ticket .ticket-options .extras .option:nth-child(2), .section.event-section.event-detail .tickets .ticket .ticket-options .extras .option:nth-child(2) {
  border-top: 0;
}
section.event-section.event-detail .ticket-actions, .section.event-section.event-detail .ticket-actions {
  background-color: white;
  display: flex;
  margin-top: auto;
  padding-top: 10px;
  width: 100%;
}
section.event-section.event-detail .ticket-actions .button, .section.event-section.event-detail .ticket-actions .button {
  border: 0;
  margin: 0;
  padding: 20px;
  text-transform: none;
  width: 50%;
}
section.event-section.event-detail .ticket-actions .button.clear, .section.event-section.event-detail .ticket-actions .button.clear {
  color: rgb(198, 20, 127);
  justify-content: flex-start;
}
section.event-section.event-detail .ticket-actions .button.clear span, .section.event-section.event-detail .ticket-actions .button.clear span {
  padding-right: 22px;
  position: relative;
}
section.event-section.event-detail .ticket-actions .button.clear span::before, section.event-section.event-detail .ticket-actions .button.clear span::after, .section.event-section.event-detail .ticket-actions .button.clear span::before, .section.event-section.event-detail .ticket-actions .button.clear span::after {
  background-color: rgb(198, 20, 127);
  content: "";
  height: 3px;
  right: 0;
  position: absolute;
  top: 54%;
  transform: translateY(-50%) rotate(45deg);
  transition: background-color 350ms ease-out;
  width: 13px;
}
section.event-section.event-detail .ticket-actions .button.clear span::after, .section.event-section.event-detail .ticket-actions .button.clear span::after {
  transform: translateY(-50%) rotate(-45deg);
}
section.event-section.event-detail .ticket-actions .button.clear:hover, section.event-section.event-detail .ticket-actions .button.clear:focus, .section.event-section.event-detail .ticket-actions .button.clear:hover, .section.event-section.event-detail .ticket-actions .button.clear:focus {
  background-color: rgb(198, 20, 127);
  color: white;
}
section.event-section.event-detail .ticket-actions .button.clear:hover span::before, section.event-section.event-detail .ticket-actions .button.clear:hover span::after, section.event-section.event-detail .ticket-actions .button.clear:focus span::before, section.event-section.event-detail .ticket-actions .button.clear:focus span::after, .section.event-section.event-detail .ticket-actions .button.clear:hover span::before, .section.event-section.event-detail .ticket-actions .button.clear:hover span::after, .section.event-section.event-detail .ticket-actions .button.clear:focus span::before, .section.event-section.event-detail .ticket-actions .button.clear:focus span::after {
  background-color: white;
}
section.event-section.event-detail .ticket-actions .button.buy, .section.event-section.event-detail .ticket-actions .button.buy {
  background-color: rgb(39, 69, 122);
  color: white;
}
section.event-section.event-detail .ticket-actions .button.buy span, .section.event-section.event-detail .ticket-actions .button.buy span {
  padding-right: 25px;
  position: relative;
}
section.event-section.event-detail .ticket-actions .button.buy span::after, .section.event-section.event-detail .ticket-actions .button.buy span::after {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid white;
  content: "";
  height: 0;
  right: 0;
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  transition: right 350ms ease-out;
  width: 0;
}
section.event-section.event-detail .ticket-actions .button.buy:hover, section.event-section.event-detail .ticket-actions .button.buy:focus, .section.event-section.event-detail .ticket-actions .button.buy:hover, .section.event-section.event-detail .ticket-actions .button.buy:focus {
  background-color: rgb(198, 20, 127);
  color: white;
}
section.event-section.event-detail .ticket-actions .button.buy:hover span::after, section.event-section.event-detail .ticket-actions .button.buy:focus span::after, .section.event-section.event-detail .ticket-actions .button.buy:hover span::after, .section.event-section.event-detail .ticket-actions .button.buy:focus span::after {
  right: -3px;
}
section.event-section.event-detail .header .maf-content .info, .section.event-section.event-detail .header .maf-content .info {
  border: 1px solid rgb(222, 37, 149);
  border-right: 0;
  border-left: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 9px 0;
  width: 100%;
}
section.event-section.event-detail .header .maf-content .info > span, .section.event-section.event-detail .header .maf-content .info > span {
  border-left: 1px solid rgb(222, 37, 149);
  display: inline-block;
  flex: 0 0 auto;
  font-feature-settings: "lnum" 1;
  max-width: 100%;
  padding: 3px 15px;
  text-transform: uppercase;
}
section.event-section.event-detail .row, .section.event-section.event-detail .row {
  flex-direction: row;
  flex-wrap: wrap;
  padding: 44px 20px 80px 20px;
}
section.event-section.event-detail .row .column, .section.event-section.event-detail .row .column {
  align-items: flex-start;
  margin-bottom: 10px;
  padding: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.event-section.event-detail .row .column, .section.event-section.event-detail .row .column {
    width: 50%;
  }
}
section.event-section.event-detail .row .column .maf-content, .section.event-section.event-detail .row .column .maf-content {
  align-items: flex-start;
  text-align: left;
}
section.event-section.event-detail .row .column.maf-col-2 .title, .section.event-section.event-detail .row .column.maf-col-2 .title {
  font-size: 2.2rem;
  font-weight: 600;
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content, .section.event-section.event-detail .row .column.maf-col-2 .maf-content {
  align-items: flex-start;
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content .event-s-link i, .section.event-section.event-detail .row .column.maf-col-2 .maf-content .event-s-link i {
  color: inherit;
  font-size: 2rem;
  vertical-align: middle;
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content .event-s-link a, .section.event-section.event-detail .row .column.maf-col-2 .maf-content .event-s-link a {
  color: inherit;
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content .event-s-link a:hover, .section.event-section.event-detail .row .column.maf-col-2 .maf-content .event-s-link a:hover {
  color: rgb(222, 37, 149);
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content .embed-map, .section.event-section.event-detail .row .column.maf-col-2 .maf-content .embed-map {
  border: 4px solid rgb(222, 37, 149);
  display: inline-block;
  padding-bottom: 85%;
  position: relative;
  width: 100%;
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content .embed-map iframe, .section.event-section.event-detail .row .column.maf-col-2 .maf-content .embed-map iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
section.event-section.event-detail .row .column.maf-dates, .section.event-section.event-detail .row .column.maf-dates {
  padding-top: 60px;
  text-align: left;
}
section.event-section.event-detail .row .column.maf-dates .maf-content, .section.event-section.event-detail .row .column.maf-dates .maf-content {
  align-items: flex-start;
}
section.event-section.event-detail .row .column.maf-dates .maf-content p, .section.event-section.event-detail .row .column.maf-dates .maf-content p {
  max-width: 850px;
}
section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates {
  border-bottom: 1px solid rgb(222, 37, 149);
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div {
  align-items: center;
  align-content: center;
  border-top: 1px solid rgb(222, 37, 149);
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  padding: 8px 0;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div {
    width: 50%;
  }
}
section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span {
  display: inline-block;
  flex: 0 0 auto;
  padding: 10px 15px;
}
section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span:first-child, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span:first-child {
  border-left: 1px solid rgb(222, 37, 149);
  font-feature-settings: "lnum" 1;
  font-size: 1.6rem;
  min-width: 160px;
  text-transform: uppercase;
}
@media only screen and (min-width: 576px) {
  section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span:first-child, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span:first-child {
    font-size: 1.8rem;
    min-width: 200px;
  }
}
section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span:last-child .button, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span:last-child .button {
  margin: 0;
}
section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
  width: calc(100% + 50px);
}
section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date {
  display: inline-block;
  flex: 0 0 auto;
  padding: 25px;
  text-align: left;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date {
    width: 50%;
  }
}
@media only screen and (min-width: 1280px) {
  section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date {
    width: 33.333%;
  }
}
section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content {
  background-color: rgb(222, 37, 149);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 18px 20px;
}
section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content .date, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content .date {
  font-size: 1.4rem;
}
section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content .venue .venue-name, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content .venue .venue-name {
  font-weight: 700;
  margin-right: 20px;
}
section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content .link a, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content .link a {
  color: rgb(198, 20, 127);
  font-size: 1.4rem;
  font-weight: 700;
}
section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date.ended, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date.ended {
  opacity: 0.7;
}
section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date.hide, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date.hide {
  display: none;
}
section.event-section.event-detail.event-dates .row .column, .section.event-section.event-detail.event-dates .row .column {
  padding-bottom: 0;
}
section.event-section.event-gallery, .section.event-section.event-gallery {
  text-align: center;
}
section.event-section.event-gallery .row .column.maf-col-1, .section.event-section.event-gallery .row .column.maf-col-1 {
  padding-top: 10px;
}
section.event-section.assoc div.cardbox article.card .portal-item .portal-content .date, .section.event-section.assoc div.cardbox article.card .portal-item .portal-content .date {
  background-color: rgb(222, 37, 149);
  height: 1px;
  margin: 10px 0 15px 0;
  padding: 0;
}
section.event-section.assoc .header .maf-content, .section.event-section.assoc .header .maf-content {
  padding-top: 20px;
}
section.event-section.assoc .header .maf-content h2, .section.event-section.assoc .header .maf-content h2 {
  color: rgb(222, 37, 149);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
section.event-section.assoc .row .column, .section.event-section.assoc .row .column {
  padding-top: 70px;
  padding-bottom: 120px;
}
section.event-section.festival-overview > .row .column, .section.event-section.festival-overview > .row .column {
  overflow: visible;
}
section.event-section.festival-overview div.cardbox article.card, section.event-section.festival-overview aside.cardbox article.card, .section.event-section.festival-overview div.cardbox article.card, .section.event-section.festival-overview aside.cardbox article.card {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.event-section.festival-overview div.cardbox article.card, section.event-section.festival-overview aside.cardbox article.card, .section.event-section.festival-overview div.cardbox article.card, .section.event-section.festival-overview aside.cardbox article.card {
    width: 33.333%;
  }
}
section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content {
  color: rgb(51, 51, 51);
  text-align: center;
}
section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .tn, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .tn, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .tn, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .tn {
  margin-bottom: 10px;
  overflow: visible;
}
section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .info, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .info, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .info, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .info {
  align-items: center;
}
section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title {
  margin-bottom: auto;
}
section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.next, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.next, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.next, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.next {
  background-image: url("/images/Layout/header-flag.png");
  background-size: 100% 100%;
  color: white;
  font-size: 2rem;
  padding: 1.8% 6.2% 5.5% 6.2%;
  text-transform: uppercase;
  width: auto;
}
@media only screen and (min-width: 1152px) {
  section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.next, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.next, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.next, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.next {
    font-size: 3.3rem;
  }
}
section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.pending, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.pending, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.pending, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.pending {
  background-color: rgb(198, 20, 127);
  border-radius: 1rem;
  margin-top: auto;
  max-width: 70%;
  padding: 5px;
}
section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.pending.pink, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.pending.pink, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.pending.pink, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.pending.pink {
  background-color: rgb(20, 151, 176);
}
section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .desc, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .desc, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .desc, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .desc {
  padding: 20px 0 40px 0;
}
section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .desc p, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .desc p, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .desc p, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .desc p {
  margin-bottom: 0;
  text-transform: uppercase;
}
section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .desc p.dates, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .desc p.dates, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .desc p.dates, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .desc p.dates {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 3rem;
  line-height: 1.1;
}
section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .button, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .button, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .button, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .button {
  align-self: center;
}
section.event-section.festival-overview .section.two-column p.event, .section.event-section.festival-overview .section.two-column p.event {
  font-size: 2.2rem;
  text-transform: uppercase;
}
section.event-section.festival-overview .section.two-column .body, .section.event-section.festival-overview .section.two-column .body {
  margin-bottom: 20px;
}
section.event-section.festival-overview .section.two-column .body p:first-child, .section.event-section.festival-overview .section.two-column .body p:first-child {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
section.event-section.festival-overview .section.two-column .row .column .maf-bg-overlay, .section.event-section.festival-overview .section.two-column .row .column .maf-bg-overlay {
  background-size: 100% auto;
  background-position: bottom;
}
section.event-section.festival-overview .section.two-column .row .column .maf-col-i > .maf-content, .section.event-section.festival-overview .section.two-column .row .column .maf-col-i > .maf-content {
  padding-bottom: 3vw;
}
section.event-section.festival-overview .section.two-column .row .column .maf-col-i > .maf-content img, .section.event-section.festival-overview .section.two-column .row .column .maf-col-i > .maf-content img {
  border: 0;
  box-shadow: none;
}
section.event-section.festival-overview .section.two-column.next, .section.event-section.festival-overview .section.two-column.next {
  border-top: 1px solid rgb(39, 69, 122);
}
section.event-section.festival-overview .section.two-column.next .row .column.maf-col-2, .section.event-section.festival-overview .section.two-column.next .row .column.maf-col-2 {
  min-height: 66vw;
}
@media only screen and (min-width: 1024px) {
  section.event-section.festival-overview .section.two-column.next .row .column.maf-col-2, .section.event-section.festival-overview .section.two-column.next .row .column.maf-col-2 {
    min-height: 0;
  }
}
section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-1 .maf-background, .section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-1 .maf-background {
  background-position: right center;
}
section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-1 .maf-content, .section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-1 .maf-content {
  padding-top: 60px;
}
section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-2 .maf-background, .section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-2 .maf-background {
  background-position: left center;
}
@media only screen and (min-width: 1024px) {
  section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-2 .maf-content, .section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-2 .maf-content {
    padding-top: 60px;
  }
}
section.event-section.festival-overview .section.pending .abs-head, .section.event-section.festival-overview .section.pending .abs-head {
  background-color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(51, 56, 76, 0.8);
  font-family: Georgia, Times, Times New Roman, serif;
  left: 0;
  padding: 20px 20px 10px 20px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  width: 100%;
  z-index: 2;
}
section.event-section.festival-overview .section.single .row .column .maf-content, .section.event-section.festival-overview .section.single .row .column .maf-content {
  max-width: 550px;
  padding-top: 60px;
}
section.event-section.exhibitor-portal .row, .section.event-section.exhibitor-portal .row {
  max-width: none;
  padding: 0;
}
section.event-section.exhibitor-portal .row .column, .section.event-section.exhibitor-portal .row .column {
  padding-top: 25px;
  padding-right: 0;
  padding-left: 0;
}
section.faq-section > .maf-sprite-layer .faq-spr1, .section.faq-section > .maf-sprite-layer .faq-spr1 {
  bottom: 0;
  max-width: 414px;
  position: absolute;
  right: 0;
  width: 25.875vw;
}
section.faq-section .header, .section.faq-section .header {
  align-items: center;
}
section.faq-section .header .maf-content, .section.faq-section .header .maf-content {
  max-width: 900px;
}
section.faq-section .row .column, .section.faq-section .row .column {
  padding-bottom: 135px;
}
section.faq-section .row .column .maf-content, .section.faq-section .row .column .maf-content {
  max-width: 800px;
}
section.faq-section .row .footer .maf-content, .section.faq-section .row .footer .maf-content {
  max-width: 800px;
}
section.faq-section.maf-h-h .row .column, .section.faq-section.maf-h-h .row .column {
  padding-top: 50px;
}
section.faq-section.timeline, .section.faq-section.timeline {
  background-color: rgb(235, 243, 250);
}
section.faq-section.timeline > .maf-sprite-layer #timeline-spr1, .section.faq-section.timeline > .maf-sprite-layer #timeline-spr1 {
  bottom: 0;
  max-width: 414px;
  position: absolute;
  right: 0;
  width: 25.875vw;
}
@media only screen and (min-width: 1024px) {
  section.slideshow-section .row, .section.slideshow-section .row {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
section.slideshow-section .row .column, .section.slideshow-section .row .column {
  padding-top: 50px;
}
section.slideshow-section .row .column > .maf-content, .section.slideshow-section .row .column > .maf-content {
  max-width: 1180px;
}
section.slideshow-section .flickity-slideshow, section.slideshow-section .flickity-slideshow-edit, .section.slideshow-section .flickity-slideshow, .section.slideshow-section .flickity-slideshow-edit {
  width: 100%;
}
section.slideshow-section .flickity-slideshow .ss-slide, section.slideshow-section .flickity-slideshow-edit .ss-slide, .section.slideshow-section .flickity-slideshow .ss-slide, .section.slideshow-section .flickity-slideshow-edit .ss-slide {
  background-color: transparent;
  padding: 0 10px;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.slideshow-section .flickity-slideshow .ss-slide, section.slideshow-section .flickity-slideshow-edit .ss-slide, .section.slideshow-section .flickity-slideshow .ss-slide, .section.slideshow-section .flickity-slideshow-edit .ss-slide {
    padding: 0 20px;
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  section.slideshow-section .flickity-slideshow .ss-slide, section.slideshow-section .flickity-slideshow-edit .ss-slide, .section.slideshow-section .flickity-slideshow .ss-slide, .section.slideshow-section .flickity-slideshow-edit .ss-slide {
    width: 33.333%;
  }
}
section.slideshow-section .flickity-slideshow .ss-slide > div, section.slideshow-section .flickity-slideshow-edit .ss-slide > div, .section.slideshow-section .flickity-slideshow .ss-slide > div, .section.slideshow-section .flickity-slideshow-edit .ss-slide > div {
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-top: 50px;
  position: relative;
  text-align: left;
}
section.slideshow-section .flickity-slideshow .ss-slide > div::before, section.slideshow-section .flickity-slideshow-edit .ss-slide > div::before, .section.slideshow-section .flickity-slideshow .ss-slide > div::before, .section.slideshow-section .flickity-slideshow-edit .ss-slide > div::before {
  background-image: url("/images/Layout/quotes.png");
  background-size: 100% 100%;
  content: "";
  height: 31px;
  left: 0;
  position: absolute;
  top: 0;
  width: 37px;
}
section.slideshow-section .flickity-slideshow .ss-slide > div p, section.slideshow-section .flickity-slideshow-edit .ss-slide > div p, .section.slideshow-section .flickity-slideshow .ss-slide > div p, .section.slideshow-section .flickity-slideshow-edit .ss-slide > div p {
  margin-bottom: 20px;
}
section.slideshow-section .flickity-slideshow .ss-slide > div p:not(:first-child):last-child, section.slideshow-section .flickity-slideshow-edit .ss-slide > div p:not(:first-child):last-child, .section.slideshow-section .flickity-slideshow .ss-slide > div p:not(:first-child):last-child, .section.slideshow-section .flickity-slideshow-edit .ss-slide > div p:not(:first-child):last-child {
  color: rgb(198, 20, 127);
}
section.slideshow-section .flickity-slideshow .ss-slide > div p:last-child, section.slideshow-section .flickity-slideshow-edit .ss-slide > div p:last-child, .section.slideshow-section .flickity-slideshow .ss-slide > div p:last-child, .section.slideshow-section .flickity-slideshow-edit .ss-slide > div p:last-child {
  margin-bottom: 0;
}
section.simple-gallery figcaption, .section.simple-gallery figcaption {
  display: none;
}
section.simple-gallery .row .header .maf-content > *:first-child, .section.simple-gallery .row .header .maf-content > *:first-child {
  margin-top: 20px;
}
section.simple-gallery .row .column.maf-col-1, .section.simple-gallery .row .column.maf-col-1 {
  padding-top: 40px;
  padding-bottom: 40px;
}
section.simple-gallery .row .column.maf-col-1 .is-simple-gallery, .section.simple-gallery .row .column.maf-col-1 .is-simple-gallery {
  max-width: 1400px;
}
section.simple-gallery .row .footer .maf-content, .section.simple-gallery .row .footer .maf-content {
  max-width: 960px;
}
section.simple-gallery .row .footer .maf-content p, .section.simple-gallery .row .footer .maf-content p {
  font-size: 1.4rem;
  line-height: 1.6;
}
section.simple-gallery .row .footer .maf-content > *:last-child, .section.simple-gallery .row .footer .maf-content > *:last-child {
  margin-bottom: 30px !important;
}
section.booking-form #payment-overview, .section.booking-form #payment-overview {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
section.booking-form #payment-overview > div, .section.booking-form #payment-overview > div {
  display: inline-block;
  flex: 0 0 auto;
  padding-bottom: 30px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.booking-form #payment-overview > div, .section.booking-form #payment-overview > div {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  section.booking-form #payment-overview > div, .section.booking-form #payment-overview > div {
    width: 33.333%;
  }
}
section.booking-form #payment-overview > div.notes, .section.booking-form #payment-overview > div.notes {
  width: 100%;
}
section.booking-form #payment-overview h2, .section.booking-form #payment-overview h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 10px;
}
section.booking-form #payment-overview p, .section.booking-form #payment-overview p {
  margin: 0;
}
section.booking-form #payment-overview p span, .section.booking-form #payment-overview p span {
  font-weight: 400;
}
section.booking-form .row .column, .section.booking-form .row .column {
  padding-top: 50px;
  text-align: left;
}
section.booking-form .row .column .maf-form input, section.booking-form .row .column .maf-form textarea, .section.booking-form .row .column .maf-form input, .section.booking-form .row .column .maf-form textarea {
  padding: 10px;
}
section[class*=portal-].portal-section div.cardbox article.card .portal-item, section[class*=portal-].portal-section div.cardbox div.card .portal-item, .section[class*=portal-].portal-section div.cardbox article.card .portal-item, .section[class*=portal-].portal-section div.cardbox div.card .portal-item {
  text-align: center;
}
section[class*=portal-].portal-section div.cardbox article.card .portal-item .portal-content .title, section[class*=portal-].portal-section div.cardbox div.card .portal-item .portal-content .title, .section[class*=portal-].portal-section div.cardbox article.card .portal-item .portal-content .title, .section[class*=portal-].portal-section div.cardbox div.card .portal-item .portal-content .title {
  justify-content: center;
}
section[class*=portal-].portal-section .row, .section[class*=portal-].portal-section .row {
  max-width: 1250px;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow, .section[class*=portal-].portal-section.is-slider .flickity-slideshow {
  margin: 0 -10px;
  width: calc(100% + 20px);
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  margin-bottom: 0;
  min-height: 100%;
  padding: 0 10px;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  section[class*=portal-].portal-section.is-slider .flickity-slideshow .card, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card {
    width: 50%;
  }
}
@media only screen and (min-width: 1280px) {
  section[class*=portal-].portal-section.is-slider .flickity-slideshow .card, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1440px) {
  section[class*=portal-].portal-section.is-slider .flickity-slideshow .card, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card {
    width: 25%;
  }
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item {
  background-color: #f4f4f4;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgb(234, 139, 73);
  color: rgb(186, 186, 186);
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  height: 100%;
  overflow: visible;
  opacity: 1;
  max-width: 320px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: scale(1);
  transition: all 350ms ease-out;
  width: 100%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  min-height: 544px;
  position: relative;
  transition: all 350ms ease-out;
  width: 100%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-cats, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-cats {
  color: rgb(222, 37, 149);
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  padding-top: 15px;
  text-transform: uppercase;
  z-index: 1;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn {
  display: inline-block;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
  transition: all 350ms ease-out;
  width: 100%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .tn-img, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .tn-img {
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: all 700ms ease-out;
  width: 100%;
  z-index: 0;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  height: 100%;
  font-size: 2rem;
  padding: 20px;
  position: absolute;
  top: 0;
  width: 100%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na span, section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na i, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na span, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na i {
  display: inline-block;
  flex: 0 0 auto;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na span, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na span {
  text-align: center;
  width: 100%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na i, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na i {
  font-size: 2em;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.no-img .maf-na, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.no-img .maf-na {
  position: static;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.square::after, section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree::after, section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom::after, section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all::after, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.square::after, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree::after, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom::after, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all::after {
  content: "";
  display: table;
  padding-bottom: 100%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.square .tn-img, section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree .tn-img, section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom .tn-img, section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all .tn-img, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.square .tn-img, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree .tn-img, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom .tn-img, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all .tn-img {
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(1);
  min-width: 100%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree::after, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree::after {
  padding-bottom: 75%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static {
  overflow: visible;
  position: static;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static .tn-img, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static .tn-img {
  height: auto;
  max-width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  transform-origin: center bottom;
  width: auto;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static.no-img, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static.no-img {
  min-height: 100px;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all::after, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all::after {
  padding-bottom: 50%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all .tn-img, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all .tn-img {
  -o-object-fit: contain;
     object-fit: contain;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom::after, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom::after {
  padding-bottom: 85%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .info, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .info {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15px 20px;
  position: relative;
  transition: all 350ms ease-out;
  width: 100%;
  z-index: 1;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .title, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .title {
  align-items: flex-start;
  color: rgb(222, 37, 149);
  display: flex;
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.1;
  margin: 0;
  padding: 10px 0 3px 0;
  position: relative;
  text-transform: none;
  width: 100%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date {
  color: rgb(234, 139, 73);
  display: inline-flex;
  justify-content: center;
  line-height: 1;
  margin: auto 0 0 0;
  overflow: hidden;
  padding: 25px 0 5px;
  width: 100%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date time, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date time {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date i, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date i {
  display: none;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .desc, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .desc {
  color: inherit;
  display: inline-block;
  margin: auto 0 0 0;
  min-height: 130px;
  padding: 15px 0;
  width: 100%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .desc p, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .desc p {
  margin-bottom: 0;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .attr, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .attr {
  display: flex;
  margin-top: auto;
  padding: 10px 0;
  width: 100%;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .attr span, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .attr span {
  display: inline-block;
  flex: 1 1 auto;
  line-height: 1.2;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-button, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-button {
  background-color: transparent;
  border: 2px solid rgb(222, 37, 149);
  border-radius: 30px;
  color: rgb(222, 37, 149);
  font-size: 1.4rem;
  font-weight: 900;
  margin: auto 0 20px 0;
  min-width: 0;
  padding: 10px 20px;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-button::after, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-button::after {
  display: none;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item.no-link, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item.no-link {
  cursor: default;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item.no-link .portal-content .info .card-button, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item.no-link .portal-content .info .card-button {
  display: none;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item:hover, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item:hover {
  transform: scale(1.01);
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content .tn .tn-img, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content .tn .tn-img {
  transform: scale(1.05);
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content .card-button, .section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content .card-button {
  background-color: rgb(222, 37, 149);
  color: white;
}
section[class*=portal-].portal-section.is-slider .row, .section[class*=portal-].portal-section.is-slider .row {
  padding: 0 10px;
}
@media only screen and (min-width: 576px) {
  section[class*=portal-].portal-section.is-slider .row, .section[class*=portal-].portal-section.is-slider .row {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 960px) {
  section[class*=portal-].portal-section.is-slider .row, .section[class*=portal-].portal-section.is-slider .row {
    padding: 0 20px;
  }
}
section[class*=portal-].portal-section.maf-h-h .row .column, .section[class*=portal-].portal-section.maf-h-h .row .column {
  padding-top: 30px;
}
section.privacy-policy, .section.privacy-policy {
  font-size: 1.8rem;
}
section.privacy-policy h2, section.privacy-policy .h2-style, section.privacy-policy h3, section.privacy-policy .h3-style, section.privacy-policy h4, section.privacy-policy .h4-style, section.privacy-policy h5, section.privacy-policy .h5-style, section.privacy-policy h6.h6-style, .section.privacy-policy h2, .section.privacy-policy .h2-style, .section.privacy-policy h3, .section.privacy-policy .h3-style, .section.privacy-policy h4, .section.privacy-policy .h4-style, .section.privacy-policy h5, .section.privacy-policy .h5-style, .section.privacy-policy h6.h6-style {
  width: 100%;
}
section.privacy-policy h1, section.privacy-policy .h1-style, .section.privacy-policy h1, .section.privacy-policy .h1-style {
  align-self: center;
  border-bottom: 1px solid rgb(51, 51, 51);
  padding-bottom: 10px;
  text-align: center;
  width: auto;
}
section.privacy-policy h2, .section.privacy-policy h2 {
  font-size: 3rem;
  margin: 20px 0;
  text-transform: none;
}
section.privacy-policy p.page-lead, .section.privacy-policy p.page-lead {
  text-align: center;
  margin-bottom: 40px;
}
section.privacy-policy ol li, .section.privacy-policy ol li {
  margin-bottom: 20px;
}
section.privacy-policy .row .column, .section.privacy-policy .row .column {
  align-items: center;
  padding-top: 80px;
  padding-bottom: 160px;
  text-align: left;
}
section.privacy-policy .row .column .maf-content, .section.privacy-policy .row .column .maf-content {
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 800px;
}
section.no-spacing .header, .section.no-spacing .header {
  padding-top: 0;
}
section.no-spacing .header .maf-content, .section.no-spacing .header .maf-content {
  padding-top: 0;
}
section.no-spacing .row, .section.no-spacing .row {
  padding-top: 0;
  padding-bottom: 0;
}
section.no-spacing .row .column, .section.no-spacing .row .column {
  padding-top: 0;
  padding-bottom: 0;
}
section.no-spacing .footer, .section.no-spacing .footer {
  padding-bottom: 0;
}
section.no-spacing .footer .maf-content, .section.no-spacing .footer .maf-content {
  padding-bottom: 0;
}
section.no-spacing-top .header, .section.no-spacing-top .header {
  padding-top: 0;
}
section.no-spacing-top .header .maf-content, .section.no-spacing-top .header .maf-content {
  padding-top: 0;
}
section.no-spacing-top .row, .section.no-spacing-top .row {
  padding-top: 0 !important;
}
section.no-spacing-top .row .column, .section.no-spacing-top .row .column {
  padding-top: 0 !important;
}
section.no-spacing-top.maf-rep-pad .row, .section.no-spacing-top.maf-rep-pad .row {
  padding-bottom: 0 !important;
}
section.no-spacing-top.maf-rep-pad .row .column, .section.no-spacing-top.maf-rep-pad .row .column {
  padding-bottom: 60px !important;
}
@media only screen and (min-width: 960px) {
  section.no-spacing-top.maf-rep-pad .row .column, .section.no-spacing-top.maf-rep-pad .row .column {
    padding-bottom: 80px !important;
  }
}
section.no-spacing-bottom .row, .section.no-spacing-bottom .row {
  padding-bottom: 0 !important;
}
section.no-spacing-bottom .row .column, .section.no-spacing-bottom .row .column {
  padding-bottom: 0 !important;
}
section.no-spacing-bottom.maf-rep-pad .row, .section.no-spacing-bottom.maf-rep-pad .row {
  padding-bottom: 0 !important;
}
section.no-spacing-bottom .footer, .section.no-spacing-bottom .footer {
  padding-bottom: 0;
}
section.no-spacing-bottom .footer .maf-content, .section.no-spacing-bottom .footer .maf-content {
  padding-bottom: 0;
}
section.video-bg, .section.video-bg {
  background-color: black;
  color: white;
  min-height: 56.25vw;
  overflow: hidden;
}
section.video-bg .row .column, .section.video-bg .row .column {
  align-items: center;
  justify-content: center;
}
section.basket, .section.basket {
  font-size: 1.8rem;
}
section.basket .basketerror, .section.basket .basketerror {
  color: rgb(195, 0, 40);
}
section.basket .basket-title, .section.basket .basket-title {
  background-color: rgb(198, 20, 127);
  color: white;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding: 20px 25px;
}
section.basket .maf-checkout-con, .section.basket .maf-checkout-con {
  width: 100%;
  padding: 0;
  margin: 0 auto 50px auto;
}
section.basket .maf-checkout-con .no-items, .section.basket .maf-checkout-con .no-items {
  min-height: 40vh;
  padding: 0 25px;
}
section.basket .maf-checkout-con a, .section.basket .maf-checkout-con a {
  color: rgb(230, 230, 230);
  text-decoration: none;
}
section.basket .maf-checkout-con a:hover, .section.basket .maf-checkout-con a:hover {
  opacity: 0.9;
}
section.basket .maf-checkout-con input, .section.basket .maf-checkout-con input {
  background-color: white;
}
section.basket .maf-checkout-con input[type=submit], section.basket .maf-checkout-con input input[type=reset], .section.basket .maf-checkout-con input[type=submit], .section.basket .maf-checkout-con input input[type=reset] {
  background-color: rgb(39, 69, 122);
  border-color: rgb(39, 69, 122);
  color: white;
  min-height: 50px;
}
section.basket .maf-checkout-con input[type=submit]:hover, section.basket .maf-checkout-con input input[type=reset]:hover, .section.basket .maf-checkout-con input[type=submit]:hover, .section.basket .maf-checkout-con input input[type=reset]:hover {
  opacity: 0.9;
}
section.basket .maf-checkout-con input[type=submit].update-button, section.basket .maf-checkout-con input input[type=reset].update-button, .section.basket .maf-checkout-con input[type=submit].update-button, .section.basket .maf-checkout-con input input[type=reset].update-button {
  border-radius: 0;
  font-size: 1.4rem;
  font-weight: 700;
  min-height: 0;
  min-width: 0;
  padding: 5px 8px;
  text-transform: capitalize;
}
section.basket .maf-checkout-con .basket-row-head,
section.basket .maf-checkout-con .basket-row, section.basket .maf-checkout-con .basket-row-disco, .section.basket .maf-checkout-con .basket-row-head,
.section.basket .maf-checkout-con .basket-row, .section.basket .maf-checkout-con .basket-row-disco {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.basket .maf-checkout-con .basket-row-head,
  section.basket .maf-checkout-con .basket-row, section.basket .maf-checkout-con .basket-row-disco, .section.basket .maf-checkout-con .basket-row-head,
  .section.basket .maf-checkout-con .basket-row, .section.basket .maf-checkout-con .basket-row-disco {
    flex-wrap: nowrap;
  }
}
section.basket .maf-checkout-con .basket-row-head.price,
section.basket .maf-checkout-con .basket-row.price, section.basket .maf-checkout-con .basket-row-disco.price, .section.basket .maf-checkout-con .basket-row-head.price,
.section.basket .maf-checkout-con .basket-row.price, .section.basket .maf-checkout-con .basket-row-disco.price {
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
  section.basket .maf-checkout-con .basket-row-head.price,
  section.basket .maf-checkout-con .basket-row.price, section.basket .maf-checkout-con .basket-row-disco.price, .section.basket .maf-checkout-con .basket-row-head.price,
  .section.basket .maf-checkout-con .basket-row.price, .section.basket .maf-checkout-con .basket-row-disco.price {
    justify-content: flex-end;
  }
}
section.basket .maf-checkout-con .basket-row-head.totals,
section.basket .maf-checkout-con .basket-row.totals, section.basket .maf-checkout-con .basket-row-disco.totals, .section.basket .maf-checkout-con .basket-row-head.totals,
.section.basket .maf-checkout-con .basket-row.totals, .section.basket .maf-checkout-con .basket-row-disco.totals {
  border-top: 1px solid rgb(51, 51, 51);
  margin-top: 5px;
}
section.basket .maf-checkout-con .basket-row-head > div,
section.basket .maf-checkout-con .basket-row > div, section.basket .maf-checkout-con .basket-row-disco > div, .section.basket .maf-checkout-con .basket-row-head > div,
.section.basket .maf-checkout-con .basket-row > div, .section.basket .maf-checkout-con .basket-row-disco > div {
  display: inline-block;
  flex: 1 1 auto;
  font-size: 1.5rem;
  padding: 5px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.basket .maf-checkout-con .basket-row-head > div,
  section.basket .maf-checkout-con .basket-row > div, section.basket .maf-checkout-con .basket-row-disco > div, .section.basket .maf-checkout-con .basket-row-head > div,
  .section.basket .maf-checkout-con .basket-row > div, .section.basket .maf-checkout-con .basket-row-disco > div {
    font-size: 1.6rem;
  }
}
section.basket .maf-checkout-con .basket-row-head > div.to-pay,
section.basket .maf-checkout-con .basket-row > div.to-pay, section.basket .maf-checkout-con .basket-row-disco > div.to-pay, .section.basket .maf-checkout-con .basket-row-head > div.to-pay,
.section.basket .maf-checkout-con .basket-row > div.to-pay, .section.basket .maf-checkout-con .basket-row-disco > div.to-pay {
  color: white;
  background-color: rgb(222, 37, 149);
}
section.basket .maf-checkout-con .basket-row-head .basket-name,
section.basket .maf-checkout-con .basket-row .basket-name, section.basket .maf-checkout-con .basket-row-disco .basket-name, .section.basket .maf-checkout-con .basket-row-head .basket-name,
.section.basket .maf-checkout-con .basket-row .basket-name, .section.basket .maf-checkout-con .basket-row-disco .basket-name {
  padding: 8px 5px;
}
section.basket .maf-checkout-con .basket-row-head .basket-name.update,
section.basket .maf-checkout-con .basket-row .basket-name.update, section.basket .maf-checkout-con .basket-row-disco .basket-name.update, .section.basket .maf-checkout-con .basket-row-head .basket-name.update,
.section.basket .maf-checkout-con .basket-row .basket-name.update, .section.basket .maf-checkout-con .basket-row-disco .basket-name.update {
  align-items: center;
  display: inline-flex;
  font-size: 0.8em;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  section.basket .maf-checkout-con .basket-row-head .basket-name.update,
  section.basket .maf-checkout-con .basket-row .basket-name.update, section.basket .maf-checkout-con .basket-row-disco .basket-name.update, .section.basket .maf-checkout-con .basket-row-head .basket-name.update,
  .section.basket .maf-checkout-con .basket-row .basket-name.update, .section.basket .maf-checkout-con .basket-row-disco .basket-name.update {
    justify-content: flex-end;
  }
}
section.basket .maf-checkout-con .basket-row-head .basket-quantity,
section.basket .maf-checkout-con .basket-row .basket-quantity, section.basket .maf-checkout-con .basket-row-disco .basket-quantity, .section.basket .maf-checkout-con .basket-row-head .basket-quantity,
.section.basket .maf-checkout-con .basket-row .basket-quantity, .section.basket .maf-checkout-con .basket-row-disco .basket-quantity {
  max-width: 75px;
}
@media only screen and (min-width: 768px) {
  section.basket .maf-checkout-con .basket-row-head .basket-quantity,
  section.basket .maf-checkout-con .basket-row .basket-quantity, section.basket .maf-checkout-con .basket-row-disco .basket-quantity, .section.basket .maf-checkout-con .basket-row-head .basket-quantity,
  .section.basket .maf-checkout-con .basket-row .basket-quantity, .section.basket .maf-checkout-con .basket-row-disco .basket-quantity {
    max-width: 100px;
    text-align: center;
  }
}
section.basket .maf-checkout-con .basket-row-head .basket-quantity input[type=number],
section.basket .maf-checkout-con .basket-row .basket-quantity input[type=number], section.basket .maf-checkout-con .basket-row-disco .basket-quantity input[type=number], .section.basket .maf-checkout-con .basket-row-head .basket-quantity input[type=number],
.section.basket .maf-checkout-con .basket-row .basket-quantity input[type=number], .section.basket .maf-checkout-con .basket-row-disco .basket-quantity input[type=number] {
  font-size: 1.6rem;
  max-width: 50px;
  padding: 3px;
}
section.basket .maf-checkout-con .basket-row-head .basket-quantity.update input,
section.basket .maf-checkout-con .basket-row .basket-quantity.update input, section.basket .maf-checkout-con .basket-row-disco .basket-quantity.update input, .section.basket .maf-checkout-con .basket-row-head .basket-quantity.update input,
.section.basket .maf-checkout-con .basket-row .basket-quantity.update input, .section.basket .maf-checkout-con .basket-row-disco .basket-quantity.update input {
  margin: 0;
}
section.basket .maf-checkout-con .basket-row-head .basket-price,
section.basket .maf-checkout-con .basket-row .basket-price, section.basket .maf-checkout-con .basket-row-disco .basket-price, .section.basket .maf-checkout-con .basket-row-head .basket-price,
.section.basket .maf-checkout-con .basket-row .basket-price, .section.basket .maf-checkout-con .basket-row-disco .basket-price {
  max-width: 150px;
}
section.basket .maf-checkout-con .basket-row-head .basket-price.to-pay,
section.basket .maf-checkout-con .basket-row .basket-price.to-pay, section.basket .maf-checkout-con .basket-row-disco .basket-price.to-pay, .section.basket .maf-checkout-con .basket-row-head .basket-price.to-pay,
.section.basket .maf-checkout-con .basket-row .basket-price.to-pay, .section.basket .maf-checkout-con .basket-row-disco .basket-price.to-pay {
  max-width: 150px;
}
section.basket .maf-checkout-con .basket-row-head .basket-total-row,
section.basket .maf-checkout-con .basket-row .basket-total-row, section.basket .maf-checkout-con .basket-row-disco .basket-total-row, .section.basket .maf-checkout-con .basket-row-head .basket-total-row,
.section.basket .maf-checkout-con .basket-row .basket-total-row, .section.basket .maf-checkout-con .basket-row-disco .basket-total-row {
  max-width: 70px;
}
@media only screen and (min-width: 768px) {
  section.basket .maf-checkout-con .basket-row-head .basket-total-row,
  section.basket .maf-checkout-con .basket-row .basket-total-row, section.basket .maf-checkout-con .basket-row-disco .basket-total-row, .section.basket .maf-checkout-con .basket-row-head .basket-total-row,
  .section.basket .maf-checkout-con .basket-row .basket-total-row, .section.basket .maf-checkout-con .basket-row-disco .basket-total-row {
    max-width: 120px;
  }
}
section.basket .maf-checkout-con .basket-row-head .basket-delete,
section.basket .maf-checkout-con .basket-row .basket-delete, section.basket .maf-checkout-con .basket-row-disco .basket-delete, .section.basket .maf-checkout-con .basket-row-head .basket-delete,
.section.basket .maf-checkout-con .basket-row .basket-delete, .section.basket .maf-checkout-con .basket-row-disco .basket-delete {
  color: rgb(195, 0, 40);
  font-weight: 400;
  max-width: 70px;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  section.basket .maf-checkout-con .basket-row-head .basket-delete,
  section.basket .maf-checkout-con .basket-row .basket-delete, section.basket .maf-checkout-con .basket-row-disco .basket-delete, .section.basket .maf-checkout-con .basket-row-head .basket-delete,
  .section.basket .maf-checkout-con .basket-row .basket-delete, .section.basket .maf-checkout-con .basket-row-disco .basket-delete {
    max-width: 80px;
  }
}
section.basket .maf-checkout-con .basket-row-head .basket-delete a,
section.basket .maf-checkout-con .basket-row .basket-delete a, section.basket .maf-checkout-con .basket-row-disco .basket-delete a, .section.basket .maf-checkout-con .basket-row-head .basket-delete a,
.section.basket .maf-checkout-con .basket-row .basket-delete a, .section.basket .maf-checkout-con .basket-row-disco .basket-delete a {
  color: inherit;
}
section.basket .maf-checkout-con .basket-row-head, .section.basket .maf-checkout-con .basket-row-head {
  border-bottom: 1px solid rgb(51, 51, 51);
  color: rgb(51, 51, 51);
}
section.basket .maf-checkout-con .basket-row-head > div, .section.basket .maf-checkout-con .basket-row-head > div {
  font-weight: 700;
}
section.basket .maf-checkout-con .basket-row.item, .section.basket .maf-checkout-con .basket-row.item {
  margin: 5px 0;
}
@media only screen and (min-width: 768px) {
  section.basket .maf-checkout-con .basket-row.item, .section.basket .maf-checkout-con .basket-row.item {
    margin: 0;
  }
}
section.basket .maf-checkout-con .basket-row.item:nth-of-type(odd), .section.basket .maf-checkout-con .basket-row.item:nth-of-type(odd) {
  background-color: rgb(235, 235, 235);
}
section.basket .maf-checkout-con .basket-row-disco, .section.basket .maf-checkout-con .basket-row-disco {
  flex-wrap: wrap;
  font-size: 2rem;
  font-weight: 700;
}
section.basket .maf-checkout-con .basket-row-disco span, .section.basket .maf-checkout-con .basket-row-disco span {
  margin-bottom: 10px;
  padding-right: 10px;
  width: 100%;
}
section.basket .maf-checkout-con .basket-row-disco span.error, .section.basket .maf-checkout-con .basket-row-disco span.error {
  color: rgb(195, 0, 40);
}
section.basket .maf-checkout-con .basket-row-disco input, .section.basket .maf-checkout-con .basket-row-disco input {
  margin-bottom: 5px;
}
section.basket .maf-checkout-con .basket-row-disco .disco, .section.basket .maf-checkout-con .basket-row-disco .disco {
  flex: 1 1 auto;
  font-size: 1.5rem;
  margin-right: 10px;
  max-width: 350px;
}
@media only screen and (min-width: 576px) {
  section.basket .maf-checkout-con .basket-row-disco .disco, .section.basket .maf-checkout-con .basket-row-disco .disco {
    font-size: 1.6rem;
  }
}
section.basket .maf-checkout-con .basket-row-disco .redeem, .section.basket .maf-checkout-con .basket-row-disco .redeem {
  font-weight: bold;
  min-width: 150px;
}
section.basket .maf-checkout-con .basket-row-disco.form, .section.basket .maf-checkout-con .basket-row-disco.form {
  margin-bottom: 20px;
}
section.basket .basket-buttons, .section.basket .basket-buttons {
  text-align: center;
  width: 100%;
}
section.basket .basket-buttons input, .section.basket .basket-buttons input {
  margin: 5px;
}
section.basket .billing-overview, .section.basket .billing-overview {
  align-self: flex-start;
  background-color: rgb(235, 235, 235);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding: 10px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  section.basket .billing-overview, .section.basket .billing-overview {
    flex-direction: row;
    padding: 20px;
  }
}
section.basket .billing-overview p, .section.basket .billing-overview p {
  font-size: 1.8rem;
  margin: 0;
}
section.basket .billing-overview p.head, .section.basket .billing-overview p.head {
  font-weight: 600;
  padding-top: 20px;
}
section.basket .billing-overview p.head:first-child, .section.basket .billing-overview p.head:first-child {
  padding-top: 0;
}
section.basket .billing-overview > div, .section.basket .billing-overview > div {
  display: inline-block;
  flex: 1 1 50%;
  max-width: 380px;
  padding: 5px;
}
section.basket .billing-overview > div p span, .section.basket .billing-overview > div p span {
  display: inline-block;
  font-weight: 700;
  max-width: 140px;
  width: 100%;
}
section.basket .row .column, .section.basket .row .column {
  padding-top: 45px;
  text-align: left;
}
section.basket .row .column .maf-content.maf-form form, .section.basket .row .column .maf-content.maf-form form {
  justify-content: flex-start;
}
section.contentline-bottom .row::after, .section.contentline-bottom .row::after {
  background-color: rgb(222, 37, 149);
  bottom: 0;
  content: "";
  display: inline-block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 20px);
}
@media only screen and (min-width: 576px) {
  section.contentline-bottom .row::after, .section.contentline-bottom .row::after {
    width: calc(100% - 40px);
  }
}
@media only screen and (min-width: 960px) {
  section.contentline-bottom .row::after, .section.contentline-bottom .row::after {
    width: calc(100% - 80px);
  }
}
section.contentline-top .row::before, .section.contentline-top .row::before {
  background-color: rgb(222, 37, 149);
  content: "";
  display: inline-block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: calc(100% - 20px);
}
@media only screen and (min-width: 576px) {
  section.contentline-top .row::before, .section.contentline-top .row::before {
    width: calc(100% - 40px);
  }
}
@media only screen and (min-width: 960px) {
  section.contentline-top .row::before, .section.contentline-top .row::before {
    width: calc(100% - 80px);
  }
}
section.mobile-hide, .section.mobile-hide {
  display: none;
}
@media only screen and (min-width: 576px) {
  section.mobile-hide, .section.mobile-hide {
    display: flex;
  }
}

aside.upsell {
  align-items: stretch;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
aside.upsell .upsell-title {
  font-size: 2.4rem;
  margin: 3rem 0 0.8rem 0;
  padding: 0 20px;
}
aside.upsell .cardbox {
  justify-content: flex-start;
  margin: 0;
  padding: 10px;
  width: 100%;
}
aside.upsell .cardbox article.card {
  margin-bottom: 20px;
  padding: 0 10px;
  width: 50%;
}
aside.upsell .cardbox article.card .portal-item .portal-content .tn {
  height: auto;
  left: auto;
  position: relative;
  top: auto;
}
aside.upsell .cardbox article.card .portal-item .portal-content .tn::after {
  padding-bottom: 50%;
}
aside.upsell .cardbox article.card .portal-item .portal-content .info {
  min-height: 0;
  min-width: 0;
  padding: 5% !important;
  width: 100%;
}
aside.upsell .cardbox article.card .portal-item .portal-content .info::before {
  display: none;
}
aside.upsell .cardbox article.card .portal-item .portal-content .attr {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
aside.upsell .cardbox article.card .portal-item .portal-content .attr > span {
  font-size: inherit;
}
aside.upsell .cardbox article.card .portal-item .portal-content .attr > span.year {
  padding-bottom: 0.8rem;
}
aside.upsell .cardbox article.card .portal-item .portal-content .attr > span.date {
  font-size: 1.4rem;
  padding: 0.4rem 0.8rem;
}
aside.upsell .cardbox article.card .portal-item .portal-content .card-button {
  background-color: transparent;
  border: 0.1rem solid white;
  font-size: 1.6rem;
  padding: 0.8rem 1.6rem;
  text-transform: none;
}
aside.upsell.bskt {
  padding: 0 10px;
  max-width: 1188px;
}
@media only screen and (min-width: 576px) {
  aside.upsell.bskt {
    padding: 0 10px;
  }
}
aside.upsell.bskt .upsell-title {
  padding: 0 10px;
}
aside.upsell.bskt .cardbox {
  margin: 0 -10px;
  width: calc(100% + 20px);
}
aside.upsell.bskt .cardbox article.card {
  margin-bottom: 40px;
}

.is-footer {
  background-color: rgb(222, 37, 149);
  font-size: 1.8rem;
  position: relative;
}
.is-footer a:not(.button) {
  color: white;
}
.is-footer a:not(.button):hover {
  color: rgb(198, 20, 127);
}
.is-footer .button {
  border-color: white;
  color: white;
  font-size: 1.6rem;
  padding: 8px 18px;
}
.is-footer .button:hover {
  background-color: white;
  color: rgb(222, 37, 149);
}
.is-footer h2, .is-footer .h2-style {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 1.2em;
}
.is-footer p, .is-footer address, .is-footer .name, .is-footer .label {
  margin-bottom: 25px;
}
.is-footer p i, .is-footer address i, .is-footer .name i, .is-footer .label i {
  display: none;
  height: 20px;
  font-size: 1.6rem;
  margin-right: 10px;
  position: relative;
  vertical-align: -10%;
  width: 20px;
}
.is-footer p i::before, .is-footer address i::before, .is-footer .name i::before, .is-footer .label i::before {
  display: inline-block;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}
.is-footer p {
  font-weight: 400;
}
.is-footer p.small, .is-footer p.compno {
  font-size: 1.4rem;
}
.is-footer p.contact-link {
  margin-top: 10px;
}
.is-footer address {
  max-width: 340px;
}
.is-footer .company-name {
  font-weight: 600;
  max-width: 280px;
}
.is-footer .badges {
  align-items: center;
  display: flex;
  width: 100%;
}
.is-footer .badges a {
  display: inline-block;
  flex: 0 0 auto;
  margin: 0 auto;
  padding: 0 5px;
  text-align: center;
}
.is-footer .badges a img {
  height: 75px;
}
.is-footer .badges a:first-child {
  padding-left: 0;
}
.is-footer .maf-logo {
  margin-bottom: auto;
  width: 100%;
}
.is-footer .maf-logo svg #name {
  fill: white !important;
}
.is-footer .maf-logo svg #strap {
  display: none;
}
.is-footer .phone-block {
  margin-bottom: 5px;
}
.is-footer .phone-block strong, .is-footer .phone-block span {
  padding-right: 3px;
}
.is-footer .phone-block a {
  font-weight: 600;
}
.is-footer .site-nav {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.is-footer .site-nav .bottom-nav {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  margin: 0;
  width: 100%;
}
.is-footer .site-nav .bottom-nav a {
  display: inline-block;
  font-weight: 400;
  padding: 6px 0;
  text-decoration: none;
  width: auto;
}
.is-footer .site-nav .bottom-nav a:hover {
  text-decoration: underline;
}
.is-footer .site-nav .bottom-nav a.lvl-2 {
  padding-left: 20px;
}
.is-footer .social-icons a {
  color: white;
}
.is-footer .social-icons a:hover {
  color: white;
}
.is-footer .row {
  padding: 0 0 60px 0;
  flex-direction: column;
}
@media only screen and (min-width: 960px) {
  .is-footer .row {
    padding: 0 10px 80px 10px;
  }
}
@media only screen and (min-width: 960px) {
  .is-footer .row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.is-footer .row .column {
  padding: 60px 10px;
  padding-bottom: 0;
  justify-content: flex-start;
  text-align: left;
}
@media only screen and (min-width: 960px) {
  .is-footer .row .column {
    padding: 80px 10px;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 960px) {
  .is-footer .row .column.half {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  .is-footer .row .column.third {
    width: 33.333%;
  }
}
.is-footer .row .column .maf-content {
  align-items: flex-start;
}
.is-footer .row .column .maf-content.flow-margin {
  margin-bottom: 20px;
}
.is-footer .row .column .maf-content.maf-form {
  margin: 70px 0 150px 0;
}
.is-footer .row .column .maf-content.maf-form .button {
  background-color: transparent;
  border-color: white;
}
.is-footer .row .column .maf-content.maf-form .button:hover {
  background-color: white;
  color: rgb(222, 37, 149);
}
.is-footer section {
  color: white;
}
.is-footer section.footer-section {
  overflow: hidden;
  position: relative;
}
.is-footer section.footer-section.row2 {
  background-color: rgb(39, 69, 122);
}
.is-footer section.footer-section.row2 p {
  margin-bottom: 10px;
}
.is-footer section.legals {
  background-color: rgb(39, 69, 122);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.is-footer section.legals .row {
  padding-top: 0;
  padding-bottom: 0;
}
.is-footer section.legals .row p {
  color: white;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.is-footer section.legals .row p a {
  color: white;
}
.is-footer section.legals .row p a:hover {
  text-decoration: underline;
}
.is-footer section.legals .row .column {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: left;
}
.is-footer section.legals .row .column .maf-content {
  max-width: none;
}

.ticketscan {
  width: 100%;
}
.ticketscan form {
  text-align: center;
  display: block;
}
.ticketscan input {
  margin: 15px 10px 15px 0;
  padding: 11px 5px;
  width: 300px;
  font-size: 1.1rem;
  font-weight: 700;
}
.ticketscan select {
  margin: 0;
  background-color: transparent;
  border: 1px solid #333333;
  border-radius: 0;
  color: #333333;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  justify-content: center;
  opacity: 1;
  outline: transparent;
  line-height: 1;
  margin: 15px 10px 15px 0;
  padding: 11px 33px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 350ms ease-out;
  width: auto;
  z-index: 1;
}
.ticketscan .buttonsmall {
  margin: 0;
  background-color: transparent;
  border: 1px solid #333333;
  border-radius: 0;
  color: #333333;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  justify-content: center;
  opacity: 1;
  outline: transparent;
  line-height: 1;
  margin: 15px 10px 15px 0;
  padding: 13px 33px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 350ms ease-out;
  width: auto;
  z-index: 1;
}
.ticketscan table {
  border: 1px solid #1e2750;
}
.ticketscan table tr {
  border-bottom: 1px solid #1e2750;
}
.ticketscan table tr th {
  font-size: 11px;
  text-align: left;
  vertical-align: top;
}
.ticketscan table tr td {
  font-size: 11px;
  padding: 3px;
  text-align: left;
}
.ticketscan table tr td select {
  margin: 0;
  background-color: transparent;
  border: 1px solid #333333;
  border-radius: 0;
  color: #333333;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  justify-content: center;
  opacity: 1;
  outline: transparent;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 350ms ease-out;
  width: auto;
  z-index: 1;
}
.ticketscan table tr td input {
  font-size: 11px;
  background-color: white;
  border: 1px solid #1e2750;
  border-radius: 0px;
  color: #666666;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  margin: 0;
  padding: 2px;
  width: 100%;
}/*# sourceMappingURL=tvw-main.css.map */