@charset "UTF-8";
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes disappear {
  0% {
    opacity: 1;
    overflow: hidden;
    transform: scaleY(1);
  }
  99% {
    min-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: scaleY(0);
  }
  100% {
    display: none !important;
    height: 0;
    margin: 0;
    opacity: 0;
    padding: 0;
    width: 0;
  }
}
@keyframes point-r {
  0% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(1rem, -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);
  }
}
:root {
  --grid-gutter: 1.5rem;
  --grid-spacing: 0.75rem;
}
@media only screen and (min-width: 576px) {
  :root {
    --grid-gutter: 3rem;
    --grid-spacing: 1.5rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

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

body {
  background-color: white;
  font-family: "Satoshi", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
}
@media 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 300ms ease-out;
}

header, section, footer {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: rgb(52, 53, 53);
  font-family: "Satoshi", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}
@media only screen and (min-width: 576px) {
  header, section, footer {
    font-size: 2.4rem;
  }
}

aside, section, footer {
  align-items: center;
  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, footer.reverse .row, footer.col-rev .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  aside .row, section .row, footer .row {
    flex-direction: row;
  }
  aside.reverse .row, section.reverse .row, footer.reverse .row {
    flex-direction: row-reverse;
  }
  aside.col-rev .row, section.col-rev .row, footer.col-rev .row {
    flex-direction: row;
  }
}

section {
  opacity: 1;
  transition: opacity 300ms ease-out;
}
section:nth-child(2n) {
  transition-delay: 20ms;
}
section:nth-child(3n) {
  transition-delay: 30ms;
}
section:nth-child(4n) {
  transition-delay: 40ms;
}
section:nth-child(5n) {
  transition-delay: 50ms;
}
section:nth-child(6n) {
  transition-delay: 60ms;
}
section:nth-child(7n) {
  transition-delay: 70ms;
}
section:nth-child(8n) {
  transition-delay: 80ms;
}
section.maf-h-c .header {
  padding: 0 !important;
}
section.maf-h-c .header .maf-content {
  border: 0;
  padding: 0 !important;
}
section.maf-f-c .footer {
  padding: 0 !important;
}
section.maf-f-c .footer .maf-content {
  display: none;
  padding: 0 !important;
}

.header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 150rem;
  padding: 0;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  .header {
    padding: 0 1.5rem;
  }
}
.header .maf-content {
  align-items: center;
  padding: 4rem 1.5rem 0 1.5rem;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  .header .maf-content {
    padding: 6rem 1.5rem 0 1.5rem;
  }
}
.header .maf-content > *:last-child {
  margin-bottom: 0;
}
.header .maf-content + .maf-content {
  padding-top: 1em;
}

.footer {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 150rem;
  padding: 0 0.75rem 3rem 0.75rem;
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .footer {
    padding: 0 1.5rem 6rem 1.5rem;
  }
}
.footer .maf-content {
  padding: 0 0.75rem;
}
@media only screen and (min-width: 576px) {
  .footer .maf-content {
    padding: 0 1.5rem;
  }
}

.is-nav-dock {
  height: 10rem;
  transition: height 300ms ease-out;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .is-nav-dock {
    height: 20rem;
  }
}
.is-nav-dock.hero-under-nav {
  left: 0;
  position: absolute;
  top: 0;
}

.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;
  max-width: 150rem;
  position: relative;
  width: 100%;
  padding: 0;
}
@media only screen and (min-width: 576px) {
  .row {
    padding: 0 1.5rem;
  }
}
@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;
  }
}
@media only screen and (min-width: 576px) {
  .row .footer {
    padding-left: 0;
    padding-right: 0;
  }
}

.column {
  align-content: center;
  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: 4rem 1.5rem;
}
@media only screen and (min-width: 960px) {
  .column {
    padding: 6rem 1.5rem;
  }
}
@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: 4rem 1.5rem;
  padding-top: 0;
}
@media only screen and (min-width: 960px) {
  .maf-header {
    padding: 6rem 1.5rem;
    padding-top: 0;
  }
}
.maf-header {
  width: 100%;
}
.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;
  overflow: visible;
  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: white;
}

img {
  height: auto;
  line-height: 0;
  max-width: 100%;
  vertical-align: middle;
}
img:not([src]):not([srcset]) {
  visibility: hidden;
}

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 {
  display: table;
  margin: 0 auto;
  position: relative;
  width: auto;
}
figure img {
  width: auto;
}
figure figcaption {
  background-color: rgb(170, 170, 170);
  caption-side: bottom;
  color: rgb(52, 53, 53);
  display: table-caption;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  min-width: 100%;
  padding: 0.8rem 1.2rem;
  text-align: left;
  position: relative;
}

a, a:visited {
  color: #a01759;
  text-decoration: none;
  transition: all 300ms ease-out;
}

a:hover, a:focus, a:active {
  color: #a01759;
  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.1em 0 1em 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.bold, .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.normal, .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;
}
address > span.pcode {
  white-space: nowrap;
}

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: "Satoshi", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25em;
  position: relative;
  width: 100%;
}

h1, .h1-style {
  font-size: 4.8rem;
}
@media only screen and (min-width: 576px) {
  h1, .h1-style {
    font-size: 6.2rem;
  }
}
@media only screen and (min-width: 768px) {
  h1, .h1-style {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1024px) {
  h1, .h1-style {
    font-size: 6.2rem;
  }
}
@media only screen and (min-width: 1152px) {
  h1, .h1-style {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1280px) {
  h1, .h1-style {
    font-size: 10rem;
  }
}
h1, .h1-style {
  text-transform: none;
}

h2, .h2-style {
  font-size: 4.8rem;
}
@media only screen and (min-width: 576px) {
  h2, .h2-style {
    font-size: 6.2rem;
  }
}
@media only screen and (min-width: 768px) {
  h2, .h2-style {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1024px) {
  h2, .h2-style {
    font-size: 6.2rem;
  }
}
@media only screen and (min-width: 1152px) {
  h2, .h2-style {
    font-size: 8rem;
  }
}

h3, .h3-style {
  font-size: 3.6rem;
}
@media only screen and (min-width: 576px) {
  h3, .h3-style {
    font-size: 4.6rem;
  }
}
@media only screen and (min-width: 768px) {
  h3, .h3-style {
    font-size: 6.2rem;
  }
}

h4, .h4-style {
  font-size: 3.2rem;
}
@media only screen and (min-width: 576px) {
  h4, .h4-style {
    font-size: 4rem;
  }
}

h5, .h5-style {
  font-size: 2.8rem;
}
@media only screen and (min-width: 576px) {
  h5, .h5-style {
    font-size: 3.6rem;
  }
}

h6, .h6-style {
  font-size: 2.4rem;
}
@media only screen and (min-width: 576px) {
  h6, .h6-style {
    font-size: 2.8rem;
  }
}
h6, .h6-style {
  color: rgb(52, 53, 53);
}

p, .p-style, li, blockquote, address, .body-text {
  font-feature-settings: "lnum" 1;
  line-height: 1.4;
}

.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: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-top: 0.2rem solid currentColor;
  color: inherit;
  display: inline-block;
  height: 0;
  margin: 0.5em auto 1.5em auto;
  width: 100%;
}
hr.heavy {
  border-top: 1.5rem solid currentColor;
}
hr.divider {
  background-color: transparent;
  background-image: url("/images/Layout/divider.png");
  background-size: contain;
  height: 2.2rem;
  max-width: 140rem;
}

.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.2em 0 2em 0;
  max-width: 100rem;
  padding: 0;
  width: 100%;
}
.maf-content ul li, .maf-content ol li {
  margin: 0 0 1em 0;
}
.maf-content ul li > p, .maf-content ol li > p {
  margin: 0;
}
.maf-content ul.big-list, .maf-content ol.big-list {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  .maf-content ul.big-list, .maf-content ol.big-list {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .maf-content ul.big-list, .maf-content ol.big-list {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 1024px) {
  .maf-content ul.big-list, .maf-content ol.big-list {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 1152px) {
  .maf-content ul.big-list, .maf-content ol.big-list {
    font-size: 4rem;
  }
}
.maf-content ul.big-list li, .maf-content ol.big-list li {
  padding-left: 2.5rem;
}
body.maf-pl-7 .maf-content ul.big-list, body.maf-pl-7 .maf-content ol.big-list {
  color: #a01759;
}
.maf-content ul {
  list-style-type: none;
}
.maf-content ul li {
  margin-bottom: 0.3em;
  padding-left: 1.2em;
  position: relative;
}
.maf-content ul li::before {
  background-color: currentColor;
  border-radius: 50%;
  content: "";
  color: inherit;
  display: inline-block;
  height: 0.3em;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 0.3em;
}
.maf-content ul li ul {
  margin-top: 1.2rem;
}
.maf-content ol {
  counter-reset: maf-ol-counter;
  list-style: none;
  position: relative;
}
.maf-content ol li {
  counter-increment: maf-ol-counter;
  margin-bottom: 0.5rem;
  padding-left: 4rem;
  position: relative;
}
.maf-content ol li::before {
  content: counter(maf-ol-counter) ".";
  color: inherit;
  display: inline-block;
  font-family: "Satoshi", sans-serif;
  font-size: 0.9em;
  font-weight: 700;
  height: 3rem;
  left: 0.5em;
  line-height: 1;
  opacity: 1;
  position: absolute;
  top: 0.2em;
  transform: translateY(0.1em);
  vertical-align: top;
  width: 3rem;
}

.is-faq dl {
  border-bottom: 0.1rem solid currentColor;
  color: inherit;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .is-faq dl {
    font-size: 2.4rem;
  }
}
.is-faq dl dt {
  background-color: transparent;
  border-top: 1px solid currentColor;
  color: inherit;
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 2rem 5rem 2rem 1.5rem;
  position: relative;
  transition: background-color 300ms ease-out;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .is-faq dl dt {
    font-size: 3.6rem;
    padding: 2rem 7rem 2rem 3rem;
  }
}
.is-faq dl dt span {
  display: inline-block;
}
.is-faq dl dt::before {
  border-right: 0.2rem solid currentColor;
  border-bottom: 0.2rem solid currentColor;
  color: inherit;
  content: "";
  display: inline-block;
  height: 1.2rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-75%) rotate(45deg);
  transform-origin: center;
  transition: all 300ms ease-out;
  width: 1.2rem;
}
@media only screen and (min-width: 576px) {
  .is-faq dl dt::before {
    border-right: 0.5rem solid currentColor;
    border-bottom: 0.5rem solid currentColor;
    right: 3rem;
    height: 2rem;
    width: 2rem;
  }
}
.is-faq dl dt:hover::before, .is-faq dl dt:focus::before {
  top: 55%;
}
.is-faq dl dt:first-child {
  border-top: 0;
}
.is-faq dl dt.open::before {
  transform: translateY(-25%) rotate(45deg) scaleX(-1) scaleY(-1);
}
.is-faq dl dt.open:hover::before, .is-faq dl dt.open:focus::before {
  top: 45%;
}
.is-faq dl dd {
  background-color: rgb(238, 238, 238);
  display: none;
  margin-left: 0;
  padding: 2rem 5rem 2rem 1.5rem;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .is-faq dl dd {
    padding: 2rem 7rem 2rem 3rem;
  }
}
.is-faq dl dd > * {
  line-height: 1.4;
  max-width: 85rem;
}
.is-faq dl dd > *:last-child {
  margin-bottom: 0;
}

blockquote {
  color: inherit;
  display: inline-block;
  font-family: "Satoshi", sans-serif;
  font-size: 3rem;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 1em 0;
  padding: 7rem 0;
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  blockquote {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  blockquote {
    font-size: 3.4rem;
  }
}
@media only screen and (min-width: 1024px) {
  blockquote {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1152px) {
  blockquote {
    font-size: 3.4rem;
  }
}
blockquote {
  quotes: "“" "”";
}
blockquote::before {
  content: open-quote;
  display: inline-block;
  font-size: 18rem;
  font-weight: 700;
  left: -0.08em;
  line-height: 0.7;
  position: absolute;
  top: 0;
}
blockquote::after {
  bottom: -0.4em;
  color: inherit;
  content: close-quote;
  font-size: 18rem;
  font-weight: 700;
  line-height: 0.7;
  position: absolute;
  right: 0.08em;
}
blockquote p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2 !important;
  margin: 0 0 0.5em 0;
  max-width: none !important;
}
blockquote p.small-text {
  font-size: 1.8rem !important;
  font-weight: 400 !important;
}
blockquote p:last-child:not(:first-child) {
  font-size: 1.8rem;
  font-weight: 700;
}
@media only screen and (min-width: 576px) {
  blockquote p:last-child:not(:first-child) {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  blockquote p:last-child:not(:first-child) {
    font-size: 3rem;
  }
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote.heavy {
  font-family: "Satoshi", sans-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: #9eba9b;
  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 th {
  padding: 0.5rem;
  vertical-align: top;
}
table tr th.left {
  text-align: left;
}
table tr th.center {
  text-align: center;
}
table tr th.small {
  font-size: 0.7em;
}
table tr td {
  padding: 0.5rem;
  vertical-align: top;
}
table tr td.left {
  text-align: left;
}
table tr td.center {
  text-align: center;
}
table tr td.small {
  font-size: 0.7em;
}

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

input, textarea {
  background-color: rgb(238, 238, 238);
  border: 0.1rem solid rgb(238, 238, 238);
  border-radius: 0;
  color: #78073d;
  display: inline-block;
  font-family: "Satoshi", sans-serif;
  font-feature-settings: "lnum" 1;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  outline: none;
  outline-color: transparent;
  padding: 1.5rem 2rem;
  transition: all 300ms ease-out;
  width: 100%;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  font-family: "Satoshi", sans-serif;
  opacity: 0.7;
}
input::placeholder, textarea::placeholder {
  font-family: "Satoshi", sans-serif;
  opacity: 0.7;
}
input:focus, textarea:focus {
  border-color: #78073d;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0.4;
}
input:focus::placeholder, textarea:focus::placeholder {
  opacity: 0.4;
}

input[type=text], input[type=email], input[type=tel] {
  min-height: 5.6rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

textarea {
  resize: none;
}
textarea.deep {
  min-height: 36rem;
}

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

select {
  margin-bottom: 1.2em;
  outline-color: #f55da6;
}

input[type=submit],
input[type=reset],
button.maf-button {
  align-items: center;
  align-self: flex-start;
  background-color: #78073d;
  background-size: 100% 100%;
  border: 0.1rem solid #78073d;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-family: "Satoshi", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  justify-content: center;
  min-width: 20rem;
  opacity: 1;
  outline: transparent;
  padding: 1.2rem 2rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 300ms 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: #78073d;
  opacity: 1;
  text-decoration: none;
}
input[type=submit].less,
input[type=reset].less,
button.maf-button.less {
  background-color: transparent;
  color: #78073d;
}
input[type=submit].less:hover, input[type=submit].less:focus,
input[type=reset].less:hover,
input[type=reset].less:focus,
button.maf-button.less:hover,
button.maf-button.less:focus {
  background-color: #78073d;
  color: white;
}
input[type=submit].least,
input[type=reset].least,
button.maf-button.least {
  background-color: #f55da6;
  border-color: #f55da6;
  color: white;
}
input[type=submit].least:hover, input[type=submit].least:focus,
input[type=reset].least:hover,
input[type=reset].least:focus,
button.maf-button.least:hover,
button.maf-button.least:focus {
  background-color: #78073d;
  border-color: #78073d;
  color: white;
}

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

.control-group {
  margin-bottom: 3rem;
}

.checkbox {
  align-items: center;
  display: flex;
}
.checkbox .pretty-check {
  display: inline-block;
  flex: 0 0 auto;
  height: 4.7rem;
  position: relative;
  margin: 0.2rem;
  width: 4.7rem;
}
.checkbox .pretty-check label {
  background-color: rgb(238, 238, 238);
  border-radius: 0;
  border: 0.2rem solid rgb(238, 238, 238);
  cursor: pointer;
  height: 100%;
  left: 0;
  margin: 0;
  min-height: 0;
  outline: none;
  position: absolute;
  width: 100%;
  top: 0;
}
.checkbox .pretty-check label:after {
  background: transparent;
  border: 0.3rem solid rgb(52, 53, 53);
  border-top: none;
  border-right: none;
  content: "";
  height: 20%;
  left: 25%;
  opacity: 0;
  position: absolute;
  top: 30%;
  transition: all 300ms ease-out;
  transform: rotate(-50deg);
  width: 40%;
}
.checkbox .pretty-check label:focus {
  background: #c5f1b2;
  border-color: #c5f1b2;
}
.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: #c5f1b2;
  border-color: #c5f1b2;
}
.checkbox .pretty-check input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.checkbox .pretty-check input[type=checkbox]:checked + label:focus {
  background: #c5f1b2;
  border-color: #c5f1b2;
}
.checkbox .pretty-check input[type=checkbox]:checked + label:focus::after {
  opacity: 0.9;
}
.checkbox span {
  cursor: pointer;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 1.5rem;
  text-align: left;
}
.checkbox:hover .pretty-check label {
  background: #c5f1b2;
  border-color: #c5f1b2;
}
.checkbox:hover .pretty-check label::after {
  opacity: 0.9;
}

.radio {
  align-items: center;
  cursor: pointer;
  display: flex;
  width: 100%;
}
.radio .pretty-radio {
  display: inline-block;
  flex: 0 0 auto;
  height: 3rem;
  position: relative;
  margin: 0;
}
.radio .pretty-radio label {
  background: #78073d;
  border-radius: 50%;
  border: 0.8rem solid #78073d;
  cursor: pointer;
  height: 3rem;
  margin: 0;
  outline: none;
  transition: background-color 300ms ease-out;
  width: 3rem;
}
.radio .pretty-radio label:after {
  background: transparent;
  border: 0.2rem solid #f55da6;
  border-top: none;
  border-right: none;
  content: "";
  display: none;
  height: 0.4rem;
  left: 0.4rem;
  opacity: 0;
  position: absolute;
  top: 0.5rem;
  transition: all 300ms ease-out;
  transform: rotate(-50deg);
  width: 0.8rem;
}
.radio .pretty-radio label:hover, .radio .pretty-radio label:focus {
  border-color: #a01759;
}
.radio .pretty-radio label:hover::after {
  opacity: 0.7;
}
.radio .pretty-radio input[type=radio] {
  left: -100vw;
  position: absolute;
  visibility: hidden;
  z-index: 0;
}
.radio .pretty-radio input[type=radio]:checked + label {
  background: #f55da6;
}
.radio .pretty-radio input[type=radio]:checked + label:after {
  opacity: 1;
}
.radio > span {
  display: flex;
  flex: 1 1 auto;
  font-weight: 700;
  text-align: left;
}
.radio:hover .pretty-radio label {
  background: #f55da6;
}
.radio.left > span {
  padding-left: 1.6rem;
}

.select {
  background-color: rgb(238, 238, 238);
  cursor: pointer;
  height: 5.6rem;
  margin: 0;
  overflow: hidden;
  padding-right: 1rem;
  position: relative;
  transition: border-color 300ms ease-out;
  width: 100%;
  z-index: 0;
}
.select.short {
  max-width: 15rem;
}
.select.medium {
  max-width: 35rem;
}
.select::after {
  background-color: transparent;
  border-top: 1rem solid rgb(52, 53, 53);
  border-right: 0.7rem solid transparent;
  border-bottom: 0;
  border-left: 0.7rem solid transparent;
  content: "";
  height: 0;
  pointer-events: none;
  position: absolute;
  right: 2rem;
  transform-origin: center;
  transition: all 300ms ease-out;
  top: 46%;
  width: 0;
  z-index: 1;
}
.select select {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #78073d;
  cursor: pointer;
  font-family: "Satoshi", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  height: 100%;
  outline: transparent;
  padding: 1rem 2rem;
  transition: all 300ms ease-out;
  width: calc(100% + 2.5rem);
  z-index: 1;
}
.select select option {
  font-family: "Satoshi", sans-serif;
}
.select:hover, .select:focus-within {
  border-color: #78073d;
}
.select:hover::after, .select:focus-within::after {
  top: 52%;
}

.file-button {
  cursor: pointer;
  display: inline-block;
  height: 5rem;
  margin: 0 !important;
  outline: none;
  position: relative;
  width: 26rem;
}
.file-button input {
  margin: 0;
  min-width: 26rem;
  opacity: 0;
}
.file-button span {
  align-items: center;
  background-color: #78073d;
  border-color: #78073d;
  border-radius: 0.5rem;
  color: white;
  display: flex;
  font-size: 2rem;
  font-weight: 500;
  height: 100%;
  justify-content: center;
  left: 0;
  line-height: 1.2;
  padding: 1.5rem;
  position: absolute;
  text-align: center;
  top: 0;
  transition: all 300ms ease-out;
  width: 100%;
}
.file-button span:hover {
  background-color: #f55da6;
  border-color: #f55da6;
}
.file-button:focus-within span, .file-button:focus span {
  background-color: #f55da6;
  border-color: #f55da6;
}

.maf-upldr .img-op span {
  font-size: 1.4rem;
}

.spinner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 10.2rem;
}
.spinner label {
  color: #78073d;
  display: inline-block;
  flex: 0 0 auto;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  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: 0.1rem solid #78073d;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  color: rgb(52, 53, 53);
  display: inline-block;
  flex: 0 0 auto;
  font-family: "Satoshi", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  height: 5.4rem;
  line-height: 1.65;
  margin: 0;
  padding: 2rem;
  text-align: center;
  width: 7.4rem;
}
.spinner input:focus {
  outline: 0;
}
.spinner .quantity-nav {
  display: inline-block;
  flex: 0 0 auto;
  position: relative;
  height: 5.4rem;
  width: 2.7rem;
}
.spinner .quantity-button {
  align-items: center;
  border: 0.1rem solid #78073d;
  color: rgb(52, 53, 53);
  cursor: pointer;
  display: flex;
  font-size: 2rem;
  font-family: "Satoshi", sans-serif;
  height: 2.7rem;
  justify-content: center;
  outline: none;
  position: relative;
  text-align: center;
  transition: all 300ms ease-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 2.7rem;
}
.spinner .quantity-button.quantity-up {
  height: 2.6rem;
  border-bottom: 0;
}
.spinner .quantity-button.quantity-up:before, .spinner .quantity-button.quantity-up:after {
  background-color: #78073d;
  content: "";
  display: inline-block;
  height: 0.2rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
.spinner .quantity-button.quantity-up:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.spinner .quantity-button.quantity-down {
  height: 2.8rem;
}
.spinner .quantity-button.quantity-down:before {
  background-color: #78073d;
  content: "";
  display: inline-block;
  height: 0.2rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
.spinner .quantity-button:hover, .spinner .quantity-button:focus {
  background-color: #78073d;
}
.spinner .quantity-button:hover::before, .spinner .quantity-button:hover::after, .spinner .quantity-button:focus::before, .spinner .quantity-button:focus::after {
  background-color: white;
}

.spinner-2 {
  align-items: center;
  display: inline-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 {
  align-items: center;
  background-color: white;
  border: 0.1rem solid rgb(52, 53, 53);
  border-radius: 0.8rem;
  color: rgb(52, 53, 53);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Satoshi", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: normal;
  height: 3rem;
  justify-content: center;
  line-height: 1;
  margin: 0 1rem;
  padding: 0.4rem;
  text-align: center;
  width: 3rem;
}
.spinner-2 input:focus {
  outline: 0;
}
.spinner-2 .quantity-button {
  cursor: pointer;
  display: inline-block;
  font-family: "Satoshi", sans-serif;
  height: 2rem;
  justify-content: center;
  outline: none;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 2rem;
}
.spinner-2 .quantity-button > div {
  transition: all 300ms ease-out;
}
.spinner-2 .quantity-button > div:hover {
  background-color: #78073d;
}
.spinner-2.plus-minus .quantity-button {
  background-color: #a01759;
  border: 0.2rem solid #a01759;
  border-radius: 50%;
  transition: background-color 300ms ease-out;
}
.spinner-2.plus-minus .quantity-button.quantity-up:before, .spinner-2.plus-minus .quantity-button.quantity-up:after {
  background-color: white;
  content: "";
  display: inline-block;
  height: 0.2rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 300ms ease-out;
  width: 55%;
}
.spinner-2.plus-minus .quantity-button.quantity-up:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.spinner-2.plus-minus .quantity-button.quantity-down:before {
  background-color: white;
  content: "";
  display: inline-block;
  height: 0.2rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 300ms ease-out;
  width: 55%;
}
.spinner-2.plus-minus .quantity-button:hover, .spinner-2.plus-minus .quantity-button:focus {
  background-color: transparent;
}
.spinner-2.plus-minus .quantity-button:hover:before, .spinner-2.plus-minus .quantity-button:hover:after, .spinner-2.plus-minus .quantity-button:focus:before, .spinner-2.plus-minus .quantity-button:focus:after {
  background-color: #a01759;
}
.spinner-2.carets input {
  height: 2.7rem;
  margin: 0 0.3rem;
  width: 4rem;
}
.spinner-2.carets .quantity-button.quantity-up::before {
  border-top: 0.3rem solid rgb(52, 53, 53);
  border-right: 0.3rem solid rgb(52, 53, 53);
  content: "";
  display: inline-block;
  height: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-60%, -50%) rotate(45deg);
  transform-origin: center;
  transition: border-color 300ms ease-out;
  width: 50%;
}
.spinner-2.carets .quantity-button.quantity-down::before {
  border-top: 0.3rem solid rgb(52, 53, 53);
  border-left: 0.3rem solid rgb(52, 53, 53);
  content: "";
  display: inline-block;
  height: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-40%, -50%) rotate(-45deg);
  transform-origin: center;
  transition: border-color 300ms ease-out;
  width: 50%;
}
.spinner-2.carets .quantity-button:hover::before, .spinner-2.carets .quantity-button:focus::before {
  border-color: #78073d;
}

.g-recap-con {
  min-height: 8rem;
  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 -1.5rem;
  width: calc(100% + 3rem);
}
.maf-form form.has-cols, .maf-form .form.has-cols {
  justify-content: center;
}
.maf-form form .column, .maf-form .form .column {
  padding: 0 0 0 0;
}
.maf-form form .column.half, .maf-form .form .column.half {
  align-items: flex-start;
  text-align: left;
}
.maf-form form > p:not(.maf-msg), .maf-form .form > p:not(.maf-msg) {
  padding: 0 1.5rem;
}
.maf-form form > p:not(.maf-msg).form-heading, .maf-form .form > p:not(.maf-msg).form-heading {
  font-size: 3.2rem;
}
@media only screen and (min-width: 576px) {
  .maf-form form > p:not(.maf-msg).form-heading, .maf-form .form > p:not(.maf-msg).form-heading {
    font-size: 4rem;
  }
}
.maf-form form > p:not(.maf-msg).form-heading, .maf-form .form > p:not(.maf-msg).form-heading {
  border-top: 0.1rem solid rgb(52, 53, 53);
  margin-bottom: 2rem;
  padding-top: 3rem;
}
.maf-form form .maf-input, .maf-form .form .maf-input {
  display: inline-block;
  flex: 0 0 auto;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
  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: 0.8rem;
  top: 0.8rem;
}
@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: 1.5rem;
}
.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, .maf-form .form .maf-input.actions {
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 2rem;
}
.maf-form form .maf-input.actions .button, .maf-form form .maf-input.actions input, .maf-form .form .maf-input.actions .button, .maf-form .form .maf-input.actions input {
  margin: 0.8rem;
}
.maf-form form .maf-input.actions.centre, .maf-form form .maf-input.actions.center, .maf-form .form .maf-input.actions.centre, .maf-form .form .maf-input.actions.center {
  justify-content: center;
}
.maf-form form > .maf-msg, .maf-form .form > .maf-msg {
  margin: 0 1.5rem 2rem 1.5rem;
}
.maf-form form label, .maf-form form .label, .maf-form .form label, .maf-form .form .label {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 1rem 0 0.7rem 0;
  padding: 0;
}
.maf-form form label span, .maf-form form .label span, .maf-form .form label span, .maf-form .form .label span {
  font-size: 12px;
  display: block;
}
.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: 30.2rem;
}
.maf-form .a-f-resp {
  opacity: 0;
  position: absolute;
  transition: opacity 600ms ease-out 600ms;
  width: 100%;
}
.maf-form .a-f-resp.show {
  opacity: 1;
  position: static;
}

#searchformH input[type=text] {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

#search-triggers {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
  width: calc(100% - 2rem);
}
#search-triggers .searcher {
  padding: 1rem;
  position: relative;
}
#search-triggers .searcher label {
  background-color: rgb(238, 238, 238);
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0.3rem 1.6rem;
  transition: all 300ms ease-out;
}
#search-triggers .searcher input {
  left: -100vw;
  position: absolute;
  visibility: hidden;
  z-index: 0;
}
#search-triggers .searcher input:checked + label {
  background-color: #78073d;
}

#error-op {
  color: rgb(195, 0, 40);
  font-weight: 700;
}
#error-op p {
  margin-bottom: 0.1em;
}

canvas.bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@keyframes button-anim {
  0% {
    height: 0;
    opacity: 0;
    width: 0;
  }
  20% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  99% {
    height: 60rem;
    opacity: 0;
    width: 60rem;
  }
  100% {
    height: 0;
    opacity: 0;
    width: 0;
  }
}
@keyframes button-arrow {
  0% {
    right: 1rem;
  }
  50% {
    right: 0;
  }
  100% {
    right: 1rem;
  }
}
.button, .button:visited, .button:focus, .button:active {
  align-items: center;
  background: none;
  background-color: #78073d;
  border: 0;
  border-radius: 0;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: inline-flex;
  font-family: "Satoshi", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  justify-content: flex-start;
  letter-spacing: inherit;
  line-height: 1;
  min-height: 7.5rem;
  min-width: 27rem;
  opacity: 1;
  outline: transparent;
  overflow: hidden;
  padding: 0.7em 4.5rem 0.7em 1.1em;
  position: relative;
  text-align: left;
  text-decoration: none;
  text-transform: none;
  transition: all 300ms ease-out;
  width: auto;
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  .button, .button:visited, .button:focus, .button:active {
    min-width: 33rem;
  }
}
.button i:first-child, .button:visited i:first-child, .button:focus i:first-child, .button:active i:first-child {
  margin-right: 0.3em;
}
.button::before, .button:visited::before, .button:focus::before, .button:active::before {
  background-color: #f55da6;
  clip-path: polygon(3.7rem 0, 0 50%, 3.7rem 100%, 100% 100%, calc(100% - 3.7rem) 50%, 100% 0);
  content: "";
  display: inline-block;
  height: 100%;
  left: calc(100% - 3.7rem);
  position: absolute;
  top: 50%;
  transition: all 300ms ease-out;
  transform: translate(0, -50%);
  width: calc(100% + 3.7rem);
  z-index: -1;
}
.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 {
  color: rgb(255, 255, 255);
  opacity: 1;
  text-decoration: none;
}
.button:hover::before, .button:focus::before, .button.active::before, .button:visited:hover::before, .button:visited:focus::before, .button:visited.active::before, .button:focus:hover::before, .button:focus:focus::before, .button:focus.active::before, .button:active:hover::before, .button:active:focus::before, .button:active.active::before {
  left: -3.7rem;
}
.button.cassis, .button:visited.cassis, .button:focus.cassis, .button:active.cassis {
  background-color: #a01759;
}
.button.cassis::before, .button:visited.cassis::before, .button:focus.cassis::before, .button:active.cassis::before {
  background-color: #9eba9b;
}
.button.pink, .button:visited.pink, .button:focus.pink, .button:active.pink {
  background-color: #f55da6;
}
.button.pink::before, .button:visited.pink::before, .button:focus.pink::before, .button:active.pink::before {
  background-color: #9eba9b;
}
.button.forest, .button:visited.forest, .button:focus.forest, .button:active.forest {
  background-color: #274030;
}
.button.forest::before, .button:visited.forest::before, .button:focus.forest::before, .button:active.forest::before {
  background-color: #f55da6;
}
.button.sage, .button:visited.sage, .button:focus.sage, .button:active.sage {
  background-color: #9eba9b;
}
.button.sage::before, .button:visited.sage::before, .button:focus.sage::before, .button:active.sage::before {
  background-color: #f55da6;
}
.button.light, .button:visited.light, .button:focus.light, .button:active.light {
  background-color: white;
  color: rgba(48, 49, 46, 0.7);
}
.button.light:hover, .button.light:focus, .button.light.active, .button:visited.light:hover, .button:visited.light:focus, .button:visited.light.active, .button:focus.light:hover, .button:focus.light:focus, .button:focus.light.active, .button:active.light:hover, .button:active.light:focus, .button:active.light.active {
  background-color: rgba(48, 49, 46, 0.9);
}
.button.gold, .button:visited.gold, .button:focus.gold, .button:active.gold {
  background-color: rgb(176, 158, 64);
}
.button.gold::before, .button:visited.gold::before, .button:focus.gold::before, .button:active.gold::before {
  background-color: white;
}
.button.gold:hover, .button.gold:focus, .button.gold.active, .button:visited.gold:hover, .button:visited.gold:focus, .button:visited.gold.active, .button:focus.gold:hover, .button:focus.gold:focus, .button:focus.gold.active, .button:active.gold:hover, .button:active.gold:focus, .button:active.gold.active {
  color: rgb(30, 18, 72);
}
.button.provide, .button:visited.provide, .button:focus.provide, .button:active.provide {
  background-color: rgb(46, 196, 181);
}
.button.provide::before, .button:visited.provide::before, .button:focus.provide::before, .button:active.provide::before {
  background-color: black;
}
.button.square, .button:visited.square, .button:focus.square, .button:active.square {
  border: 0.1rem solid #78073d;
  border-radius: 0;
  color: #78073d;
}
.button.square::after, .button:visited.square::after, .button:focus.square::after, .button:active.square::after {
  display: none;
}
.button.square:hover, .button:visited.square:hover, .button:focus.square:hover, .button:active.square:hover {
  background-color: #78073d;
  color: white;
}
.button.least, .button:visited.least, .button:focus.least, .button:active.least {
  background-color: transparent;
  border: 0.2rem solid #f55da6;
  color: #f55da6;
}
.button.least::before, .button:visited.least::before, .button:focus.least::before, .button:active.least::before {
  background-color: #f55da6;
}
.button.least:hover, .button.least:focus, .button:visited.least:hover, .button:visited.least:focus, .button:focus.least:hover, .button:focus.least:focus, .button:active.least:hover, .button:active.least:focus {
  background-color: #f55da6;
  border-color: #a01759;
  border-right-color: #f55da6;
  color: white;
}
.button.least:hover::before, .button.least:focus::before, .button:visited.least:hover::before, .button:visited.least:focus::before, .button:focus.least:hover::before, .button:focus.least:focus::before, .button:active.least:hover::before, .button:active.least:focus::before {
  background-color: #a01759;
}

.button + .button {
  margin-left: 1.6rem;
}

div.close, button.close, .button.close {
  background-color: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-family: "Satoshi", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  height: 4rem;
  position: relative;
  text-transform: uppercase;
  width: 4rem;
}
div.close::before, div.close::after, button.close::before, button.close::after, .button.close::before, .button.close::after {
  background-color: currentColor;
  color: inherit;
  content: "";
  display: inline-block;
  height: 0.4rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
  transition: transform 350ms ease;
  width: 75%;
}
div.close::after, button.close::after, .button.close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
div.close:hover::before, div.close:hover::after, div.close:focus::before, div.close:focus::after, button.close:hover::before, button.close:hover::after, button.close:focus::before, button.close:focus::after, .button.close:hover::before, .button.close:hover::after, .button.close:focus::before, .button.close:focus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.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: 0.1rem;
  margin: -0.1rem;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 0.1rem;
}

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

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

.meet-your-maker {
  font-weight: 700;
  text-decoration: none !important;
  transition: all 1000ms ease-out !important;
  transform: translateZ(0);
}
.meet-your-maker:hover {
  filter: blur(0.5rem);
  text-decoration: none !important;
}

.hover-underline {
  position: relative;
  text-decoration: none !important;
}
.hover-underline::after {
  background-color: currentColor;
  bottom: -0.2rem;
  color: inherit;
  content: "";
  height: 0.1rem;
  left: 0;
  position: absolute;
  transition: width 300ms ease-out;
  width: 0;
}
.hover-underline:hover::after, .hover-underline:focus::after {
  width: 100%;
}
.hover-underline.hu-center::after {
  left: 50%;
  transform: translate(-50%);
}

.maf-msg {
  align-items: center;
  display: inline-flex;
  font-size: 2.4rem;
  font-weight: 500;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
  text-align: center;
  width: 100%;
}
.maf-msg i, .maf-msg span {
  vertical-align: middle;
}
.maf-msg i {
  margin: 0.5rem 0.5rem 0 0;
}
.maf-msg.error-msg {
  background-color: hsl(0, 45%, 75%);
  border: 0.1rem solid hsl(0, 45%, 51%);
}
.maf-msg.success-msg {
  background-color: hsl(120, 42%, 75%);
  border: 0.1rem solid hsl(120, 42%, 49%);
}
.maf-msg.input-msg {
  background-color: transparent;
  border: 0;
  font-size: 1.4rem;
  justify-content: flex-end;
  text-align: right;
  margin: 0;
  padding: 0;
}

.error-msg {
  color: hsl(0, 45%, 51%);
}

.success-msg {
  color: hsl(120, 42%, 49%);
}

#http-error {
  background-color: transparent;
  min-height: 100vh;
}
#http-error.e404 {
  padding-top: 6rem;
}
#http-error.e404 h1 {
  color: rgb(52, 53, 53);
  margin: 0 0 3rem 0;
}
#http-error.e404 p {
  color: rgb(52, 53, 53);
  font-size: 2.5rem;
  margin: 0 auto 3rem 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(52, 53, 53);
}
#http-error.e404 .button {
  font-size: 2.4rem;
  margin: 0 auto;
  width: auto;
}

pre {
  background-color: rgb(250, 250, 220);
  border: 1px solid rgb(22, 22, 20);
  border-radius: 0.5rem;
  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;
}

#next-month-clear {
  background-color: #78073d;
  border: 0.3rem solid #78073d;
  border-radius: 0.8rem;
  color: rgb(52, 53, 53);
  bottom: 0.5em;
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  left: 0.5em;
  padding: 0.5rem;
  position: fixed;
  text-align: center;
  z-index: 99999;
}
#next-month-clear span {
  display: inline-block;
  flex: 0 0 auto;
  margin-bottom: 0.3rem;
}

#cookie-settings {
  background: none;
  background-color: transparent;
  border: 0;
  border-radius: 0.5rem 0 0 0;
  bottom: 0;
  cursor: pointer;
  opacity: 0.5;
  padding: 0.3rem;
  position: fixed;
  left: 0;
  transition: all 300ms ease-out;
  z-index: 999;
}
#cookie-settings:hover, #cookie-settings:focus {
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.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: 0.1rem solid rgb(66, 66, 66);
  border-radius: 0.5rem;
}
.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: 0.6rem !important;
  top: 0.5rem !important;
}

.social-icons {
  --icon-colour: white;
  --text-colour: #a01759;
  align-items: center;
  color: var(--text-colour);
  display: inline-flex;
  font-size: 2rem;
  justify-content: center;
  line-height: 0;
  margin: 0;
  width: auto;
}
.social-icons a {
  color: var(--text-colour);
  display: inline-block;
  line-height: 0;
  opacity: 1;
  outline: none;
  padding: 0.5rem;
}
.social-icons a:last-child {
  margin-right: 0;
}
.social-icons a i {
  background-color: var(--icon-colour);
  border: 0.2rem solid var(--icon-colour);
  border-radius: 4rem;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  height: 4rem;
  line-height: 0;
  position: relative;
  transition: all 300ms ease-out;
  width: 4rem;
}
.social-icons a i::before {
  color: inherit;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.social-icons a:hover i, .social-icons a:focus i {
  background-color: transparent;
  color: var(--icon-colour);
}
.social-icons.open-style a i {
  background-color: transparent;
  border: 0;
  color: var(--text-colour);
  height: auto;
  line-height: 1;
  width: auto;
}
.social-icons.open-style a i::before {
  left: auto;
  position: static;
  top: auto;
  transform: none;
}
.social-icons.open-style a:hover, .social-icons.open-style a:focus {
  opacity: 0.7;
}

#sticky-socials {
  background-color: #a01759;
  border-radius: 1rem 1rem 0 0;
  bottom: -100%;
  padding: 1vh 0.5vw;
  position: fixed;
  left: 0;
  z-index: 667;
}
@media only screen and (min-width: 576px) {
  #sticky-socials {
    border-radius: 1rem 0 0 1rem;
    bottom: auto;
    left: auto;
    right: -100%;
    top: 25vh;
  }
}
@media only screen and (min-width: 576px) {
  #sticky-socials .social-icons {
    flex-direction: column;
  }
}
#sticky-socials .social-icons a {
  padding: 0.3rem;
}
body.maf-loaded #sticky-socials {
  transition: bottom 600ms ease-out 1200ms;
  bottom: 0;
}
@media only screen and (min-width: 576px) {
  body.maf-loaded #sticky-socials {
    bottom: auto;
    transition: right 600ms ease-out 1200ms;
    right: 0;
  }
}

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

div.maf-share-this {
  --maf-share-colour: #f55da6;
  cursor: pointer;
  display: flex;
  width: auto;
}
div.maf-share-this i {
  font-size: 2.2rem;
}
div.maf-share-this .maf-share-btn {
  align-items: center;
  background-color: var(--maf-share-colour);
  border: 0.1rem solid var(--maf-share-colour);
  color: white;
  display: flex;
  flex-direction: column;
  height: 5rem;
  justify-content: center;
  padding: 0.6rem;
  position: relative;
  transition: background-color 300ms ease-out;
  width: 5rem;
}
div.maf-share-this .maf-share-btn i {
  margin: auto 0;
}
div.maf-share-this .maf-share-btn span {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}
div.maf-share-this .maf-share-acts {
  background-color: rgb(255, 255, 255);
  border: 0.1rem solid var(--maf-share-colour);
  display: flex;
  transition: all 300ms ease-out;
}
div.maf-share-this .maf-share-acts a {
  color: var(--maf-share-colour);
  display: inline-block;
  height: 4.8rem;
  outline: none;
  padding: 0.5rem;
  position: relative;
  width: 4.8rem;
}
div.maf-share-this .maf-share-acts a i {
  font-size: 2.4rem;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
}
div.maf-share-this .maf-share-acts a:hover, div.maf-share-this .maf-share-acts a:focus {
  background-color: var(--maf-share-colour);
  opacity: 1;
}
div.maf-share-this .maf-share-acts a:hover i, div.maf-share-this .maf-share-acts a:focus i {
  color: white;
}
div.maf-share-this.floater {
  height: 4rem;
  position: absolute;
  right: 0;
  top: calc(50vh - 2rem);
  width: 4rem;
}
div.maf-share-this.floater i {
  font-size: 2rem;
}
@media only screen and (min-width: 576px) {
  div.maf-share-this.floater {
    height: 7rem;
    top: -3.5rem;
    width: 7rem;
  }
  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: white;
  border: 0.1rem solid #78073d;
  border-radius: 1.2rem 0 0 1.2rem;
  font-size: 1.4rem;
  height: auto;
  line-height: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 40vh;
  width: 4rem;
}
@media only screen and (min-width: 160rem) {
  div#email-floater {
    height: auto;
    padding: 2rem 1.5rem;
    width: 14.2rem;
  }
}
div#email-floater img {
  display: none;
  margin-bottom: 1.2rem;
  width: 5rem;
}
@media only screen and (min-width: 160rem) {
  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: #78073d;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  height: 4rem;
  justify-content: flex-start;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
  text-decoration: none;
  width: 4rem;
}
div#email-floater button span, div#email-floater a span {
  transition: all 300ms ease-out;
}
div#email-floater button:hover, div#email-floater a:hover {
  color: #f55da6;
}
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: 160rem) {
  div#email-floater button, div#email-floater a {
    height: auto;
    margin: 0 0 1.2rem 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: "Satoshi", sans-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: 0.1rem;
  display: inline-block;
  margin: 0;
}
@media only screen and (min-width: 160rem) {
  div#email-floater hr {
    display: none;
  }
}
div#email-floater.no-show {
  display: none;
}

#fader {
  background-color: rgb(52, 53, 53);
  height: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 300ms 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 {
  --dot-colour: white;
  bottom: -3rem;
  display: block;
  margin: 0;
  padding: 0;
}
.flickity-slideshow .flickity-page-dots .dot, .flickity-slideshow-edit .flickity-page-dots .dot {
  background: transparent;
  border: 0.2rem solid var(--dot-colour);
  border-radius: 50%;
  height: 2rem;
  margin: 0 0.2rem;
  opacity: 1;
  padding: 0;
  position: relative;
  width: 2rem;
}
.flickity-slideshow .flickity-page-dots .dot::before, .flickity-slideshow-edit .flickity-page-dots .dot::before {
  background-color: var(--dot-colour);
  border-radius: 50%;
  border: 0;
  content: "";
  display: inline-block;
  height: 70%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 300ms ease-out;
  width: 70%;
}
.flickity-slideshow .flickity-page-dots .dot.is-selected::before, .flickity-slideshow-edit .flickity-page-dots .dot.is-selected::before {
  height: 0;
  width: 0;
}
.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: 0;
  border-radius: 0;
  box-shadow: none;
  height: 5rem;
  margin: 0;
  opacity: 1;
  padding: 0;
  top: -5rem;
  transform-origin: center;
  transform: none;
  transition: all 300ms ease-out;
  width: 5rem;
  z-index: 2;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button .flickity-button-icon, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button .flickity-button-icon {
  display: none;
}
.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: #78073d;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button::after, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button::after {
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: border-color 300ms ease-out;
  width: 0;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button:hover, .flickity-slideshow .flickity-button.flickity-prev-next-button:focus, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button:hover, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button:focus {
  opacity: 0.5;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button.previous, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button.previous {
  left: 0;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button.previous::after, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button.previous::after {
  border-top: 2.2rem solid transparent;
  border-right: 4rem solid rgb(52, 53, 53);
  border-bottom: 2.2rem solid transparent;
  transform: translate(-50%, -50%);
}
.flickity-slideshow .flickity-button.flickity-prev-next-button.next, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button.next {
  left: 5rem;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button.next::after, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button.next::after {
  border-top: 2.2rem solid transparent;
  border-bottom: 2.2rem solid transparent;
  border-left: 4rem solid rgb(52, 53, 53);
  transform: translate(-50%, -50%);
}
.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: 20rem;
}

aside.pg-nav {
  flex-direction: row;
  padding-bottom: 1rem;
  width: 100%;
}
aside.pg-nav .button {
  margin: 0;
  min-height: 0;
  min-width: 8rem;
}
aside.pg-nav .button.prev {
  margin-right: auto;
  margin-left: 1.5rem;
}
aside.pg-nav .button.next {
  margin-right: 1.5rem;
  margin-left: auto;
}

.pagination {
  align-self: center;
  border: 0.1rem solid rgb(52, 53, 53);
  border-right: 0;
  border-left: 0;
  color: rgb(52, 53, 53);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 5rem 0 2rem 0;
  padding: 2rem 0;
  text-align: center;
  width: 100%;
}
.pagination a, .pagination span {
  align-items: center;
  color: rgb(52, 53, 53);
  display: inline-flex;
  justify-content: center;
  line-height: 1;
  margin: 0.3rem;
  min-height: 3.4rem;
  min-width: 3.4rem;
  padding: 0.5rem;
}
.pagination a {
  opacity: 1;
  text-decoration: none;
}
.pagination a:hover, .pagination a:focus {
  background-color: #78073d;
  box-shadow: -0.3rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  color: white;
}
.pagination a.previous {
  margin-right: 0.2rem;
}
.pagination a.next {
  margin-left: 0.2rem;
}
.pagination span.active {
  background-color: #78073d;
  box-shadow: -0.3rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
  color: white;
}
body.maf-pl-1 .pagination a:hover, body.maf-pl-1 .pagination a:focus {
  background-color: #274030;
}
body.maf-pl-1 .pagination span.active {
  background-color: #274030;
}
body.maf-pl-3 .pagination a:hover, body.maf-pl-3 .pagination a:focus {
  background-color: #f55da6;
}
body.maf-pl-3 .pagination span.active {
  background-color: #f55da6;
}

.is-simple-gallery {
  margin: 0 -2rem;
  max-width: none;
  width: calc(100% + 4rem);
  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: 34rem;
  padding: 4rem 2rem;
  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 600ms 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 600ms 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 1.5rem 0 0;
  bottom: 0;
  color: white;
  display: none;
  font-family: "Satoshi", sans-serif;
  font-size: 1.2rem;
  left: 0;
  padding: 0.5rem 0.8rem;
  position: absolute;
}
.is-simple-gallery figure > a:hover > div, .is-simple-gallery figure > a:hover > img {
  transform: scale(1.05);
}

.fb-gallery {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -0.5rem;
  width: calc(100% + 1rem);
}
.fb-gallery > a {
  display: inline-block;
  flex: 0 0 auto;
  opacity: 1;
  padding: 0.5rem;
  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 300ms 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: 0.5rem 1.5rem;
  position: absolute;
  width: 100%;
}
.fb-gallery > a > div .deets > span {
  display: inline-block;
  padding: 0.5rem;
}
.fb-gallery > a > div .deets > span i {
  font-size: 2.4rem;
  margin-left: 1rem;
  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 300ms ease-out;
}
.fb-gallery > a.video-item:hover > div .maf-vp img {
  transform: scale(1.3);
}
.fb-gallery > a:first-child {
  padding-top: 0;
}

.maf-gallery-embed.loaded {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1em -1rem 2em -1rem;
  width: calc(100% + 2rem);
}
.maf-gallery-embed.loaded > div {
  display: inline-block;
  flex: 0 0 auto;
  line-height: 0;
  padding: 1rem;
  width: 50%;
}
@media only screen and (min-width: 576px) {
  .maf-gallery-embed.loaded > div {
    width: 33.333%;
  }
}
.maf-gallery-embed.loaded > div a {
  display: inline-block;
  line-height: 0;
  opacity: 1;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
}
.maf-gallery-embed.loaded > div a img {
  display: inline-block;
  transform: scale(1);
  transform-origin: center;
  transition: transform 300ms ease-out;
  width: 100%;
}
.maf-gallery-embed.loaded > div a:hover img {
  transform: scale(1.05);
}

div.text-box {
  border: 0.1rem solid #c5f1b2;
  padding: 6rem 3rem;
  margin: 2.3rem 0;
  width: 100%;
}

div.image-box {
  align-items: flex-start;
  color: rgb(52, 53, 53);
  display: inline-flex;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  flex-direction: column;
  margin: 0 auto 3.5rem auto;
  padding: 0;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  div.image-box {
    flex-direction: row;
  }
}
div.image-box h1, div.image-box .h1-style, div.image-box h2, div.image-box .h2-style, div.image-box h3, div.image-box .h3-style, div.image-box h4, div.image-box .h4-style, div.image-box h5, div.image-box .h5-style, div.image-box h6.h6-style {
  padding-bottom: 0.3em;
}
div.image-box h1::after, div.image-box .h1-style::after, div.image-box h2::after, div.image-box .h2-style::after, div.image-box h3::after, div.image-box .h3-style::after, div.image-box h4::after, div.image-box .h4-style::after, div.image-box h5::after, div.image-box .h5-style::after, div.image-box h6.h6-style::after {
  display: none;
}
div.image-box p, div.image-box li {
  max-width: none !important;
}
div.image-box li::before {
  color: rgb(52, 53, 53);
}
div.image-box > div {
  display: inline-block;
  flex: 0 0 auto;
  width: 100%;
}
div.image-box > div > *:last-child {
  margin-bottom: 0;
}
div.image-box .image {
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px) {
  div.image-box .image {
    margin-bottom: 0;
    padding-right: 1.5rem;
    width: 50%;
  }
}
div.image-box .image img, div.image-box .image svg {
  display: block;
  margin: 0;
  max-width: 100%;
  width: 100%;
}
div.image-box .image figure {
  margin: 0;
}
div.image-box .image figure figcaption {
  display: none;
}
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 {
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  div.image-box .text {
    padding-left: 1.5rem;
    width: 50%;
  }
}
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: 3rem;
}
@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: 1rem;
}
div.content-callout .button {
  margin: 0 0 1rem 0;
  min-height: 6rem;
  min-width: 0;
  width: 100%;
}
div.content-callout p {
  font-family: "Satoshi", sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}

@keyframes loader {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 100%;
    left: 100%;
  }
}
.maf-embed {
  display: inline-block;
  margin-bottom: 1em;
  transform: all 300ms ease-out;
}
.maf-embed.loading {
  background-color: rgba(0, 0, 0, 0.1);
  border: 0.1rem solid rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  padding: 1rem 2rem;
  position: relative;
}
.maf-embed.loading::after {
  animation: loader 2s ease-in-out 1s infinite;
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
}

.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 600ms ease-out;
  width: auto;
  z-index: 0;
}
video.tvw-player.ready {
  opacity: 1;
}

.vid-pop {
  background-color: black;
  display: inline-block;
  overflow: hidden;
  opacity: 1;
  position: relative;
  width: 100%;
  z-index: 1;
}
.vid-pop::before {
  content: "";
  display: table;
  padding-bottom: 56%;
}
.vid-pop::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: rotateZ(0);
  transition: all 300ms ease-out;
  width: 100%;
  z-index: 1;
}
.vid-pop > img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: all 300ms ease-out;
  transform-origin: center;
  transform: scale(1.02);
  width: 100%;
  z-index: 0;
}
.vid-pop button {
  background-image: url("/images/Layout/ui/vid-play.png");
  background-color: transparent;
  background-size: cover;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: auto;
  left: 50%;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 300ms ease-out;
  width: 20%;
}
.vid-pop button::after {
  content: "";
  display: table;
  padding-bottom: 100%;
}
.vid-pop:hover {
  opacity: 1;
}
.vid-pop:hover::after {
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.7) inset;
}
@media only screen and (min-width: 960px) {
  .vid-pop:hover::after {
    box-shadow: 0 0 6rem rgba(0, 0, 0, 0.7) inset;
  }
}
@media only screen and (min-width: 1280px) {
  .vid-pop:hover::after {
    box-shadow: 0 0 9rem rgba(0, 0, 0, 0.7) inset;
  }
}
.vid-pop:hover > img {
  transform: scale(1);
}
.vid-pop:hover button {
  box-shadow: 0 0 0.8rem rgba(255, 255, 255, 0.3);
}

div.cardbox, aside.cardbox {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -1.5rem;
  width: calc(100% + 3rem);
}
div.cardbox .maf-content, aside.cardbox .maf-content {
  padding: 0;
}
div.cardbox article.card, aside.cardbox article.card {
  --card-colour: #78073d;
  --card-accent: #78073d;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 4rem;
  padding: 1.5rem;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  div.cardbox article.card, aside.cardbox article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  div.cardbox article.card, aside.cardbox article.card {
    width: 33.333%;
  }
}
div.cardbox article.card .portal-item, aside.cardbox article.card .portal-item {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: rgb(52, 53, 53);
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  height: 100%;
  opacity: 1;
  outline: none;
  overflow: hidden;
  position: relative;
  text-align: left;
  text-decoration: none;
  transform-origin: center;
  transition: all 300ms ease-out;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content, aside.cardbox article.card .portal-item .portal-content {
  align-content: center;
  align-items: center;
  border-top: 1.5rem solid var(--card-accent);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
  padding: 2.5rem 0 0 0;
  transition: all 300ms 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: inline-block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  min-height: 3.4rem;
  padding: 0 0 1rem 0;
  width: 100%;
  z-index: 1;
}
div.cardbox article.card .portal-item .portal-content .tn, aside.cardbox article.card .portal-item .portal-content .tn {
  background-color: rgb(238, 238, 238);
  display: inline-block;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
  transition: all 300ms 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;
  -o-object-position: center;
     object-position: center;
  transform-origin: center;
  transition: all 300ms ease-out;
  width: 100%;
  z-index: 0;
}
div.cardbox article.card .portal-item .portal-content .tn .hover-text, aside.cardbox article.card .portal-item .portal-content .tn .hover-text {
  align-items: center;
  color: white;
  display: flex;
  flex-direction: column;
  font-size: 1.9rem;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 10%;
  position: absolute;
  transition: all 300ms ease-out;
  transform: scale(1.2);
  top: 0;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn .hover-text hr, aside.cardbox article.card .portal-item .portal-content .tn .hover-text hr {
  margin: 5% 0;
  max-width: 10rem;
}
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: 10rem;
}
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::after, aside.cardbox article.card .portal-item .portal-content .tn.custom::after {
  padding-bottom: 66.666%;
}
div.cardbox article.card .portal-item .portal-content .tn.no-img .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.no-img .tn-img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
}
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;
  transition: all 300ms ease-out;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .categories, aside.cardbox article.card .portal-item .portal-content .categories {
  color: #78073d;
  font-weight: bold;
  padding-top: 0.5rem;
}
div.cardbox article.card .portal-item .portal-content .title, aside.cardbox article.card .portal-item .portal-content .title {
  border-bottom: 1px solid var(--card-colour);
  color: var(--card-colour);
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 2.5rem 0;
  min-height: 3.55em;
  padding: 0 0 1.5rem 0;
  position: relative;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .title::after, aside.cardbox article.card .portal-item .portal-content .title::after {
  display: none;
}
@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: 2.8rem;
  }
}
div.cardbox article.card .portal-item .portal-content .desc, aside.cardbox article.card .portal-item .portal-content .desc {
  display: inline-block;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  padding: 0 0 1em 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;
  justify-content: flex-start;
  margin-bottom: 1rem;
  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;
  line-height: 1.2;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .date, aside.cardbox article.card .portal-item .portal-content .date {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 auto 0;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .date time, aside.cardbox article.card .portal-item .portal-content .date time {
  display: inline-block;
  position: relative;
}
div.cardbox article.card .portal-item .portal-content .date time .dl, aside.cardbox article.card .portal-item .portal-content .date time .dl {
  font-weight: 400;
}
div.cardbox article.card .portal-item .portal-content .card-button, aside.cardbox article.card .portal-item .portal-content .card-button {
  background-color: transparent;
  border: 0;
  color: var(--card-colour);
  font-size: 1.8rem;
  justify-content: flex-start;
  margin: auto 0 0 0;
  min-height: 0;
  min-width: 0;
  padding: 0 0 0.3rem 0;
  text-transform: none;
}
div.cardbox article.card .portal-item .portal-content .card-button::before, div.cardbox article.card .portal-item .portal-content .card-button::after, aside.cardbox article.card .portal-item .portal-content .card-button::before, 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:not(.no-link):hover .portal-content .tn .tn-img, div.cardbox article.card .portal-item:not(.no-link):focus .portal-content .tn .tn-img, aside.cardbox article.card .portal-item:not(.no-link):hover .portal-content .tn .tn-img, aside.cardbox article.card .portal-item:not(.no-link):focus .portal-content .tn .tn-img {
  opacity: 0.9;
  transform: scale(1.1);
}
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 article.card.maf-clr-1 .portal-item .portal-content .info .title, aside.cardbox article.card.maf-clr-1 .portal-item .portal-content .info .title {
  background-color: #78073d;
}
div.cardbox article.card.sz-2, aside.cardbox article.card.sz-2 {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  div.cardbox article.card.sz-2, aside.cardbox article.card.sz-2 {
    width: 50%;
  }
}
div.cardbox article.card.sz-2 .portal-item .portal-content .tn.custom::after, aside.cardbox article.card.sz-2 .portal-item .portal-content .tn.custom::after {
  padding-bottom: 66.666%;
}
div.cardbox > p, aside.cardbox > p {
  padding: 0 1.5rem;
}
div.cardbox.cols-2 article.card, aside.cardbox.cols-2 article.card {
  width: 100%;
}
div.cardbox.cols-2 article.card .portal-item, aside.cardbox.cols-2 article.card .portal-item {
  max-width: none;
}
@media only screen and (min-width: 1024px) {
  div.cardbox.cols-2 article.card, aside.cardbox.cols-2 article.card {
    max-width: none;
    width: 50%;
  }
  div.cardbox.cols-2 article.card.maf-cs-2, div.cardbox.cols-2 article.card.maf-cs-3, div.cardbox.cols-2 article.card.maf-cs-4, aside.cardbox.cols-2 article.card.maf-cs-2, aside.cardbox.cols-2 article.card.maf-cs-3, aside.cardbox.cols-2 article.card.maf-cs-4 {
    width: 100%;
  }
}
div.cardbox.cols-3 article.card, aside.cardbox.cols-3 article.card {
  width: 100%;
}
@media only screen and (min-width: 960px) {
  div.cardbox.cols-3 article.card, aside.cardbox.cols-3 article.card {
    max-width: none;
    width: 33.333%;
  }
  div.cardbox.cols-3 article.card.maf-cs-2, aside.cardbox.cols-3 article.card.maf-cs-2 {
    width: 66.666%;
  }
  div.cardbox.cols-3 article.card.maf-cs-3, aside.cardbox.cols-3 article.card.maf-cs-3 {
    width: 100%;
  }
}
div.cardbox.cols-4 article.card, aside.cardbox.cols-4 article.card {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  div.cardbox.cols-4 article.card, aside.cardbox.cols-4 article.card {
    max-width: none;
    width: 50%;
  }
}
@media only screen and (min-width: 1152px) {
  div.cardbox.cols-4 article.card, aside.cardbox.cols-4 article.card {
    width: 25%;
  }
  div.cardbox.cols-4 article.card.maf-cs-2, aside.cardbox.cols-4 article.card.maf-cs-2 {
    width: 50%;
  }
  div.cardbox.cols-4 article.card.maf-cs-3, aside.cardbox.cols-4 article.card.maf-cs-3 {
    width: 75%;
  }
  div.cardbox.cols-4 article.card.maf-cs-4, aside.cardbox.cols-4 article.card.maf-cs-4 {
    width: 100%;
  }
}
div.cardbox .no-articles, aside.cardbox .no-articles {
  font-size: 1.2em;
  padding: 0 1.5rem;
  text-align: left;
  width: 100%;
}
div.cardbox .maf-msg, aside.cardbox .maf-msg {
  margin: 0 0.75rem 3rem 0.75rem;
  z-index: 1;
}
@media only screen and (min-width: 1366px) {
  div.cardbox .maf-msg, aside.cardbox .maf-msg {
    margin: 0 1.5rem 3rem 1.5rem;
  }
}

div.catbox, aside.catbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 0;
  margin: 0 -1.5rem;
  width: calc(100% + 3rem);
}
div.catbox article.card, aside.catbox article.card {
  display: inline-block;
  flex: 0 0 auto;
  padding: 3rem;
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  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 {
    padding: 1.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  div.catbox article.card, aside.catbox article.card {
    width: 33.333%;
  }
}
div.catbox article.card .portal-item, aside.catbox article.card .portal-item {
  background-color: transparent;
  color: rgb(52, 53, 53);
  display: inline-block;
  height: 100%;
  line-height: 0;
  max-width: 40rem;
  opacity: 1;
  outline: none;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
div.catbox article.card .portal-item .portal-content, aside.catbox article.card .portal-item .portal-content {
  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: 1;
  position: absolute;
  top: 0;
  transform: scale(1);
  transform-origin: center;
  transition: all 600ms 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: flex-start;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 1.5rem;
  transition: all 300ms 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: 7rem;
}
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 300ms ease-out;
}
div.catbox article.card .portal-item .portal-content .info .title, aside.catbox article.card .portal-item .portal-content .info .title {
  display: inline-block;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  padding: 0 0 1rem 0;
  width: 100%;
}
div.catbox article.card .portal-item .portal-content .info .date, aside.catbox article.card .portal-item .portal-content .info .date {
  margin: auto 0 0 0;
}
div.catbox article.card .portal-item .portal-content .info .desc, aside.catbox article.card .portal-item .portal-content .info .desc {
  align-items: center;
  color: white;
  display: none;
  justify-content: center;
  padding: 0.8rem 1rem;
  position: absolute;
  transition: top 300ms 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: 32.5rem;
  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 .portal-content .info .card-button, aside.catbox article.card .portal-item .portal-content .info .card-button {
  color: white;
  margin: auto 0 0 0;
}
div.catbox article.card .portal-item:hover .portal-content .tn .tn-img, div.catbox article.card .portal-item:focus .portal-content .tn .tn-img, aside.catbox article.card .portal-item:hover .portal-content .tn .tn-img, aside.catbox article.card .portal-item:focus .portal-content .tn .tn-img {
  transform: scale(1.05);
}
div.catbox article.card .portal-item:hover .portal-content .info .card-button::after, div.catbox article.card .portal-item:focus .portal-content .info .card-button::after, aside.catbox article.card .portal-item:hover .portal-content .info .card-button::after, aside.catbox article.card .portal-item:focus .portal-content .info .card-button::after {
  bottom: 0;
}
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 -1.5rem;
  width: calc(100% + 3rem);
}
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: 1.5rem;
  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: 1.5rem;
  position: absolute;
  transition: all 300ms 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 300ms 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 2rem 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: 0.3rem dashed white;
  margin: 0 0 2rem 0;
  max-width: 10rem;
}
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, div.masobox article.card .portal-item:focus .portal-content .info, aside.masobox article.card .portal-item:hover .portal-content .info, aside.masobox article.card .portal-item:focus .portal-content .info {
  opacity: 1;
}
div.masobox article.card .portal-item:hover .portal-content .info > *, div.masobox article.card .portal-item:focus .portal-content .info > *, aside.masobox article.card .portal-item:hover .portal-content .info > *, aside.masobox article.card .portal-item:focus .portal-content .info > * {
  opacity: 1;
}
div.masobox article.card.filter-item, aside.masobox article.card.filter-item {
  transition: none;
}

#filters {
  margin-top: 5rem;
  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 3rem 0.8rem 0;
  width: auto;
}
#filters .filter-content .filter-set button {
  margin: 0.5rem;
}

.filtered .filter-target {
  min-height: 20rem;
}
.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 300ms ease-out;
  visibility: hidden;
}
.filtered .filter-target #no-results.show {
  transform: translateX(-50%) scale(1);
  visibility: visible;
}

.search-box {
  background-color: #78073d;
  border: 0.2rem solid #78073d;
  border-radius: 5rem;
  color: rgb(52, 53, 53);
  display: inline-block;
  font-size: 2rem;
  height: 3.6rem;
  padding: 0;
  position: relative;
  transition: all 300ms ease-out;
  vertical-align: top;
  width: 3.6rem;
}
.search-box form {
  display: inline-block;
  height: 100%;
}
.search-box input {
  background-color: white;
  border: 0;
  border-radius: 1.5rem 0 0 1.5rem;
  color: rgb(52, 53, 53);
  font-size: 1.6rem;
  font-weight: 500;
  height: 100%;
  left: 0;
  margin: 0 3rem 0 0;
  outline: transparent;
  padding: 0;
  position: absolute;
  top: 0;
  width: 0;
}
.search-box input::-moz-placeholder {
  color: rgb(52, 53, 53);
  opacity: 1;
  -moz-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.search-box input::placeholder {
  color: rgb(52, 53, 53);
  opacity: 1;
  transition: all 300ms ease-out;
}
.search-box input:focus {
  background-color: white;
  color: rgb(52, 53, 53);
}
.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: 2rem;
  height: 3.2rem;
  margin: 0;
  padding: 1rem;
  position: absolute;
  right: 0.8rem;
  top: 0;
  transition: all 300ms ease-out;
  width: 2.4rem;
}
.search-box i::before {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-55%, -55%);
}
.search-box:hover, .search-box:focus {
  background-color: #78073d;
}
.search-box:hover i, .search-box:focus i {
  color: white;
}
.search-box.on {
  width: 18rem;
}
@media only screen and (min-width: 960px) {
  .search-box.on {
    width: 20rem;
  }
}
.search-box.on i {
  color: white;
}
.search-box.on input {
  padding: 0.8rem 0.5rem 0.8rem 1rem;
  width: calc(100% - 4rem);
}
.search-box.hero {
  background-color: rgba(0, 0, 0, 0.3);
  border: 0.3rem solid white;
  height: 4.6rem;
  margin-top: 1rem;
}
.search-box.hero input {
  background-color: transparent;
  border-radius: 2rem 0 0 2rem;
  color: white;
  font-size: 1.8rem;
  height: 4rem;
  margin: 0 5rem 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 2.3rem 2.3rem 0;
  color: white;
  font-size: 2.4rem;
  height: 4.6rem;
  padding: 0.5rem;
  right: -0.3rem;
  top: -0.3rem;
  width: 5rem;
}
.search-box.hero i::before {
  color: inherit;
}
.search-box.hero:hover {
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1.6rem 0.3rem rgba(0, 0, 0, 0.7);
}
.search-box.hero.on {
  max-width: 47.5rem;
  padding-left: 2rem;
  width: 100%;
}
.search-box.hero.on input {
  width: calc(100% - 5rem);
}
.search-box.hero.search-page {
  background-color: white;
  border-color: #78073d;
}
.search-box.hero.search-page input {
  background-color: transparent;
  color: rgb(52, 53, 53);
  text-align: left;
}
.search-box.hero.search-page input::-moz-placeholder {
  color: rgb(52, 53, 53);
}
.search-box.hero.search-page input::placeholder {
  color: rgb(52, 53, 53);
}
.search-box.hero.search-page i {
  color: #78073d;
}
.search-box.hero.search-page:hover {
  box-shadow: 0 0 0.8rem 0.1rem 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: 0.2rem 0.2rem 0.3rem 0 rgba(0, 0, 0, 0.2) inset;
  width: 100%;
}
.search-box.mob i {
  color: rgb(52, 53, 53);
}
.search-box.mob input {
  background-color: transparent;
  padding: 1rem 0.5rem 0.8remrem 1rem;
  width: calc(100% - 3.4rem);
}
.search-box.mob input::-moz-placeholder {
  opacity: 0.4;
}
.search-box.mob input::placeholder {
  opacity: 0.4;
}

#basket-link.icon {
  align-items: center;
  color: rgb(52, 53, 53);
  display: flex;
  font-family: "Satoshi", sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 700;
  opacity: 1;
  position: relative;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
}
#basket-link.icon span {
  display: none;
  flex: 0 0 auto;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  #basket-link.icon span {
    display: inline-block;
  }
}
#basket-link.icon span:first-child {
  padding: 0 0.5rem 0 0;
}
#basket-link.icon i {
  border: 0.1rem solid rgb(52, 53, 53);
  border-radius: 50%;
  color: rgb(52, 53, 53);
  cursor: pointer;
  display: inline-block;
  font-size: 2rem;
  height: 4rem;
  padding: 1rem;
  position: relative;
  transition: all 300ms ease-out;
  width: 4rem;
}
#basket-link.icon i::before {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
#basket-link.icon .items {
  align-items: center;
  background-color: rgb(52, 53, 53);
  border: 0.1rem solid rgb(52, 53, 53);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  height: 1.8rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -0.6rem;
  top: -0.4rem;
  width: 1.8rem;
  z-index: 1;
}
#basket-link.icon:hover i, #basket-link.icon:focus i {
  background-color: #a01759;
}
#basket-link.default {
  color: rgb(52, 53, 53);
  display: flex;
  font-family: "Satoshi", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
}
#basket-link.default i {
  font-size: 2rem;
  margin-top: 0.5rem;
  margin-right: 1rem;
}
#basket-link.default .items .lbl {
  font-weight: 400;
}
#basket-link.default .price {
  margin-left: 1rem;
}

.maf-bc {
  display: flex;
  justify-content: center;
  padding: 0;
  transition: opacity 300ms ease-out;
  transition-delay: 300ms;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .maf-bc {
    padding: 0 1.5rem;
  }
}
.maf-bc.clr-1 {
  background-color: #78073d;
}
.maf-bc .maf-bc-i {
  color: rgb(52, 53, 53);
  font-size: 1.6rem;
  max-width: 150rem;
  padding: 3.5rem 1.5rem 1rem 1.5rem;
  width: 100%;
}
.maf-bc .maf-bc-i a {
  color: inherit;
  position: relative;
  text-decoration: none;
}
.maf-bc .maf-bc-i a::before {
  background-color: rgb(52, 53, 53);
  bottom: 0;
  content: "";
  display: inline-block;
  height: 0.1rem;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  transition: width 600ms ease-out;
  width: 0;
  z-index: -1;
}
.maf-bc .maf-bc-i a:hover {
  color: rgb(52, 53, 53);
}
.maf-bc .maf-bc-i a:hover::before {
  width: 100%;
}
.maf-bc .maf-bc-i span.tpage {
  font-weight: 700;
}
.maf-bc .maf-bc-i span.dl {
  display: inline-block;
  margin: 0 0.5rem;
}

.modal {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(1rem);
  color: rgb(52, 53, 53);
  display: inline-block;
  font-family: "Satoshi", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  height: 100vh;
  left: 0;
  opacity: 0;
  padding: 2rem;
  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: 3rem;
  }
}
@media only screen and (min-width: 960px) {
  .modal {
    padding: 5rem;
  }
}
.modal > div {
  background-color: white;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 0.8rem;
  box-shadow: 0 0 1.5rem 0.2rem rgba(0, 0, 0, 0.2);
  display: inline-block;
  height: 0;
  left: 50%;
  max-height: 48.5rem;
  max-width: 49.5rem;
  opacity: 0;
  padding: 5rem 0 3rem 3rem;
  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: 3rem;
  text-align: center;
}
.modal > div .close {
  color: #a01759;
  height: 4rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 4rem;
}
.modal.show {
  display: inline-block;
  opacity: 1;
  visibility: visible;
}
.modal.show > div {
  height: 90%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  width: 90%;
}

#mp-pop-log h1, #mp-pop-log .h1-style, #mp-pop-log h2, #mp-pop-log .h2-style, #mp-pop-log h3, #mp-pop-log .h3-style, #mp-pop-log h4, #mp-pop-log .h4-style, #mp-pop-log h5, #mp-pop-log .h5-style, #mp-pop-log h6.h6-style {
  color: #78073d;
  font-family: "Satoshi", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  position: relative;
}
#mp-pop-log p.small-text {
  font-size: 1.6rem;
}
#mp-pop-log > div {
  background-color: white;
  border: 0.5rem solid #78073d;
  border-radius: 1.5rem;
}
#mp-pop-log > div .mod-content {
  text-align: left;
}
#mp-pop-log > div .mod-content #p-wrd {
  position: relative;
}
#mp-pop-log > div .mod-content #p-wrd input {
  padding-right: 7rem;
}
#mp-pop-log > div .mod-content #p-wrd #forgot {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  right: 2.5rem;
  text-decoration: none;
  top: 50%;
  transform: translateY(-50%);
}
#mp-pop-log > div .mod-content #p-wrd #forgot:hover {
  color: #f55da6;
}

#mp-nagger > div {
  border: 0.5rem solid #a01759;
}
#mp-nagger > div .mod-content .title {
  display: inline-block;
}
#mp-nagger > div .mod-content .sign-up {
  background-color: #a01759;
  border-color: #a01759;
  color: white;
  min-width: 20rem;
}
#mp-nagger > div .mod-content .sign-up:hover {
  background-color: transparent;
  color: #a01759;
}
#mp-nagger > div .mod-content .social-icons {
  --icon-colour: #a01759;
  --text-colour: white;
}
#mp-nagger > div.two-cols {
  max-width: 76.8rem;
  overflow: hidden;
  padding: 0;
}
#mp-nagger > div.two-cols .mod-content {
  align-items: stretch;
  flex-direction: row;
  overflow: hidden;
  padding: 0;
}
#mp-nagger > div.two-cols .mod-content > div {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
#mp-nagger > div.two-cols .mod-content > div.col1 {
  display: none;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #mp-nagger > div.two-cols .mod-content > div.col1 {
    display: flex;
    width: 50%;
  }
}
#mp-nagger > div.two-cols .mod-content > div.col1 > img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
#mp-nagger > div.two-cols .mod-content > div.col2 {
  padding: 5rem 0 3rem 1.5rem;
}
@media only screen and (min-width: 768px) {
  #mp-nagger > div.two-cols .mod-content > div.col2 {
    width: 50%;
  }
}
#mp-nagger > div.two-cols .mod-content > div.col2 > div {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  padding-right: 1.5rem;
}

@keyframes point-a-d {
  0% {
    transform: translate(0, 0);
  }
  5% {
    transform: translate(0, -1rem);
  }
  10% {
    transform: translate(0, 0);
  }
  15% {
    transform: translate(0, 1rem);
  }
  20% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(0, -1rem);
  }
  30% {
    transform: translate(0, 0);
  }
  35% {
    transform: translate(0, 1rem);
  }
  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 300ms 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: 0.2rem;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 0.2rem;
  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: 0.6rem;
  }
}
#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: 0.2rem;
  bottom: calc(30% + 0.2rem);
  display: inline-block;
  height: 30%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 0.2rem;
}
@media only screen and (min-width: 960px) {
  #maf-btn-dwn .spr .b {
    width: 0.6rem;
  }
}
#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: 1rem;
}

.nav-underline {
  width: 100%;
  margin: 0 auto;
  max-width: 150rem;
  padding: 0 1.5rem;
}
.nav-underline .line {
  background-color: rgb(52, 53, 53);
  height: 0.1rem;
  width: 100%;
}
.nav-underline.hide {
  display: none;
}

.maf-portal {
  justify-content: center;
  min-height: 28rem;
  padding-top: 0;
  padding-bottom: 0;
}
.maf-portal .maf-content {
  background-color: #78073d;
  border: 0.1rem solid #78073d;
  box-shadow: 0 0 1.8rem rgba(0, 0, 0, 0);
  cursor: pointer;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  height: calc(100% - 6rem);
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  transition: all 300ms ease-out;
  width: 100%;
}
.maf-portal .maf-content:hover {
  background-color: #f55da6 !important;
  box-shadow: 0 0 1.8rem rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 0 1.8rem rgba(0, 0, 0, 0.7));
}
@media only screen and (min-width: 576px) {
  .maf-portal {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .maf-portal .maf-content {
    width: calc(100% - 6rem);
  }
}

main {
  align-items: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  padding: 0 0;
}
@media only screen and (min-width: 576px) {
  main {
    padding: 0 0;
  }
}
body.manageable-bo main {
  padding-top: 0;
  min-height: 0;
}
main > article {
  display: flex;
  flex-direction: column;
  width: 100%;
}

section {
  overflow: hidden;
}

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.4rem;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  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: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  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: 3.4rem;
  }
}
@media only screen and (min-width: 1024px) {
  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: 3rem;
  }
}
@media only screen and (min-width: 1152px) {
  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: 3.4rem;
  }
}
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-size: 0.92em;
}
section p.big-text, section span.big-text, footer p.big-text, footer span.big-text, .bo-row p.big-text, .bo-row span.big-text {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  section p.big-text, section span.big-text, footer p.big-text, footer span.big-text, .bo-row p.big-text, .bo-row span.big-text {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 768px) {
  section p.big-text, section span.big-text, footer p.big-text, footer span.big-text, .bo-row p.big-text, .bo-row span.big-text {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 1024px) {
  section p.big-text, section span.big-text, footer p.big-text, footer span.big-text, .bo-row p.big-text, .bo-row span.big-text {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 1152px) {
  section p.big-text, section span.big-text, footer p.big-text, footer span.big-text, .bo-row p.big-text, .bo-row span.big-text {
    font-size: 4rem;
  }
}
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: 6rem;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (min-width: 576px) {
  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: 12rem;
  }
}
@media only screen and (min-width: 768px) {
  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: 14rem;
  }
}
@media only screen and (min-width: 1152px) {
  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: 16.5rem;
  }
}
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: "Satoshi", sans-serif;
  font-size: 0.5em !important;
}
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, 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, 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, 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, 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, footer p.has-img, .bo-row p.has-img {
  margin: 1em 0 2em 0;
  text-align: center;
}
section p.has-img img, footer p.has-img img, .bo-row p.has-img img {
  margin: 0 0 1rem 0 !important;
}
section p.has-img img + img, footer p.has-img img + img, .bo-row p.has-img img + img {
  margin-left: 1rem;
}
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, footer p.p-links, .bo-row p.p-links {
  margin: 1rem -1.5rem 3rem -1.5rem;
  position: relative;
  width: calc(100% + 3rem);
}
section p.p-links a, footer p.p-links a, .bo-row p.p-links a {
  margin: 0 1.5rem 1rem 1.5rem;
}
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, footer p.has-figs, .bo-row p.has-figs {
  align-items: flex-end;
  align-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1em -2rem 1em -2rem;
  width: calc(100% + 40px);
}
section p.has-figs figure, footer p.has-figs figure, .bo-row p.has-figs figure {
  flex: 0 1 auto;
  margin: 1em 2rem 2em 2rem;
}
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.4rem;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  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: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  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: 3.4rem;
  }
}
@media only screen and (min-width: 1024px) {
  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: 3rem;
  }
}
@media only screen and (min-width: 1152px) {
  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: 3.4rem;
  }
}
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, 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-top: 0;
  margin-bottom: 0.5em !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, 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;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  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: 3.6rem;
  }
}
@media only screen and (min-width: 768px) {
  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: 4rem;
  }
}
@media only screen and (min-width: 1024px) {
  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: 3.6rem;
  }
}
@media only screen and (min-width: 1152px) {
  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: 4rem;
  }
}
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: 6rem;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (min-width: 576px) {
  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: 12rem;
  }
}
@media only screen and (min-width: 768px) {
  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: 14rem;
  }
}
@media only screen and (min-width: 1152px) {
  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: 16.5rem;
  }
}
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: "Satoshi", 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, 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 {
  background-color: #a01759;
  color: white;
  line-height: 1;
  padding: 0.5rem 1rem;
  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, 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.5em;
}
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: 1.5em;
}
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 1em 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, 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 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, 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: 2rem;
  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, 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: 2.4rem;
  }
}
section h1.push-down, section .h1-style.push-down, section h2.push-down, section .h2-style.push-down, section h3.push-down, section .h3-style.push-down, section h4.push-down, section .h4-style.push-down, section h5.push-down, section .h5-style.push-down, section h6.push-down, section .h6-style.push-down, section p.push-down, section .p-style.push-down, footer h1.push-down, footer .h1-style.push-down, footer h2.push-down, footer .h2-style.push-down, footer h3.push-down, footer .h3-style.push-down, footer h4.push-down, footer .h4-style.push-down, footer h5.push-down, footer .h5-style.push-down, footer h6.push-down, footer .h6-style.push-down, footer p.push-down, footer .p-style.push-down, .bo-row h1.push-down, .bo-row .h1-style.push-down, .bo-row h2.push-down, .bo-row .h2-style.push-down, .bo-row h3.push-down, .bo-row .h3-style.push-down, .bo-row h4.push-down, .bo-row .h4-style.push-down, .bo-row h5.push-down, .bo-row .h5-style.push-down, .bo-row h6.push-down, .bo-row .h6-style.push-down, .bo-row p.push-down, .bo-row .p-style.push-down {
  margin-top: auto;
}
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(6rem);
  transition: all 1200ms ease-out;
}
section.animate .footer, footer.animate .footer, .bo-row.animate .footer {
  filter: grayscale(100%);
  opacity: 0;
  transform: translateY(6rem);
  transition: all 1200ms ease-out;
}
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), 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), 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), 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), 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), 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), 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), 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), 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), 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), 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), 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), 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), 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), 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), 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), 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), 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), 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), 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), 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), 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), 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, 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, 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, footer.animate.anim-3 .footer, .bo-row.animate.anim-3 .footer {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0);
}

.bg-1 {
  background-color: #78073d !important;
  color: white;
}
.bg-1 .maf-content *:not(.button) {
  color: white;
}
.bg-1 .maf-content a:not(.button) {
  color: #a01759;
}
.bg-1 .maf-content a:not(.button):hover, .bg-1 .maf-content a:not(.button).focus {
  color: white;
}
.bg-1 .maf-content hr {
  border-color: white;
}

.bg-2 {
  background-color: #a01759 !important;
  color: white;
}
.bg-2 .maf-content *:not(.button) {
  color: white;
}
.bg-2 .maf-content a:not(.button) {
  color: #a01759;
}
.bg-2 .maf-content a:not(.button):hover, .bg-2 .maf-content a:not(.button).focus {
  color: white;
}
.bg-2 .maf-content hr {
  border-color: white;
}

.bg-3 {
  background-color: #f55da6 !important;
  color: white;
}
.bg-3 .maf-content *:not(.button) {
  color: white;
}
.bg-3 .maf-content a:not(.button) {
  color: #a01759;
}
.bg-3 .maf-content a:not(.button):hover, .bg-3 .maf-content a:not(.button).focus {
  color: white;
}
.bg-3 .maf-content hr {
  border-color: white;
}

.bg-4 {
  background-color: #274030 !important;
  color: white;
}
.bg-4 .maf-content *:not(.button) {
  color: white;
}
.bg-4 .maf-content a:not(.button) {
  color: #a01759;
}
.bg-4 .maf-content a:not(.button):hover, .bg-4 .maf-content a:not(.button).focus {
  color: white;
}
.bg-4 .maf-content hr {
  border-color: white;
}

.bg-5 {
  background-color: #9eba9b !important;
  color: white;
}
.bg-5 .maf-content *:not(.button) {
  color: white;
}
.bg-5 .maf-content a:not(.button) {
  color: #a01759;
}
.bg-5 .maf-content a:not(.button):hover, .bg-5 .maf-content a:not(.button).focus {
  color: white;
}
.bg-5 .maf-content hr {
  border-color: white;
}

.bg-6 {
  background-color: #c5f1b2 !important;
}

.bg-7 {
  background-color: #f55da6 !important;
  color: white;
}
.bg-7 .maf-content *:not(.button) {
  color: white;
}
.bg-7 .maf-content a:not(.button) {
  color: #a01759;
}
.bg-7 .maf-content a:not(.button):hover, .bg-7 .maf-content a:not(.button).focus {
  color: white;
}
.bg-7 .maf-content hr {
  border-color: white;
}

.maf-background.white {
  background-color: white;
}
.maf-background.glass {
  background-color: rgba(255, 255, 255, 0.95);
}
@supports (backdrop-filter: blur(5px)) {
  .maf-background.glass {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(9px);
  }
}

.is-main-header {
  align-items: center;
  align-content: center;
  background-color: white;
  color: rgb(52, 53, 53);
  display: flex;
  height: 10rem;
  justify-content: center;
  margin: 0 auto;
  padding: 0 0;
  transform: translateZ(0);
  transition: all 300ms 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: 20rem;
  }
}
.is-main-header > div.h-con {
  align-items: center;
  align-content: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 150rem;
  position: relative;
  text-align: center;
  width: 100vw;
}
.is-main-header > div.h-con .ui-con {
  display: flex;
  flex: 0 1 auto;
  height: 100%;
  justify-content: space-between;
  line-height: 0;
  margin: 0;
  max-height: 100%;
  min-height: 6rem;
  padding: 1.2rem 1.5rem;
  position: relative;
  text-align: center;
  transition: all 300ms ease-out;
  width: auto;
  z-index: 100;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con .ui-con {
    padding: 1rem 3rem;
  }
}
.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: "Satoshi", sans-serif;
  font-size: 1.5rem;
  height: 100%;
  line-height: 0;
  max-width: 100%;
  opacity: 1;
  position: relative;
  text-align: left;
  transition: height 300ms linear;
  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 {
  aspect-ratio: 1/0.55762082;
  display: inline-block;
  flex: 0 0 auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  opacity: 1;
  transform: scale(1);
  transition: opacity 600ms ease-out 600ms, height 300ms linear;
  width: 12rem;
}
@media only screen and (min-width: 768px) {
  .is-main-header > div.h-con .ui-con .company-brand #logo, .is-main-header > div.h-con .ui-con .company-brand svg {
    width: 30rem;
  }
}
.is-main-header > div.h-con .ui-con .company-brand #maf-strap {
  color: rgb(52, 53, 53);
  display: inline-block;
  font-family: "Satoshi", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  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-content: center;
  align-items: center;
  background-color: transparent;
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  transition: opacity 300ms ease-out 500ms;
  width: auto;
  z-index: 101;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con .n-con {
    padding: 1rem 3rem;
  }
}
.is-main-header > div.h-con .n-con .phone {
  font-size: 2rem;
  line-height: 1;
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 200;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con .n-con .phone {
    font-size: 2.8rem;
    margin: 0 3rem 0 0;
  }
}
.is-main-header > div.h-con #header-ui {
  align-items: flex-end;
  color: rgb(52, 53, 53);
  display: flex;
  flex-direction: column;
  font-family: "Satoshi", sans-serif;
  font-size: 1.8rem;
  justify-content: flex-end;
  line-height: 0;
  margin: auto 0;
  max-width: 150rem;
  opacity: 1;
  padding: 0;
  position: relative;
  transition: top 300ms ease-out, opacity 600ms ease-out;
  width: auto;
  z-index: 777;
}
@media only screen and (min-width: 1024px) {
  .is-main-header > div.h-con #header-ui {
    padding: 0 2rem 0 0;
  }
}
.is-main-header > div.h-con #header-ui a {
  text-decoration: none;
}
.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 {
  opacity: 1;
  text-align: left;
  transition: all 300ms ease-out;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con #header-ui-alt {
    left: 3rem;
  }
}
.is-main-header > div.h-con #site-nav {
  flex: 0 0 auto;
  flex-direction: row;
  margin: 0;
  padding: 0;
  width: auto;
}
.is-main-header > div.h-con #dash-links {
  display: inline-block;
  flex: 0 0 auto;
  position: relative;
}
.is-main-header > div.h-con #dash-links .button {
  background-color: white;
  border: 4px solid #78073d;
  color: #78073d;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  min-height: 0;
  min-width: 0;
  padding: 1rem;
  position: relative;
  text-transform: none;
  width: 15.3rem;
  z-index: 2;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con #dash-links .button {
    font-size: 2.4rem;
    width: 24rem;
  }
}
.is-main-header > div.h-con #dash-links .button::after, .is-main-header > div.h-con #dash-links .button::before {
  display: none;
}
.is-main-header > div.h-con #dash-links .button:hover, .is-main-header > div.h-con #dash-links .button:focus {
  background-color: #78073d;
  color: white;
}
.is-main-header > div.h-con #dash-links .lilink {
  color: rgb(52, 53, 53);
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 1.5rem;
  overflow: hidden;
  position: relative;
  transition: all 600ms ease-out;
}
@media only screen and (min-width: 768px) {
  .is-main-header > div.h-con #dash-links .lilink {
    font-size: 3rem;
    margin: 0 2.5rem;
  }
}
.is-main-header > div.h-con #dash-links .lilink::before, .is-main-header > div.h-con #dash-links .lilink::after {
  background-color: rgb(52, 53, 53);
  bottom: 0.3rem;
  content: "";
  height: 0.2rem;
  position: absolute;
  transition: left 600ms ease-out;
  width: 100%;
}
.is-main-header > div.h-con #dash-links .lilink::before {
  background-color: #a01759;
  left: calc((100% + 3rem) * -1);
}
.is-main-header > div.h-con #dash-links .lilink::after {
  left: 0;
}
.is-main-header > div.h-con #dash-links .lilink:hover, .is-main-header > div.h-con #dash-links .lilink:focus {
  color: #a01759;
}
.is-main-header > div.h-con #dash-links .lilink:hover::before, .is-main-header > div.h-con #dash-links .lilink:focus::before {
  left: 0;
}
.is-main-header > div.h-con #dash-links .lilink:hover::after, .is-main-header > div.h-con #dash-links .lilink:focus::after {
  left: calc(100% + 3rem);
}
.is-main-header > div.h-con #dash-links .seachlink {
  color: rgb(52, 53, 53);
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 1.5rem;
  overflow: hidden;
  position: relative;
  transition: all 600ms ease-out;
}
@media only screen and (min-width: 768px) {
  .is-main-header > div.h-con #dash-links .seachlink {
    font-size: 3rem;
    margin: 0 2.5rem;
  }
}
.is-main-header > div.h-con #dash-links .seachlink img {
  height: 20px;
  width: 20px;
}
@media only screen and (min-width: 768px) {
  .is-main-header > div.h-con #dash-links .seachlink img {
    height: 30px;
    width: 30px;
  }
}
.is-main-header > div.h-con #dash-links #dash-links-drop {
  background-color: #78073d;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  display: none;
  font-size: 1.6rem;
  left: 0;
  line-height: 1;
  padding: 5rem 1rem 1rem 1rem;
  position: absolute;
  text-align: left;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con #dash-links #dash-links-drop {
    font-size: 2.2rem;
    padding: 6.2rem 1rem 1rem 1rem;
  }
}
.is-main-header > div.h-con #dash-links #dash-links-drop a {
  color: white;
  display: inline-block;
  font-weight: 500;
  outline: none;
  padding: 0.3rem;
  text-decoration: none;
  width: 100%;
}
.is-main-header > div.h-con #dash-links #dash-links-drop a i {
  font-size: 0.8em;
}
.is-main-header > div.h-con #dash-links #dash-links-drop a:hover, .is-main-header > div.h-con #dash-links #dash-links-drop a:focus {
  color: #f55da6;
}
.is-main-header > div.h-con #dash-links:hover .button, .is-main-header > div.h-con #dash-links:focus .button {
  background-color: #78073d;
  color: white;
}
.is-main-header > div.h-con.fs-mm {
  position: static;
}
.is-main-header > div.h-con.fs-mm #header-ui {
  z-index: 1;
}
.is-main-header.squish {
  height: 10rem;
}

section {
  margin: 2.5rem 0;
}
@media only screen and (min-width: 768px) {
  section {
    margin: 5rem 0;
  }
}
section:first-child {
  margin-top: 0;
}
section:last-child {
  margin-bottom: 5rem;
}
@media only screen and (min-width: 768px) {
  section:last-child {
    margin-bottom: 10rem;
  }
}
section .header {
  align-items: flex-start;
}
section .header .maf-content {
  max-width: 116rem;
  padding-top: 0;
  text-align: left;
}
section .header .maf-content.filters {
  max-width: none;
}
section .header .maf-content.filters > div {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
  width: calc(100% + 1.5rem);
}
@media only screen and (min-width: 576px) {
  section .header .maf-content.filters > div {
    margin: 0 -1.5rem;
    width: calc(100% + 3rem);
  }
}
section .header .maf-content.filters > div .button {
  background-color: rgb(238, 238, 238);
  border-radius: 0.5rem;
  color: rgb(52, 53, 53);
  flex: 1 1 0;
  font-size: 1.8rem;
  justify-content: center;
  margin: 0.75rem;
  max-width: calc(50% - 1.5rem);
  min-height: 5rem;
  min-width: calc(50% - 1.5rem);
  padding: 2rem 1.5rem;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  section .header .maf-content.filters > div .button {
    flex: 1 1 0;
    margin: 1.5rem;
    max-width: 25rem;
    min-width: 17rem;
  }
}
section .header .maf-content.filters > div .button::before {
  display: none;
}
section .header .maf-content.filters > div .button:hover, section .header .maf-content.filters > div .button:focus, section .header .maf-content.filters > div .button.active {
  color: white;
  background-color: #78073d;
}
body.maf-pl-1 section .header .maf-content.filters > div .button:hover, body.maf-pl-1 section .header .maf-content.filters > div .button:focus, body.maf-pl-1 section .header .maf-content.filters > div .button.active {
  color: white;
  background-color: #274030;
}
body.maf-pl-3 section .header .maf-content.filters > div .button:hover, body.maf-pl-3 section .header .maf-content.filters > div .button:focus, body.maf-pl-3 section .header .maf-content.filters > div .button.active {
  background-color: #78073d;
}
section.is-hero {
  min-height: 35rem;
  position: relative;
  transition: min-height 300ms ease-out, opacity 300ms ease-out 300ms;
  color: white;
}
section.is-hero .maf-content *:not(.button) {
  color: white;
}
section.is-hero .maf-content a:not(.button) {
  color: #a01759;
}
section.is-hero .maf-content a:not(.button):hover, section.is-hero .maf-content a:not(.button).focus {
  color: white;
}
section.is-hero .maf-content hr {
  border-color: white;
}
section.is-hero #hero-logo {
  display: none;
  margin: auto;
  transition: all 300ms ease-out;
}
section.is-hero #hero-logo p {
  display: inline-block;
}
section.is-hero .row {
  flex-direction: column;
  transition: opacity 300ms ease-out;
}
@media only screen and (min-width: 1024px) {
  section.is-hero .row {
    flex-direction: row;
  }
}
section.is-hero .row > .maf-background, section.is-hero .row > .maf-bg-overlay, section.is-hero .row > .maf-sprite-layer {
  left: 1.5rem;
  max-width: 168rem;
  transform: translate(0, -50%);
  width: 100vw;
}
@media only screen and (min-width: 576px) {
  section.is-hero .row > .maf-background, section.is-hero .row > .maf-bg-overlay, section.is-hero .row > .maf-sprite-layer {
    left: 3rem;
  }
}
section.is-hero .row > .maf-sprite-layer {
  overflow: visible;
  transform: none;
}
section.is-hero .row > .maf-background {
  background-color: #78073d;
}
section.is-hero .row .column {
  justify-content: flex-end;
}
section.is-hero .row .column.maf-col-1 {
  align-items: flex-start;
  text-align: left;
}
section.is-hero .row .column.maf-col-1 .maf-content {
  padding: 0 0 0 1.5rem;
}
@media only screen and (min-width: 576px) {
  section.is-hero .row .column.maf-col-1 .maf-content {
    padding: 0 0 0 8.333%;
  }
}
section.is-hero .row .column.maf-col-2 {
  padding-top: 0;
}
@media only screen and (min-width: 1024px) {
  section.is-hero .row .column.maf-col-2 {
    padding-top: 6rem;
    width: 42%;
  }
}
section.is-hero .row .column.maf-col-2 .maf-content {
  padding: 0 1.5rem;
}
@media only screen and (min-width: 576px) {
  section.is-hero .row .column.maf-col-2 .maf-content {
    padding: 0 3rem;
  }
}
body.manageable-bo section.is-hero > .maf-background {
  margin: 0;
}
body.manageable-bo section.is-hero .row {
  padding-top: 0;
}
section.is-hero.slideshow > .maf-background {
  background-image: none;
}
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 {
  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 {
  opacity: 0.5;
}
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: 150rem;
  padding: 3rem 1.5rem;
  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 {
    padding: 3rem;
  }
}
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(5rem);
  transition: all 600ms 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) {
  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) {
  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) {
  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) {
  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) {
  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) {
  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) {
  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) {
  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) {
  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 > * {
  opacity: 1;
  transform: translateX(0);
}
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 {
    bottom: 10%;
  }
}
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 {
  background-color: white;
}
section.is-hero.article-hero {
  min-height: 0;
}
section.is-hero.article-hero .row > .maf-background {
  background-color: #78073d;
}
section.is-hero.article-hero .row .column .maf-content .pub-date {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
  margin: 5px;
  opacity: 0.5;
}
section.is-hero.article-hero .row .column.maf-col-1 {
  justify-content: center;
}
section.is-hero.article-hero .row .column.maf-col-2 {
  text-align: right;
}
@media only screen and (min-width: 1024px) {
  section.is-hero.article-hero .row .column.maf-col-2 {
    flex: 0 0 auto;
    width: 16.666%;
  }
}
section.is-hero.article-hero .row .column.maf-col-2 .maf-content {
  align-items: flex-end;
  padding-right: 0;
}
@media only screen and (min-width: 1024px) {
  section.is-hero.article-hero .row .column.maf-col-2 .maf-content {
    padding-right: 3rem;
  }
}
section.is-hero.article-hero .row .column.maf-col-2 .maf-content img {
  max-height: 20.9rem;
}
body.is-home section.is-hero .row .column.maf-col-1 .maf-content {
  background-color: rgba(60, 4, 30, 0.7);
  backdrop-filter: blur(5px);
  padding: 6%;
}
body.maf-pl-1 section.is-hero .row > .maf-background {
  background-color: #274030;
}
body.maf-pl-2 section.is-hero .row > .maf-background {
  background-color: #f55da6;
}
body.maf-pl-3 section.is-hero .row > .maf-background {
  background-color: #78073d;
}
body.maf-pl-4 section.is-hero .row > .maf-background {
  background-color: #a01759;
}
body.maf-pl-5 section.is-hero .row > .maf-background {
  background-color: #c5f1b2;
}
body.maf-pl-6 section.is-hero .row > .maf-background {
  background-color: rgb(30, 18, 72);
}
body.maf-pl-7 section.is-hero .row > .maf-background {
  background-color: #a01759;
}
body.maf-pl-8 section.is-hero a:not(.button) {
  color: white;
}
body.maf-pl-8 section.is-hero .row > .maf-background {
  background-color: rgb(187, 186, 232);
}
section.one-column p {
  max-width: 90rem;
}
section.one-column p.h1-style, section.one-column p.h2-style, section.one-column p.h3-style {
  max-width: none;
}
section.one-column p.page-lead {
  max-width: 112rem;
}
section.one-column .row {
  max-width: 144rem;
}
section.one-column .row .column {
  justify-content: center;
  text-align: center;
}
section.one-column .row .column .maf-content {
  align-items: center;
}
section.one-column.brands .row .column {
  padding-top: 1em;
}
section.one-column.brands .row .column .maf-content {
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -2rem;
  width: calc(100% + 4rem);
}
section.one-column.brands .row .column .maf-content p {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.5rem 2rem;
  width: 50%;
}
@media only screen and (min-width: 576px) {
  section.one-column.brands .row .column .maf-content p {
    width: 25%;
  }
}
@media only screen and (min-width: 1280px) {
  section.one-column.brands .row .column .maf-content p {
    width: 12.5%;
  }
}
section.one-column.bg-right .maf-background {
  background-position: right;
}
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 {
  align-items: flex-start;
  max-width: 60rem;
}
section.one-column.bg-left .maf-background {
  background-position: right;
}
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 {
    align-items: flex-end;
  }
}
section.one-column.bg-left .row .column .maf-content {
  align-items: flex-start;
  max-width: 60rem;
}
section.one-column.video .row {
  max-width: none;
  padding: 0;
}
section.one-column.video .row .column {
  padding: 0;
}
section.one-column.video .row .column .maf-content {
  max-width: none;
}
section.one-column.vidpop .row {
  max-width: 150rem;
}
section.one-column.vidpop .row .column {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
section.one-column.left-aligned .row {
  max-width: 150rem;
}
section.one-column.left-aligned .row .column {
  align-items: flex-start;
  padding-top: 0;
  text-align: left;
}
section.one-column.left-aligned .row .column .maf-content {
  align-items: flex-start;
  max-width: 107rem;
}
section.one-column.history {
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  section.one-column.history {
    margin: 4rem 0;
  }
}
section.one-column.history p {
  line-height: 1.2;
  font-size: 2.8rem;
  font-weight: 500;
}
@media only screen and (min-width: 576px) {
  section.one-column.history p {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 768px) {
  section.one-column.history p {
    font-size: 5.5rem;
  }
}
section.one-column.history p.h1-style, section.one-column.history p.h2-style, section.one-column.history p.h3-style {
  font-size: 4rem;
  font-weight: 700;
}
@media only screen and (min-width: 576px) {
  section.one-column.history p.h1-style, section.one-column.history p.h2-style, section.one-column.history p.h3-style {
    font-size: 5.6rem;
  }
}
@media only screen and (min-width: 768px) {
  section.one-column.history p.h1-style, section.one-column.history p.h2-style, section.one-column.history p.h3-style {
    font-size: 7rem;
  }
}
section.one-column.history p.has-img img {
  margin: 0 !important;
}
section.one-column.history h1, section.one-column.history .h1-style, section.one-column.history h2, section.one-column.history .h2-style, section.one-column.history h3, section.one-column.history .h3-style, section.one-column.history h4, section.one-column.history .h4-style, section.one-column.history h5, section.one-column.history .h5-style, section.one-column.history h6, section.one-column.history .h6-style {
  margin-bottom: 0.2em;
}
section.one-column.history .row .column .maf-content {
  max-width: 86rem;
  padding: 5rem 0;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  section.one-column.history .row .column .maf-content {
    padding: 10rem 0;
  }
}
section.one-column.history .row .column .maf-content::before, section.one-column.history .row .column .maf-content::after {
  background-color: #c5f1b2;
  content: "";
  height: 1.5rem;
  left: 50%;
  max-width: 46rem;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}
section.one-column.history .row .column .maf-content::before {
  top: 0;
}
section.one-column.history .row .column .maf-content::after {
  bottom: 0;
}
section.one-column.img-callout p {
  max-width: none;
}
section.one-column.img-callout .row {
  padding: 0;
}
section.one-column.img-callout .row .column {
  padding: 0;
}
section.two-column .row {
  max-width: 144rem;
  padding-top: 4rem;
}
@media only screen and (min-width: 768px) {
  section.two-column .row {
    padding-top: 6rem;
  }
}
section.two-column .row .column {
  padding: 4rem 1.5rem;
  padding-top: 0;
}
@media only screen and (min-width: 960px) {
  section.two-column .row .column {
    padding: 6rem 1.5rem;
    padding-top: 0;
  }
}
section.two-column .row .column {
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  section.two-column .row .column {
    align-items: flex-start;
  }
}
section.two-column .row .column .maf-content {
  align-items: flex-start;
  padding: 0.7rem 0;
}
section.two-column.full-width .row {
  max-width: none;
  padding: 0;
}
section.two-column.maf-col-bg-full {
  max-width: 192rem;
  padding: 0;
}
section.two-column.maf-col-bg-full .row {
  max-width: none;
  padding: 0;
}
section.two-column.maf-col-bg-full .row .column {
  padding: 4rem 1.5rem;
}
@media only screen and (min-width: 960px) {
  section.two-column.maf-col-bg-full .row .column {
    padding: 6rem 1.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full .row .column {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
section.two-column.maf-col-bg-full .row .column.has-bg {
  min-height: 56vw;
  background-color: #78073d;
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full .row .column.has-bg {
    min-height: 60rem;
  }
}
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: 576px) {
  section.two-column.maf-col-bg-full .row .column .maf-col-i {
    padding: 0 1.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full .row .column .maf-col-i {
    max-width: 72rem;
  }
}
@media only screen and (min-width: 1024px) {
  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 {
    align-items: flex-start;
  }
}
section.two-column.maf-col-bg-full.has-bg .row {
  padding-bottom: 4rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full.has-bg .row {
    padding-bottom: 6rem;
  }
}
section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-1 {
  padding-top: 0;
}
section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 {
  color: white;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 > .maf-background {
  background-color: #78073d;
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 .maf-col-i .maf-content {
    max-width: 48.5rem;
  }
}
body.maf-pl-1 section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 > .maf-background {
  background-color: #274030;
}
body.maf-pl-2 section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 > .maf-background {
  background-color: #f55da6;
}
body.maf-pl-3 section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 > .maf-background {
  background-color: #a01759;
}
body.maf-pl-4 section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 > .maf-background {
  background-color: #a01759;
}
body.maf-pl-5 section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 {
  color: rgb(52, 53, 53);
}
body.maf-pl-5 section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 > .maf-background {
  background-color: #c5f1b2;
}
body.maf-pl-6 section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 > .maf-background {
  background-color: rgb(176, 158, 64);
}
body.maf-pl-7 section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 {
  color: rgb(52, 53, 53);
}
body.maf-pl-7 section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 > .maf-background {
  background-color: #a01759;
}
@media only screen and (min-width: 1024px) {
  body.maf-pl-7 section.two-column.maf-col-bg-full.colour-right .row .column.maf-col-2 .maf-col-i .maf-content {
    max-width: 61.3rem;
  }
}
section.two-column.maf-col-bg-full.colour-left .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full.colour-left .row {
    flex-direction: row;
  }
}
section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 {
  color: white;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
  color: white;
}
section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 .maf-content *:not(.button) {
  color: white;
}
section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 .maf-content a:not(.button) {
  color: #a01759;
}
section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 .maf-content a:not(.button):hover, section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 .maf-content a:not(.button).focus {
  color: white;
}
section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 .maf-content hr {
  border-color: white;
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 > .maf-background {
  background-color: #78073d;
}
body.maf-pl-1 section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 > .maf-background {
  background-color: #274030;
}
body.maf-pl-2 section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 > .maf-background {
  background-color: #f55da6;
}
body.maf-pl-3 section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 {
  color: rgb(52, 53, 53);
}
body.maf-pl-3 section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 > .maf-background {
  background-color: #78073d;
}
body.maf-pl-4 section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 > .maf-background {
  background-color: #a01759;
}
body.maf-pl-5 section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 {
  color: rgb(52, 53, 53);
}
body.maf-pl-5 section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 > .maf-background {
  background-color: #c5f1b2;
}
body.maf-pl-6 section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 > .maf-background {
  background-color: rgb(176, 158, 64);
}
body.maf-pl-7 section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 {
  color: rgb(52, 53, 53);
}
body.maf-pl-7 section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 > .maf-background {
  background-color: #a01759;
}
@media only screen and (min-width: 1024px) {
  body.maf-pl-7 section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-1 .maf-col-i .maf-content {
    max-width: 61.3rem;
  }
}
section.two-column.maf-col-bg-full.colour-left .row .column.maf-col-2 {
  padding-top: 0;
}
section.two-column.maf-col-bg-full.grey-right .row .column.maf-col-1 .maf-col-i {
  align-items: flex-start;
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full.grey-right .row .column.maf-col-1 .maf-col-i .maf-content {
    max-width: 58rem;
  }
}
section.two-column.maf-col-bg-full.grey-right .row .column.maf-col-2 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full.grey-right .row .column.maf-col-2 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}
section.two-column.maf-col-bg-full.grey-right .row .column.maf-col-2 > .maf-background {
  background-color: rgb(238, 238, 238);
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full.grey-right .row .column.maf-col-2 .maf-col-i .maf-content {
    max-width: 61rem;
  }
}
section.two-column.maf-col-bg-full.grey-left .row .column.maf-col-1 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full.grey-left .row .column.maf-col-1 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
section.two-column.maf-col-bg-full.grey-left .row .column.maf-col-1 > .maf-background {
  background-color: rgb(238, 238, 238);
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full.grey-left .row .column.maf-col-1 .maf-col-i .maf-content {
    max-width: 48.5rem;
  }
}
body.maf-pl-1 section.two-column.maf-col-bg-full .row .column.has-bg {
  background-color: #274030;
}
body.maf-pl-2 section.two-column.maf-col-bg-full .row .column.has-bg {
  background-color: #f55da6;
}
body.maf-pl-3 section.two-column.maf-col-bg-full .row .column.has-bg {
  background-color: #78073d;
}
body.maf-pl-4 section.two-column.maf-col-bg-full .row .column.has-bg {
  background-color: #a01759;
}
body.maf-pl-5 section.two-column.maf-col-bg-full .row .column.has-bg {
  background-color: #9eba9b;
}
body.maf-pl-6 section.two-column.maf-col-bg-full .row .column.has-bg {
  background-color: rgb(176, 158, 64);
}
body.maf-pl-7 section.two-column.maf-col-bg-full .row .column.has-bg {
  background-color: #a01759;
}
section.two-column.bg-right .row .column.maf-col-2 {
  min-height: 300px;
}
section.two-column.bg-right .row .column.maf-col-2 .maf-background {
  background-position: top right;
  background-size: contain;
}
section.two-column.img-right > .maf-background {
  background-position: bottom center;
  background-size: contain;
}
section.two-column.img-right .row .column {
  justify-content: center;
  padding-bottom: 6rem !important;
}
section.two-column.img-right .row .column.maf-col-1 .maf-content {
  max-width: 56rem;
}
section.two-column.img-left > .maf-background {
  background-position: bottom center;
  background-size: contain;
}
section.two-column.img-left .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  section.two-column.img-left .row {
    flex-direction: row;
  }
}
section.two-column.img-left .row .column {
  justify-content: center;
}
section.two-column.img-left .row .column.maf-col-2 .maf-content {
  max-width: 56rem;
}
section.two-column.maf-rep-pad .row {
  padding: 0;
  padding-top: 4rem;
}
@media only screen and (min-width: 576px) {
  section.two-column.maf-rep-pad .row {
    padding: 0 1.5rem;
    padding-top: 6rem;
  }
}
section.two-column.maf-rep-pad .row .header .maf-content {
  padding-top: 0;
  padding-bottom: 4rem;
}
section.two-column.maf-rep-pad .row .column {
  padding: 4rem 1.5rem;
  padding-top: 0;
}
@media only screen and (min-width: 960px) {
  section.two-column.maf-rep-pad .row .column {
    padding: 6rem 1.5rem;
    padding-top: 0;
  }
}
section.two-column.has-bg .row {
  max-width: 150rem;
}
section.two-column.has-bg .row > .maf-background, section.two-column.has-bg .row > .maf-bg-overlay {
  left: auto;
  max-width: 168rem;
  right: 3rem;
  transform: translate(0, -50%);
  width: 100vw;
}
section.two-column.has-bg .row .column .maf-content {
  padding-right: 3rem;
}
section.two-column.vidpop .row {
  padding: 0;
}
@media only screen and (min-width: 576px) {
  section.two-column.vidpop .row {
    padding: 0 1.5rem;
  }
}
section.two-column.vidpop .row {
  flex-direction: column-reverse;
  max-width: 150rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.vidpop .row {
    flex-direction: row;
  }
}
section.two-column.vidpop .row .column {
  padding: 4rem 1.5rem;
}
@media only screen and (min-width: 960px) {
  section.two-column.vidpop .row .column {
    padding: 6rem 1.5rem;
  }
}
section.two-column.vidpop .row .column {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
section.two-column.vidpop .row .column .maf-content {
  padding: 0;
}
section.two-column.vidpop .row .column .maf-content.video {
  height: 100%;
}
section.two-column.vidpop .row .column .maf-content.video .vid-pop {
  height: 100%;
}
section.two-column.vidpop .row .column.maf-col-1 {
  padding-top: 1em !important;
}
@media only screen and (min-width: 1024px) {
  section.two-column.vidpop .row .column.maf-col-1 {
    padding-top: 0 !important;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.vidpop.row-rev .row {
    flex-direction: row-reverse;
  }
}
section.two-column.vidpop.has-colour .row {
  max-width: 150rem;
  padding: 0;
}
@media only screen and (min-width: 576px) {
  section.two-column.vidpop.has-colour .row {
    padding: 0 1.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.vidpop.has-colour .row {
    padding: 0 3rem;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.vidpop.has-colour .row .column {
    padding-right: 0;
    padding-left: 0;
  }
}
section.two-column.vidpop.has-colour .row .column.maf-col-1 {
  padding-top: 0 !important;
}
section.two-column.vidpop.has-colour .row .column.maf-col-2 .maf-content {
  padding: 3rem 1.5rem;
}
@media only screen and (min-width: 576px) {
  section.two-column.vidpop.has-colour .row .column.maf-col-2 .maf-content {
    padding: 3rem 3rem;
  }
}
section.two-column.callout p.has-img {
  text-align: left;
}
section.two-column.callout .row {
  max-width: 150rem;
  padding-top: 4rem;
}
section.two-column.callout .row > .maf-background, section.two-column.callout .row > .maf-bg-overlay {
  background-position: top right;
  background-size: contain;
  left: auto;
  max-width: 168rem;
  right: 1.5rem;
  transform: translate(0, -50%);
  width: 100vw;
}
@media only screen and (min-width: 576px) {
  section.two-column.callout .row > .maf-background, section.two-column.callout .row > .maf-bg-overlay {
    right: 3rem;
  }
}
section.two-column.callout .row .column {
  padding-bottom: 4rem;
}
section.two-column.callout .row .column .maf-content {
  padding-right: 3rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout .row .column.maf-col-2 {
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
  }
}
section.two-column.callout .row .column.maf-col-2 .maf-content {
  align-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
}
section.two-column.callout .row .column.maf-col-2 .maf-content > * {
  flex: 1 1 auto;
  margin: 0 3rem 0 0;
  width: auto;
}
section.two-column.callout.member {
  color: white;
}
section.two-column.callout.member .maf-content *:not(.button) {
  color: white;
}
section.two-column.callout.member .maf-content a:not(.button) {
  color: #a01759;
}
section.two-column.callout.member .maf-content a:not(.button):hover, section.two-column.callout.member .maf-content a:not(.button).focus {
  color: white;
}
section.two-column.callout.member .maf-content hr {
  border-color: white;
}
section.two-column.callout.member .row {
  padding-top: 10rem;
}
section.two-column.callout.member .row > .maf-background {
  background-color: #a01759;
  background-position: top right;
  background-size: contain;
}
section.two-column.callout.member .row .column {
  padding-bottom: 10rem;
}
section.two-column.callout.member .row .column.maf-col-2 .maf-content {
  padding-right: 16.667%;
}
section.two-column.callout.award {
  color: white;
}
section.two-column.callout.award p.has-img {
  text-align: inherit;
}
section.two-column.callout.award .row {
  padding-top: 5rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout.award .row {
    padding-top: 10rem;
  }
}
section.two-column.callout.award .row > .maf-background {
  background-color: rgb(30, 18, 72);
}
section.two-column.callout.award .row .column {
  padding-bottom: 5rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout.award .row .column {
    padding-bottom: 10rem;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout.award .row .column.maf-col-2 {
    width: 46%;
  }
}
section.two-column.quote {
  color: white;
}
section.two-column.quote .row {
  max-width: 150rem;
}
@media only screen and (min-width: 576px) {
  section.two-column.quote .row {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}
section.two-column.quote .row > .maf-background, section.two-column.quote .row > .maf-bg-overlay {
  left: auto;
  max-width: 168rem;
  right: 3rem;
  transform: translate(0, -50%);
  width: 100vw;
}
section.two-column.quote .row > .maf-background {
  background-color: #78073d;
}
body.maf-pl-1 section.two-column.quote .row > .maf-background {
  background-color: #274030;
}
body.maf-pl-1 section.two-column.quote .row > .maf-bg-overlay {
  background-color: #274030;
}
body.maf-pl-2 section.two-column.quote .row > .maf-background {
  background-color: #f55da6;
}
body.maf-pl-2 section.two-column.quote .row > .maf-bg-overlay {
  background-color: #a01759;
}
body.maf-pl-3 section.two-column.quote .row > .maf-background {
  background-color: #a01759;
}
body.maf-pl-3 section.two-column.quote .row > .maf-bg-overlay {
  background-color: #f55da6;
}
body.maf-pl-4 section.two-column.quote .row > .maf-background {
  background-color: #a01759;
}
body.maf-pl-4 section.two-column.quote .row > .maf-bg-overlay {
  background-color: #a01759;
}
body.maf-pl-5 section.two-column.quote .row > .maf-background {
  background-color: #c5f1b2;
}
body.maf-pl-5 section.two-column.quote .row > .maf-bg-overlay {
  background-color: #9eba9b;
}
body.maf-pl-6 section.two-column.quote .row > .maf-background {
  background-color: rgb(30, 18, 72);
}
body.maf-pl-6 section.two-column.quote .row > .maf-bg-overlay {
  background-color: rgb(176, 158, 64);
}
body.maf-pl-7 section.two-column.quote .row > .maf-background {
  background-color: #a01759;
}
body.maf-pl-7 section.two-column.quote .row > .maf-bg-overlay {
  background-color: #a01759;
}
section.two-column.quote .row .column {
  justify-content: flex-start;
}
section.two-column.quote .row .column .maf-content {
  padding-right: 3rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.quote .row .column.maf-col-1 {
    max-width: 47.5rem;
  }
  section.two-column.quote .row .column.maf-col-1 .maf-content {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.quote .row .column.maf-col-2 .maf-content {
    max-width: 73.5rem;
  }
}
section.two-column.callout-h {
  color: white;
}
section.two-column.callout-h .row {
  padding-top: 8rem;
  padding-bottom: 7rem;
}
section.two-column.callout-h .row > .maf-background, section.two-column.callout-h .row > .maf-bg-overlay {
  left: 0;
  max-width: 168rem;
  transform: translate(0, -50%);
  width: 100vw;
}
section.two-column.callout-h .row > .maf-background {
  background-color: #78073d;
  background-position: top right;
  background-size: contain;
}
body.maf-pl-1 section.two-column.callout-h .row > .maf-background {
  background-color: #274030;
}
body.maf-pl-2 section.two-column.callout-h .row > .maf-background {
  background-color: #f55da6;
}
body.maf-pl-3 section.two-column.callout-h .row > .maf-background {
  background-color: #a01759;
}
body.maf-pl-4 section.two-column.callout-h .row > .maf-background {
  background-color: #a01759;
}
body.maf-pl-5 section.two-column.callout-h .row > .maf-background {
  background-color: #c5f1b2;
}
body.maf-pl-6 section.two-column.callout-h .row > .maf-background {
  background-color: rgb(176, 158, 64);
}
body.maf-pl-7 section.two-column.callout-h .row > .maf-background {
  background-color: #a01759;
}
section.two-column.callout-h .row .header .maf-content {
  align-items: flex-start;
  padding-bottom: 3rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout-h .row .header .maf-content {
    padding-left: calc(8.333% - 6rem);
  }
}
section.two-column.callout-h .row .header .maf-content > * {
  max-width: 76.6rem;
}
section.two-column.callout-h .row .column {
  justify-content: flex-start;
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout-h .row .column {
    padding-left: calc(8.333% - 6rem);
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout-h .row .column.maf-col-1 {
    max-width: calc(45rem + 8.333%);
  }
}
section.two-column.callout-h .row .column.maf-col-2 {
  padding-left: 1.5rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout-h .row .column.maf-col-2 .maf-content {
    max-width: 58.3rem;
  }
}
section.two-column.callout-h.patrons {
  color: white;
}
section.two-column.callout-h.patrons .row > .maf-background {
  background-color: #f55da6;
}
section.two-column.callout-h.patrons .row .header .maf-content > * {
  max-width: none;
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout-h.patrons .row .column.maf-col-1 {
    max-width: calc(41rem + 8.333%);
  }
}
section.two-column.callout-h.patrons .row .column.maf-col-2 .maf-content {
  max-width: none;
}
section.two-column.callout-member-sm {
  background-color: #a01759;
  max-width: 160rem;
}
section.two-column.callout-member-sm .row {
  max-width: 150rem;
  position: static;
}
section.two-column.callout-member-sm .row > .maf-background {
  background-position: bottom right;
  background-size: contain;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  width: 100%;
}
section.two-column.callout-member-sm .row .column {
  justify-content: flex-end;
}
section.two-column.history {
  margin: 0 0 3rem 0;
  max-width: 192rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.history {
    margin: 0;
  }
}
section.two-column.history p {
  line-height: 1.2;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  section.two-column.history p {
    font-size: 3rem;
  }
}
section.two-column.history p.h1-style, section.two-column.history p.h2-style, section.two-column.history p.h3-style {
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (min-width: 576px) {
  section.two-column.history p.h1-style, section.two-column.history p.h2-style, section.two-column.history p.h3-style {
    font-size: 4.6rem;
  }
}
@media only screen and (min-width: 768px) {
  section.two-column.history p.h1-style, section.two-column.history p.h2-style, section.two-column.history p.h3-style {
    font-size: 6rem;
  }
}
section.two-column.history p.has-img img {
  margin: 0 !important;
}
section.two-column.history h1, section.two-column.history .h1-style, section.two-column.history h2, section.two-column.history .h2-style, section.two-column.history h3, section.two-column.history .h3-style, section.two-column.history h4, section.two-column.history .h4-style, section.two-column.history h5, section.two-column.history .h5-style, section.two-column.history h6, section.two-column.history .h6-style {
  margin-bottom: 0.2em;
}
section.two-column.history .row {
  align-content: center;
  align-items: center;
  max-width: 150rem;
  padding-top: 0;
}
section.two-column.history .row .column .maf-content {
  padding: 0;
}
section.two-column.history.h-i-l .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  section.two-column.history.h-i-l .row {
    flex-direction: row;
  }
}
section.two-column.history.h-i-l .row .column.maf-col-1 {
  flex: 0 0 auto;
  padding-bottom: 0;
  width: auto;
}
@media only screen and (min-width: 1024px) {
  section.two-column.history.h-i-l .row .column.maf-col-1 {
    max-width: 50%;
    padding-right: 0;
  }
}
section.two-column.history.h-i-l .row .column.maf-col-2 {
  background-color: #c5f1b2;
  margin-bottom: 5rem;
  padding-top: 3rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.history.h-i-l .row .column.maf-col-2 {
    margin-bottom: 10rem;
    padding: 4.167%;
  }
}
section.two-column.history.h-i-l .row .column.maf-col-2::after {
  background-color: #c5f1b2;
  content: "";
  height: 100%;
  left: 100%;
  position: absolute;
  top: 0;
  width: 100vw;
}
section.two-column.history.h-i-l .row .column.maf-col-2 .maf-content {
  padding-right: 1.5rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.history.h-i-l .row .column.maf-col-2 .maf-content {
    padding-right: 0;
  }
}
section.two-column.history.h-i-l.center .row .column.maf-col-2 {
  margin-bottom: 0;
}
section.two-column.history.h-i-r .row .column.maf-col-1 {
  background-color: #c5f1b2;
  padding-top: 3rem;
  text-align: right;
}
@media only screen and (min-width: 1024px) {
  section.two-column.history.h-i-r .row .column.maf-col-1 {
    margin-top: 10rem;
    padding: 4.167%;
  }
}
section.two-column.history.h-i-r .row .column.maf-col-1::after {
  background-color: #c5f1b2;
  content: "";
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  width: 100vw;
}
section.two-column.history.h-i-r .row .column.maf-col-1 .maf-content {
  padding-right: 1.5rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.history.h-i-r .row .column.maf-col-1 .maf-content {
    padding-right: 0;
  }
}
section.two-column.history.h-i-r .row .column.maf-col-2 {
  flex: 0 0 auto;
  padding-bottom: 0;
  width: auto;
}
@media only screen and (min-width: 1024px) {
  section.two-column.history.h-i-r .row .column.maf-col-2 {
    max-width: 50%;
    padding-left: 0;
  }
}
section.two-column.history.h-i-r.center .row .column.maf-col-1 {
  margin-top: 0;
}
section.two-column.history:last-child {
  margin-bottom: 5rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.history:last-child {
    margin-bottom: 10rem;
  }
}
section.two-column.history.animate .maf-content, section.two-column.history.animate .insta-feed, section.two-column.history.animate .cardbox .card, section.two-column.history.animate .column, section.two-column.history.animate .row::after {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0);
  transition: all 1200ms ease-in-out;
}
section.two-column.history.animate .row .column {
  opacity: 0;
  transition: all 1200ms ease-in-out;
}
section.two-column.history.animate .row .column.maf-col-1 {
  transform: translateX(-100vw);
}
section.two-column.history.animate .row .column.maf-col-2 {
  transform: translateX(100vw);
}
section.two-column.history.animate.anim-1 .row .column {
  opacity: 1;
  transition: all 1200ms ease-in-out;
}
section.two-column.history.animate.anim-1 .row .column.maf-col-1 {
  transform: translateX(0);
}
section.two-column.history.animate.anim-1 .row .column.maf-col-2 {
  transform: translateX(0);
}
section.two-column.mem-ev-call {
  margin: 0;
}
section.two-column.mem-ev-call .row {
  color: #274030;
  max-width: 150rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.mem-ev-call .row {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.mem-ev-call .row .column.maf-col-1 .maf-content {
    max-width: 70rem;
  }
}
section.two-column.mem-ev-call .row .column.maf-col-2 {
  color: rgb(52, 53, 53);
}
section.two-column.mem-func {
  margin: 0;
}
section.two-column.mem-func .row {
  max-width: 150rem;
}
section.two-column.mem-func .row .column .maf-content {
  padding: 3rem;
}
section.two-column.mem-func .row .column .maf-content::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
section.two-column.mem-func .row .column.maf-col-1 {
  color: white;
}
section.two-column.mem-func .row .column.maf-col-1 h2 span {
  font-size: 0.9em;
}
section.two-column.mem-func .row .column.maf-col-1 .maf-content {
  background-color: #a01759;
  position: relative;
}
section.two-column.mem-func .row .column.maf-col-2 .maf-content {
  background-color: #c5f1b2;
}
section.two-column.provide-img-left {
  margin: 0;
}
section.two-column.provide-img-left .row {
  flex-direction: column-reverse;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media only screen and (min-width: 1024px) {
  section.two-column.provide-img-left .row {
    flex-direction: row;
  }
}
section.two-column.provide-img-left .row .column.maf-col-1 .maf-content {
  padding-right: 5%;
}
section.two-column.provide-img-left .row .column.maf-col-1 .maf-content::before {
  background-color: black;
  border-radius: 0 10rem 10rem 0;
  content: "";
  height: 90%;
  max-height: 38rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 100vw;
  z-index: -1;
}
section.two-column.provide-img-left .row .column.maf-col-2 .maf-content {
  max-width: 50rem;
}
section.two-column.provide-img-right {
  margin: 0;
}
section.two-column.provide-img-right .row {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
section.two-column.provide-img-right .row .column.maf-col-1 .maf-content {
  max-width: 50rem;
}
section.two-column.provide-img-right .row .column.maf-col-2 .maf-content {
  padding-left: 5%;
}
section.two-column.provide-img-right .row .column.maf-col-2 .maf-content::before {
  background-color: black;
  border-radius: 10rem 0 0 10rem;
  content: "";
  height: 90%;
  left: 0;
  max-height: 40rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100vw;
  z-index: -1;
}
section.three-column .header .maf-content {
  max-width: 95rem;
}
section.three-column .row {
  padding: 0;
  padding-top: 4rem;
}
@media only screen and (min-width: 576px) {
  section.three-column .row {
    padding: 0 1.5rem;
    padding-top: 6rem;
  }
}
section.three-column .row .header .maf-content {
  padding-top: 0;
  padding-bottom: 4rem;
}
section.three-column .row .column {
  padding: 4rem 1.5rem;
  padding-top: 0;
}
@media only screen and (min-width: 960px) {
  section.three-column .row .column {
    padding: 6rem 1.5rem;
    padding-top: 0;
  }
}
section.divider .row {
  max-width: 150rem;
}
section.page-content-section .is-simple-gallery {
  margin-bottom: 20px;
}
section.page-content-section .is-simple-gallery figure figcaption {
  display: none;
}
section.page-content-section div.cardbox article.card {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.page-content-section div.cardbox article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  section.page-content-section div.cardbox article.card {
    width: 100%;
  }
}
section.page-content-section .row {
  padding: 0;
  padding-top: 4rem;
}
@media only screen and (min-width: 576px) {
  section.page-content-section .row {
    padding: 0 1.5rem;
    padding-top: 6rem;
  }
}
section.page-content-section .row .header .maf-content {
  padding-top: 0;
  padding-bottom: 4rem;
}
section.page-content-section .row .column {
  align-items: center;
  padding: 4rem 1.5rem;
  padding-top: 0;
}
@media only screen and (min-width: 960px) {
  section.page-content-section .row .column {
    padding: 6rem 1.5rem;
    padding-top: 0;
  }
}
section.page-content-section .row .column {
  text-align: left;
}
section.page-content-section .row .column .maf-content {
  max-width: 90rem;
}
@media only screen and (min-width: 1024px) {
  section.page-content-section .row .column.maf-col-2 {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1024px) {
  section.page-content-section .row .column.maf-col-2 .cardbox {
    max-width: 366px;
  }
}
section.page-content-section.maf-h-h .row .column {
  padding-top: 1em;
}
section.blog-section div.cardbox article.card {
  --card-colour: #78073d;
  --card-accent: #a01759;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.blog-section div.cardbox article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  section.blog-section div.cardbox article.card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1152px) {
  section.blog-section div.cardbox article.card {
    width: 25%;
  }
}
section.blog-section div.cardbox article.card .portal-item .portal-content {
  padding-top: 1rem;
}
section.blog-section div.cardbox article.card .portal-item .portal-content .card-cats {
  color: var(--card-colour);
}
section.blog-section div.cardbox article.card .portal-item .portal-content .title {
  border: 0;
  color: rgb(52, 53, 53);
  font-size: 2.4rem;
  margin: 2.5rem 0 0.2em 0;
  min-height: 0;
  padding: 0;
  transition: all 300ms ease-out;
}
section.blog-section div.cardbox article.card .portal-item .portal-content .date {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: auto;
  padding-bottom: 1rem;
}
section.blog-section div.cardbox article.card .portal-item .portal-content .desc {
  font-size: 1.6rem;
  font-weight: 500;
}
section.blog-section div.cardbox article.card .portal-item .portal-content .button {
  display: none;
}
section.blog-section div.cardbox article.card .portal-item:hover .portal-content .title, section.blog-section div.cardbox article.card .portal-item:focus .portal-content .title {
  color: var(--card-colour);
}
section.blog-section.is-hero .row > .maf-background {
  background-color: #78073d;
}
section.blog-section.blog-top-level .header {
  padding-bottom: 3rem;
}
section.blog-section.blog-top-level .header .maf-content {
  max-width: none;
}
section.blog-section.blog-top-level .row {
  padding-top: 0;
}
section.blog-section.blog-top-level .row .column {
  padding-top: 0;
}
section.blog-section.blog-top-level .row .column .maf-content.search {
  background-color: #78073d;
  margin-bottom: 3rem;
  padding: 1.5rem;
}
section.blog-section.blog-highlight div.blog-feed article.blog-summary {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.blog-section.blog-highlight div.blog-feed article.blog-summary {
    width: 50%;
  }
}
@media only screen and (min-width: 1280px) {
  section.blog-section.blog-highlight div.blog-feed article.blog-summary {
    width: 25%;
  }
}
section.blog-section.blog-highlight .header .maf-content {
  padding-top: 0;
}
section.blog-section.blog-highlight .header .maf-content p {
  max-width: 800px;
}
section.blog-section.blog-highlight .row .column .maf-content.sub-title, section.blog-section.blog-highlight .row .column .maf-content.lead-article {
  padding: 45px 0;
}
section.blog-section.blog-highlight .row .column .maf-content.sub-title h1::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title .h1-style::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title h2::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title .h2-style::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title h3::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title .h3-style::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title h4::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title .h4-style::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title h5::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title .h5-style::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title h6.h6-style::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article h1::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article .h1-style::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article h2::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article .h2-style::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article h3::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article .h3-style::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article h4::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article .h4-style::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article h5::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article .h5-style::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article h6.h6-style::after {
  background-color: white;
}
section.blog-section.blog-highlight .row .column .maf-content.sub-title p, section.blog-section.blog-highlight .row .column .maf-content.lead-article p {
  max-width: 510px;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article {
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article .col {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  width: 50%;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article .col > div {
  align-items: center;
  display: flex;
  flex-direction: column;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article .col.col1 {
  padding: 0 1.5rem;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article .col.col1 > div {
  align-items: flex-end;
  max-width: 450px;
  text-align: right;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article .col.col1 > div h2::after {
  width: 100%;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article .col.col2 img {
  border: clamp(10px, 0.8125vw, 30px) white solid;
}
section.blog-section.blog-highlight.maf-h-h .row .column.maf-col-1 {
  padding-top: 40px;
}
section.blog-section.blog-detail .blog-title {
  border-top: 1.5rem solid #a01759;
  color: #78073d;
  font-size: 3.6rem;
  margin-bottom: 0.1em;
  padding-top: 5rem;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-detail .blog-title {
    font-size: 4.8rem;
  }
}
section.blog-section.blog-detail .pub-date {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1em;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-detail .pub-date {
    font-size: 2.4rem;
  }
}
section.blog-section.blog-detail .blog-bar {
  border-top: 1px solid #c5f1b2;
  border-bottom: 1px solid #c5f1b2;
  display: flex;
  margin: 20px 0;
  padding: 20px 0;
  text-align: left;
  width: 100%;
}
section.blog-section.blog-detail .blog-bar > div {
  display: inline-block;
  flex: 1 1 auto;
}
section.blog-section.blog-detail .blog-bar > div p {
  margin: 0;
}
section.blog-section.blog-detail .blog-bar > div p span, section.blog-section.blog-detail .blog-bar > div p strong, section.blog-section.blog-detail .blog-bar > div p a {
  margin-right: 1%;
}
section.blog-section.blog-detail .blog-bar > div p strong {
  color: #78073d;
}
section.blog-section.blog-detail .blog-bar > div p a:hover, section.blog-section.blog-detail .blog-bar > div p a:focus {
  color: #78073d;
}
section.blog-section.blog-detail .blog-bar > div.date {
  font-family: "Satoshi", sans-serif;
  opacity: 0.8;
}
section.blog-section.blog-detail .blog-bar > div.share {
  text-align: right;
}
section.blog-section.blog-detail .blog-bar > div.share p > *:last-child {
  margin-right: 0;
}
section.blog-section.blog-detail .cat-bar {
  display: none;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: left;
  width: 100%;
}
section.blog-section.blog-detail .cat-bar span {
  margin: 0 5px;
}
section.blog-section.blog-detail .cat-bar span:first-child {
  margin-left: 0;
}
section.blog-section.blog-detail .blog-body {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  margin-top: 2rem;
  width: 100%;
  text-align: left;
}
section.blog-section.blog-detail .blog-body > p {
  font-weight: 500;
}
section.blog-section.blog-detail .blog-body > p:first-of-type, section.blog-section.blog-detail .blog-body > p.page-lead {
  font-size: 2.4rem;
  font-weight: 700;
}
section.blog-section.blog-detail .blog-body > p.h1-style {
  font-size: 4.8rem;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-detail .blog-body > p.h1-style {
    font-size: 6.2rem;
  }
}
@media only screen and (min-width: 768px) {
  section.blog-section.blog-detail .blog-body > p.h1-style {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1024px) {
  section.blog-section.blog-detail .blog-body > p.h1-style {
    font-size: 6.2rem;
  }
}
@media only screen and (min-width: 1152px) {
  section.blog-section.blog-detail .blog-body > p.h1-style {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1280px) {
  section.blog-section.blog-detail .blog-body > p.h1-style {
    font-size: 10rem;
  }
}
section.blog-section.blog-detail .blog-body > p.h1-style {
  text-transform: none;
}
section.blog-section.blog-detail .blog-body > p.h2-style {
  font-size: 4.8rem;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-detail .blog-body > p.h2-style {
    font-size: 6.2rem;
  }
}
@media only screen and (min-width: 768px) {
  section.blog-section.blog-detail .blog-body > p.h2-style {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1024px) {
  section.blog-section.blog-detail .blog-body > p.h2-style {
    font-size: 6.2rem;
  }
}
@media only screen and (min-width: 1152px) {
  section.blog-section.blog-detail .blog-body > p.h2-style {
    font-size: 8rem;
  }
}
section.blog-section.blog-detail .blog-body > p.h3-style {
  font-size: 3.6rem;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-detail .blog-body > p.h3-style {
    font-size: 4.6rem;
  }
}
@media only screen and (min-width: 768px) {
  section.blog-section.blog-detail .blog-body > p.h3-style {
    font-size: 6.2rem;
  }
}
section.blog-section.blog-detail .blog-body > p.h4-style {
  font-size: 3.2rem;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-detail .blog-body > p.h4-style {
    font-size: 4rem;
  }
}
section.blog-section.blog-detail .blog-body > p.h5-style {
  font-size: 2.8rem;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-detail .blog-body > p.h5-style {
    font-size: 3.6rem;
  }
}
section.blog-section.blog-detail .blog-body > p.h6-style {
  font-size: 2.4rem;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-detail .blog-body > p.h6-style {
    font-size: 2.8rem;
  }
}
section.blog-section.blog-detail .blog-body > p.h6-style {
  color: rgb(52, 53, 53);
}
section.blog-section.blog-detail .main-img {
  margin-bottom: 4rem;
}
section.blog-section.blog-detail .is-faq {
  width: 100%;
}
section.blog-section.blog-detail .is-faq dl {
  font-size: 1.8rem;
}
section.blog-section.blog-detail .is-faq dl dt {
  font-size: 2.4rem;
  padding-left: 1.5rem;
}
section.blog-section.blog-detail .is-faq dl dt::before {
  border-width: 0.3rem;
  height: 1.2rem;
  width: 1.2rem;
}
section.blog-section.blog-detail .is-faq dl dd {
  padding-left: 1.5rem;
}
section.blog-section.blog-detail .button.back {
  margin-top: 5rem;
}
section.blog-section.blog-detail .header .maf-content .head-img {
  margin-bottom: 3rem;
  width: 100%;
}
section.blog-section.blog-detail .header .maf-content .head-img img {
  width: 100%;
}
section.blog-section.blog-detail .header .maf-content p.attr time, section.blog-section.blog-detail .header .maf-content p.attr span {
  border-right: 1px solid rgb(52, 53, 53);
  line-height: 1;
  padding-right: 20px;
  margin-right: 20px;
}
section.blog-section.blog-detail .header .maf-content p.attr time:last-child, section.blog-section.blog-detail .header .maf-content p.attr span:last-child {
  border: 0;
  padding-right: 0;
  margin-right: 0;
}
section.blog-section.blog-detail .row .column {
  padding-top: 0;
  text-align: left;
}
section.blog-section.blog-detail .row .column.maf-col-1 {
  max-width: 98rem;
}
section.blog-section.assoc {
  overflow: visible;
  z-index: 0;
}
section.blog-event-section div.cardbox {
  justify-content: center;
}
section.blog-event-section div.cardbox article.card {
  flex: 0 1 285px;
  width: auto;
}
section.job-section div.cardbox article.card {
  --card-colour: #274030;
  --card-accent: #f55da6;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.job-section div.cardbox article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  section.job-section div.cardbox article.card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1152px) {
  section.job-section div.cardbox article.card {
    width: 25%;
  }
}
section.job-section div.cardbox article.card .portal-item .portal-content {
  border: 0;
  padding: 0;
}
section.job-section div.cardbox article.card .portal-item .portal-content .title {
  border: 0;
  font-size: 3rem;
  margin: 0;
  min-height: 0;
  padding: 0;
}
section.job-section div.cardbox article.card .portal-item .portal-content .attr .org {
  color: var(--card-accent);
  font-size: 2rem;
  font-weight: 700;
}
section.job-section div.cardbox article.card .portal-item .portal-content .desc {
  border-top: 0.1rem solid var(--card-accent);
  padding-top: 2.5rem;
}
section.job-section div.cardbox article.card .portal-item .portal-content .desc > span {
  display: inline-block;
  padding: 0.3rem 0;
  width: 100%;
}
section.job-section div.cardbox article.card .portal-item .portal-content .desc > span strong {
  margin-right: 0.3rem;
}
section.job-section div.cardbox article.card .portal-item .portal-content .desc.boxed {
  background-color: rgb(238, 238, 238);
  border: 0;
  margin-bottom: 2rem;
  padding: 1rem;
}
section.job-section div.cardbox article.card .portal-item .portal-content .button {
  color: var(--card-accent);
}
section.job-section.is-hero .row .maf-background {
  background-color: #274030;
}
section.job-section.job-top-level .row .column {
  padding-top: 0;
}
section.job-section.job-highlight div.cardbox article.card {
  --card-colour: #274030;
  --card-accent: #f55da6;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.job-section.job-highlight div.cardbox article.card {
    width: 50%;
  }
}
section.job-section.job-highlight h2 {
  color: #274030;
  text-align: left;
  padding-bottom: 1rem;
}
section.job-section.job-highlight .row .column.maf-col-1 .maf-content {
  padding-bottom: 3rem;
}
section.job-section.job-highlight .row .column.maf-col-2 .maf-col-i {
  justify-content: flex-end;
}
section.job-section.job-highlight .row .column.maf-col-2 p {
  line-height: 1;
}
section.job-section.job-highlight .row .column.maf-col-2 a {
  color: white;
  text-decoration: none;
}
section.job-section.job-highlight .row .column.maf-col-2 a:hover, section.job-section.job-highlight .row .column.maf-col-2 a:focus {
  color: #f55da6;
}
section.job-section.job-cat-highlight h2 {
  color: #274030;
  text-align: left;
  padding-bottom: 1rem;
}
section.job-section.job-cat-highlight .button {
  background-color: #274030;
}
section.job-section.job-cat-highlight .button::before {
  background-color: #f55da6;
}
section.job-section.job-cat-highlight .row .column {
  padding-top: 0;
  padding-bottom: 0;
}
section.job-section.job-detail .job-title {
  font-size: 3.2rem;
}
@media only screen and (min-width: 576px) {
  section.job-section.job-detail .job-title {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 768px) {
  section.job-section.job-detail .job-title {
    font-size: 4.8rem;
  }
}
section.job-section.job-detail .job-title .name {
  color: #274030;
}
section.job-section.job-detail .job-body {
  font-size: 1.8rem;
  font-weight: 500;
  width: 100%;
}
section.job-section.job-detail .job-body > p:first-child {
  font-size: 2.4rem;
  font-weight: 700;
}
section.job-section.job-detail button {
  background-color: #274030;
}
section.job-section.job-detail button::before {
  background-color: #f55da6;
}
section.job-section.job-detail .detail {
  font-weight: 700;
  line-height: 1.2;
}
section.job-section.job-detail .detail strong, section.job-section.job-detail .detail span {
  display: inline-block;
  width: 100%;
}
section.job-section.job-detail .detail strong {
  color: #274030;
}
section.job-section.job-detail .detail span {
  font-size: 1.9rem;
}
section.job-section.job-detail .header .maf-content {
  max-width: none;
  padding-bottom: 5rem;
}
section.job-section.job-detail .row .column {
  padding: 4rem 1.5rem;
  padding-top: 0;
}
@media only screen and (min-width: 960px) {
  section.job-section.job-detail .row .column {
    padding: 6rem 1.5rem;
    padding-top: 0;
  }
}
section.job-section.job-detail .row .column.maf-col-2 .maf-content {
  background-color: rgb(238, 238, 238);
  padding: 10%;
}
section.job-section.job-detail .footer {
  text-align: left;
}
section.resource-section div.cardbox article.card {
  --card-colour: #274030;
  --card-accent: #f55da6;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.resource-section div.cardbox article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  section.resource-section div.cardbox article.card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1152px) {
  section.resource-section div.cardbox article.card {
    width: 25%;
  }
}
section.resource-section div.cardbox article.card .portal-item .portal-content {
  border-top: 1.5rem solid var(--card-colour);
  padding-top: 1rem;
}
section.resource-section div.cardbox article.card .portal-item .portal-content .card-cats {
  color: var(--card-accent);
}
section.resource-section div.cardbox article.card .portal-item .portal-content .title {
  border: 0;
  color: var(--card-colour);
  font-size: 2.8rem;
  margin: 2.5rem 0;
  min-height: 5.6rem;
  padding: 0;
  transition: all 300ms ease-out;
}
section.resource-section div.cardbox article.card .portal-item .portal-content .date {
  font-weight: 700;
  margin-bottom: auto;
  padding-bottom: 1rem;
}
section.resource-section div.cardbox article.card .portal-item .portal-content .desc {
  border-top: 0.1rem solid var(--card-accent);
  font-size: 1.6rem;
  font-weight: 500;
  padding-top: 1rem;
}
section.resource-section div.cardbox article.card .portal-item .portal-content .button {
  color: var(--card-accent);
}
section.resource-section div.cardbox article.card .portal-item .portal-content .price {
  background-color: var(--card-colour);
  color: white;
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 1rem;
  padding: 1.5rem 3rem;
  width: 100%;
}
section.resource-section div.cardbox article.card .portal-item:hover .portal-content .title, section.resource-section div.cardbox article.card .portal-item:focus .portal-content .title {
  color: var(--card-accent);
}
section.resource-section div.cardbox.featured article.card {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.resource-section div.cardbox.featured article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  section.resource-section div.cardbox.featured article.card .portal-item .portal-content .card-cats {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 960px) {
  section.resource-section div.cardbox.featured article.card .portal-item .portal-content .title {
    font-size: 4.2rem;
    min-height: 8.4rem;
  }
}
@media only screen and (min-width: 960px) {
  section.resource-section div.cardbox.featured article.card .portal-item .portal-content .desc {
    font-size: 2rem;
  }
}
section.resource-section.resource-top-level .header {
  padding-bottom: 3rem;
}
section.resource-section.resource-top-level .header .maf-content {
  max-width: none;
}
section.resource-section.resource-top-level .header .maf-content.all-resources, section.resource-section.resource-top-level .header .maf-content.featured-resources {
  padding-top: 6rem;
  padding-bottom: 2rem;
  position: relative;
}
section.resource-section.resource-top-level .header .maf-content.all-resources::before, section.resource-section.resource-top-level .header .maf-content.featured-resources::before {
  background-color: #274030;
  content: "";
  height: 1.5rem;
  position: absolute;
  right: 1.5rem;
  top: 0;
  width: 168rem;
  z-index: 0;
}
section.resource-section.resource-top-level .header .maf-content.featured-resources::before {
  left: 1.5rem;
  right: auto;
}
section.resource-section.resource-top-level .row {
  padding-top: 0;
}
section.resource-section.resource-top-level .row .column {
  padding-top: 0;
}
section.resource-section.resource-top-level .row .column .maf-content.search {
  background-color: #f55da6;
  margin-bottom: 3rem;
  padding: 1.5rem;
}
section.resource-section.is-hero .row .maf-background {
  background-color: #274030;
}
section.resource-section.resource-detail {
  font-size: 1.8rem;
  font-weight: 500;
}
section.resource-section.resource-detail h1.title {
  border-bottom: 0.1rem solid #274030;
  margin-bottom: 0.5em;
  padding-bottom: 0.6em;
  font-size: 2.8rem;
}
@media only screen and (min-width: 576px) {
  section.resource-section.resource-detail h1.title {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 1152px) {
  section.resource-section.resource-detail p.page-lead {
    font-size: 3rem;
  }
}
section.resource-section.resource-detail p.type {
  color: #274030;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.8em;
}
@media only screen and (min-width: 576px) {
  section.resource-section.resource-detail p.type {
    font-size: 2.8rem;
  }
}
section.resource-section.resource-detail p.price {
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 576px) {
  section.resource-section.resource-detail p.price {
    font-size: 3.2rem;
  }
}
section.resource-section.resource-detail .main-img {
  margin-bottom: clamp(3rem, 8%, 5rem);
  width: 100%;
}
section.resource-section.resource-detail .button {
  background-color: #274030;
}
section.resource-section.resource-detail .button::before {
  background-color: #f55da6;
}
section.resource-section.resource-detail .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  section.resource-section.resource-detail .row {
    flex-direction: row;
  }
}
section.resource-section.resource-detail .row .column {
  padding-top: 0;
}
section.resource-section.resource-detail .row .column.maf-col-2 .maf-content {
  border-top: 1.5rem solid #274030;
  padding-top: 0.5rem;
}
section.resource-section.assoc .row .header .maf-content {
  max-width: none;
}
section.resource-section.assoc .row .header .maf-content h2 {
  border-top: 1.5rem solid #274030;
  padding-top: 2rem;
}
section.resource-section.assoc .row .column {
  padding-top: 4rem;
}
section.event-section div.cardbox article.card, section.event-section aside.cardbox article.card {
  --card-colour: #274030;
  --card-accent: #274030;
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.event-section div.cardbox article.card, section.event-section aside.cardbox article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  section.event-section div.cardbox article.card, section.event-section aside.cardbox article.card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1152px) {
  section.event-section div.cardbox article.card, section.event-section aside.cardbox article.card {
    width: 25%;
  }
}
section.event-section div.cardbox article.card .portal-item .portal-content, section.event-section aside.cardbox article.card .portal-item .portal-content {
  font-size: 1.6rem;
  padding-top: 0.5rem;
}
section.event-section div.cardbox article.card .portal-item .portal-content .type, section.event-section aside.cardbox article.card .portal-item .portal-content .type {
  color: var(--card-colour);
  font-size: 2.8rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  text-align: left;
  width: 100%;
}
section.event-section div.cardbox article.card .portal-item .portal-content .title, section.event-section aside.cardbox article.card .portal-item .portal-content .title {
  border: 0;
  color: rgb(52, 53, 53);
  font-size: 2.8rem;
  margin: 0;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  transition: color 300ms ease-out;
}
section.event-section div.cardbox article.card .portal-item .portal-content .desc, section.event-section aside.cardbox article.card .portal-item .portal-content .desc {
  margin-top: auto;
}
section.event-section div.cardbox article.card .portal-item .portal-content .attr, section.event-section aside.cardbox article.card .portal-item .portal-content .attr {
  border-top: 0.1rem solid var(--card-colour);
  border-bottom: 0.1rem solid var(--card-colour);
  padding: 1rem 0;
  text-align: left;
}
section.event-section div.cardbox article.card .portal-item .portal-content .button, section.event-section aside.cardbox article.card .portal-item .portal-content .button {
  margin: 0;
}
section.event-section div.cardbox article.card .portal-item:hover .portal-content .title, section.event-section div.cardbox article.card .portal-item:focus .portal-content .title, section.event-section aside.cardbox article.card .portal-item:hover .portal-content .title, section.event-section aside.cardbox article.card .portal-item:focus .portal-content .title {
  color: var(--card-colour);
}
section.event-section.is-hero .row > .maf-background {
  background-color: #274030;
}
section.event-section.is-hero .row > .maf-bg-overlay {
  background-color: #274030;
}
section.event-section.event-highlight .card-box-slider {
  width: 100%;
}
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 {
    padding: 30px;
  }
}
section.event-section.event-highlight .card-box-slider article.card .portal-item {
  background-color: white;
  box-shadow: 8px 8px 27px 1px rgba(7, 7, 7, 0.31);
  color: rgb(52, 53, 53);
  cursor: pointer;
  display: inline-block;
  line-height: 0;
  opacity: 1;
  width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item * {
  color: rgb(52, 53, 53);
}
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 300ms ease-out;
}
@media only screen and (min-width: 768px) {
  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 {
  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 {
  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 {
    width: 50%;
  }
}
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 {
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: all 600ms 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 {
  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 {
  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 {
  padding-bottom: 75%;
}
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 {
    padding-bottom: 82.4%;
  }
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .info {
  align-items: flex-start;
  color: rgb(52, 53, 53);
  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 {
    width: 50%;
  }
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .title {
  align-items: center;
  color: rgb(52, 53, 53);
  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 {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  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 {
  display: none;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .date time {
  color: #78073d;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .desc {
  color: rgb(52, 53, 53);
  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 {
  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 {
  display: block;
  width: auto;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .card-button {
  background-color: transparent;
  border-color: rgb(52, 53, 53);
  box-shadow: none;
  color: rgb(52, 53, 53);
  display: inline-block;
  font-family: "Satoshi", 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 {
  cursor: default;
}
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 {
  background-color: rgb(52, 53, 53);
  color: white;
}
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 {
  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 {
  background-color: white;
  border-radius: 0;
  content: "";
  display: inline-block;
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 300ms ease-out;
  width: 0;
}
section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot.is-selected::before {
  height: 100%;
  width: 100%;
}
section.event-section.event-highlight .row .header {
  align-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
section.event-section.event-highlight .row .header .maf-content {
  flex: 0 1 auto;
  max-width: 82rem;
  width: auto;
}
section.event-section.event-highlight .row .header .maf-content:first-child {
  margin-right: auto;
}
section.event-section.event-highlight .row .header .maf-content.links p {
  margin-bottom: 1rem;
}
section.event-section.event-highlight .row .header .maf-content.links p:last-child {
  margin-bottom: 0;
}
body.maf-pl-1 section.event-section.event-highlight .row .header .maf-content .button {
  background-color: #274030;
}
body.maf-pl-2 section.event-section.event-highlight .row .header .maf-content .button {
  background-color: #f55da6;
}
section.event-section.event-highlight.member {
  margin-bottom: 4rem;
}
section.event-section.event-highlight.member .row::after {
  background-color: #274030;
}
section.event-section.event-portal .header .maf-content {
  flex-direction: column;
}
@media only screen and (min-width: 576px) {
  section.event-section.event-portal .header .maf-content {
    flex-direction: row;
  }
}
section.event-section.event-portal .header .maf-content.filters {
  padding: 0;
}
section.event-section.event-portal .header .maf-content.filters > div {
  flex: 1 1 auto;
  margin: 0;
  width: auto;
}
section.event-section.event-portal .header .maf-content.filters > div.month {
  max-width: 24.5rem;
  min-width: 23rem;
}
section.event-section.event-portal .header .maf-content.filters > div.month > div {
  padding: 1.5rem;
  width: 100%;
}
section.event-section.event-portal .header .maf-content.filters > div.month > div .select {
  background-color: rgb(238, 238, 238);
  border-color: rgb(238, 238, 238);
  border-radius: 0.5rem;
  height: 6rem;
  min-height: 6rem;
}
section.event-section.event-portal .header .maf-content.filters > div.month > div .select select {
  color: rgb(52, 53, 53);
  font-size: 2rem;
  font-weight: 700;
}
section.event-section.event-portal .header .maf-content.filters > div.cats .button:hover, section.event-section.event-portal .header .maf-content.filters > div.cats .button:focus, section.event-section.event-portal .header .maf-content.filters > div.cats .button.active {
  background-color: #274030;
}
section.event-section.event-detail .event-thumb img {
  width: 100%;
}
section.event-section.event-detail .title {
  color: #274030;
  font-size: 4rem;
  margin-bottom: 3rem;
  max-width: 86rem;
}
@media only screen and (min-width: 576px) {
  section.event-section.event-detail .title {
    font-size: 4.8rem;
  }
}
section.event-section.event-detail .main-img {
  margin-bottom: 1em;
}
section.event-section.event-detail p.label {
  color: #274030;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
}
section.event-section.event-detail p.date {
  font-weight: 500;
  line-height: 1.2;
}
section.event-section.event-detail p.date > span {
  color: #274030;
}
section.event-section.event-detail p.intro {
  font-weight: 700;
}
section.event-section.event-detail p.venue-details {
  word-wrap: break-word;
}
section.event-section.event-detail p.venue-details > span {
  display: inline-block;
  line-height: 1.1;
  margin-bottom: 1rem;
  width: 100%;
}
section.event-section.event-detail p.venue-details > span strong {
  color: #274030;
  font-weight: 700;
  line-height: 1;
}
section.event-section.event-detail p.venue-details > span span {
  display: inline-block;
  font-size: 1.9rem;
  font-weight: 500;
  width: 100%;
}
section.event-section.event-detail .desc-l {
  font-size: 1.8rem;
  width: 100%;
}
section.event-section.event-detail .is-map {
  margin-bottom: 1em;
  min-height: 300px;
}
section.event-section.event-detail .button {
  background-color: #274030;
}
section.event-section.event-detail .tickets {
  margin-bottom: 4rem;
  width: 100%;
}
section.event-section.event-detail .tickets .ticket .ticket-name {
  color: #274030;
  font-weight: 700;
}
section.event-section.event-detail .tickets .ticket .ticket-options .option {
  align-items: flex-start;
  border-top: 0.2rem solid white;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
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 {
  flex: 0 0 auto;
  padding-top: 5px;
  width: calc(100% - 100px);
}
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 {
  display: flex;
  font-size: 1.8rem;
  padding: 5px 0;
}
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 {
  color: #a01759;
  text-decoration: line-through;
}
section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price > div.actual {
  color: #274030;
  font-weight: 700;
}
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 {
  display: inline-block;
  flex: 0 0 auto;
  padding-top: 5px;
  width: 100%;
}
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 {
  background-color: #a01759;
  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 {
  background-color: #a01759;
  padding: 10px 0 0 0;
}
section.event-section.event-detail .tickets .ticket .ticket-options .extras .etitle {
  border-bottom: 2px solid #78073d;
  color: #78073d;
  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 {
  border-color: white;
}
section.event-section.event-detail .tickets .ticket .ticket-options .extras .option:nth-child(2) {
  border-top: 0;
}
section.event-section.event-detail .ticket-actions {
  display: flex;
  width: 100%;
}
section.event-section.event-detail .ticket-actions .button.clear {
  color: #78073d;
  justify-content: flex-start;
}
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 {
  background-color: #78073d;
  content: "";
  height: 3px;
  right: 0;
  position: absolute;
  top: 54%;
  transform: translateY(-50%) rotate(45deg);
  transition: background-color 300ms ease-out;
  width: 13px;
}
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 {
  background-color: #78073d;
  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 {
  background-color: white;
}
section.event-section.event-detail .event-s-link i {
  color: inherit;
  font-size: 2rem;
  vertical-align: middle;
}
section.event-section.event-detail .event-s-link a {
  color: inherit;
}
section.event-section.event-detail .event-s-link a:hover {
  color: #78073d;
}
section.event-section.event-detail .venue-address {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.2;
}
section.event-section.event-detail .embed-map {
  display: inline-block;
  padding-bottom: 75%;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  section.event-section.event-detail .embed-map {
    padding-bottom: 100%;
  }
}
section.event-section.event-detail .embed-map iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
section.event-section.event-detail .embed-map + p {
  margin-top: 1em;
}
section.event-section.event-detail .header {
  padding-bottom: 5rem;
}
section.event-section.event-detail .header .maf-content {
  align-items: flex-start;
}
section.event-section.event-detail .row {
  padding: 0;
}
@media only screen and (min-width: 576px) {
  section.event-section.event-detail .row {
    padding: 0 1.5rem;
  }
}
section.event-section.event-detail .row {
  padding-top: 1rem;
}
section.event-section.event-detail .row .column {
  padding: 4rem 1.5rem;
  padding-top: 0;
}
@media only screen and (min-width: 960px) {
  section.event-section.event-detail .row .column {
    padding: 6rem 1.5rem;
    padding-top: 0;
  }
}
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 .maf-content {
  background-color: rgb(238, 238, 238);
  padding: 8%;
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content .date time {
  font-size: 1.9rem;
}
@media only screen and (min-width: 1024px) {
  section.event-section.event-detail .row .column.maf-col-2 .maf-content .button {
    width: 100%;
  }
}
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 {
  align-items: flex-start;
}
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 {
  border-bottom: 1px solid #78073d;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div {
  align-items: center;
  align-content: center;
  border-top: 1px solid #78073d;
  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 {
    width: 50%;
  }
}
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 {
  border-left: 1px solid #78073d;
  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 {
    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 {
  margin: 0;
}
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 {
  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 {
    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 {
    width: 33.333%;
  }
}
section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content {
  background-color: #78073d;
  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 {
  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 {
  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 {
  color: #78073d;
  font-size: 1.4rem;
  font-weight: 700;
}
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 {
  display: none;
}
section.event-section.event-detail .footer {
  text-align: left;
}
section.event-section.event-detail .footer .maf-content {
  align-items: flex-start;
}
section.event-section.event-detail.event-dates .row .column {
  padding-bottom: 0;
}
section.event-section.event-gallery {
  text-align: center;
}
section.event-section.event-gallery .row .column.maf-col-1 {
  padding-top: 1.5rem;
}
section.event-section.assoc div.cardbox article.card .portal-item .portal-content .date {
  background-color: #78073d;
  height: 1px;
  margin: 10px 0 15px 0;
  padding: 0;
}
section.event-section.assoc .header .maf-content {
  padding-top: 20px;
}
section.event-section.assoc .header .maf-content h2 {
  color: #78073d;
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
}
section.event-section.assoc .row .column {
  padding-top: 70px;
  padding-bottom: 120px;
}
section.faq-section .row .column .maf-content.header {
  padding-bottom: 4rem;
}
section.faq-section .row .column .maf-content.col-footer {
  padding-top: 4rem;
}
section.faq-section .row .column.maf-col-1 {
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
}
section.faq-section .row .footer {
  text-align: left;
}
section.faq-section.maf-h-h .header .maf-content {
  padding-bottom: 4rem;
}
section.faq-section.maf-h-f .footer {
  padding-top: 1em;
  padding-bottom: 0;
}
section.slideshow-section .row .column.maf-col-2 .maf-content {
  max-width: 60rem !important;
  padding: 0 !important;
}
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 {
  background-color: transparent;
  padding: 7rem 1rem;
  position: relative;
  width: 100%;
  quotes: "“" "”";
}
section.slideshow-section .flickity-slideshow .ss-slide::before, section.slideshow-section .flickity-slideshow-edit .ss-slide::before {
  content: open-quote;
  display: inline-block;
  font-size: 18rem;
  font-weight: 700;
  left: 0.8rem;
  line-height: 0.7;
  position: absolute;
  top: 0;
}
section.slideshow-section .flickity-slideshow .ss-slide::after, section.slideshow-section .flickity-slideshow-edit .ss-slide::after {
  bottom: -0.4em;
  color: inherit;
  content: close-quote;
  font-size: 18rem;
  font-weight: 700;
  line-height: 0.7;
  position: absolute;
  right: 0.08em;
}
section.slideshow-section .flickity-slideshow .ss-slide > div, section.slideshow-section .flickity-slideshow-edit .ss-slide > div {
  align-items: center;
}
section.slideshow-section .flickity-slideshow .ss-slide > div p, section.slideshow-section .flickity-slideshow-edit .ss-slide > div p {
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2 !important;
  margin: 0 0 0.5em 0;
  max-width: none !important;
}
@media only screen and (min-width: 576px) {
  section.slideshow-section .flickity-slideshow .ss-slide > div p, section.slideshow-section .flickity-slideshow-edit .ss-slide > div p {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  section.slideshow-section .flickity-slideshow .ss-slide > div p, section.slideshow-section .flickity-slideshow-edit .ss-slide > div p {
    font-size: 3rem;
  }
}
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: #f55da6;
  font-family: "Satoshi", sans-serif;
  font-size: 1.6rem;
}
@media only screen and (min-width: 576px) {
  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 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  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 {
    font-size: 2.6rem;
  }
}
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.slideshow-section.has-aspect .row {
  padding: 0;
}
section.slideshow-section.has-aspect .row .column {
  padding: 0;
}
section.slideshow-section.has-aspect .flickity-slideshow .ss-slide::before, section.slideshow-section.has-aspect .flickity-slideshow-edit .ss-slide::before {
  content: "";
  display: table;
  padding-bottom: 56.25%;
}
section.slideshow-section.has-aspect .flickity-slideshow .ss-slide .label, section.slideshow-section.has-aspect .flickity-slideshow-edit .ss-slide .label {
  bottom: 80px;
  font-size: 1.6rem;
  position: absolute;
  right: 3%;
}
section.slideshow-section.has-aspect .flickity-page-dots {
  bottom: 40px;
  position: absolute;
  right: 3%;
  width: auto;
}
section.slideshow-section.has-aspect .flickity-page-dots .dot {
  background-color: transparent;
  background-image: none;
  border-color: white;
  height: 20px;
  width: 20px;
}
section.slideshow-section.has-aspect .flickity-page-dots .dot::before {
  background-color: white;
}
section.slideshow-section.has-aspect .flickity-page-dots .dot.is-selected::before {
  height: 60%;
  width: 60%;
}
section.slideshow-section .controls {
  padding-top: 10px;
}
section.slideshow-section .controls .maf-button {
  background-color: white;
  border: 2px solid white;
  border-radius: 50%;
  height: 50px;
  margin: 0 10px 10px 0;
  min-width: 0;
  padding: 0;
  position: relative;
  width: 50px;
}
section.slideshow-section .controls .maf-button::after {
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: border-color 300ms ease-out;
  width: 0;
}
section.slideshow-section .controls .maf-button.fbut-prev {
  left: 0;
}
section.slideshow-section .controls .maf-button.fbut-prev::after {
  border-top: 10px solid transparent;
  border-right: 16px solid black;
  border-bottom: 10px solid transparent;
  transform: translate(-70%, -50%);
}
section.slideshow-section .controls .maf-button.fbut-prev:hover {
  background-color: transparent;
}
section.slideshow-section .controls .maf-button.fbut-prev:hover::after {
  border-right-color: white;
}
section.slideshow-section .controls .maf-button.fbut-next {
  right: 0;
}
section.slideshow-section .controls .maf-button.fbut-next::after {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid black;
  transform: translate(-30%, -50%);
}
section.slideshow-section .controls .maf-button.fbut-next:hover {
  background-color: transparent;
}
section.slideshow-section .controls .maf-button.fbut-next:hover::after {
  border-left-color: white;
}
body.maf-pl-5 section.slideshow-section .row .column.maf-col-2 {
  color: white !important;
}
section.simple-gallery figcaption {
  display: none;
}
section.simple-gallery .row .header .maf-content > *:first-child {
  margin-top: 20px;
}
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 {
  max-width: 1400px;
}
section.simple-gallery .row .footer .maf-content {
  max-width: 96rem;
}
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 {
  margin-bottom: 30px !important;
}
section.social-section .blog-nav {
  width: 100%;
}
section.social-section .header .maf-content {
  align-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
section.social-section .header .maf-content > * {
  flex: 0 0 auto;
  padding-right: 3rem;
  width: auto;
}
section.social-section .header .maf-content > *:last-child {
  padding-right: 0;
}
section.social-section .row .column {
  justify-content: flex-start;
}
section.social-section .row .column.maf-col-1 {
  padding-top: 3rem;
}
section.search-section .row .header {
  align-items: center;
}
section.search-section .row .header .maf-content {
  padding-top: 4rem;
}
@media only screen and (min-width: 960px) {
  section.search-section .row .header .maf-content {
    padding-top: 6rem;
  }
}
section.search-section .row .column.whole {
  padding-top: 3rem;
  text-align: left;
}
section.search-section .row .column.whole .maf-content {
  max-width: 113rem;
}
section.search-section .row .column.whole .maf-content ul {
  list-style-type: none;
  max-width: none;
  padding: 0;
}
section.search-section .row .column.whole .maf-content ul li {
  padding: 0.7rem 1rem 0.3rem 1rem;
}
section.search-section .row .column.whole .maf-content ul li::before {
  display: none;
}
section.search-section .row .column.whole .maf-content ul li:nth-of-type(even) {
  background-color: rgba(0, 0, 0, 0.05);
}
section.search-section .row .column.whole .maf-content p.label {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  section.search-section .row .column.whole .maf-content p.label {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  section.search-section .row .column.whole .maf-content p.label {
    font-size: 3.4rem;
  }
}
@media only screen and (min-width: 1024px) {
  section.search-section .row .column.whole .maf-content p.label {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1152px) {
  section.search-section .row .column.whole .maf-content p.label {
    font-size: 3.4rem;
  }
}
section.search-section .row .column.whole .maf-content p.label {
  margin-top: 1em;
}
section.search-section .row .column.whole .maf-content.results {
  align-items: flex-start;
  margin-bottom: 2rem;
}
section.search-section .label {
  margin-bottom: 1rem;
}
section.portal-section div.cardbox article.card .portal-item .portal-content .tn {
  margin-bottom: 1rem;
}
section.portal-section .header .maf-content {
  max-width: 82.5rem;
}
section.portal-section .header .maf-content.right {
  display: none;
}
section.portal-section .row .column {
  padding-bottom: 0;
}
section.portal-section.is-slider .flickity-slideshow {
  margin: 0 -1.5rem;
  width: calc(100% + 3rem);
}
section.portal-section.is-slider .flickity-slideshow .card {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  margin-bottom: 0;
  min-height: 100%;
  padding: 0 1.5rem;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  section.portal-section.is-slider .flickity-slideshow .card {
    width: 50%;
  }
}
@media only screen and (min-width: 1280px) {
  section.portal-section.is-slider .flickity-slideshow .card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1440px) {
  section.portal-section.is-slider .flickity-slideshow .card {
    width: 25%;
  }
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item {
  background-color: white;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #c5f1b2;
  color: #274030;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  height: 100%;
  overflow: visible;
  opacity: 1;
  max-width: 320px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: scale(1);
  transition: all 300ms ease-out;
  width: 100%;
}
section.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 300ms ease-out;
  width: 100%;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-cats {
  color: #78073d;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  padding-top: 15px;
  text-transform: uppercase;
  z-index: 1;
}
section.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 300ms ease-out;
  width: 100%;
}
section.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 600ms ease-out;
  width: 100%;
  z-index: 0;
}
section.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.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na span, section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na i {
  display: inline-block;
  flex: 0 0 auto;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na span {
  text-align: center;
  width: 100%;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na i {
  font-size: 2em;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.no-img .maf-na {
  position: static;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.square::after, section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree::after, section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom::after, section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all::after {
  content: "";
  display: table;
  padding-bottom: 100%;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.square .tn-img, section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree .tn-img, section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom .tn-img, section.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.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree::after {
  padding-bottom: 75%;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static {
  overflow: visible;
  position: static;
}
section.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.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static.no-img {
  min-height: 100px;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all::after {
  padding-bottom: 50%;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all .tn-img {
  -o-object-fit: contain;
     object-fit: contain;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom::after {
  padding-bottom: 66.666%;
}
section.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 300ms ease-out;
  width: 100%;
  z-index: 1;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .title {
  align-items: flex-start;
  color: #78073d;
  display: flex;
  font-family: "Satoshi", 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.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date {
  color: #c5f1b2;
  display: inline-flex;
  justify-content: center;
  line-height: 1;
  margin: auto 0 0 0;
  overflow: hidden;
  padding: 25px 0 5px;
  width: 100%;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date time {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date i {
  display: none;
}
section.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.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .desc p {
  margin-bottom: 0;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .attr {
  display: flex;
  margin-top: auto;
  padding: 10px 0;
  width: 100%;
}
section.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.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-button {
  background-color: transparent;
  border: 2px solid #78073d;
  border-radius: 30px;
  color: #78073d;
  font-size: 1.4rem;
  font-weight: 700;
  margin: auto 0 20px 0;
  min-width: 0;
  padding: 10px 20px;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-button::after {
  display: none;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item.no-link {
  cursor: default;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item.no-link .portal-content .info .card-button {
  display: none;
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item:hover {
  transform: scale(1.01);
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content .tn .tn-img {
  transform: scale(1.05);
}
section.portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content .card-button {
  background-color: #78073d;
  color: white;
}
section.portal-section.is-slider .row {
  padding: 0 1.5rem;
}
@media only screen and (min-width: 576px) {
  section.portal-section.is-slider .row {
    padding: 0 3rem;
  }
}
@media only screen and (min-width: 960px) {
  section.portal-section.is-slider .row {
    padding: 0 3rem;
  }
}
section.portal-section.associative div.cardbox article.card .portal-item .portal-content .title-tn {
  display: none;
}
section.portal-section.associative div.cardbox article.card:nth-child(n+7) {
  display: none;
}
section.portal-section.associative .row .column {
  padding-top: 0;
  padding-bottom: 0;
}
section.portal-section.resources .header {
  align-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 calc(8.333% + 6rem) 0 0;
  max-width: 119.3rem;
  padding-top: 9rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
@media only screen and (min-width: 576px) {
  section.portal-section.resources .header {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
section.portal-section.resources .header .maf-content {
  min-width: 32rem;
}
@media only screen and (min-width: 1024px) {
  section.portal-section.resources .header .maf-content {
    width: 66.666%;
  }
}
section.portal-section.resources .header .maf-content p .button {
  width: 100%;
  max-width: 40rem;
}
section.portal-section.resources .header .maf-content.right {
  display: flex;
}
@media only screen and (min-width: 1024px) {
  section.portal-section.resources .header .maf-content.right {
    width: 33.333%;
  }
}
section.portal-section.resources .row {
  max-width: 150rem;
}
section.portal-section.resources .row > .maf-background, section.portal-section.resources .row > .maf-bg-overlay {
  left: 1.5rem;
  max-width: 168rem;
  transform: translate(0, -50%);
  width: 100vw;
}
@media only screen and (min-width: 576px) {
  section.portal-section.resources .row > .maf-background, section.portal-section.resources .row > .maf-bg-overlay {
    left: 3rem;
  }
}
section.portal-section.resources .row .column {
  margin-right: calc(8.333% + 6rem);
  max-width: 119.3rem;
  padding-bottom: 9rem;
}
section.portal-section.resources .row .column .portal {
  padding: 0 1.5rem;
}
@media only screen and (min-width: 576px) {
  section.portal-section.resources .row .column .portal {
    padding: 0 3rem;
  }
}
section.portal-section.resources .cardbox .card {
  --card-colour: #274030;
  margin-bottom: 0;
}
section.portal-section.resources .cardbox .card .portal-item .portal-content {
  border: 0;
  padding: 0;
}
section.portal-section.resources .cardbox .card .portal-item .portal-content .title {
  min-height: 0;
}
section.portal-section.greybox {
  background-color: rgb(238, 238, 238);
  max-width: 160rem;
}
section.portal-section.greybox div.cardbox article.card .portal-item .portal-content {
  border-color: var(--card-colour);
}
section.portal-section.greybox .row .header {
  padding-top: 6rem;
}
section.portal-section.greybox .row .column {
  padding-bottom: 6rem;
}
section.portal-section.greybox.col2 {
  margin-bottom: 0;
}
section.portal-section.greybox.col2 div.cardbox article.card {
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  section.portal-section.greybox.col2 div.cardbox article.card {
    width: 50%;
  }
}
section.portal-section.greybox.col2 div.cardbox article.card .portal-item .portal-content .title {
  border: 0;
  margin: 0;
  min-height: 0;
}
section.portal-section.greybox.col2 .row .header {
  flex-direction: row;
}
section.portal-section.greybox.col2 .row .header .maf-content {
  flex: 1 1 auto;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  section.portal-section.greybox.col2 .row .header .maf-content {
    width: 50%;
  }
}
section.portal-section.greybox.col2 .row .header .maf-content.right {
  display: flex;
}
section.portal-section.greybox.col2 + section {
  margin-top: 0;
}
section.portal-section.team div.cardbox {
  padding-bottom: 3rem;
}
section.portal-section.team div.cardbox::before {
  background-color: #78073d;
  bottom: 0;
  content: "";
  height: 1.5rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
}
section.portal-section.team div.cardbox article.card {
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  section.portal-section.team div.cardbox article.card {
    width: 50%;
  }
}
section.portal-section.team div.cardbox article.card .portal-item .portal-content {
  align-items: flex-end;
  align-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 4rem;
}
section.portal-section.team div.cardbox article.card .portal-item .portal-content .tn {
  margin-bottom: 1rem;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.portal-section.team div.cardbox article.card .portal-item .portal-content .tn {
    width: calc(50% - 1.5rem);
  }
}
section.portal-section.team div.cardbox article.card .portal-item .portal-content .title {
  border: 0;
  font-size: 3.6rem;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.portal-section.team div.cardbox article.card .portal-item .portal-content .title {
    width: calc(50% - 1.5rem);
  }
}
section.portal-section.team div.cardbox article.card .portal-item .portal-content .desc {
  margin-top: 2rem;
}
section.portal-section.team .row .header .maf-content {
  max-width: 107rem;
}
body.maf-pl-1 section.portal-section.team div.cardbox::before {
  background-color: #274030;
}
body.maf-pl-2 section.portal-section.team div.cardbox::before {
  background-color: #a01759;
}
body.maf-pl-3 section.portal-section.team div.cardbox::before {
  background-color: #78073d;
}
body.maf-pl-4 section.portal-section.team div.cardbox::before {
  background-color: #a01759;
}
body.maf-pl-5 section.portal-section.team div.cardbox::before {
  background-color: #c5f1b2;
}
body.maf-pl-6 section.portal-section.team div.cardbox::before {
  background-color: rgb(176, 158, 64);
}
body.maf-pl-7 section.portal-section.team div.cardbox::before {
  background-color: #a01759;
}
section.portal-section.committee div.cardbox {
  padding-bottom: 3rem;
}
section.portal-section.committee div.cardbox::before {
  background-color: #78073d;
  bottom: 0;
  content: "";
  height: 1.5rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
}
section.portal-section.committee div.cardbox article.card {
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.portal-section.committee div.cardbox article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  section.portal-section.committee div.cardbox article.card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1152px) {
  section.portal-section.committee div.cardbox article.card {
    width: 25%;
  }
}
section.portal-section.committee div.cardbox article.card .portal-item .portal-content {
  border: 0;
  padding: 0;
}
section.portal-section.committee div.cardbox article.card .portal-item .portal-content .tn {
  margin-bottom: 1rem;
}
section.portal-section.committee div.cardbox article.card .portal-item .portal-content .tn .tn-img {
  filter: grayscale(1);
}
section.portal-section.committee div.cardbox article.card .portal-item .portal-content .title {
  border: 0;
  font-size: 3.6rem;
  margin: 0;
  min-height: 8rem;
  padding: 0;
}
section.portal-section.committee div.cardbox article.card .portal-item .portal-content .desc {
  margin-top: 2rem;
  padding: 0 0 3rem 0;
}
section.portal-section.committee .row .header .maf-content {
  max-width: 95rem;
}
body.maf-pl-1 section.portal-section.committee div.cardbox::before {
  background-color: #274030;
}
body.maf-pl-2 section.portal-section.committee div.cardbox::before {
  background-color: #a01759;
}
body.maf-pl-3 section.portal-section.committee div.cardbox::before {
  background-color: #78073d;
}
body.maf-pl-4 section.portal-section.committee div.cardbox::before {
  background-color: #a01759;
}
body.maf-pl-5 section.portal-section.committee div.cardbox::before {
  background-color: #c5f1b2;
}
body.maf-pl-6 section.portal-section.committee div.cardbox::before {
  background-color: rgb(176, 158, 64);
}
body.maf-pl-7 section.portal-section.committee div.cardbox::before {
  background-color: #a01759;
}
section.portal-section.services div.cardbox article.card {
  --card-colour: #a01759;
  --card-accent: #f55da6;
}
@media only screen and (min-width: 1024px) {
  section.portal-section.services .header {
    flex-direction: row;
  }
}
section.portal-section.services .header .maf-content.right {
  display: flex;
}
@media only screen and (min-width: 1024px) {
  section.portal-section.services .header .maf-content.right {
    padding-top: 0;
  }
}
body.maf-pl-1 section.portal-section div.cardbox article.card {
  --card-colour: #274030;
  --card-accent: #274030;
}
body.maf-pl-2 section.portal-section div.cardbox article.card {
  --card-colour: #a01759;
  --card-accent: #f55da6;
}
body.maf-pl-3 section.portal-section div.cardbox article.card {
  --card-colour: #78073d;
  --card-accent: #a01759;
}
body.maf-pl-4 section.portal-section div.cardbox article.card {
  --card-colour: #a01759;
  --card-accent: #78073d;
}
body.maf-pl-5 section.portal-section div.cardbox article.card {
  --card-colour: #c5f1b2;
  --card-accent: #9eba9b;
}
body.maf-pl-6 section.portal-section div.cardbox article.card {
  --card-colour: rgb(176, 158, 64);
  --card-accent: rgb(30, 18, 72);
}
body.maf-pl-7 section.portal-section div.cardbox article.card {
  --card-colour: #a01759;
  --card-accent: #c5f1b2;
}
section.portal-section.maf-h-h .row .column {
  padding-top: 3rem;
}
section.portal-section.maf-h-f .row .column {
  padding-bottom: 60px;
}
section.contact-section h2, section.contact-section .h2-style {
  font-size: 4.8rem;
}
@media only screen and (min-width: 576px) {
  section.contact-section h2, section.contact-section .h2-style {
    font-size: 6.2rem;
  }
}
@media only screen and (min-width: 768px) {
  section.contact-section h2, section.contact-section .h2-style {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1024px) {
  section.contact-section h2, section.contact-section .h2-style {
    font-size: 6.2rem;
  }
}
@media only screen and (min-width: 1152px) {
  section.contact-section h2, section.contact-section .h2-style {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1280px) {
  section.contact-section h2, section.contact-section .h2-style {
    font-size: 10rem;
  }
}
section.contact-section h2, section.contact-section .h2-style {
  margin-bottom: 0.5em;
}
section.contact-section p {
  margin-bottom: 0.9em;
}
section.contact-section p.phone {
  font-family: "Satoshi", sans-serif;
  font-size: 3rem;
  margin-bottom: 0;
}
section.contact-section p.phone span {
  display: inline-block;
}
section.contact-section p.phone a:not(.button) {
  color: #78073d;
  font-style: normal;
  text-decoration: none;
}
section.contact-section p.email {
  font-size: 3rem;
}
section.contact-section p.email span {
  display: inline-block;
}
section.contact-section p.email a:not(.button) {
  color: #78073d;
  text-decoration: none;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
section.contact-section p.cpoint {
  font-size: 2.6rem;
  line-height: 0;
  margin-bottom: 15px;
}
section.contact-section p.cpoint.first {
  margin-top: 30px;
}
section.contact-section p.cpoint span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  width: 100%;
}
section.contact-section p.cpoint a:not(.button) {
  color: #78073d;
  line-height: 1;
  text-decoration: none;
}
section.contact-section p.img-ico {
  align-items: center;
  display: flex;
  font-family: "Satoshi", sans-serif;
  font-size: 1.6rem;
  justify-content: flex-start;
}
section.contact-section p.img-ico span {
  display: inline-block;
  flex: 0 0 auto;
  line-height: 1.1;
}
section.contact-section p.img-ico span:last-child {
  flex: 1 1 auto;
  padding-left: 10px;
}
section.contact-section p.img-ico span a {
  color: rgb(52, 53, 53);
}
section.contact-section .social-icons {
  --icon-colour: transparent;
  --text-colour: #78073d;
  font-size: 3.5rem;
  margin-top: 10px;
}
section.contact-section .social-icons a:hover, section.contact-section .social-icons a:focus {
  color: rgb(52, 53, 53);
}
section.contact-section .social-link {
  font-size: 2.4rem;
  margin-top: 1em;
  text-decoration: none;
}
section.contact-section .social-link img {
  margin-right: 10px;
  vertical-align: baseline;
}
section.contact-section #logo-contact {
  max-width: 350px;
}
section.contact-section address {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  section.contact-section address {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  section.contact-section address {
    font-size: 3.4rem;
  }
}
@media only screen and (min-width: 1024px) {
  section.contact-section address {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1152px) {
  section.contact-section address {
    font-size: 3.4rem;
  }
}
section.contact-section address {
  display: inline-block;
  margin-bottom: 1em;
  width: 100%;
}
section.contact-section .is-map {
  min-height: 310px;
}
section.contact-section iframe {
  max-width: 100%;
}
section.contact-section form .maf-input textarea {
  min-height: 276px;
}
section.contact-section form .maf-input.cap-con {
  display: flex;
}
section.contact-section form .maf-input.cap-con .g-recap-con {
  margin: 0;
}
section.contact-section .row {
  padding: 0;
  padding-top: 4rem;
}
@media only screen and (min-width: 576px) {
  section.contact-section .row {
    padding: 0 1.5rem;
    padding-top: 6rem;
  }
}
section.contact-section .row .header .maf-content {
  padding-top: 0;
  padding-bottom: 4rem;
}
section.contact-section .row {
  flex-direction: column-reverse;
  max-width: 122rem;
}
@media only screen and (min-width: 1024px) {
  section.contact-section .row {
    flex-direction: row;
  }
}
section.contact-section .row .column {
  padding: 4rem 1.5rem;
  padding-top: 0;
}
@media only screen and (min-width: 960px) {
  section.contact-section .row .column {
    padding: 6rem 1.5rem;
    padding-top: 0;
  }
}
section.contact-section .row .column .maf-content {
  align-items: flex-start;
  text-align: left;
}
section.contact-section .row .column .maf-content.map {
  height: 100%;
  min-height: 500px;
  position: relative;
}
section.contact-section .row .column .maf-content.map iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
section.contact-section .row .column .maf-content + .maf-content {
  margin-top: 40px;
}
section.contact-section .row .column.maf-col-2 {
  max-width: 48rem;
}
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 h2, section.privacy-policy .h2-style {
  font-size: 3rem;
  margin: 1em 0;
  text-transform: none;
}
@media only screen and (min-width: 576px) {
  section.privacy-policy h1, section.privacy-policy .h1-style, section.privacy-policy h2, section.privacy-policy .h2-style {
    font-size: 4.6rem;
  }
}
section.privacy-policy p.page-lead {
  margin-bottom: 3rem;
}
section.privacy-policy ol li, section.privacy-policy ul li {
  margin-bottom: 1em;
}
section.privacy-policy .row .column {
  align-items: center;
  padding-top: 0;
  padding-bottom: 12rem;
  text-align: left;
}
section.privacy-policy .row .column .maf-content {
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 96rem;
}
section.account .maf-upldr {
  margin: 0 auto;
  margin-bottom: 4rem;
  max-width: 48rem;
  text-align: center;
  width: 100%;
}
section.account .row .column .maf-content.hide {
  display: none;
}
section.account#login .discount, section.account#register .discount {
  margin-bottom: 2.4rem;
  width: 100%;
}
section.account#login .discount form, section.account#register .discount form {
  align-items: stretch;
  display: grid;
  grid-template-columns: 2fr 1fr;
  text-align: left;
}
section.account#login .discount form label, section.account#login .discount form p, section.account#register .discount form label, section.account#register .discount form p {
  grid-column: 1/-1;
}
section.account#login .discount form label, section.account#register .discount form label {
  font-weight: bolder;
}
section.account#login .discount form button, section.account#register .discount form button {
  min-height: 0;
  min-width: 0;
}
section.account#login .row .column {
  padding-top: 0;
}
section.account#login .row .column .maf-content.maf-form form {
  max-width: 48rem;
}
@media only screen and (min-width: 768px) {
  section.account#register .h4-style {
    font-size: 4.8rem;
  }
}
section.account#register .page-lead {
  font-size: 3rem;
}
section.account#register .header .maf-content {
  max-width: none;
}
section.account#register .row .column {
  align-items: flex-start;
}
section.account#register .row .column .maf-form {
  max-width: 119.5rem;
}
section.account#register .row .column .maf-form .rgroup {
  display: flex;
  flex-direction: column;
}
section.account#register .row .column .maf-form .rgroup .rgg {
  display: flex;
  flex-direction: column;
  width: 100%;
}
section.account#register .row .column .maf-form .rgroup .rgg .radio {
  align-items: flex-end;
  padding: 0.9rem 1.2rem;
  margin: 0;
  width: 100%;
}
section.account#register .row .column .maf-form .rgroup .rgg .radio:nth-child(odd) {
  background-color: rgb(238, 238, 238);
}
section.account#register .row .column .maf-form .rgroup .rgg .radio > span {
  align-items: flex-end;
  padding: 0.3rem 0;
}
section.account#register .row .column .maf-form .rgroup .rgg .radio > span span {
  display: inline-block;
  flex: 1 1 auto;
  line-height: 1;
  pointer-events: none;
  padding: 0 1.2rem;
}
section.account#register .row .column .maf-form .rgroup .rgg .radio > span span:last-child {
  flex: 0 0 auto;
  text-align: right;
  width: 12rem;
}
section.account#register .row .column .maf-form .rgroup .rgg .radio .pretty-radio {
  padding: 0 1.2rem;
}
section.account.rec-pw .row .column {
  padding-top: 0;
}
section.account.rec-pw .row .column .maf-form {
  max-width: 86rem;
}
section.account.rec-pw .row .column .maf-form form {
  max-width: 50rem;
}
section.account.rec-pw .row .column .maf-form .button {
  background-color: #9eba9b;
}
section.account.welcome {
  font-size: 1.8rem;
}
section.account.welcome h1 span, section.account.welcome .h1-style span, section.account.welcome h2 span, section.account.welcome .h2-style span, section.account.welcome h3 span, section.account.welcome .h3-style span, section.account.welcome h4 span, section.account.welcome .h4-style span, section.account.welcome h5 span, section.account.welcome .h5-style span, section.account.welcome h6.h6-style span {
  color: #78073d;
}
section.account.welcome h4, section.account.welcome .h4-style {
  margin-bottom: 0.8em;
}
@media only screen and (min-width: 576px) {
  section.account.welcome h4, section.account.welcome .h4-style {
    font-size: 4.8rem;
  }
}
section.account.welcome p {
  font-weight: 500;
  max-width: 82.8rem;
}
section.account.welcome .row .column {
  padding-top: 0;
  padding-bottom: 0;
}
section.account.welcome .row .column .maf-content {
  border-top: 1.5rem solid #78073d;
  padding-top: 4.8rem;
}
section.account.account-menu {
  background-color: #a01759;
}
section.account.account-menu .row .column .actions {
  width: 100%;
}
section.account.account-update .maf-form form .column {
  padding-bottom: 0;
}
section.account.account-update .row .column.whole {
  padding: 0;
}
section.account.account-update.pw .row .column {
  max-width: 70rem;
}
section.account.account-update.pw .row .column .maf-content.maf-form form {
  max-width: 40rem;
}
@media only screen and (min-width: 960px) {
  section.account.account-update.account-details .form-cards .fc {
    flex: 0 0 20%;
  }
}
section.account.account-update.account-details .row .column .maf-form form {
  max-width: 90rem;
}
section.account.payment-confirm .detail {
  align-items: flex-end;
  display: flex;
  font-size: 2rem;
  margin-bottom: 0.2em;
}
section.account.payment-confirm .detail strong, section.account.payment-confirm .detail span {
  display: inline-block;
}
section.account.payment-confirm .detail strong {
  padding-right: 2rem;
}
section.account.payment-confirm .detail span {
  margin-left: auto;
}
section.account.payment-confirm .detail.topay {
  border-top: 0.1rem solid rgb(238, 238, 238);
  font-size: 2.4rem;
  padding-top: 0.5rem;
}
section.account.payment-confirm .detail.topay span {
  font-weight: 700;
}
section.account.payment-confirm .p-info {
  background-color: rgb(238, 238, 238);
  font-weight: 500;
  line-height: 1.6;
  padding: 3rem;
}
section.account.payment-confirm #PayNow, section.account.payment-confirm .button {
  width: auto !important;
}
section.account.payment-confirm .row .column.maf-col-1 {
  max-width: 50rem;
}
section.account.payment-confirm .row .column.maf-col-2 .maf-content {
  max-width: 60rem;
}
section.account.payment-confirm .row .column.maf-col-2 .maf-content form, section.account.payment-confirm .row .column.maf-col-2 .maf-content .login {
  margin-top: 2rem;
  text-align: right;
}
section.account.account-edit p.instruction {
  color: #a01759;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  section.account.account-edit p.instruction {
    font-size: 3rem;
  }
}
section.account.account-edit .mcSimple {
  background-color: rgb(238, 238, 238);
  min-height: 15rem;
  padding: 1.5rem 2rem;
}
section.account.account-edit textarea.description {
  min-height: 9rem;
}
section.account.account-edit .row .column {
  padding-top: 0;
}
section.account.account-edit .row .column .maf-content {
  max-width: 90rem;
}
section.account #op {
  height: 0;
  overflow: hidden;
  transition: all 300ms ease-out;
  width: 100%;
}
section.account #op #op-msg {
  bottom: 0;
  font-weight: 500;
  left: 0;
  padding: 1rem 2rem;
  position: fixed;
  text-align: center;
  transition: all 300ms ease-out;
  width: 100%;
  z-index: 777;
}
section.account #op.show {
  height: 5rem;
  transition: all 300ms ease-out;
}
section.account #op.show #op-msg {
  background-color: #f55da6;
  color: white;
  min-height: 5rem;
}
section.account #op.show #op-msg.error {
  background-color: red;
}
section.account div.cardbox article.card .actions {
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  text-align: left;
}
section.account div.cardbox article.card .actions a {
  border-radius: 0.5rem;
  color: inherit;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 0.7rem;
  opacity: 0.7;
  padding: 0.3rem 0.5rem;
  text-decoration: none;
  width: 100%;
}
section.account div.cardbox article.card .actions a:hover, section.account div.cardbox article.card .actions a:focus {
  opacity: 1;
}
section.account div.cardbox article.card .actions a i {
  margin-right: 0.5rem;
}
section.account div.cardbox article.card .actions a.portal-delete {
  border: 0.3rem solid hsl(0, 45%, 51%);
  background-color: hsl(0, 45%, 75%);
}
section.account div.cardbox article.card .actions a.portal-delete:hover, section.account div.cardbox article.card .actions a.portal-delete:focus {
  background-color: hsl(0, 45%, 51%);
  color: white;
}
section.account div.cardbox article.card .actions a.portal-verify {
  border: 0.3rem solid hsl(120, 42%, 49%);
  background-color: hsl(120, 42%, 75%);
  font-weight: 700;
}
section.account div.cardbox article.card .actions a.portal-verify:hover, section.account div.cardbox article.card .actions a.portal-verify:focus {
  background-color: hsl(120, 42%, 49%);
  color: white;
}
section.account div.cardbox article.card .portal-item .portal-content .title {
  min-height: 0;
}
section.account div.cardbox article.card .portal-item .portal-content .desc.state {
  background-color: rgb(238, 238, 238);
  margin-bottom: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.7rem 1rem;
}
section.account div.cardbox article.card .portal-item .portal-content .desc.state.pub {
  background-color: hsl(120, 42%, 75%);
}
section.account div.cardbox.articles article.card {
  --card-colour: #f55da6;
  --card-accent: #a01759;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.account div.cardbox.articles article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  section.account div.cardbox.articles article.card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1152px) {
  section.account div.cardbox.articles article.card {
    width: 25%;
  }
}
section.account div.cardbox.articles article.card .portal-item .portal-content {
  padding-top: 1rem;
}
section.account div.cardbox.articles article.card .portal-item .portal-content .title {
  border: 0;
  color: rgb(52, 53, 53);
  font-size: 2.8rem;
  margin: 2rem 0 0.5em 0;
  min-height: 0;
  padding: 0;
  transition: all 300ms ease-out;
}
section.account div.cardbox.shows article.card {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.account div.cardbox.shows article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  section.account div.cardbox.shows article.card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1152px) {
  section.account div.cardbox.shows article.card {
    width: 25%;
  }
}
section.account div.cardbox.shows article.card.arch {
  filter: grayscale(0.4);
  opacity: 0.5;
}
section.account div.cardbox.designs .portal-item .portal-content .tn {
  margin-bottom: 1rem;
}
section.account .form-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3rem 0;
}
section.account .form-cards .fc {
  flex: 0 0 100%;
  padding: 1rem;
}
@media only screen and (min-width: 576px) {
  section.account .form-cards .fc {
    flex: 0 0 50%;
  }
}
@media only screen and (min-width: 960px) {
  section.account .form-cards .fc {
    flex: 0 0 25%;
  }
}
section.account .form-cards .fc .drag-bar {
  align-items: center;
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: rgb(238, 238, 238);
  display: flex;
  font-size: 2rem;
  justify-content: space-between;
}
section.account .form-cards .fc .drag-bar i {
  margin: auto 0.5rem;
}
section.account .form-cards .fc .drag-bar a {
  align-items: center;
  aspect-ratio: 1/1;
  color: #a01759;
  display: flex;
  justify-content: center;
  padding: 0.5rem;
  text-decoration: none;
}
section.account .form-cards .fc .drag-bar a:hover, section.account .form-cards .fc .drag-bar a:focus {
  background-color: #a01759;
  color: white;
}
section.account .form-cards.badges {
  font-size: 1.8rem;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  section.account .form-cards.badges .fc {
    flex: 0 0 20%;
  }
}
section.account .form-cards.badges .fc .info {
  padding: 0.5rem;
}
section.account .form-cards.badges .fc .info .name {
  font-weight: 700;
  padding: 0.5rem;
}
section.account .form-cards.badges .fc .info .img img {
  max-height: 25rem;
}
section.account .form-cards.badges .fc .info .txt {
  padding: 0.5rem;
}
section.account .form-cards.badges .fc .info .edit {
  border-top: 0.1rem solid #78073d;
  color: #78073d;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
  padding: 0.5rem;
  text-align: left;
  text-decoration: none;
  width: 100%;
}
section.account .addcredits {
  width: 100%;
}
section.account .addcredits form {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section.account .addcredits form .select {
  flex: 0 0 auto;
  margin: 0 2rem 2rem 0;
  min-width: 35rem;
  width: auto;
}
section.account .addcredits form .select select {
  margin: 0;
}
section.account .addcredits form .spinner {
  flex: 0 0 auto;
  margin: 0 2rem 2rem 0;
}
section.account .addcredits form button {
  min-height: 5.6rem;
  margin: 0 0 2rem 0;
}
section.account-listings-section div.cardbox article.card {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.account-listings-section div.cardbox article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  section.account-listings-section div.cardbox article.card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1152px) {
  section.account-listings-section div.cardbox article.card {
    width: 25%;
  }
}
section.account-listings-section div.cardbox article.card .portal-item .portal-content {
  padding-top: 2rem;
}
section.account-listings-section div.cardbox article.card .portal-item .portal-content .tn {
  order: 2;
}
section.account-listings-section div.cardbox article.card .portal-item .portal-content .info {
  order: 1;
}
section.account-listings-section div.cardbox article.card .portal-item .portal-content .title {
  color: rgb(52, 53, 53);
  font-size: 2.8rem;
  min-height: 0;
}
section.account-listings-section div.cardbox article.card .portal-item .portal-content .desc {
  font-size: 1.6rem;
}
section.account-listings-section div.cardbox article.card.cat-3 {
  --card-colour: #78073d;
}
section.account-listings-section div.cardbox article.card.cat-4 {
  --card-colour: #78073d;
}
section.account-listings-section div.cardbox article.card.cat-5 {
  --card-colour: #274030;
}
section.account-listings-section div.cardbox.shows article.card {
  margin-bottom: 0;
}
section.account-listings-section.account-listing-detail .account-listing-title {
  font-size: 3.2rem;
}
@media only screen and (min-width: 576px) {
  section.account-listings-section.account-listing-detail .account-listing-title {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 768px) {
  section.account-listings-section.account-listing-detail .account-listing-title {
    font-size: 4.8rem;
  }
}
section.account-listings-section.account-listing-detail .account-listing-title .name {
  color: #f55da6;
}
section.account-listings-section.account-listing-detail .account-listing-body {
  font-size: 1.8rem;
  font-weight: 500;
  width: 100%;
}
section.account-listings-section.account-listing-detail .account-listing-body > p:first-child {
  font-size: 2.4rem;
  font-weight: 700;
}
section.account-listings-section.account-listing-detail .main-img {
  margin-bottom: 4rem;
  width: 100%;
}
section.account-listings-section.account-listing-detail .is-map {
  margin-top: 6rem;
  margin-bottom: 1em;
}
section.account-listings-section.account-listing-detail .is-map::after {
  content: "";
  display: table;
  padding-bottom: 100%;
}
section.account-listings-section.account-listing-detail .address {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1em;
}
section.account-listings-section.account-listing-detail .address:last-child {
  margin-bottom: 0;
}
section.account-listings-section.account-listing-detail .address i {
  color: rgb(52, 53, 53);
  display: none;
  font-size: 3rem;
  margin-right: 0.8rem;
}
section.account-listings-section.account-listing-detail .address strong {
  color: #78073d;
}
section.account-listings-section.account-listing-detail .address address {
  display: inline-block;
  font-size: 1.9rem;
  line-height: inherit;
  margin: 0;
}
section.account-listings-section.account-listing-detail .address address span {
  display: inline-block;
  width: 100%;
}
section.account-listings-section.account-listing-detail .social-icons {
  font-size: 2rem;
  margin-bottom: 1em;
}
section.account-listings-section.account-listing-detail .social-icons a {
  margin-right: 0.5rem;
}
section.account-listings-section.account-listing-detail .social-icons a i {
  background-color: #78073d;
  border-color: #78073d;
  height: 1.9em;
  width: 1.9em;
}
section.account-listings-section.account-listing-detail .social-icons a i::before {
  color: white;
}
section.account-listings-section.account-listing-detail .social-icons a:hover i {
  background-color: transparent;
}
section.account-listings-section.account-listing-detail .social-icons a:hover i::before {
  color: #78073d;
  top: 50%;
}
section.account-listings-section.account-listing-detail #services {
  line-height: 1.2;
  width: 100%;
}
section.account-listings-section.account-listing-detail #services strong {
  color: #78073d;
  display: inline-block;
  width: 100%;
}
section.account-listings-section.account-listing-detail #services span {
  display: inline-block;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
}
section.account-listings-section.account-listing-detail .image-box .image {
  max-width: 10rem;
  text-align: center;
  width: 100%;
}
section.account-listings-section.account-listing-detail .image-box .image img {
  display: inline-block;
  width: auto;
}
section.account-listings-section.account-listing-detail .image-box .text {
  padding-left: 1rem;
}
section.account-listings-section.account-listing-detail .button {
  background-color: #78073d;
}
section.account-listings-section.account-listing-detail .web-link {
  font-weight: 700;
  line-height: 1.2;
}
section.account-listings-section.account-listing-detail .web-link span, section.account-listings-section.account-listing-detail .web-link a {
  display: inline-block;
}
section.account-listings-section.account-listing-detail .web-link span {
  color: #78073d;
  width: 100%;
}
section.account-listings-section.account-listing-detail .web-link a {
  font-size: 1.9rem;
}
section.account-listings-section.account-listing-detail .header .maf-content {
  max-width: none;
  padding-bottom: 5rem;
}
section.account-listings-section.account-listing-detail .badgebox {
  align-content: center;
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin: 0 -1rem;
  width: calc(100% + 2rem);
}
section.account-listings-section.account-listing-detail .badgebox .badge {
  flex: 1 1 0;
  font-size: 1.8rem;
  max-width: 100%;
  padding: 1rem;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  section.account-listings-section.account-listing-detail .badgebox .badge {
    max-width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  section.account-listings-section.account-listing-detail .badgebox .badge {
    max-width: 33.333%;
  }
}
@media only screen and (min-width: 960px) {
  section.account-listings-section.account-listing-detail .badgebox .badge {
    max-width: 25%;
  }
}
@media only screen and (min-width: 1024px) {
  section.account-listings-section.account-listing-detail .badgebox .badge {
    max-width: 20%;
  }
}
section.account-listings-section.account-listing-detail .badgebox .badge .img img {
  max-height: 25rem;
}
section.account-listings-section.account-listing-detail .badgebox .badge .txt {
  font-weight: 700;
  line-height: 1.1;
  margin-top: 1rem;
}
section.account-listings-section.account-listing-detail .badgebox .badge.goty .logo img {
  max-width: 15rem;
}
section.account-listings-section.account-listing-detail .badgebox .badge.goty .bdg {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: rgb(176, 158, 64);
  border-radius: 50%;
  display: flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1.1;
  margin: 0 auto 1rem auto;
  max-width: 12rem;
  padding: 5%;
  position: relative;
}
section.account-listings-section.account-listing-detail .badgebox .badge.goty .bdg.goty-ow::before {
  border: 0.3rem dotted white;
  border-radius: 50%;
  content: "";
  display: inline-block;
  filter: drop-shadow(1px 1px 1px black);
  height: 88%;
  left: 50%;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
}
section.account-listings-section.account-listing-detail .badgebox .badge.goty .bdg.goty-pv {
  background-color: rgb(30, 18, 72);
  color: rgb(176, 158, 64);
}
section.account-listings-section.account-listing-detail .badgebox .badge.goty .bdg.goty-hc {
  background-color: #c1c6c8;
}
section.account-listings-section.account-listing-detail .badgebox .badge.goty .goty-cat {
  font-weight: 700;
}
section.account-listings-section.account-listing-detail .row .column {
  padding: 4rem 1.5rem;
  padding-top: 0;
}
@media only screen and (min-width: 960px) {
  section.account-listings-section.account-listing-detail .row .column {
    padding: 6rem 1.5rem;
    padding-top: 0;
  }
}
section.account-listings-section.account-listing-detail .row .column .maf-content {
  align-items: flex-start;
  text-align: left;
}
section.account-listings-section.account-listing-detail .row .column.maf-col-1 {
  align-items: flex-start;
}
section.account-listings-section.account-listing-detail .row .column.maf-col-2 .maf-content {
  background-color: rgb(238, 238, 238);
  padding: 10%;
}
section.account-listings-section.account-listing-detail .row .column.maf-col-2 .maf-content.fb-gallery {
  margin-top: 1em;
}
section.account-listings-section.account-listing-detail .row .column.shows, section.account-listings-section.account-listing-detail .row .column.badges {
  width: 100%;
}
section.account-listings-section.account-listing-detail .row .footer {
  text-align: left;
}
section.account-listings-section.cat-list .row {
  padding: 0 2.5rem;
}
@media only screen and (min-width: 155rem) {
  section.account-listings-section.cat-list .row {
    padding: 0;
  }
}
section.account-listings-section.cat-list .row .column {
  padding-right: 0;
  padding-left: 0;
}
section.account-listings-section.al-list .row {
  padding: 0 2.5rem;
}
@media only screen and (min-width: 155rem) {
  section.account-listings-section.al-list .row {
    padding: 0;
  }
}
section.account-listings-section.al-list .row .column {
  padding-right: 0;
  padding-left: 0;
}
section.account-listings-section.al-list .row .column.maf-col-2 {
  padding-top: 0;
}
section.map.interactive-map .is-map {
  border: 2rem solid #f55da6;
  display: none;
  height: auto;
}
section.map.interactive-map .is-map::before {
  content: "";
  display: table;
  padding-bottom: 125%;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.map.interactive-map .is-map::before {
    padding-bottom: 100%;
  }
}
@media only screen and (min-width: 768px) {
  section.map.interactive-map .is-map::before {
    padding-bottom: 75%;
  }
}
@media only screen and (min-width: 1024px) {
  section.map.interactive-map .is-map::before {
    padding-bottom: 56.25%;
  }
}
section.map.interactive-map .is-map #google-map-interactive .gm-style-iw.gm-style-iw-c {
  background-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  max-width: 212px !important;
  overflow: visible !important;
}
section.map.interactive-map .is-map #google-map-interactive .gm-style-iw.gm-style-iw-c .gm-style-iw-d {
  overflow: auto !important;
}
section.map.interactive-map .is-map #google-map-interactive .gm-style-iw.gm-style-iw-c > button {
  top: 5px !important;
  right: 8px !important;
  width: 20px !important;
  height: 20px !important;
}
section.map.interactive-map .is-map #google-map-interactive .gm-style-iw.gm-style-iw-c > button img {
  width: 20px !important;
  height: 20px !important;
  filter: grayscale(1) invert(1);
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content {
  background-color: white;
  padding: 0;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content .logo {
  background-color: #78073d;
  padding: 21px;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content .image {
  margin-bottom: 10px;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content .image img {
  max-width: 100%;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content p {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0;
  padding: 0 10px 10px 10px;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content p.name {
  background-color: #a01759;
  color: white;
  font-family: "Satoshi", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 20px 10px 15px 10px;
  text-transform: uppercase;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content a:not(.button) {
  color: #a01759;
  font-weight: 500;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content a:not(.button):hover {
  color: #f55da6;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content a.button {
  background-color: #f55da6;
  border-color: #f55da6;
  border-radius: 20px;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 10px 0;
  min-height: 0;
  min-width: 0;
  padding: 3px 25px;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content a.button:hover {
  background-color: transparent;
  color: #f55da6;
}
section.map.interactive-map .is-map.show {
  display: block;
}
section.map.interactive-map #map-filters {
  padding-top: 20px;
}
section.map.interactive-map #map-filters .button {
  border: 1px solid rgb(52, 53, 53);
  border-radius: 0;
  color: rgb(52, 53, 53);
  font-weight: 400;
  margin: 0 3px 6px 0;
  padding: 20px 23px;
}
section.map.interactive-map #map-filters .button:hover, section.map.interactive-map #map-filters .button.active {
  background-color: #78073d;
  border-color: #78073d;
  color: white;
}
section.map.interactive-map #map-list-view {
  align-content: stretch;
  align-items: stretch;
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -10px;
  width: calc(100% + 20px);
}
section.map.interactive-map #map-list-view > div {
  display: inline-block;
  flex: 0 0 auto;
  padding: 10px;
  width: 25%;
}
section.map.interactive-map #map-list-view > div > div {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid #274030;
  padding: 15px 20px;
}
section.map.interactive-map #map-list-view > div > div > div {
  display: inline-block;
  padding: 5px 0;
  width: 100%;
}
section.map.interactive-map #map-list-view > div > div > div.name {
  color: #78073d;
  font-size: 2rem;
  font-weight: 700;
}
section.map.interactive-map #map-list-view > div > div > div.address {
  display: flex;
  flex-direction: column;
}
section.map.interactive-map #map-list-view > div > div > div.address > span {
  display: inline-block;
  width: 100%;
}
section.map.interactive-map #map-list-view.show {
  display: flex;
}
section.map.interactive-map #sh-ctrlr {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  text-align: right;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.map.interactive-map #sh-ctrlr {
    align-items: flex-start;
    flex-direction: row;
  }
}
section.map.interactive-map #sh-ctrlr > span, section.map.interactive-map #sh-ctrlr > a {
  background-color: #78073d;
  border: 1px solid #78073d;
  color: white;
  cursor: pointer;
  display: none;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 8px 12px;
}
section.map.interactive-map #sh-ctrlr > span:last-child, section.map.interactive-map #sh-ctrlr > span:nth-last-child(2), section.map.interactive-map #sh-ctrlr > a:last-child, section.map.interactive-map #sh-ctrlr > a:nth-last-child(2) {
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) {
  section.map.interactive-map #sh-ctrlr > span, section.map.interactive-map #sh-ctrlr > a {
    margin-bottom: 0;
    margin-left: 10px;
  }
  section.map.interactive-map #sh-ctrlr > span:first-child, section.map.interactive-map #sh-ctrlr > a:first-child {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) {
  section.map.interactive-map #sh-ctrlr > span.spacer, section.map.interactive-map #sh-ctrlr > a.spacer {
    margin-right: auto;
  }
}
section.map.interactive-map #sh-ctrlr > span:hover, section.map.interactive-map #sh-ctrlr > a:hover {
  background-color: transparent;
  color: #78073d;
}
section.map.interactive-map #sh-ctrlr > span.active, section.map.interactive-map #sh-ctrlr > a.active {
  display: inline-block;
  flex: 0 0 auto;
}
section.map.interactive-map .header {
  align-items: flex-start;
}
section.map.interactive-map .header h2, section.map.interactive-map .header .h2-style {
  background-color: #a01759;
  color: white;
  font-size: 2.4rem;
  margin-bottom: 1.5em;
  padding: 10px 15px;
  text-transform: uppercase;
  width: auto;
}
section.map.interactive-map .header .maf-content {
  align-items: flex-start;
  max-width: 1100px;
  text-align: left;
}
section.map.interactive-map.maf-h-h .row .column {
  padding-top: 50px;
}
section.counter-section {
  background-color: #a01759;
}
section.counter-section .row .column .maf-content {
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  margin: 0 -2rem;
  max-width: 119rem;
  width: calc(100% + 4rem);
}
section.counter-section .row .column .maf-content .stat-counter {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 2rem;
  padding: 0;
  width: calc(100% - 4rem);
}
@media only screen and (min-width: 576px) {
  section.counter-section .row .column .maf-content .stat-counter {
    width: calc(50% - 4rem);
  }
}
@media only screen and (min-width: 960px) {
  section.counter-section .row .column .maf-content .stat-counter {
    width: calc(25% - 4rem);
  }
}
section.counter-section .row .column .maf-content .stat-counter .counter {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: rgb(52, 53, 53);
  border-radius: 50%;
  color: #a01759;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  max-width: 25rem;
  width: 100%;
}
section.counter-section .row .column .maf-content .stat-counter .counter.col {
  flex-direction: column;
}
section.counter-section .row .column .maf-content .stat-counter .counter.rowr {
  flex-direction: row-reverse;
}
section.counter-section .row .column .maf-content .stat-counter .stat, section.counter-section .row .column .maf-content .stat-counter .unit {
  font-family: "Satoshi", sans-serif;
  font-size: 8.4rem;
  line-height: 0.9;
}
section.counter-section .row .column .maf-content .stat-counter .stat.small {
  font-size: 6.8rem;
}
section.counter-section .row .column .maf-content .stat-counter .unit {
  font-size: 3.9rem;
}
section.counter-section .row .column .maf-content .stat-counter .unit.sup {
  margin-bottom: 1em;
}
section.counter-section .row .column .maf-content .stat-counter .unit.lrg {
  font-size: 6.8rem;
}
section.counter-section .row .column .maf-content .stat-counter p {
  color: #78073d;
  line-height: 1.2;
  margin-bottom: 5px;
}
section.counter-section .row .column .maf-content .stat-counter p:last-child {
  margin-top: auto;
  margin-bottom: 0;
}
section.counter-section .row .column .maf-content .stat-counter p strong {
  color: rgb(52, 53, 53);
}
section.counter-section .row .column .maf-content .stat-counter input[type=number] {
  border-color: rgb(52, 53, 53);
  color: #a01759;
  font-family: "Satoshi", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  text-align: center;
}
section.counter-section .row .column .maf-content .stat-counter .mceEditor {
  display: inline-flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
}
section.counter-section.maf-h-h .row .column {
  padding-top: 40px;
}
section.counter-section.maf-h-f .row .column {
  padding-bottom: 40px;
}
section.basket {
  font-size: 1.8rem;
  overflow: visible;
  padding: 0 1.5rem;
}
section.basket .basketerror {
  color: rgb(195, 0, 40);
}
section.basket .maf-checkout-con {
  width: 100%;
  padding: 0;
  margin: 0 auto 5rem auto;
}
section.basket .maf-checkout-con .no-items {
  min-height: 40vh;
  padding: 0 2.5rem;
}
section.basket .maf-checkout-con input[type=submit], section.basket .maf-checkout-con input input[type=reset] {
  min-height: 5rem;
}
section.basket .maf-checkout-con input[type=submit]:hover, section.basket .maf-checkout-con input[type=submit]:focus, section.basket .maf-checkout-con input input[type=reset]:hover, section.basket .maf-checkout-con input input[type=reset]:focus {
  opacity: 0.9;
}
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 {
  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 {
    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 {
  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 {
    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 {
  border-top: 1px solid rgb(52, 53, 53);
  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 {
  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 {
    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 {
  background-color: rgb(204, 231, 204);
}
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 {
  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 {
    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 {
  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 {
    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] {
  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 {
  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 {
  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 {
  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 {
  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 {
    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 {
  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 {
    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 {
  color: inherit;
}
section.basket .maf-checkout-con .basket-row-head {
  border-bottom: 1px solid rgb(52, 53, 53);
  color: rgb(52, 53, 53);
}
section.basket .maf-checkout-con .basket-row-head > div {
  font-weight: 700;
}
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 {
    margin: 0;
  }
}
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.item input {
  background-color: white;
}
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 {
  margin-bottom: 10px;
  padding-right: 10px;
  width: 100%;
}
section.basket .maf-checkout-con .basket-row-disco span.error {
  color: rgb(195, 0, 40);
}
section.basket .maf-checkout-con .basket-row-disco input {
  margin-bottom: 5px;
}
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 {
    font-size: 1.6rem;
  }
}
section.basket .maf-checkout-con .basket-row-disco .redeem {
  font-weight: bold;
  min-width: 150px;
}
section.basket .maf-checkout-con .basket-row-disco.form {
  margin-bottom: 20px;
}
section.basket .basket-buttons {
  text-align: center;
  width: 100%;
}
section.basket .basket-buttons input {
  margin: 5px;
}
section.basket .billing-overview {
  align-self: flex-start;
  background-color: rgb(235, 235, 235);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
  padding: 10px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  section.basket .billing-overview {
    flex-direction: row;
    padding: 20px;
  }
}
section.basket .billing-overview p {
  font-size: 1.8rem;
  margin: 0;
}
section.basket .billing-overview p.head {
  font-weight: 700;
  padding-top: 20px;
}
section.basket .billing-overview p.head:first-child {
  padding-top: 0;
}
section.basket .billing-overview > div {
  display: inline-block;
  flex: 1 1 50%;
  max-width: 380px;
  padding: 5px;
}
section.basket .billing-overview > div p span {
  display: inline-block;
  font-weight: 700;
  max-width: 140px;
  width: 100%;
}
section.basket .row {
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
  margin: 2rem auto 8rem auto;
  max-width: 113rem;
}
section.basket .row .column {
  padding-top: 4.5rem;
  text-align: left;
}
section.basket .row .column .maf-content.maf-form form {
  justify-content: flex-start;
}
section.patchwork-7 .header {
  padding-bottom: 1rem;
}
section.patchwork-7 .row .column {
  padding-top: 4rem;
  padding-bottom: 0;
  text-align: left;
}
section.patchwork-7 .row .column.nested {
  padding-top: 0;
}
section.patchwork-7 .row .column.nested .row {
  padding: 0;
}
section.patchwork-7 .row .column.nested .column {
  align-content: stretch;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
}
section.patchwork-7 .row .column.nested .column .maf-content {
  padding: 4rem 1.5rem 2rem 1.5rem;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.patchwork-7 .row .column.nested .column .maf-content {
    width: 50%;
  }
}
section.patchwork-7 .row .column.nested .column .maf-content::after {
  background-color: #78073d;
  bottom: -1.5rem;
  content: "";
  height: 1.5rem;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  width: calc(100% - 3rem);
}
section.patchwork-7 .row .column.nested .column.maf-col-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}
section.patchwork-7 .row .column.nested .column.maf-col-4::after {
  background-color: #78073d;
  bottom: 0;
  content: "";
  height: 1.5rem;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  width: calc(100% - 3rem);
}
section.patchwork-7 .row .column.nested .column.maf-col-4 .maf-content::after {
  display: none;
}
section.patchwork-7 .row .column.nested .column.maf-col-4 .maf-content.copy {
  padding-top: 0;
}
@media only screen and (min-width: 576px) {
  section.patchwork-7 .row .column.nested .column.maf-col-4 .maf-content.copy {
    padding-top: 3rem;
  }
}
section.embed-content .row {
  max-width: 96rem;
}
section.squeeze-section .row {
  margin: 0 auto;
}
section.squeeze-section .maf-content {
  align-items: center;
  justify-items: center;
  max-width: 103rem;
  text-align: center;
}
section.squeeze-section .sq-fields {
  display: grid;
  gap: var(--grid-gutter);
  grid-template-columns: 1fr 1fr;
  margin-bottom: var(--grid-gutter);
  max-width: 72rem;
  width: 100%;
}
section.squeeze-section input {
  align-self: auto;
}
section.squeeze-section .cspan {
  grid-column: 1/-1;
}
section.no-spacing .header {
  padding-top: 0;
}
section.no-spacing .header .maf-content {
  padding-top: 0;
}
section.no-spacing .row {
  padding-top: 0;
  padding-bottom: 0;
}
section.no-spacing .row .column {
  padding-top: 0;
  padding-bottom: 0;
}
section.no-spacing .footer {
  padding-bottom: 0;
}
section.no-spacing .footer .maf-content {
  padding-bottom: 0;
}
section.no-spacing-top .header {
  padding-top: 0;
}
section.no-spacing-top .header .maf-content {
  padding-top: 0;
}
section.no-spacing-top .row {
  padding-top: 0 !important;
}
section.no-spacing-top .row .column {
  padding-top: 0 !important;
}
section.no-spacing-top.maf-rep-pad .row {
  padding-bottom: 0 !important;
}
section.no-spacing-top.maf-rep-pad .row .column {
  padding-bottom: 4rem !important;
}
@media only screen and (min-width: 960px) {
  section.no-spacing-top.maf-rep-pad .row .column {
    padding-bottom: 6rem !important;
  }
}
section.no-spacing-bottom .row {
  padding-bottom: 0 !important;
}
section.no-spacing-bottom .row .column {
  padding-bottom: 0 !important;
}
section.no-spacing-bottom.maf-rep-pad .row {
  padding-bottom: 0 !important;
}
section.no-spacing-bottom .footer {
  padding-bottom: 0;
}
section.no-spacing-bottom .footer .maf-content {
  padding-bottom: 0;
}
section.video-bg {
  background-color: black;
  color: white;
  min-height: 56.25vw;
  overflow: hidden;
}
section.video-bg .row .column {
  align-items: center;
  justify-content: center;
}
section.contentline-top .row::before {
  background-color: currentColor;
  color: inherit;
  content: "";
  display: inline-block;
  height: 1.5rem;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
}
@media only screen and (min-width: 576px) {
  section.contentline-top .row::before {
    width: calc(100% - 6rem);
  }
}
section.contentline-bottom .row::after {
  background-color: currentColor;
  bottom: 0;
  color: inherit;
  content: "";
  display: inline-block;
  height: 1.5rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
}
@media only screen and (min-width: 576px) {
  section.contentline-bottom .row::after {
    width: calc(100% - 6rem);
  }
}
section.rss-feed div.cardbox {
  justify-content: flex-start;
}
section.rss-feed div.cardbox article.card, section.rss-feed div.cardbox div.card {
  width: 100%;
}
section.rss-feed div.cardbox article.card .portal-item, section.rss-feed div.cardbox div.card .portal-item {
  color: rgb(52, 53, 53);
  cursor: default;
  font-weight: 400;
  text-align: left;
  transform: none;
}
section.rss-feed div.cardbox article.card .portal-item .portal-content, section.rss-feed div.cardbox div.card .portal-item .portal-content {
  align-content: stretch;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px 5px;
}
section.rss-feed div.cardbox article.card .portal-item .portal-content .info, section.rss-feed div.cardbox div.card .portal-item .portal-content .info {
  flex: 0 0 auto;
  padding: 20px 20px 0 20px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.rss-feed div.cardbox article.card .portal-item .portal-content .info, section.rss-feed div.cardbox div.card .portal-item .portal-content .info {
    padding: 20px;
    width: 66.666%;
  }
}
@media only screen and (min-width: 960px) {
  section.rss-feed div.cardbox article.card .portal-item .portal-content .info, section.rss-feed div.cardbox div.card .portal-item .portal-content .info {
    width: 75%;
  }
}
section.rss-feed div.cardbox article.card .portal-item .portal-content .info .title, section.rss-feed div.cardbox div.card .portal-item .portal-content .info .title {
  font-size: 2.6rem;
  justify-content: flex-start;
  padding: 0;
}
@media only screen and (min-width: 960px) {
  section.rss-feed div.cardbox article.card .portal-item .portal-content .info .title, section.rss-feed div.cardbox div.card .portal-item .portal-content .info .title {
    font-size: 3.6rem;
  }
}
section.rss-feed div.cardbox article.card .portal-item .portal-content .info .desc, section.rss-feed div.cardbox div.card .portal-item .portal-content .info .desc {
  min-height: 0;
}
section.rss-feed div.cardbox article.card .portal-item .portal-content .info .desc img, section.rss-feed div.cardbox div.card .portal-item .portal-content .info .desc img {
  display: none;
}
section.rss-feed div.cardbox article.card .portal-item .portal-content .info .desc p, section.rss-feed div.cardbox div.card .portal-item .portal-content .info .desc p {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col, section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col {
  display: inline-block;
  flex: 0 0 auto;
  padding: 20px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col, section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col {
    width: 33.333%;
  }
}
@media only screen and (min-width: 960px) {
  section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col, section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col {
    width: 25%;
  }
}
section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col div, section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col div {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col .button, section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col .button {
  background-color: transparent;
  border-color: #78073d;
  color: #78073d;
}
section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col .button:hover, section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col .button:hover {
  background-color: #78073d;
  color: white;
}
section.rss-feed div.cardbox article.card .portal-item:hover, section.rss-feed div.cardbox div.card .portal-item:hover {
  transform: none;
}
section.mobile-hide {
  display: none;
}
@media only screen and (min-width: 576px) {
  section.mobile-hide {
    display: flex;
  }
}

.is-footer {
  position: relative;
  z-index: 0;
}
.is-footer a:not(.button) {
  color: inherit;
  font-style: normal;
  opacity: 1;
  text-decoration: none;
}
.is-footer a:not(.button):hover, .is-footer a:not(.button):focus {
  color: #f55da6;
}
.is-footer h2, .is-footer .h2-style {
  font-size: 6rem;
}
.is-footer h2:not(:first-child), .is-footer .h2-style:not(:first-child) {
  margin-top: 2rem;
}
.is-footer p i, .is-footer address i, .is-footer .name i, .is-footer .label i {
  display: none;
  height: 2rem;
  font-size: 1.6rem;
  margin-right: 1rem;
  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.small {
  font-size: 1.4rem;
}
.is-footer p.name {
  font-weight: 700;
  margin-bottom: 0;
}
.is-footer p.compno {
  max-width: 44.5rem;
}
.is-footer address {
  font-family: "Satoshi", sans-serif;
  font-size: 2.4rem;
  margin-bottom: 1em;
  max-width: 33rem;
}
.is-footer .company-name {
  font-size: 2.4rem;
}
.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 0.5rem;
  text-align: center;
}
.is-footer .badges a img {
  height: 7.5rem;
}
.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 {
  font-family: "Satoshi", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 0.1em;
}
@media only screen and (min-width: 576px) {
  .is-footer .phone-block {
    font-size: 3.5rem;
  }
}
.is-footer .phone-block strong, .is-footer .phone-block span {
  color: #f55da6;
  display: inline-block;
  font-weight: 400;
  padding-right: 0.3rem;
}
.is-footer .phone-block:last-child {
  margin-bottom: 0;
}
.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: 0.6rem 0;
  text-decoration: none;
  width: auto;
}
.is-footer .site-nav .bottom-nav a:hover, .is-footer .site-nav .bottom-nav a:focus {
  text-decoration: underline;
}
.is-footer .site-nav .bottom-nav a.lvl-2 {
  padding-left: 2rem;
}
.is-footer .social-icons {
  --icon-colour: white;
  --text-colour: white;
  font-size: 5rem;
}
.is-footer .social-icons a {
  margin-right: 2rem;
}
.is-footer .social-icons a:hover, .is-footer .social-icons a:focus {
  opacity: 1;
}
.is-footer .social-icons a:hover i, .is-footer .social-icons a:focus i {
  color: #f55da6;
}
.is-footer .social-link {
  font-size: 2.4rem;
}
.is-footer .social-link img {
  margin-right: 1rem;
  vertical-align: baseline;
}
.is-footer #igram-h {
  align-content: flex-end;
  align-items: flex-end;
  display: flex;
  width: 100%;
}
.is-footer #igram-h span, .is-footer #igram-h a {
  display: inline-block;
  flex: 0 0 auto;
}
.is-footer #igram-h #title {
  font-family: "Satoshi", sans-serif;
  font-size: 4.4rem;
  line-height: 0.8;
  padding-right: 1rem;
}
.is-footer #igram-h #icon {
  display: none;
  font-size: 6rem;
  line-height: 0;
  margin-left: auto;
}
@media only screen and (min-width: 576px) {
  .is-footer #igram-h #icon {
    display: inline-block;
  }
}
.is-footer #igram-h a {
  line-height: 1;
}
.is-footer .row {
  padding: 0;
  padding-top: 4rem;
}
@media only screen and (min-width: 576px) {
  .is-footer .row {
    padding: 0 1.5rem;
    padding-top: 6rem;
  }
}
.is-footer .row .header .maf-content {
  padding-top: 0;
  padding-bottom: 4rem;
}
.is-footer .row .column {
  padding: 4rem 1.5rem;
  padding-top: 0;
}
@media only screen and (min-width: 960px) {
  .is-footer .row .column {
    padding: 6rem 1.5rem;
    padding-top: 0;
  }
}
.is-footer .row .column {
  justify-content: center;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .is-footer .row .column.half {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .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: 1em;
}
.is-footer .row .column.maf-col-0 {
  padding-bottom: 4rem;
}
.is-footer section {
  margin: 0;
}
.is-footer section.footer-section {
  background-color: black;
  color: white;
  max-width: 160rem;
}
.is-footer section.footer-section .row {
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .is-footer section.footer-section .row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.is-footer section.footer-section .row .column.maf-col-0 {
  align-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.is-footer section.footer-section .row .column.maf-col-0 .maf-content {
  flex: 0 1 auto;
  padding-right: 3rem;
  width: auto;
}
.is-footer section.footer-section .row .column.maf-col-0 .maf-content:last-child {
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .is-footer section.footer-section .row .column.maf-col-1 {
    align-items: center;
  }
}
.is-footer section.footer-section .row .column.maf-col-1 p {
  max-width: 44rem;
}
.is-footer section.footer-section .row .column.maf-col-1 p.compno {
  max-width: 39.5rem;
}
.is-footer section.footer-section .row .column.maf-col-2 {
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) {
  .is-footer section.footer-section .row .column.maf-col-2 {
    text-align: right;
  }
}
.is-footer section.footer-section .row .column.maf-col-2 .maf-content.nl-signup {
  padding-bottom: 1em;
}
.is-footer section.footer-section .row .column.maf-col-2 .maf-content.contacts {
  margin-top: auto;
}
.is-footer section.legals {
  background-color: white;
  color: rgb(52, 53, 53);
  overflow: hidden;
  position: relative;
  padding-bottom: 5rem;
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  .is-footer section.legals {
    padding-bottom: 0;
  }
}
.is-footer section.legals .row {
  max-width: 166rem;
  padding-top: 4rem;
}
.is-footer section.legals .row p {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  padding-right: 1rem;
  padding-bottom: 1rem;
  width: auto;
}
.is-footer section.legals .row p:last-child {
  padding-right: 0;
}
.is-footer section.legals .row a:not(.maf-si) {
  color: rgb(52, 53, 53);
}
.is-footer section.legals .row a:not(.maf-si):hover, .is-footer section.legals .row a:not(.maf-si):focus {
  text-decoration: underline;
}
.is-footer section.legals .row .column {
  padding-bottom: 3rem;
}
.is-footer section.legals .row .column .maf-content {
  flex-direction: column-reverse;
  max-width: none;
}
@media only screen and (min-width: 768px) {
  .is-footer section.legals .row .column .maf-content {
    align-content: flex-end;
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-between;
  }
}/*# sourceMappingURL=tvw-main.css.map */