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

html {
  font-size: 62.5%;
}

body {
  background-color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
}

html, body, .body {
  margin: 0;
  overflow-x: hidden;
}

.body {
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
header, section, footer, .section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: black;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  letter-spacing: -0.5px;
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  header, section, footer, .section {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
  }
}

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

section.maf-h-c .header, .section.maf-h-c .header {
  padding: 0 !important;
}
section.maf-h-c .header .maf-content, .section.maf-h-c .header .maf-content {
  border: 0;
  padding: 0 !important;
}
section.maf-f-c .footer, .section.maf-f-c .footer {
  padding: 0 !important;
}
section.maf-f-c .footer .maf-content, .section.maf-f-c .footer .maf-content {
  display: none;
  padding: 0 !important;
}

.header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 25px 0 25px;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  .header {
    padding: 0 50px 0 50px;
  }
}
.header .maf-content {
  max-width: 840px;
  padding: 37.5px 25px 0 25px;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  .header .maf-content {
    padding: 75px 50px 0 50px;
  }
}
.header .maf-content > *:last-child {
  margin-bottom: 0;
}

.footer {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 25px 37.5px 25px;
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .footer {
    padding: 0 50px 75px 50px;
  }
}

.is-nav-dock {
  height: 360px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .is-nav-dock {
    height: 360px;
  }
}

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

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

.column {
  align-items: center;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  overflow: hidden;
  position: relative;
  padding: 37.5px 25px;
  min-height: 100px;
}
@media only screen and (min-width: 576px) {
  .column {
    padding: 75px 50px;
  }
}
@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;
}
.column .maf-col-i {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 700px;
  position: relative;
  width: 100%;
}

.maf-content {
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 1;
  padding: 0 0;
}
@media only screen and (min-width: 1023px) {
  .maf-content {
    padding: 0 50px;
  }
}
.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;
}

.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: 65.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%;
}

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

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

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

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

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

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

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;
}

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

a, a:visited {
  color: rgb(74, 40, 113);
  line-height: 1.6;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

a:hover, a:focus, a:active {
  color: rgb(233, 136, 199);
  opacity: 0.8;
}

h1, .h1-style, h2, .h2-style, h3, .h3-style, h4, .h4-style, h5, .h5-style, h6.h6-style, p, address, blockquote {
  margin: 0 0 30px 0;
  width: 100%;
}

address {
  font-style: normal;
  line-height: 1.6;
}

h1, .h1-style, h2, .h2-style, h3, .h3-style, h4, .h4-style, h5, .h5-style, h6.h6-style {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 5px;
  margin-bottom: 30px;
}

h1, .h1-style {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.5;
}

h2, .h2-style {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.5;
}

h3, .h3-style {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
}

h4, .h4-style {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
}

h5, .h5-style {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
}

h6, .h6-style {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
}

p, .p-style, li, blockquote, address, .body-text {
  line-height: 1.6;
}
p.al-left, .p-style.al-left, li.al-left, blockquote.al-left, address.al-left, .body-text.al-left {
  text-align: left !important;
}
p.al-right, .p-style.al-right, li.al-right, blockquote.al-right, address.al-right, .body-text.al-right {
  text-align: right !important;
}
p.al-centre, .p-style.al-centre, li.al-centre, blockquote.al-centre, address.al-centre, .body-text.al-centre {
  text-align: center !important;
}
p img.al-left, .p-style img.al-left, li img.al-left, blockquote img.al-left, address img.al-left, .body-text img.al-left {
  float: left;
  margin: 0 5px 5px 0;
}
p img.al-right, .p-style img.al-right, li img.al-right, blockquote img.al-right, address img.al-right, .body-text img.al-right {
  float: right;
  margin: 0 0 5px 5px;
}

strong {
  font-weight: 700;
}

sup {
  font-size: 0.5em;
}

hr {
  border: 0;
  border-top: 1px solid rgb(74, 40, 113);
  display: inline-block;
  height: 0;
  margin: 0 0 30px 0;
  width: 100%;
}
hr.heavy {
  margin: 30px 0 60px 0;
  border-top: 5px solid rgb(74, 40, 113);
}

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

.maf-content ul, .maf-content ol {
  list-style-position: outside;
  margin: 0 0 30px 0;
  padding: 0 0 0 20px;
  width: 100%;
}
.maf-content ul li, .maf-content ol li {
  margin: 0 0 30px 0;
}
.maf-content ul li > p, .maf-content ol li > p {
  margin: 0;
}
.maf-content ul {
  list-style-type: none;
  padding: 0;
}
.maf-content ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.maf-content ul li::before {
  background-color: rgb(74, 40, 113);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 8px;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0.5em;
  width: 8px;
}
.maf-content ul.ul-thumbs {
  margin-bottom: 0;
}
.maf-content ul.ul-thumbs li {
  align-items: center;
  display: flex;
  padding: 0 0 5px 0;
}
.maf-content ul.ul-thumbs li::before {
  display: none;
}
.maf-content ul.ul-thumbs li img {
  align-items: center;
  box-shadow: 0 0 1px rgb(74, 40, 113);
  display: inline-block;
  flex: 0 0 auto;
  max-width: 40px;
  width: 20%;
}
.maf-content ul.ul-thumbs li span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 5px;
}
.maf-content ol {
  counter-reset: maf-ol-counter;
  list-style: none;
  padding: 0 0 0 30px;
  position: relative;
}
.maf-content ol li {
  counter-increment: maf-ol-counter;
}
.maf-content ol li::before {
  content: counter(maf-ol-counter);
  color: rgb(74, 40, 113);
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-size: 2.6rem;
  height: 30px;
  left: 0;
  line-height: 1;
  margin-right: 0.8rem;
  opacity: 0.7;
  position: absolute;
  transform: translateY(5px);
  vertical-align: top;
  width: 30px;
}

blockquote {
  background-color: rgb(255, 247, 253);
  color: rgb(74, 40, 113);
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 30px 0;
  padding: 20px;
  position: relative;
  quotes: "“" "”";
}
blockquote::before {
  color: rgb(254, 217, 48);
  display: none;
  content: open-quote;
  font-size: 3em;
  font-weight: 700;
  left: -0.4em;
  line-height: 1;
  position: absolute;
  top: -0.25em;
}
blockquote::after {
  bottom: -0.25em;
  color: rgb(74, 40, 113);
  display: none;
  content: close-quote;
  font-size: 2em;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: 0;
}
blockquote p {
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  margin: 0 auto;
  max-width: 760px;
}
blockquote p.small-text {
  font-size: 1.3rem;
  font-style: italic;
  margin-top: 20px;
}

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

form {
  transition: all 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
form.hide {
  filter: blur(5px);
  opacity: 0;
  transform: scale(0);
}

.maf-form {
  align-items: center;
  position: relative;
  width: 100%;
}
.maf-form.has-spinner {
  position: static;
}
.maf-form form, .maf-form .form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 700px;
  width: 100%;
}
.maf-form form .maf-input, .maf-form .form .maf-input {
  display: inline-block;
  flex: 0 1 100%;
  margin-bottom: 30px;
  position: relative;
  text-align: left;
}
.maf-form form .maf-input.half, .maf-form .form .maf-input.half {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .maf-form form .maf-input.half, .maf-form .form .maf-input.half {
    flex-basis: 50%;
  }
  .maf-form form .maf-input.half.left, .maf-form .form .maf-input.half.left {
    padding-right: 10px;
  }
  .maf-form form .maf-input.half.right, .maf-form .form .maf-input.half.right {
    padding-left: 10px;
  }
}
.maf-form form .maf-input.centre, .maf-form form .maf-input.center, .maf-form .form .maf-input.centre, .maf-form .form .maf-input.center {
  text-align: center;
}
.maf-form form .maf-input input, .maf-form .form .maf-input input {
  padding-right: 15px;
}
.maf-form form .maf-input input.is-datepicker, .maf-form .form .maf-input input.is-datepicker {
  max-width: 150px;
}
.maf-form form .maf-input i, .maf-form .form .maf-input i {
  color: rgb(99, 99, 99);
  display: none;
  position: absolute;
  right: 8px;
  top: 8px;
}
.maf-form form label, .maf-form form .label, .maf-form .form label, .maf-form .form .label {
  color: rgb(74, 40, 113);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.maf-form form .cap-error, .maf-form .form .cap-error {
  display: none;
}
.maf-form form .cap-error.show, .maf-form .form .cap-error.show {
  display: inline-block;
}
.maf-form form .g-recap-con, .maf-form .form .g-recap-con {
  margin: 0 auto;
  display: inline-block;
  width: 302px;
}
.maf-form form .button, .maf-form .form .button {
  margin: 0;
}
.maf-form .a-f-resp {
  opacity: 0;
  position: absolute;
  transition: opacity 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 700ms;
  width: 100%;
}
.maf-form .a-f-resp.show {
  opacity: 1;
}
.maf-form .a-f-resp h3 {
  margin: 0;
}

input, textarea {
  background-color: white;
  border: 1px solid rgb(74, 40, 113);
  border-radius: 3px;
  color: rgb(74, 40, 113);
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  margin: 0;
  outline-color: rgb(254, 217, 48);
  padding: 10px 33px 10px 15px;
  width: 100%;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgb(74, 40, 113);
  font-family: "Quicksand", sans-serif;
  opacity: 0.6;
}
input::placeholder, textarea::placeholder {
  color: rgb(74, 40, 113);
  font-family: "Quicksand", sans-serif;
  opacity: 0.6;
}
input:focus, textarea:focus {
  background-color: rgba(50, 107, 163, 0.15);
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0.3;
}
input:focus::placeholder, textarea:focus::placeholder {
  opacity: 0.3;
}
input.short, textarea.short {
  max-width: 200px;
}

textarea {
  resize: none;
}

label, .label {
  display: inline-block;
  margin: 10px 0 0 0;
  padding: 0 0 5px 0;
}

select {
  margin-bottom: 1.2em;
  outline-color: rgb(254, 217, 48);
}

input[type=submit],
button.maf-button {
  align-items: center;
  align-self: flex-start;
  background-color: rgb(254, 217, 48);
  background: linear-gradient(to right, rgb(233, 136, 199) 50%, rgb(254, 217, 48) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.3s ease-out;
  border: 0px solid rgb(254, 217, 48);
  border-radius: 5px;
  color: rgb(74, 40, 113);
  cursor: pointer;
  display: inline-flex;
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  justify-content: center;
  min-width: 195px;
  min-height: 36px;
  opacity: 1;
  outline: transparent;
  padding: 10px 60px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  width: auto;
  margin: 20px auto 30px 0;
  transition: all 0.5s ease-out;
}
@media only screen and (max-width: 414px) {
  input[type=submit],
  button.maf-button {
    width: 100%;
  }
}
input[type=submit]:hover,
button.maf-button:hover {
  background-position: left bottom;
  color: white;
  border: 0px solid rgb(233, 136, 199);
}

button.buttonload {
  align-items: center;
  align-self: flex-start;
  background-color: rgb(254, 217, 48);
  background: linear-gradient(to right, rgb(233, 136, 199) 50%, rgb(254, 217, 48) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.3s ease-out;
  border: 0px solid rgb(254, 217, 48);
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  min-width: 195px;
  min-height: 36px;
  opacity: 1;
  outline: transparent;
  padding: 10px 60px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  width: auto;
  margin: 20px auto 30px 0;
  color: rgb(74, 40, 113);
  font-size: 2.4rem;
  font-weight: 800;
  font-family: "Quicksand", sans-serif;
  transition: all 0.5s ease-out;
}
@media only screen and (max-width: 414px) {
  button.buttonload {
    width: 100%;
  }
}
button.buttonload:hover {
  background-position: left bottom;
  color: white;
  border: 0px solid rgb(233, 136, 199);
}
button.buttonload:active {
  background-color: rgb(233, 136, 199);
}

.buttonload__text {
  color: rgb(74, 40, 113);
  font-size: 2.4rem;
  font-weight: 800;
  font-family: "Quicksand", sans-serif;
  transition: all 0.2s;
}

.buttonload--loading .buttonload__text {
  visibility: hidden;
  opacity: 0;
}

.buttonload--loading {
  background-color: rgb(233, 136, 199);
  padding: 10px 40px;
}
.buttonload--loading::after {
  content: "";
  color: rgb(74, 40, 113);
  font-size: 2.4rem;
  font-weight: 800;
  font-family: "Quicksand", sans-serif;
  margin: 10px 40px;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: rgb(74, 40, 113);
  border-radius: 50%;
  animation: buttonload-loading-spinner 1s ease infinite;
}

@keyframes buttonload-loading-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
.button, .button:visited, .button:focus, .button:active {
  align-items: center;
  align-self: flex-start;
  background-color: rgb(254, 217, 48);
  transition: all 0.3s ease-out;
  border: 0;
  border-radius: 5px;
  color: rgb(74, 40, 113) !important;
  cursor: pointer;
  display: inline-flex;
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  justify-content: center;
  min-width: 195px;
  min-height: 36px;
  opacity: 1;
  outline: transparent;
  overflow: hidden;
  padding: 10px 60px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  width: auto;
  transition: all 0.5s ease-out;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .button, .button:visited, .button:focus, .button:active {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 414px) {
  .button, .button:visited, .button:focus, .button:active {
    font-size: 1.5rem;
  }
}
.button::before, .button:visited::before, .button:focus::before, .button:active::before {
  background-color: rgb(98, 52, 137);
  content: "";
  display: inline-block;
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: -1;
}
.button:hover, .button:visited:hover, .button:focus:hover, .button:active:hover {
  color: white !important;
  opacity: 1;
}
.button:hover::before, .button:visited:hover::before, .button:focus:hover::before, .button:active:hover::before {
  left: 0;
}
.button.tri, .button:visited.tri, .button:focus.tri, .button:active.tri {
  padding: 9px 40px 9px 18px;
}
.button.tri::after, .button:visited.tri::after, .button:focus.tri::after, .button:active.tri::after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid white;
  content: "";
  display: inline-block;
  height: 0;
  position: absolute;
  right: 20px;
  transform: translate(0, -50%);
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  top: 50%;
  width: 0;
}
.button.tri:hover::after, .button:visited.tri:hover::after, .button:focus.tri:hover::after, .button:active.tri:hover::after {
  right: 12px;
  transform: translate(0, -50%) scale(1.2);
}
.button.chevron::before, .button.chevron::after, .button:visited.chevron::before, .button:visited.chevron::after, .button:focus.chevron::before, .button:focus.chevron::after, .button:active.chevron::before, .button:active.chevron::after {
  background-color: rgb(74, 40, 113);
  content: "";
  display: inline-block;
  left: 50%;
  position: absolute;
  height: 2px;
  width: 40%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: right center;
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.button.chevron::after, .button:visited.chevron::after, .button:focus.chevron::after, .button:active.chevron::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.button.chevron:hover::before, .button:visited.chevron:hover::before, .button:focus.chevron:hover::before, .button:active.chevron:hover::before {
  transform: translate(-50%, -50%) rotate(30deg);
}
.button.chevron:hover::after, .button:visited.chevron:hover::after, .button:focus.chevron:hover::after, .button:active.chevron:hover::after {
  transform: translate(-50%, -50%) rotate(-30deg);
}

input[type=radio], input[type=checkbox] {
  display: inline;
  margin: 2px;
  vertical-align: 4%;
  width: auto;
}

input[type=file] {
  border: 0;
  padding: 0;
}
input[type=file].file-load {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
input[type=file].file-load + label {
  background-color: rgb(254, 217, 48);
  border: 1px solid rgb(254, 217, 48);
  color: rgb(74, 40, 113);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  margin: 0 2px;
  padding: 10px 30px;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
input[type=file].file-load + label:hover {
  background-color: rgb(74, 40, 113);
  border-color: rgb(74, 40, 113);
  color: white;
}

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

.checkbox .pretty-check {
  display: inline-block;
  position: relative;
  margin: 2px;
  width: 20px;
}
.checkbox .pretty-check label {
  border-radius: 0;
  border: 1px solid rgb(254, 217, 48);
  cursor: pointer;
  height: 20px;
  left: 0;
  margin: 0;
  position: absolute;
  width: 20px;
  top: 1px;
}
.checkbox .pretty-check label:after {
  background: transparent;
  border: 2px solid white;
  border-top: none;
  border-right: none;
  content: "";
  height: 4px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 4px;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transform: rotate(-50deg);
  width: 10px;
}
.checkbox .pretty-check label:hover {
  background: rgba(81, 81, 81, 0.1);
}
.checkbox .pretty-check label:hover::after {
  opacity: 0.7;
}
.checkbox .pretty-check input[type=checkbox] {
  visibility: hidden;
}
.checkbox .pretty-check input[type=checkbox]:checked + label {
  background: rgb(254, 217, 48);
}
.checkbox .pretty-check input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.checkbox span {
  vertical-align: text-bottom;
}

.check2 {
  display: inline-block;
  position: relative;
  width: 100%;
}
.check2.inline {
  width: auto;
  margin-right: 30px;
}
.check2.inline:last-child {
  margin: 0;
}
.check2 input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  z-index: 0;
}
.check2 input[type=checkbox] + label {
  cursor: pointer;
  padding: 3px 0 8px 35px;
  position: relative;
  z-index: 1;
}
.check2 input[type=checkbox] + label:hover ~ .check::before {
  opacity: 0.5;
  transform: scale(1);
}
.check2 input[type=checkbox]:checked ~ .check::before {
  opacity: 1;
  transform: scale(1);
}
.check2 .check {
  background-color: #eee;
  border: 2px solid rgb(74, 40, 113);
  border-radius: 50%;
  display: inline-block;
  height: 23px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 23px;
  z-index: 0;
}
.check2 .check::before {
  background-color: rgb(74, 40, 113);
  border-radius: 100%;
  content: "";
  display: block;
  height: 11px;
  left: 4px;
  margin: auto;
  opacity: 0;
  position: absolute;
  top: 4px;
  transform: scale(0);
  transform-origin: center;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 11px;
}

.radio {
  align-items: center;
  cursor: pointer;
  display: flex;
  margin-bottom: 30px;
  width: 100%;
}
.radio .pretty-radio {
  display: inline-block;
  position: relative;
  margin: 0;
  width: 40px;
}
.radio .pretty-radio label {
  border-radius: 50%;
  border: 10px solid rgb(254, 217, 48);
  cursor: pointer;
  height: 40px;
  left: 0;
  margin: 0;
  position: absolute;
  transition: background-color 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 40px;
  top: 1px;
}
.radio .pretty-radio label:after {
  background: transparent;
  border: 2px solid rgb(254, 217, 48);
  border-top: none;
  border-right: none;
  content: "";
  display: none;
  height: 4px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transform: rotate(-50deg);
  width: 8px;
}
.radio .pretty-radio label:hover {
  background: rgb(233, 136, 199);
}
.radio .pretty-radio label:hover::after {
  opacity: 0.7;
}
.radio .pretty-radio input[type=radio] {
  height: 40px;
  visibility: hidden;
  width: 40px;
}
.radio .pretty-radio input[type=radio]:checked + label {
  background: rgb(233, 136, 199);
}
.radio .pretty-radio input[type=radio]:checked + label:after {
  opacity: 1;
}
.radio span {
  padding-left: 10px;
  text-align: left;
  vertical-align: 40%;
  width: calc(100% - 40px);
}
.radio:hover .pretty-radio label {
  background: rgb(233, 136, 199);
}

.radio2 {
  display: inline-block;
  position: relative;
  width: 100%;
}
.radio2.inline {
  width: auto;
  margin-right: 20px;
}
.radio2.inline:last-child {
  margin: 0;
}
.radio2 input[type=radio] {
  position: absolute;
  visibility: hidden;
  z-index: 0;
}
.radio2 input[type=radio] + label {
  cursor: pointer;
  padding: 3px 0 8px 35px;
  position: relative;
  z-index: 1;
}
.radio2 input[type=radio] + label:hover ~ .check::before {
  opacity: 0.5;
  transform: scale(1);
}
.radio2 input[type=radio]:checked ~ .check::before {
  opacity: 1;
  transform: scale(1);
}
.radio2 .check {
  background-color: #eee;
  border: 2px solid rgb(74, 40, 113);
  border-radius: 50%;
  display: inline-block;
  height: 23px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 23px;
  z-index: 0;
}
.radio2 .check::before {
  background-color: rgb(74, 40, 113);
  border-radius: 100%;
  content: "";
  display: block;
  height: 11px;
  left: 4px;
  margin: auto;
  opacity: 0;
  position: absolute;
  top: 4px;
  transform: scale(0);
  transform-origin: center;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 11px;
}

.radio-button {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
.radio-button input {
  position: absolute;
  visibility: hidden;
  z-index: 0;
}
.radio-button input ~ .rbutton {
  background-color: rgb(74, 40, 113);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-weight: 500;
  min-width: 184px;
  opacity: 0.5;
  padding: 12px 24px;
  position: relative;
  text-align: center;
  transition: opacity 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  z-index: 1;
}
.radio-button input ~ .rbutton:hover {
  opacity: 1;
}
.radio-button input:checked ~ .rbutton {
  opacity: 1;
}
.radio-button:last-child {
  margin: 0;
}

.select {
  background-color: white;
  border: 1px solid rgb(224, 223, 224);
  cursor: pointer;
  height: 50px;
  margin: 0;
  overflow: hidden;
  padding-left: 10px;
  position: relative;
  width: 100%;
  z-index: 0;
}
.select::before {
  background-color: transparent;
  border-left: 1px solid rgb(224, 223, 224);
  content: "";
  display: none;
  height: 100%;
  position: absolute;
  right: 0;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  top: 0;
  width: 39px;
  z-index: -1;
}
.select::after {
  background-color: transparent;
  border: 2px solid rgb(99, 99, 99);
  border-left: 0;
  border-top: 0;
  content: "";
  height: 12px;
  position: absolute;
  right: 5px;
  transform: translate(-50%, -55%) rotate(45deg);
  transform-origin: center;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  top: 45%;
  width: 12px;
  z-index: -1;
}
.select select {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: rgb(99, 99, 99);
  cursor: pointer;
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  height: 100%;
  outline: transparent;
  padding: 8px 10px;
  text-transform: uppercase;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: calc(100% + 25px);
  z-index: 1;
}
.select select option {
  font-family: "Quicksand", sans-serif;
}
.select:hover select {
  color: rgb(74, 40, 113);
}
.select:hover::before {
  background-color: rgb(74, 40, 113);
}
.select:hover::after {
  border-color: rgb(74, 40, 113);
  top: 50%;
}

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

@keyframes spinchase {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinchasedot {
  80%, 100% {
    transform: rotate(360deg);
  }
}
@keyframes spinchasedotbefore {
  50% {
    transform: scale(0.4);
  }
  100%, 0% {
    transform: scale(1);
  }
}
.form-spinner {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: -1;
}
.form-spinner .spin-chase {
  animation: spinchase 2.5s infinite linear both;
  height: 40px;
  left: calc(50% - 20px);
  position: absolute;
  top: calc(50% - 20px);
  width: 40px;
}
.form-spinner .spin-chase .spin-chase-dot {
  animation: spinchasedot 2s infinite ease-in-out both;
  animation-delay: -1.1s;
  height: 100%;
  left: 0;
  opacity: 0.9;
  position: absolute;
  top: 0;
  width: 100%;
}
.form-spinner .spin-chase .spin-chase-dot::before {
  animation: spinchasedotbefore 2s infinite ease-in-out both;
  animation-delay: -1.1s;
  background-color: white;
  border-radius: 100%;
  content: "";
  display: block;
  height: 25%;
  width: 25%;
}
.form-spinner .spin-chase .spin-chase-dot:nth-child(2) {
  animation-delay: -1s;
}
.form-spinner .spin-chase .spin-chase-dot:nth-child(2)::before {
  animation-delay: -1s;
}
.form-spinner .spin-chase .spin-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}
.form-spinner .spin-chase .spin-chase-dot:nth-child(3)::before {
  animation-delay: -0.9s;
}
.form-spinner .spin-chase .spin-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}
.form-spinner .spin-chase .spin-chase-dot:nth-child(4)::before {
  animation-delay: -0.8s;
}
.form-spinner .spin-chase .spin-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}
.form-spinner .spin-chase .spin-chase-dot:nth-child(5)::before {
  animation-delay: -0.7s;
}
.form-spinner .spin-chase .spin-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}
.form-spinner .spin-chase .spin-chase-dot:nth-child(6)::before {
  animation-delay: -0.6s;
}
.form-spinner #gal-frm-spin-op {
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  left: 50%;
  position: absolute;
  text-shadow: 0 0 3px black;
  top: calc(50% + 45px);
  transform: translateX(-50%);
}
.form-spinner.run {
  opacity: 1;
  z-index: 1;
}

.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;
}

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

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

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

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

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

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

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

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

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

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

.meet-your-maker {
  font-weight: 600;
  text-decoration: none !important;
  transition: all 1000ms cubic-bezier(0.445, 0.05, 0.55, 0.95) !important;
}
.meet-your-maker:hover {
  filter: blur(5px);
  text-decoration: none !important;
}

.maf-msg {
  align-items: flex-start;
  display: inline-flex;
  font-size: 1.8rem;
  margin-bottom: 10px;
  padding: 10px 20px;
  text-align: left;
  width: 100%;
}
.maf-msg.error-msg {
  background-color: rgb(255, 200, 200);
  border: 1px solid rgb(186, 72, 72);
  color: rgb(186, 72, 72);
}
.maf-msg.success-msg {
  background-color: rgb(206, 240, 206);
  border: 1px solid rgb(30, 60, 30);
  color: rgb(30, 60, 30);
}
.maf-msg.input-msg {
  border-radius: 0 0 5px 5px;
  font-size: 1.4rem;
  margin: 0;
}

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

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

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

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

#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;
  right: 0;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  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: 1px solid rgb(66, 66, 66);
  border-radius: 5px;
}
.is-map .maf-map-pos .maf-obj-map .gmnoprint div button[title="Zoom in"] div, .is-map .maf-map-pos .maf-obj-map .gmnoprint div button[title="Zoom out"] div {
  left: 6px !important;
  top: 5px !important;
}

.social-icons {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 0;
  width: auto;
}
.social-icons a {
  display: inline-block;
  line-height: 0;
  margin-right: 5px;
  opacity: 1;
}
.social-icons a:last-child {
  margin-right: 0;
}
.social-icons a img {
  max-height: 100%;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: auto;
}
.social-icons a i {
  background-color: white;
  border: 2px solid white;
  border-radius: 2em;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  line-height: 0;
  padding: 5px;
  position: relative;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 30px;
}
.social-icons a i::before {
  color: rgb(254, 217, 48);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.social-icons a i:hover {
  background-color: rgb(254, 217, 48);
}
.social-icons a i:hover::before {
  color: white;
}
.social-icons a.is-img {
  background-color: white;
  border: 2px solid white;
  border-radius: 50%;
  height: 36px;
  padding: 3px;
  text-align: center;
  width: 36px;
}
.social-icons a.is-img:hover {
  background-color: transparent;
}
.social-icons a.is-img:hover img {
  filter: brightness(0) invert(1);
}
.social-icons.corporate-colours a i.tvw-facebook {
  background-color: #3b5999;
  border-color: #3b5999;
}
.social-icons.corporate-colours a i.tvw-twitter {
  background-color: #55acee;
  border-color: #55acee;
}
.social-icons.corporate-colours a i.tvw-flickr {
  background-color: #0063dc;
  border-color: #0063dc;
}
.social-icons.corporate-colours a i.tvw-linkedin {
  background-color: #0077b5;
  border-color: #0077b5;
}
.social-icons.corporate-colours a i.tvw-instagram {
  background-color: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: #d6249f;
}
.social-icons.corporate-colours a i.tvw-vimeo {
  background-color: #1ab7ea;
  border-color: #1ab7ea;
}
.social-icons.corporate-colours a i.tvw-youtube {
  background-color: #cd201f;
  border-color: #cd201f;
}
.social-icons.corporate-colours a i.tvw-gplus {
  background-color: #dd4b39;
  border-color: #dd4b39;
}

.twitter-feed {
  height: 100%;
  width: 100%;
}
.twitter-feed h2 {
  margin-top: 0;
}
.twitter-feed > div {
  width: 100%;
}
.twitter-feed > div iframe {
  width: 100% !important;
}
.twitter-feed .tweet_list {
  margin: 0;
  padding: 0;
  text-align: left;
}
.twitter-feed .tweet_list li {
  background-color: rgb(236, 253, 255);
  display: inline-block;
  font-size: 1.8rem;
  margin-bottom: 30px;
  padding: 20px;
  position: relative;
  width: 100%;
}
.twitter-feed .tweet_list li::before {
  display: none;
}
.twitter-feed .tweet_list li a {
  color: rgb(74, 40, 113);
  overflow-wrap: break-word;
  text-decoration: none;
  word-wrap: break-word;
}
.twitter-feed .tweet_list li:last-child {
  border: none;
}
.twitter-feed .tweet_list li:last-child::after {
  display: none;
}

.insta-feed {
  width: 100%;
}
.insta-feed .eapps-instagram-feed-posts-grid-load-more {
  display: none;
}

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

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

div#email-floater {
  background-color: rgb(74, 40, 113);
  border-radius: 12px 0 0 12px;
  font-size: 1.4rem;
  height: auto;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: calc(50vh + 20px);
  width: 40px;
}
@media only screen and (min-width: 576px) {
  div#email-floater {
    height: auto;
    padding: 10px;
    top: calc(50vh + 35px);
    width: 100px;
  }
}
div#email-floater button, div#email-floater a {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: white;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  height: 40px;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
  text-decoration: none;
  width: 40px;
}
div#email-floater button span, div#email-floater a span {
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
div#email-floater button:hover, div#email-floater a:hover {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}
div#email-floater button:hover span, div#email-floater a:hover span {
  text-shadow: 0 0 8px black;
}
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: 576px) {
  div#email-floater button, div#email-floater a {
    height: auto;
    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 hr {
  border-color: white;
  border-width: 1px;
  display: none;
  margin-bottom: 5px;
}
@media only screen and (min-width: 576px) {
  div#email-floater hr {
    display: inline-block;
  }
}
div#email-floater.no-show {
  display: none;
}

#conco-f {
  background-color: white;
  border-radius: 18px 0 0 0;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.3);
  bottom: 0;
  color: rgb(74, 40, 113);
  display: flex;
  flex-direction: column;
  float: none;
  margin: 0;
  max-height: calc(100vh - 100px);
  max-width: 750px;
  overflow-y: auto;
  padding: 25px 15px 25px 25px;
  position: fixed;
  right: -110%;
  transform: rotateZ(0);
  transition: all 500ms ease;
  width: 100%;
  z-index: 999;
}
@media only screen and (min-width: 576px) {
  #conco-f {
    flex-direction: row;
  }
}
#conco-f #close {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  height: 40px;
  outline: transparent;
  position: absolute;
  right: 10px;
  top: 10px;
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 40px;
}
#conco-f #close::before, #conco-f #close::after {
  background-color: rgb(74, 40, 113);
  content: "";
  display: inline-block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 70%;
}
#conco-f #close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#conco-f #close:hover {
  transform: rotate(90deg);
}
#conco-f h2 {
  margin-bottom: 15px;
}
#conco-f .details {
  flex: 0 0 40%;
  order: 2;
}
#conco-f .details a {
  color: rgb(74, 40, 113);
  text-decoration: none;
}
#conco-f .details .company-name {
  font-weight: 500;
}
@media only screen and (min-width: 576px) {
  #conco-f .details {
    order: 1;
    padding-right: 10px;
  }
}
#conco-f .form {
  flex: 0 0 60%;
  margin: 0;
  padding-bottom: 20px;
  order: 1;
}
@media only screen and (min-width: 576px) {
  #conco-f .form {
    order: 2;
    padding-bottom: 0;
    padding-left: 10px;
  }
}
#conco-f .form .maf-form {
  padding: 0;
}
#conco-f .form .maf-form input, #conco-f .form .maf-form textarea {
  border-color: rgb(74, 40, 113);
  color: rgb(74, 40, 113);
}
#conco-f .form .maf-form input::-moz-placeholder, #conco-f .form .maf-form textarea::-moz-placeholder {
  color: rgb(74, 40, 113);
}
#conco-f .form .maf-form input::placeholder, #conco-f .form .maf-form textarea::placeholder {
  color: rgb(74, 40, 113);
}
#conco-f .form .maf-form textarea {
  height: 150px;
}
#conco-f .form .maf-form .g-recaptcha {
  float: left;
  margin-right: 10px;
}
#conco-f .form .maf-form .button {
  background-color: rgb(233, 136, 199);
  border-color: rgb(233, 136, 199);
  color: white;
  width: auto;
}
#conco-f .form .maf-form .button:hover {
  background-color: transparent;
  color: rgb(233, 136, 199);
}
#conco-f .form .maf-form i {
  font-size: 2rem;
}
#conco-f.open {
  right: 0;
}

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

.flickity-slideshow, .flickity-slideshow-edit {
  width: 100%;
}
.flickity-slideshow .flickity-page-dots, .flickity-slideshow-edit .flickity-page-dots {
  bottom: 0;
  display: block;
  margin: 0;
  padding: 0;
}
.flickity-slideshow .flickity-page-dots .dot, .flickity-slideshow-edit .flickity-page-dots .dot {
  background: transparent;
  border: 2px solid rgb(254, 217, 48);
  height: 20px;
  margin: 0 3px;
  opacity: 1;
  position: relative;
  width: 20px;
}
.flickity-slideshow .flickity-page-dots .dot::before, .flickity-slideshow-edit .flickity-page-dots .dot::before {
  background-color: rgb(254, 217, 48);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 0;
}
.flickity-slideshow .flickity-page-dots .dot.is-selected::before, .flickity-slideshow-edit .flickity-page-dots .dot.is-selected::before {
  height: 70%;
  width: 70%;
}
.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 {
  border-radius: 0;
  box-shadow: none;
  height: 80px;
  margin: 0;
  opacity: 0.7;
  padding: 0;
  top: 42%;
  transform-origin: center;
  transition: opacity 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 80px;
  z-index: 2;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button::before, .flickity-slideshow .flickity-button.flickity-prev-next-button::after, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button::before, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button::after {
  content: "";
  display: inline-block;
  height: 100%;
  left: -5%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transform-origin: center;
  width: 100%;
  z-index: 2;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button::before, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button::before {
  background-color: rgb(74, 40, 113);
  border-radius: 50%;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button::after, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button::after {
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 30px solid white;
  height: 0;
  left: 50%;
  top: 50%;
  transform: translate(-75%, -50%);
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 0;
}
.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.previous, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button.previous {
  left: -20px;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button.next, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button.next {
  right: -20px;
  transform: translateY(-50%) rotate(180deg);
}
.flickity-slideshow .flickity-button.flickity-prev-next-button:hover, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button:hover {
  opacity: 1;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button:hover::after, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button:hover::after {
  transform: translate(-85%, -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%;
}

.blog-nav {
  width: 100%;
}
.blog-nav .nav-title {
  background-color: rgb(246, 240, 255);
  color: rgb(74, 40, 113);
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 0 10px 0;
  padding: 10px;
  position: relative;
}
.blog-nav .blog-aside-content {
  display: inline-block;
  margin-bottom: 10px;
  width: 100%;
}
.blog-nav .blog-aside-content a {
  color: rgb(74, 40, 113);
  display: inline-block;
  line-height: 1.2;
  opacity: 1;
  text-decoration: none;
  width: 100%;
}
.blog-nav .blog-aside-content a .blog-current-item {
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: rgb(74, 40, 113);
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: flex-start;
  line-height: 1.2;
  margin: 0 0 0 0;
  outline: transparent;
  overflow: hidden;
  padding: 5px 20px 5px 10px;
  position: relative;
  text-align: left;
  text-transform: capitalize;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: 1;
}
.blog-nav .blog-aside-content a .blog-current-item::before, .blog-nav .blog-aside-content a .blog-current-item::after {
  content: "";
  background-color: rgb(74, 40, 113);
  display: inline-block;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  transform: skewX(-18deg);
  transform-origin: top right;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 120%;
  z-index: -1;
}
.blog-nav .blog-aside-content a .blog-current-item:hover, .blog-nav .blog-aside-content a .blog-current-item.active {
  color: white;
}
.blog-nav .blog-aside-content a .blog-current-item:hover::before, .blog-nav .blog-aside-content a .blog-current-item:hover::after, .blog-nav .blog-aside-content a .blog-current-item.active::before, .blog-nav .blog-aside-content a .blog-current-item.active::after {
  right: 0;
}
.blog-nav .blog-aside-content a .blog-current-item p {
  line-height: 1.2;
  margin: 0;
}
.blog-nav .blog-aside-content a .blog-current-item time {
  display: none;
  font-size: 1.2rem;
  opacity: 0.8;
}
.blog-nav .blog-aside-content.nav-filter button {
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: rgb(74, 40, 113);
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: flex-start;
  line-height: 1.2;
  margin: 0 0 10px 0;
  outline: transparent;
  overflow: hidden;
  padding: 5px 3px;
  text-align: left;
  text-transform: capitalize;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: 1;
}
.blog-nav .blog-aside-content.nav-filter button::before {
  content: "";
  background-color: rgb(233, 136, 199);
  display: inline-block;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  transform: skewX(-18deg);
  transform-origin: top right;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 120%;
  z-index: -1;
}
.blog-nav .blog-aside-content.nav-filter button:hover, .blog-nav .blog-aside-content.nav-filter button.active {
  color: white;
  padding-left: 8px;
}
.blog-nav .blog-aside-content.nav-filter button:hover::before, .blog-nav .blog-aside-content.nav-filter button.active::before {
  right: 0;
}
.blog-nav .blog-aside-content.is-toggle-group .toggle-group.is-on {
  border-top: none;
}
.blog-nav .blog-aside-content.is-toggle-group .toggle-group a {
  color: rgb(74, 40, 113);
  font-size: 1.6rem;
  font-weight: 400;
  padding: 5px 10px;
}
.blog-nav .blog-aside-content.is-toggle-group .toggle-group a:hover {
  background-color: rgb(254, 217, 48);
  color: white;
}
.blog-nav .blog-aside-content:first-child .nav-title {
  margin-top: 0;
}

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

.pagination {
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  width: 100%;
}
.pagination span, .pagination a {
  display: inline-block;
  margin: 3px;
}
.pagination a, .pagination .active {
  border: 1px solid rgb(229, 229, 229);
  opacity: 1;
  padding: 10px 20px;
}
.pagination a:last-child, .pagination .active:last-child {
  margin: 0;
}
.pagination a:hover {
  background-color: rgb(74, 40, 113);
  color: rgb(254, 217, 48);
}
.pagination span.active {
  background-color: rgb(229, 229, 229);
  color: rgb(74, 40, 113);
  opacity: 0.7;
}

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

.is-simple-gallery {
  max-width: none;
  width: 100%;
}
.is-simple-gallery.flex {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.is-simple-gallery.flex figure {
  flex: 0 0 100%;
  margin: 0;
  padding: 10px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .is-simple-gallery.flex figure {
    flex: 0 0 25%;
  }
}
.is-simple-gallery.flex figure > a {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: all 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
.is-simple-gallery.flex figure > a::after {
  content: "";
  display: table;
  padding-bottom: 100%;
}
.is-simple-gallery.flex figure > a > div, .is-simple-gallery.flex figure > a > img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(1);
  transform-origin: center;
  transition: all 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
.is-simple-gallery.flex figure > a > img {
  -o-object-fit: cover;
     object-fit: cover;
}
.is-simple-gallery.flex figure > a figcaption {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0 15px 0 0;
  box-shadow: 3px -3px 8px rgba(0, 0, 0, 0.5);
  bottom: 0;
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  left: 0;
  padding: 5px 8px;
  position: absolute;
}
.is-simple-gallery.flex figure > a:hover > div, .is-simple-gallery.flex figure > a:hover > img {
  transform: scale(1.1);
}
.is-simple-gallery.isotope .iso-portal {
  margin-bottom: 60px;
  max-width: 100%;
  width: 100%;
}
.is-simple-gallery.isotope .iso-portal .portal-sizer, .is-simple-gallery.isotope .iso-portal .portal-item {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .is-simple-gallery.isotope .iso-portal .portal-sizer, .is-simple-gallery.isotope .iso-portal .portal-item {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  .is-simple-gallery.isotope .iso-portal .portal-sizer, .is-simple-gallery.isotope .iso-portal .portal-item {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1280px) {
  .is-simple-gallery.isotope .iso-portal .portal-sizer, .is-simple-gallery.isotope .iso-portal .portal-item {
    width: 25%;
  }
}
@media only screen and (min-width: 1366px) {
  .is-simple-gallery.isotope .iso-portal .portal-sizer, .is-simple-gallery.isotope .iso-portal .portal-item {
    width: 20%;
  }
}
.is-simple-gallery.isotope .iso-portal figure {
  margin: 0;
  padding: 12px;
  position: relative;
}
.is-simple-gallery.isotope .iso-portal figure img {
  width: 100%;
  height: auto;
}
.is-simple-gallery.isotope .iso-portal figure a {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

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

.img-gal {
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  max-width: 920px;
  width: calc(100% + 20px);
}
.img-gal .gal-item {
  display: inline-block;
  flex: 0 0 auto;
  line-height: 0;
  padding: 10px;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .img-gal .gal-item {
    width: 50%;
  }
}
.img-gal .gal-item > a {
  background-color: black;
  cursor: pointer;
  display: inline-block;
  opacity: 1;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
.img-gal .gal-item > a img {
  display: inline-block;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
  position: absolute;
  top: 0;
  transform: scale(1);
  transform-origin: center;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
.img-gal .gal-item > a button {
  background-color: rgba(255, 255, 255, 0.7);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 70px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 70px;
}
.img-gal .gal-item > a button::before {
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid rgb(74, 40, 113);
  content: "";
  display: inline-block;
  height: 0;
  left: 50%;
  position: absolute;
  transform: translate(-40%, -50%);
  transition: right 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  top: 50%;
  width: 0;
}
.img-gal .gal-item > a .info {
  background-color: rgba(0, 0, 0, 0);
  bottom: 0;
  color: white;
  display: inline-block;
  left: 0;
  padding: 15px;
  position: absolute;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
.img-gal .gal-item > a .info p {
  font-size: 2.4rem;
  margin: 0;
  text-shadow: 0 0 3px black;
}
.img-gal .gal-item > a .info p:first-letter {
  text-transform: capitalize;
}
.img-gal .gal-item > a .info p.imgno {
  font-size: 1.3rem;
}
.img-gal .gal-item > a:hover img {
  opacity: 1;
  transform: scale(1.05);
}
.img-gal .gal-item > a:hover button {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 120px 10px rgba(0, 0, 0, 0.9);
}
.img-gal .gal-item > a:hover .info {
  background-color: rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 576px) {
  .img-gal .gal-item:nth-of-type(5) {
    width: 100%;
  }
  .img-gal .gal-item:nth-of-type(5) > a {
    padding-bottom: 50%;
  }
}

div.image-box {
  color: white;
  display: inline-flex;
  background-image: url("/images/Layout/img-box-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  flex-direction: column-reverse;
  margin-bottom: 20px;
  padding: 5% 3% 120px 3%;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  div.image-box {
    padding: 5% 3% 160px 3%;
  }
}
@media only screen and (min-width: 960px) {
  div.image-box {
    padding: 5% 3%;
  }
}
@media only screen and (min-width: 1024px) {
  div.image-box {
    flex-direction: row;
  }
}
div.image-box p, div.image-box li {
  max-width: none !important;
}
div.image-box li::before {
  color: white;
}
div.image-box > div {
  display: inline-block;
  flex: 0 0 auto;
}
div.image-box > div > *:last-child {
  margin-bottom: 0;
}
div.image-box .image {
  bottom: 0;
  position: absolute;
  right: 10%;
  width: 37%;
}
div.image-box .image p {
  margin: 0;
}
div.image-box .image img, div.image-box .image svg {
  display: block;
  margin: 0;
  width: 100%;
}
div.image-box .text {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  div.image-box .text {
    padding-left: 20px;
    width: 66.666%;
  }
}

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

video.tvw-player {
  background-color: black;
  background-size: cover;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateX(-50%) translateY(-50%);
  transition: opacity 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  z-index: 0;
}
video.tvw-player.ready {
  opacity: 1;
}

div.cardbox {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -75px;
  width: calc(100% + 20px);
  width: 88%;
}
div.cardbox .maf-content {
  padding: 0;
}
div.cardbox article.card {
  display: inline-flex;
  flex: 0 0 auto;
  margin-bottom: 20px;
  padding: 0 10px;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  div.cardbox article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  div.cardbox article.card {
    width: 33.333%;
    min-height: 0;
  }
}
div.cardbox article.card .portal-item {
  background-color: white;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  margin: 0 auto;
  overflow: visible;
  opacity: 1;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content {
  height: 100%;
  align-items: center;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
div.cardbox article.card .portal-item .portal-content .card-cats {
  background-color: rgb(254, 217, 48);
  border-radius: 10px 0 0 10px;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  left: -8px;
  min-height: 20px;
  padding: 5px 20px;
  position: absolute;
  top: 16px;
  z-index: 3;
}
div.cardbox article.card .portal-item .portal-content .tn {
  border: 1px solid rgb(74, 40, 113);
  display: inline-block;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  margin: 0 0 0 0;
  max-height: 500px;
}
div.cardbox article.card .portal-item .portal-content .tn.no-img {
  display: none;
}
div.cardbox article.card .portal-item .portal-content .tn .tn-img {
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: all 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn .maf-na {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  height: 100%;
  font-size: 2rem;
  padding: 20px;
  position: absolute;
  top: 0;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn .maf-na span, div.cardbox article.card .portal-item .portal-content .tn .maf-na i {
  display: inline-block;
  flex: 0 0 auto;
}
div.cardbox article.card .portal-item .portal-content .tn .maf-na span {
  text-align: center;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn .maf-na i {
  font-size: 2em;
}
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 {
  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 {
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(1);
  min-width: 100%;
  z-index: 0;
  max-height: 500px;
  overflow: hidden;
}
div.cardbox article.card .portal-item .portal-content .tn.fourthree::after {
  padding-bottom: 75%;
}
div.cardbox article.card .portal-item .portal-content .tn .card-share {
  align-items: center;
  background-color: rgb(236, 253, 255);
  border-radius: 10px 0 0 0;
  bottom: 0;
  display: flex;
  padding: 5px 8px;
  position: absolute;
  right: 0;
  z-index: 1;
}
div.cardbox article.card .portal-item .portal-content .tn .card-share span {
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 600;
  padding-right: 3px;
}
div.cardbox article.card .portal-item .portal-content .tn .card-share span.pop {
  padding-left: 3px;
  transition: color 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
div.cardbox article.card .portal-item .portal-content .tn .card-share span.pop i {
  font-size: 1.8rem;
}
div.cardbox article.card .portal-item .portal-content .tn .card-share span.pop:hover {
  color: rgb(233, 136, 199);
}
div.cardbox article.card .portal-item .portal-content .info {
  position: static;
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: #fde7f7;
  padding: 0 20px;
  opacity: 1;
}
div.cardbox article.card .portal-item .portal-content .title {
  color: rgb(74, 40, 113);
  font-family: "Quicksand", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
  line-height: 1;
  margin: 36px 0 30px 0;
  padding: 10px 10px 0 10px;
  position: relative;
  text-transform: none;
  width: 100%;
  padding: 0;
  z-index: 2;
}
div.cardbox article.card .portal-item .portal-content .desc {
  color: black;
  display: inline-block;
  line-height: 1.6;
  margin: 0;
  padding: 0 10px 10px 10px;
  width: 100%;
  z-index: 3;
}
@media only screen and (min-width: 320px) {
  div.cardbox article.card .portal-item .portal-content .desc {
    max-width: 280px;
  }
}
@media only screen and (min-width: 768px) {
  div.cardbox article.card .portal-item .portal-content .desc {
    max-width: 640px;
  }
}
@media only screen and (min-width: 1024px) {
  div.cardbox article.card .portal-item .portal-content .desc {
    max-width: 300px;
  }
}
@media only screen and (min-width: 1280px) {
  div.cardbox article.card .portal-item .portal-content .desc {
    max-width: 340px;
  }
}
div.cardbox article.card .portal-item .portal-content .alt-text {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: black;
  font-size: 90%;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  padding: 20px;
  background-color: #fde7f7;
}
div.cardbox article.card .portal-item .portal-content .attr {
  display: none;
  font-size: 1.4rem;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .attr span {
  display: inline-block;
  flex: 0 0 auto;
  line-height: 1.2;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .attr span.date {
  text-transform: capitalize;
}
div.cardbox article.card .portal-item .portal-content .card-button {
  align-self: center;
  background-color: rgb(254, 217, 48);
  border-color: rgb(254, 217, 48);
  box-shadow: none;
  color: rgb(74, 40, 113);
  font-size: 1.8rem;
  font-weight: 400;
  height: 42px;
  justify-content: center;
  margin: 0;
  margin: auto 0 40px 0;
  min-width: 0;
  padding: 5px 20px;
  border-radius: 5px;
  transition: all 0.75s ease-out;
}
div.cardbox article.card .portal-item .portal-content .card-button:hover {
  background-color: rgb(233, 136, 199);
  border-color: rgb(233, 136, 199);
  color: white;
}
div.cardbox article.card .portal-item.no-link {
  cursor: default;
}
div.cardbox article.card .portal-item.no-link .portal-content .info .card-button {
  display: none;
}
div.cardbox article.card .portal-item.edit .portal-content .info {
  position: static;
  transform: none;
}
div.cardbox article.card .portal-item:hover .portal-content .tn .tn-img {
  transform: scale(1.1);
  filter: saturate(1.2);
}
div.cardbox article.card .portal-item:hover .portal-content .info {
  opacity: 1;
}
div.cardbox article.card .portal-item:hover .portal-content .card-button::after {
  right: 10px;
}
div.cardbox article.card .portal-item:hover .alt-text {
  opacity: 0.8;
}
div.cardbox article.card.maf-clr-1 .portal-item .portal-content .info .title {
  background-color: rgb(254, 217, 48);
}
div.cardbox article.card.maf-clr-2 .portal-item .portal-content .info .title {
  background-color: rgb(233, 136, 199);
}
div.cardbox article.card.maf-clr-3 .portal-item .portal-content .info .title {
  background-color: rgb(74, 40, 113);
}
div.cardbox article.card.maf-clr-4 .portal-item .portal-content .info .title {
  background-color: rgb(246, 240, 255);
}
div.cardbox.cols-2 article.card {
  width: 100%;
}
div.cardbox.cols-2 article.card .portal-item {
  max-width: none;
}
@media only screen and (min-width: 1024px) {
  div.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 {
    width: 100%;
  }
}
div.cardbox.cols-3 article.card {
  width: 100%;
}
@media only screen and (min-width: 960px) {
  div.cardbox.cols-3 article.card {
    max-width: none;
    width: 33.333%;
  }
  div.cardbox.cols-3 article.card.maf-cs-2 {
    width: 66.666%;
  }
  div.cardbox.cols-3 article.card.maf-cs-3 {
    width: 100%;
  }
}
div.cardbox.cols-4 article.card {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  div.cardbox.cols-4 article.card {
    max-width: none;
    width: 50%;
  }
}
@media only screen and (min-width: 1152px) {
  div.cardbox.cols-4 article.card {
    width: 25%;
  }
  div.cardbox.cols-4 article.card.maf-cs-2 {
    width: 50%;
  }
  div.cardbox.cols-4 article.card.maf-cs-3 {
    width: 75%;
  }
  div.cardbox.cols-4 article.card.maf-cs-4 {
    width: 100%;
  }
}
div.cardbox .no-articles {
  font-size: 1.5em;
  padding: 0 50px;
  width: 100%;
}
div.cardbox aside.ad-block {
  cursor: pointer;
  display: inline-block;
  flex: 0 0 auto;
  margin-bottom: 40px;
  padding: 0 10px;
  width: 100%;
}

#filters {
  min-width: 235px;
  width: 100%;
}
#filters .filter-content .filter-set:first-child {
  margin-top: 0;
}
#filters .filter-content .filter-set .label {
  border-top: 1px solid rgb(74, 40, 113);
  border-bottom: 1px solid rgb(74, 40, 113);
  color: rgb(254, 217, 48);
  font-size: 2rem;
  font-weight: 600;
  margin-top: 0;
  padding: 10px 3px;
}
#filters .filter-content .filter-set button {
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: rgb(74, 40, 113);
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: flex-start;
  margin: 0 0 5px 0;
  outline: transparent;
  overflow: hidden;
  padding: 0.5em 30px 0.6em 0.5em;
  position: relative;
  text-align: left;
  text-transform: capitalize;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: 1;
}
#filters .filter-content .filter-set button::before {
  content: "";
  background-color: rgb(254, 217, 48);
  display: inline-block;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  transform: skewX(-18deg);
  transform-origin: top right;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 120%;
  z-index: -1;
}
#filters .filter-content .filter-set button:hover, #filters .filter-content .filter-set button.active {
  color: white;
  padding-left: 1em;
}
#filters .filter-content .filter-set button:hover::before, #filters .filter-content .filter-set button.active::before {
  right: 0;
}
#filters .filter-content .filter-set button.hide {
  opacity: 0.5;
}

.filtered .filter-target {
  min-height: 200px;
}
.filtered .filter-target .filter-item {
  transform: scale(1);
  transform-origin: center;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  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 cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition-property: transform, left, top, opacity;
  width: 0;
}
.filtered .filter-target #no-results {
  left: 50%;
  padding: 50px 0;
  position: absolute;
  top: 0;
  transform: translateX(-50%) scale(0);
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  visibility: hidden;
}
.filtered .filter-target #no-results.show {
  transform: translateX(-50%) scale(1);
  visibility: visible;
}

.search-box {
  background-color: transparent;
  border: 2px solid rgb(74, 40, 113);
  border-radius: 50px;
  color: rgb(74, 40, 113);
  display: inline-block;
  font-size: 2rem;
  height: 30px;
  left: 20px;
  padding: 0;
  position: absolute;
  top: calc(100% + 30px);
  transform: translateY(-50%);
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  vertical-align: top;
  width: 30px;
  z-index: 666;
}
@media only screen and (min-width: 1024px) {
  .search-box {
    top: 50%;
  }
}
.search-box.stuck {
  left: 118px;
}
.search-box input {
  background-color: white;
  border: 0;
  border-radius: 15px 0 0 15px;
  color: inherit;
  font-size: 1.4rem;
  height: 26px;
  margin: 0 30px 0 0;
  outline: transparent;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
}
.search-box input::-moz-placeholder {
  color: rgb(74, 40, 113);
  opacity: 1;
  -moz-transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.search-box input::placeholder {
  color: rgb(74, 40, 113);
  opacity: 1;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.search-box input:focus {
  background-color: white;
  color: rgb(74, 40, 113);
}
.search-box input:focus::-moz-placeholder {
  opacity: 0.5;
}
.search-box input:focus::placeholder {
  opacity: 0.5;
}
.search-box i {
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  height: 26px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 0;
  width: 26px;
}
.search-box i::before {
  color: inherit;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-55%, -55%);
}
.search-box:hover {
  background-color: rgb(74, 40, 113);
  color: rgb(254, 217, 48);
}
.search-box.on {
  background-color: white;
  width: 180px;
}
@media only screen and (min-width: 960px) {
  .search-box.on {
    width: 250px;
  }
}
.search-box.on input {
  padding: 2px 5px 2px 10px;
  width: calc(100% - 30px);
}
.search-box.hero {
  background-color: rgba(0, 0, 0, 0.3);
  border: 3px solid white;
  color: white;
  height: 46px;
  left: auto;
  margin-top: 10px;
  position: relative;
  top: auto;
  transform: none;
}
.search-box.hero input {
  background-color: transparent;
  border-radius: 20px 0 0 20px;
  font-size: 1.8rem;
  height: 40px;
  margin: 0 50px 0 0;
  text-align: right;
}
.search-box.hero input::-moz-placeholder {
  color: white;
}
.search-box.hero input::placeholder {
  color: white;
}
.search-box.hero input:focus {
  background-color: rgba(0, 0, 0, 0.5);
}
.search-box.hero i {
  background-color: transparent;
  border-radius: 0 23px 23px 0;
  font-size: 2.4rem;
  height: 46px;
  padding: 5px;
  right: -3px;
  top: -3px;
  width: 50px;
}
.search-box.hero i::before {
  color: inherit;
}
.search-box.hero:hover {
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 16px 3px rgba(0, 0, 0, 0.7);
}
.search-box.hero.on {
  max-width: 475px;
  padding-left: 20px;
  width: 100%;
}
.search-box.hero.on input {
  width: calc(100% - 50px);
}
.search-box.hero.search-page {
  background-color: white;
  border-color: rgb(74, 40, 113);
  color: rgb(74, 40, 113);
}
.search-box.hero.search-page input {
  background-color: transparent;
  text-align: left;
}
.search-box.hero.search-page input::-moz-placeholder {
  color: rgb(74, 40, 113);
}
.search-box.hero.search-page input::placeholder {
  color: rgb(74, 40, 113);
}
.search-box.hero.search-page:hover {
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
}

#basket-link i {
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  font-size: 2.8rem;
  height: 30px;
  padding: 10px;
  position: relative;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 30px;
}
#basket-link i::before {
  color: rgb(254, 217, 48);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: color 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
#basket-link i:hover {
  background-color: rgb(254, 217, 48);
  font-size: 1.8rem;
}
#basket-link i:hover::before {
  color: white;
}

.maf-bc {
  margin: 0 auto;
  max-width: 1280px;
}
.maf-bc .maf-bc-i {
  color: rgb(99, 99, 99);
  font-size: 1.2rem;
  padding: 35px 100px;
}
.maf-bc .maf-bc-i a {
  color: rgb(99, 99, 99);
  position: relative;
  text-decoration: none;
}
.maf-bc .maf-bc-i a::before {
  background-color: rgb(99, 99, 99);
  bottom: -3px;
  content: "";
  display: inline-block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  transition: width 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 0;
  z-index: -1;
}
.maf-bc .maf-bc-i a:hover::before {
  width: 100%;
}

.modal {
  background-color: rgba(0, 0, 0, 0.8);
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  height: 100vh;
  left: 0;
  opacity: 0;
  padding: 20px;
  position: fixed;
  top: 0;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  visibility: hidden;
  width: 100vw;
  z-index: 99999;
}
@media only screen and (min-width: 768px) {
  .modal {
    padding: 30px;
  }
}
@media only screen and (min-width: 960px) {
  .modal {
    padding: 50px;
  }
}
.modal > div {
  background-color: white;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 0;
  left: 50%;
  opacity: 0;
  padding: 30px 0 20px 20px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 0;
}
@media only screen and (min-width: 1024px) {
  .modal > div {
    padding: 30px 0 30px 50px;
  }
}
.modal > div .mod-content {
  height: 100%;
  overflow-y: auto;
  padding-right: 30px;
}
@media only screen and (min-width: 1024px) {
  .modal > div .mod-content {
    padding-right: 50px;
  }
}
.modal > div .close {
  color: rgb(254, 217, 48);
  cursor: pointer;
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  position: absolute;
  right: 10px;
  text-transform: uppercase;
  top: 10px;
}
.modal > div .close i {
  font-size: 2rem;
  vertical-align: -15%;
}
.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-age-consent h1 {
  background-color: rgb(233, 136, 199);
  margin-top: 0;
  padding: 20px;
}
#mp-age-consent h1 img {
  max-width: 350px;
}
#mp-age-consent p {
  font-size: 2rem;
}
#mp-age-consent p strong {
  text-transform: uppercase;
}
#mp-age-consent p.small {
  font-size: 1.4rem;
}
#mp-age-consent button {
  background-color: rgb(233, 136, 199);
  border-color: rgb(233, 136, 199);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
#mp-age-consent > div {
  border: 4px solid rgb(233, 136, 199);
  border-radius: 30px;
  max-height: 400px;
  max-width: 550px;
  padding: 20px;
  z-index: 1;
}
#mp-age-consent > div::before {
  content: "";
  display: inline-block;
  border: 2px solid rgb(233, 136, 199);
  border-radius: 25px;
  height: calc(100% - 14px);
  left: 5px;
  position: absolute;
  top: 5px;
  width: calc(100% - 14px);
  z-index: 0;
}
#mp-age-consent > div .mod-content {
  text-align: center;
  padding: 0;
  position: relative;
  z-index: 2;
}

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

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

.nav-underline {
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 50px;
}
.nav-underline .line {
  background-color: rgb(74, 40, 113);
  height: 1px;
  width: 100%;
}
.nav-underline.hide {
  display: none;
}

.maf-portal {
  justify-content: center;
  min-height: 280px;
  padding-top: 0;
  padding-bottom: 0;
}
.maf-portal .maf-content {
  background-color: rgb(254, 217, 48);
  border: 1px solid rgb(74, 40, 113);
  cursor: pointer;
  filter: drop-shadow(0 0 0px rgba(0, 0, 0, 0));
  height: calc(100% - 200px);
  justify-content: center;
  padding: 50px;
  text-align: center;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
.maf-portal .maf-content:hover {
  background-color: rgb(233, 136, 199) !important;
  filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.7));
}
@media only screen and (min-width: 576px) {
  .maf-portal {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .maf-portal .maf-content {
    width: calc(100% - 200px);
  }
}
main {
  min-height: 100vh;
}
body.manageable-bo main {
  min-height: 0;
}

section, .section {
  padding-right: 0;
  padding-left: 0;
}

section p.page-lead, section span.page-lead, .section p.page-lead, .section span.page-lead, footer p.page-lead, footer span.page-lead, .bo-row p.page-lead, .bo-row span.page-lead {
  color: rgb(74, 40, 113);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  section p.page-lead, section span.page-lead, .section p.page-lead, .section span.page-lead, footer p.page-lead, footer span.page-lead, .bo-row p.page-lead, .bo-row span.page-lead {
    font-size: 2rem;
  }
}
section p.big-text, section span.big-text, .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-family: "Quicksand", sans-serif;
  font-size: 2.4rem !important;
}
@media only screen and (min-width: 768px) {
  section p.big-text, section span.big-text, .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.2rem !important;
  }
}
section p.small-text, section span.small-text, .section p.small-text, .section span.small-text, footer p.small-text, footer span.small-text, .bo-row p.small-text, .bo-row span.small-text {
  font-family: "Quicksand", sans-serif;
  font-size: 0.8em !important;
}
section p.tiny-text, section span.tiny-text, .section p.tiny-text, .section span.tiny-text, footer p.tiny-text, footer span.tiny-text, .bo-row p.tiny-text, .bo-row span.tiny-text {
  font-family: "Quicksand", sans-serif;
  font-size: 0.5em !important;
}
section p.p-yes, section p.p-no, section span.p-yes, section span.p-no, .section p.p-yes, .section p.p-no, .section span.p-yes, .section span.p-no, footer p.p-yes, footer p.p-no, footer span.p-yes, footer span.p-no, .bo-row p.p-yes, .bo-row p.p-no, .bo-row span.p-yes, .bo-row span.p-no {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  padding-left: 11%;
  position: relative;
}
section p.p-yes::before, section p.p-no::before, section span.p-yes::before, section span.p-no::before, .section p.p-yes::before, .section p.p-no::before, .section span.p-yes::before, .section span.p-no::before, footer p.p-yes::before, footer p.p-no::before, footer span.p-yes::before, footer span.p-no::before, .bo-row p.p-yes::before, .bo-row p.p-no::before, .bo-row span.p-yes::before, .bo-row span.p-no::before {
  background-image: url("/images/Layout/ui/tick-circ.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 9%;
}
section p.p-yes::before, section span.p-yes::before, .section p.p-yes::before, .section span.p-yes::before, footer p.p-yes::before, footer span.p-yes::before, .bo-row p.p-yes::before, .bo-row span.p-yes::before {
  background-image: url("/images/Layout/ui/tick-circ.svg");
}
section p.p-no::before, section span.p-no::before, .section p.p-no::before, .section span.p-no::before, footer p.p-no::before, footer span.p-no::before, .bo-row p.p-no::before, .bo-row span.p-no::before {
  background-image: url("/images/Layout/ui/cross-circ.svg");
}
section 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 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, 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, .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 {
  color: rgb(74, 40, 113);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-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 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, 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, .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 {
    font-size: 2rem;
  }
}
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 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, 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, .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 {
  margin: 0;
}
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 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, 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, .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 {
  margin-bottom: 15px;
}
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 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, 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, .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 {
  margin-bottom: 45px;
}
section h1.bold, section .h1-style.bold, section h2.bold, section .h2-style.bold, section h3.bold, section .h3-style.bold, section h4.bold, section .h4-style.bold, section h5.bold, section .h5-style.bold, section h6.bold, section .h6-style.bold, section p.bold, .section h1.bold, .section .h1-style.bold, .section h2.bold, .section .h2-style.bold, .section h3.bold, .section .h3-style.bold, .section h4.bold, .section .h4-style.bold, .section h5.bold, .section .h5-style.bold, .section h6.bold, .section .h6-style.bold, .section p.bold, footer h1.bold, footer .h1-style.bold, footer h2.bold, footer .h2-style.bold, footer h3.bold, footer .h3-style.bold, footer h4.bold, footer .h4-style.bold, footer h5.bold, footer .h5-style.bold, footer h6.bold, footer .h6-style.bold, footer p.bold, .bo-row h1.bold, .bo-row .h1-style.bold, .bo-row h2.bold, .bo-row .h2-style.bold, .bo-row h3.bold, .bo-row .h3-style.bold, .bo-row h4.bold, .bo-row .h4-style.bold, .bo-row h5.bold, .bo-row .h5-style.bold, .bo-row h6.bold, .bo-row .h6-style.bold, .bo-row p.bold {
  font-weight: 700;
}
section div.hr-button, .section div.hr-button, footer div.hr-button, .bo-row div.hr-button {
  display: inline-block;
  margin: 30px 0;
  max-width: 800px;
  overflow: hidden;
  width: 100%;
}
section div.hr-button a, .section div.hr-button a, footer div.hr-button a, .bo-row div.hr-button a {
  border: 2px solid rgb(233, 136, 199);
  border-radius: 50px;
  color: rgb(233, 136, 199);
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 3px 50px;
  position: relative;
  text-transform: uppercase;
}
section div.hr-button a::before, section div.hr-button a::after, .section div.hr-button a::before, .section div.hr-button a::after, footer div.hr-button a::before, footer div.hr-button a::after, .bo-row div.hr-button a::before, .bo-row div.hr-button a::after {
  background-color: rgb(233, 136, 199);
  content: "";
  height: 2px;
  left: calc(100% + 50px);
  position: absolute;
  top: 50%;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 700px;
}
section div.hr-button a::after, .section div.hr-button a::after, footer div.hr-button a::after, .bo-row div.hr-button a::after {
  left: auto;
  right: calc(100% + 50px);
}
section div.hr-button a:hover, .section div.hr-button a:hover, footer div.hr-button a:hover, .bo-row div.hr-button a:hover {
  background-color: rgb(233, 136, 199);
  color: white;
}
section div.hr-button a:hover::before, .section div.hr-button a:hover::before, footer div.hr-button a:hover::before, .bo-row div.hr-button a:hover::before {
  left: 100%;
}
section div.hr-button a:hover::after, .section div.hr-button a:hover::after, footer div.hr-button a:hover::after, .bo-row div.hr-button a:hover::after {
  right: 100%;
}
section a.button.square, section div.button.square, section button.button.square, section button.maf-button.square, .section a.button.square, .section div.button.square, .section button.button.square, .section button.maf-button.square, footer a.button.square, footer div.button.square, footer button.button.square, footer button.maf-button.square, .bo-row a.button.square, .bo-row div.button.square, .bo-row button.button.square, .bo-row button.maf-button.square {
  border-radius: 0;
}
section a.button.doc-btn, section div.button.doc-btn, section button.button.doc-btn, section button.maf-button.doc-btn, .section a.button.doc-btn, .section div.button.doc-btn, .section button.button.doc-btn, .section button.maf-button.doc-btn, footer a.button.doc-btn, footer div.button.doc-btn, footer button.button.doc-btn, footer button.maf-button.doc-btn, .bo-row a.button.doc-btn, .bo-row div.button.doc-btn, .bo-row button.button.doc-btn, .bo-row button.maf-button.doc-btn {
  background-color: transparent;
  color: rgb(246, 240, 255);
  font-size: 1.4rem;
  font-weight: 300;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 100%;
  border: 0;
  border-bottom: solid 1px rgb(254, 217, 48);
  padding: 0 0;
  text-align: left;
  margin-bottom: 0;
  min-height: 20px;
}
section a.button.outline, section a.button.purple, section div.button.outline, section div.button.purple, section button.button.outline, section button.button.purple, section button.maf-button.outline, section button.maf-button.purple, .section a.button.outline, .section a.button.purple, .section div.button.outline, .section div.button.purple, .section button.button.outline, .section button.button.purple, .section button.maf-button.outline, .section button.maf-button.purple, footer a.button.outline, footer a.button.purple, footer div.button.outline, footer div.button.purple, footer button.button.outline, footer button.button.purple, footer button.maf-button.outline, footer button.maf-button.purple, .bo-row a.button.outline, .bo-row a.button.purple, .bo-row div.button.outline, .bo-row div.button.purple, .bo-row button.button.outline, .bo-row button.button.purple, .bo-row button.maf-button.outline, .bo-row button.maf-button.purple {
  background-color: rgb(98, 52, 137);
  color: rgb(254, 217, 48) !important;
  font-size: 2.4rem;
  font-weight: 800;
  min-width: 195px;
  min-height: 36px;
  opacity: 1;
  padding: 6px 60px;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: auto;
  margin: 20px 0 30px 0;
}
section a.button.outline::before, section a.button.purple::before, section div.button.outline::before, section div.button.purple::before, section button.button.outline::before, section button.button.purple::before, section button.maf-button.outline::before, section button.maf-button.purple::before, .section a.button.outline::before, .section a.button.purple::before, .section div.button.outline::before, .section div.button.purple::before, .section button.button.outline::before, .section button.button.purple::before, .section button.maf-button.outline::before, .section button.maf-button.purple::before, footer a.button.outline::before, footer a.button.purple::before, footer div.button.outline::before, footer div.button.purple::before, footer button.button.outline::before, footer button.button.purple::before, footer button.maf-button.outline::before, footer button.maf-button.purple::before, .bo-row a.button.outline::before, .bo-row a.button.purple::before, .bo-row div.button.outline::before, .bo-row div.button.purple::before, .bo-row button.button.outline::before, .bo-row button.button.purple::before, .bo-row button.maf-button.outline::before, .bo-row button.maf-button.purple::before {
  background-color: rgb(233, 136, 199);
}
section a.button.outline:hover, section a.button.purple:hover, section div.button.outline:hover, section div.button.purple:hover, section button.button.outline:hover, section button.button.purple:hover, section button.maf-button.outline:hover, section button.maf-button.purple:hover, .section a.button.outline:hover, .section a.button.purple:hover, .section div.button.outline:hover, .section div.button.purple:hover, .section button.button.outline:hover, .section button.button.purple:hover, .section button.maf-button.outline:hover, .section button.maf-button.purple:hover, footer a.button.outline:hover, footer a.button.purple:hover, footer div.button.outline:hover, footer div.button.purple:hover, footer button.button.outline:hover, footer button.button.purple:hover, footer button.maf-button.outline:hover, footer button.maf-button.purple:hover, .bo-row a.button.outline:hover, .bo-row a.button.purple:hover, .bo-row div.button.outline:hover, .bo-row div.button.purple:hover, .bo-row button.button.outline:hover, .bo-row button.button.purple:hover, .bo-row button.maf-button.outline:hover, .bo-row button.maf-button.purple:hover {
  color: white !important;
}
section a.button.yellow-pink::before, section div.button.yellow-pink::before, section button.button.yellow-pink::before, section button.maf-button.yellow-pink::before, .section a.button.yellow-pink::before, .section div.button.yellow-pink::before, .section button.button.yellow-pink::before, .section button.maf-button.yellow-pink::before, footer a.button.yellow-pink::before, footer div.button.yellow-pink::before, footer button.button.yellow-pink::before, footer button.maf-button.yellow-pink::before, .bo-row a.button.yellow-pink::before, .bo-row div.button.yellow-pink::before, .bo-row button.button.yellow-pink::before, .bo-row button.maf-button.yellow-pink::before {
  background-color: rgb(233, 136, 199);
}
section a.button.yellow-pink:hover, section div.button.yellow-pink:hover, section button.button.yellow-pink:hover, section button.maf-button.yellow-pink:hover, .section a.button.yellow-pink:hover, .section div.button.yellow-pink:hover, .section button.button.yellow-pink:hover, .section button.maf-button.yellow-pink:hover, footer a.button.yellow-pink:hover, footer div.button.yellow-pink:hover, footer button.button.yellow-pink:hover, footer button.maf-button.yellow-pink:hover, .bo-row a.button.yellow-pink:hover, .bo-row div.button.yellow-pink:hover, .bo-row button.button.yellow-pink:hover, .bo-row button.maf-button.yellow-pink:hover {
  color: white;
}
section a.button.chev-point, section div.button.chev-point, section button.button.chev-point, section button.maf-button.chev-point, .section a.button.chev-point, .section div.button.chev-point, .section button.button.chev-point, .section button.maf-button.chev-point, footer a.button.chev-point, footer div.button.chev-point, footer button.button.chev-point, footer button.maf-button.chev-point, .bo-row a.button.chev-point, .bo-row div.button.chev-point, .bo-row button.button.chev-point, .bo-row button.maf-button.chev-point {
  box-shadow: none;
  line-height: 1;
}
section a.button.chev-point::before, section a.button.chev-point::after, section div.button.chev-point::before, section div.button.chev-point::after, section button.button.chev-point::before, section button.button.chev-point::after, section button.maf-button.chev-point::before, section button.maf-button.chev-point::after, .section a.button.chev-point::before, .section a.button.chev-point::after, .section div.button.chev-point::before, .section div.button.chev-point::after, .section button.button.chev-point::before, .section button.button.chev-point::after, .section button.maf-button.chev-point::before, .section button.maf-button.chev-point::after, footer a.button.chev-point::before, footer a.button.chev-point::after, footer div.button.chev-point::before, footer div.button.chev-point::after, footer button.button.chev-point::before, footer button.button.chev-point::after, footer button.maf-button.chev-point::before, footer button.maf-button.chev-point::after, .bo-row a.button.chev-point::before, .bo-row a.button.chev-point::after, .bo-row div.button.chev-point::before, .bo-row div.button.chev-point::after, .bo-row button.button.chev-point::before, .bo-row button.button.chev-point::after, .bo-row button.maf-button.chev-point::before, .bo-row button.maf-button.chev-point::after {
  background-color: white;
  content: "";
  display: inline-block;
  height: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 8px;
}
section a.button.chev-point::after, section div.button.chev-point::after, section button.button.chev-point::after, section button.maf-button.chev-point::after, .section a.button.chev-point::after, .section div.button.chev-point::after, .section button.button.chev-point::after, .section button.maf-button.chev-point::after, footer a.button.chev-point::after, footer div.button.chev-point::after, footer button.button.chev-point::after, footer button.maf-button.chev-point::after, .bo-row a.button.chev-point::after, .bo-row div.button.chev-point::after, .bo-row button.button.chev-point::after, .bo-row button.maf-button.chev-point::after {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
section a.button.chev-point:hover::before, section div.button.chev-point:hover::before, section button.button.chev-point:hover::before, section button.maf-button.chev-point:hover::before, .section a.button.chev-point:hover::before, .section div.button.chev-point:hover::before, .section button.button.chev-point:hover::before, .section button.maf-button.chev-point:hover::before, footer a.button.chev-point:hover::before, footer div.button.chev-point:hover::before, footer button.button.chev-point:hover::before, footer button.maf-button.chev-point:hover::before, .bo-row a.button.chev-point:hover::before, .bo-row div.button.chev-point:hover::before, .bo-row button.button.chev-point:hover::before, .bo-row button.maf-button.chev-point:hover::before {
  transform: translateX(5px) translateY(-50%) rotate(40deg);
}
section a.button.chev-point:hover::after, section div.button.chev-point:hover::after, section button.button.chev-point:hover::after, section button.maf-button.chev-point:hover::after, .section a.button.chev-point:hover::after, .section div.button.chev-point:hover::after, .section button.button.chev-point:hover::after, .section button.maf-button.chev-point:hover::after, footer a.button.chev-point:hover::after, footer div.button.chev-point:hover::after, footer button.button.chev-point:hover::after, footer button.maf-button.chev-point:hover::after, .bo-row a.button.chev-point:hover::after, .bo-row div.button.chev-point:hover::after, .bo-row button.button.chev-point:hover::after, .bo-row button.maf-button.chev-point:hover::after {
  transform: translateX(5px) translateY(-50%) rotate(-40deg);
}
section a.button.br, section div.button.br, section button.button.br, section button.maf-button.br, .section a.button.br, .section div.button.br, .section button.button.br, .section button.maf-button.br, footer a.button.br, footer div.button.br, footer button.button.br, footer button.maf-button.br, .bo-row a.button.br, .bo-row div.button.br, .bo-row button.button.br, .bo-row button.maf-button.br {
  background-color: black;
  border: 0;
  color: white;
  font-size: 2.2rem;
  font-weight: 600;
  justify-content: flex-start;
  overflow: hidden;
  padding: 10px;
  position: relative;
  text-align: left;
  text-transform: none;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section a.button.br, section div.button.br, section button.button.br, section button.maf-button.br, .section a.button.br, .section div.button.br, .section button.button.br, .section button.maf-button.br, footer a.button.br, footer div.button.br, footer button.button.br, footer button.maf-button.br, .bo-row a.button.br, .bo-row div.button.br, .bo-row button.button.br, .bo-row button.maf-button.br {
    font-size: 2.6rem;
  }
}
section a.button.br::before, section a.button.br::after, section div.button.br::before, section div.button.br::after, section button.button.br::before, section button.button.br::after, section button.maf-button.br::before, section button.maf-button.br::after, .section a.button.br::before, .section a.button.br::after, .section div.button.br::before, .section div.button.br::after, .section button.button.br::before, .section button.button.br::after, .section button.maf-button.br::before, .section button.maf-button.br::after, footer a.button.br::before, footer a.button.br::after, footer div.button.br::before, footer div.button.br::after, footer button.button.br::before, footer button.button.br::after, footer button.maf-button.br::before, footer button.maf-button.br::after, .bo-row a.button.br::before, .bo-row a.button.br::after, .bo-row div.button.br::before, .bo-row div.button.br::after, .bo-row button.button.br::before, .bo-row button.button.br::after, .bo-row button.maf-button.br::before, .bo-row button.maf-button.br::after {
  content: "";
  border-left: 5px solid rgb(254, 217, 48);
  background-color: rgb(233, 136, 199);
  display: inline-block;
  height: 100%;
  position: absolute;
  right: -40px;
  top: 0;
  transform: skewX(-18deg);
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 90px;
}
section a.button.br::after, section div.button.br::after, section button.button.br::after, section button.maf-button.br::after, .section a.button.br::after, .section div.button.br::after, .section button.button.br::after, .section button.maf-button.br::after, footer a.button.br::after, footer div.button.br::after, footer button.button.br::after, footer button.maf-button.br::after, .bo-row a.button.br::after, .bo-row div.button.br::after, .bo-row button.button.br::after, .bo-row button.maf-button.br::after {
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid white;
  height: 0;
  right: 15px;
  transform: translate(0, -50%);
  top: 50%;
  width: 0;
}
section a.button.br span, section div.button.br span, section button.button.br span, section button.maf-button.br span, .section a.button.br span, .section div.button.br span, .section button.button.br span, .section button.maf-button.br span, footer a.button.br span, footer div.button.br span, footer button.button.br span, footer button.maf-button.br span, .bo-row a.button.br span, .bo-row div.button.br span, .bo-row button.button.br span, .bo-row button.maf-button.br span {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.9px;
}
section a.button.br:hover, section div.button.br:hover, section button.button.br:hover, section button.maf-button.br:hover, .section a.button.br:hover, .section div.button.br:hover, .section button.button.br:hover, .section button.maf-button.br:hover, footer a.button.br:hover, footer div.button.br:hover, footer button.button.br:hover, footer button.maf-button.br:hover, .bo-row a.button.br:hover, .bo-row div.button.br:hover, .bo-row button.button.br:hover, .bo-row button.maf-button.br:hover {
  background-color: black;
}
section a.button.br:hover::after, section div.button.br:hover::after, section button.button.br:hover::after, section button.maf-button.br:hover::after, .section a.button.br:hover::after, .section div.button.br:hover::after, .section button.button.br:hover::after, .section button.maf-button.br:hover::after, footer a.button.br:hover::after, footer div.button.br:hover::after, footer button.button.br:hover::after, footer button.maf-button.br:hover::after, .bo-row a.button.br:hover::after, .bo-row div.button.br:hover::after, .bo-row button.button.br:hover::after, .bo-row button.maf-button.br:hover::after {
  animation: point-r 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
section a.button.dl-pdf, section div.button.dl-pdf, section button.button.dl-pdf, section button.maf-button.dl-pdf, .section a.button.dl-pdf, .section div.button.dl-pdf, .section button.button.dl-pdf, .section button.maf-button.dl-pdf, footer a.button.dl-pdf, footer div.button.dl-pdf, footer button.button.dl-pdf, footer button.maf-button.dl-pdf, .bo-row a.button.dl-pdf, .bo-row div.button.dl-pdf, .bo-row button.button.dl-pdf, .bo-row button.maf-button.dl-pdf {
  background-color: transparent;
  border: 0;
  color: rgb(233, 136, 199);
  font-size: 1.8rem;
  font-weight: 400;
  min-height: 67px;
  max-width: 530px;
  padding-left: 85px;
  position: relative;
  text-align: left;
  text-transform: none;
  z-index: 1;
}
section a.button.dl-pdf::before, section div.button.dl-pdf::before, section button.button.dl-pdf::before, section button.maf-button.dl-pdf::before, .section a.button.dl-pdf::before, .section div.button.dl-pdf::before, .section button.button.dl-pdf::before, .section button.maf-button.dl-pdf::before, footer a.button.dl-pdf::before, footer div.button.dl-pdf::before, footer button.button.dl-pdf::before, footer button.maf-button.dl-pdf::before, .bo-row a.button.dl-pdf::before, .bo-row div.button.dl-pdf::before, .bo-row button.button.dl-pdf::before, .bo-row button.maf-button.dl-pdf::before {
  background-image: url("/images/Layout/ui/pdf.png");
  content: "";
  display: inline-block;
  height: 67px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 350ms ease-out;
  width: 66px;
}
section a.button.dl-pdf:hover, section div.button.dl-pdf:hover, section button.button.dl-pdf:hover, section button.maf-button.dl-pdf:hover, .section a.button.dl-pdf:hover, .section div.button.dl-pdf:hover, .section button.button.dl-pdf:hover, .section button.maf-button.dl-pdf:hover, footer a.button.dl-pdf:hover, footer div.button.dl-pdf:hover, footer button.button.dl-pdf:hover, footer button.maf-button.dl-pdf:hover, .bo-row a.button.dl-pdf:hover, .bo-row div.button.dl-pdf:hover, .bo-row button.button.dl-pdf:hover, .bo-row button.maf-button.dl-pdf:hover {
  background-color: white;
}
section a.button.dl-pdf:hover::before, section div.button.dl-pdf:hover::before, section button.button.dl-pdf:hover::before, section button.maf-button.dl-pdf:hover::before, .section a.button.dl-pdf:hover::before, .section div.button.dl-pdf:hover::before, .section button.button.dl-pdf:hover::before, .section button.maf-button.dl-pdf:hover::before, footer a.button.dl-pdf:hover::before, footer div.button.dl-pdf:hover::before, footer button.button.dl-pdf:hover::before, footer button.maf-button.dl-pdf:hover::before, .bo-row a.button.dl-pdf:hover::before, .bo-row div.button.dl-pdf:hover::before, .bo-row button.button.dl-pdf:hover::before, .bo-row button.maf-button.dl-pdf:hover::before {
  animation: point-d 1.5s ease-out infinite;
}
section a.button.tri-box, section div.button.tri-box, section button.button.tri-box, section button.maf-button.tri-box, .section a.button.tri-box, .section div.button.tri-box, .section button.button.tri-box, .section button.maf-button.tri-box, footer a.button.tri-box, footer div.button.tri-box, footer button.button.tri-box, footer button.maf-button.tri-box, .bo-row a.button.tri-box, .bo-row div.button.tri-box, .bo-row button.button.tri-box, .bo-row button.maf-button.tri-box {
  background-color: rgb(254, 217, 48);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: flex-start;
  min-height: 42px;
  min-width: 0;
  padding: 5px 50px 5px 20px;
  text-transform: uppercase;
  width: 100%;
}
section a.button.tri-box::before, section div.button.tri-box::before, section button.button.tri-box::before, section button.maf-button.tri-box::before, .section a.button.tri-box::before, .section div.button.tri-box::before, .section button.button.tri-box::before, .section button.maf-button.tri-box::before, footer a.button.tri-box::before, footer div.button.tri-box::before, footer button.button.tri-box::before, footer button.maf-button.tri-box::before, .bo-row a.button.tri-box::before, .bo-row div.button.tri-box::before, .bo-row button.button.tri-box::before, .bo-row button.maf-button.tri-box::before {
  background-color: rgb(233, 136, 199);
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
}
section a.button.tri-box::after, section div.button.tri-box::after, section button.button.tri-box::after, section button.maf-button.tri-box::after, .section a.button.tri-box::after, .section div.button.tri-box::after, .section button.button.tri-box::after, .section button.maf-button.tri-box::after, footer a.button.tri-box::after, footer div.button.tri-box::after, footer button.button.tri-box::after, footer button.maf-button.tri-box::after, .bo-row a.button.tri-box::after, .bo-row div.button.tri-box::after, .bo-row button.button.tri-box::after, .bo-row button.maf-button.tri-box::after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid white;
  content: "";
  display: inline-block;
  height: 0;
  position: absolute;
  right: 15px;
  transform: translate(0, -50%);
  transition: right 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  top: 50%;
  width: 0;
}
section a.button.tri-box:hover, section div.button.tri-box:hover, section button.button.tri-box:hover, section button.maf-button.tri-box:hover, .section a.button.tri-box:hover, .section div.button.tri-box:hover, .section button.button.tri-box:hover, .section button.maf-button.tri-box:hover, footer a.button.tri-box:hover, footer div.button.tri-box:hover, footer button.button.tri-box:hover, footer button.maf-button.tri-box:hover, .bo-row a.button.tri-box:hover, .bo-row div.button.tri-box:hover, .bo-row button.button.tri-box:hover, .bo-row button.maf-button.tri-box:hover {
  background-color: rgb(254, 217, 48);
  border-color: rgb(254, 217, 48);
}
section a.button.tri-box:hover::after, section div.button.tri-box:hover::after, section button.button.tri-box:hover::after, section button.maf-button.tri-box:hover::after, .section a.button.tri-box:hover::after, .section div.button.tri-box:hover::after, .section button.button.tri-box:hover::after, .section button.maf-button.tri-box:hover::after, footer a.button.tri-box:hover::after, footer div.button.tri-box:hover::after, footer button.button.tri-box:hover::after, footer button.maf-button.tri-box:hover::after, .bo-row a.button.tri-box:hover::after, .bo-row div.button.tri-box:hover::after, .bo-row button.button.tri-box:hover::after, .bo-row button.maf-button.tri-box:hover::after {
  right: 10px;
}
section.animate .maf-content, section.animate .insta-feed, section.animate .cardbox .card, .section.animate .maf-content, .section.animate .insta-feed, .section.animate .cardbox .card, footer.animate .maf-content, footer.animate .insta-feed, footer.animate .cardbox .card, .bo-row.animate .maf-content, .bo-row.animate .insta-feed, .bo-row.animate .cardbox .card {
  filter: grayscale(100%);
  opacity: 0;
  transform: translateY(60px);
  transition: all 1200ms ease-out;
}
section.animate .cardbox .card:nth-child(1), .section.animate .cardbox .card:nth-child(1), footer.animate .cardbox .card:nth-child(1), .bo-row.animate .cardbox .card:nth-child(1) {
  transition-delay: 350ms;
}
section.animate .cardbox .card:nth-child(2), .section.animate .cardbox .card:nth-child(2), footer.animate .cardbox .card:nth-child(2), .bo-row.animate .cardbox .card:nth-child(2) {
  transition-delay: 700ms;
}
section.animate .cardbox .card:nth-child(3), .section.animate .cardbox .card:nth-child(3), footer.animate .cardbox .card:nth-child(3), .bo-row.animate .cardbox .card:nth-child(3) {
  transition-delay: 1050ms;
}
section.animate .cardbox .card:nth-child(4), .section.animate .cardbox .card:nth-child(4), footer.animate .cardbox .card:nth-child(4), .bo-row.animate .cardbox .card:nth-child(4) {
  transition-delay: 1400ms;
}
section.animate .cardbox .card:nth-child(5), .section.animate .cardbox .card:nth-child(5), footer.animate .cardbox .card:nth-child(5), .bo-row.animate .cardbox .card:nth-child(5) {
  transition-delay: 1750ms;
}
section.animate .cardbox .card:nth-child(6), .section.animate .cardbox .card:nth-child(6), footer.animate .cardbox .card:nth-child(6), .bo-row.animate .cardbox .card:nth-child(6) {
  transition-delay: 2100ms;
}
section.animate .cardbox .card:nth-child(7), .section.animate .cardbox .card:nth-child(7), footer.animate .cardbox .card:nth-child(7), .bo-row.animate .cardbox .card:nth-child(7) {
  transition-delay: 2450ms;
}
section.animate .cardbox .card:nth-child(8), .section.animate .cardbox .card:nth-child(8), footer.animate .cardbox .card:nth-child(8), .bo-row.animate .cardbox .card:nth-child(8) {
  transition-delay: 2800ms;
}
section.animate .cardbox .card:nth-child(9), .section.animate .cardbox .card:nth-child(9), footer.animate .cardbox .card:nth-child(9), .bo-row.animate .cardbox .card:nth-child(9) {
  transition-delay: 3150ms;
}
section.animate .cardbox .card:nth-child(10), .section.animate .cardbox .card:nth-child(10), footer.animate .cardbox .card:nth-child(10), .bo-row.animate .cardbox .card:nth-child(10) {
  transition-delay: 3500ms;
}
section.animate .cardbox .card:nth-child(11), .section.animate .cardbox .card:nth-child(11), footer.animate .cardbox .card:nth-child(11), .bo-row.animate .cardbox .card:nth-child(11) {
  transition-delay: 3850ms;
}
section.animate .cardbox .card:nth-child(12), .section.animate .cardbox .card:nth-child(12), footer.animate .cardbox .card:nth-child(12), .bo-row.animate .cardbox .card:nth-child(12) {
  transition-delay: 4200ms;
}
section.animate .cardbox .card:nth-child(13), .section.animate .cardbox .card:nth-child(13), footer.animate .cardbox .card:nth-child(13), .bo-row.animate .cardbox .card:nth-child(13) {
  transition-delay: 4550ms;
}
section.animate .cardbox .card:nth-child(14), .section.animate .cardbox .card:nth-child(14), footer.animate .cardbox .card:nth-child(14), .bo-row.animate .cardbox .card:nth-child(14) {
  transition-delay: 4900ms;
}
section.animate .cardbox .card:nth-child(15), .section.animate .cardbox .card:nth-child(15), footer.animate .cardbox .card:nth-child(15), .bo-row.animate .cardbox .card:nth-child(15) {
  transition-delay: 5250ms;
}
section.animate .cardbox .card:nth-child(16), .section.animate .cardbox .card:nth-child(16), footer.animate .cardbox .card:nth-child(16), .bo-row.animate .cardbox .card:nth-child(16) {
  transition-delay: 5600ms;
}
section.animate .cardbox .card:nth-child(17), .section.animate .cardbox .card:nth-child(17), footer.animate .cardbox .card:nth-child(17), .bo-row.animate .cardbox .card:nth-child(17) {
  transition-delay: 5950ms;
}
section.animate .cardbox .card:nth-child(18), .section.animate .cardbox .card:nth-child(18), footer.animate .cardbox .card:nth-child(18), .bo-row.animate .cardbox .card:nth-child(18) {
  transition-delay: 6300ms;
}
section.animate .cardbox .card:nth-child(19), .section.animate .cardbox .card:nth-child(19), footer.animate .cardbox .card:nth-child(19), .bo-row.animate .cardbox .card:nth-child(19) {
  transition-delay: 6650ms;
}
section.animate .cardbox .card:nth-child(20), .section.animate .cardbox .card:nth-child(20), footer.animate .cardbox .card:nth-child(20), .bo-row.animate .cardbox .card:nth-child(20) {
  transition-delay: 7000ms;
}
section.animate .cardbox .card:nth-child(21), .section.animate .cardbox .card:nth-child(21), footer.animate .cardbox .card:nth-child(21), .bo-row.animate .cardbox .card:nth-child(21) {
  transition-delay: 7350ms;
}
section.animate .cardbox .card:nth-child(22), .section.animate .cardbox .card:nth-child(22), footer.animate .cardbox .card:nth-child(22), .bo-row.animate .cardbox .card:nth-child(22) {
  transition-delay: 7700ms;
}
section.animate .cardbox .card:nth-child(23), .section.animate .cardbox .card:nth-child(23), footer.animate .cardbox .card:nth-child(23), .bo-row.animate .cardbox .card:nth-child(23) {
  transition-delay: 8050ms;
}
section.animate.anim-1 .maf-content, .section.animate.anim-1 .maf-content, footer.animate.anim-1 .maf-content, .bo-row.animate.anim-1 .maf-content {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0);
}
section.animate.anim-2 .insta-feed, section.animate.anim-2 .cardbox .card, .section.animate.anim-2 .insta-feed, .section.animate.anim-2 .cardbox .card, footer.animate.anim-2 .insta-feed, footer.animate.anim-2 .cardbox .card, .bo-row.animate.anim-2 .insta-feed, .bo-row.animate.anim-2 .cardbox .card {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0);
}

@keyframes bgcolourfade {
  0% {
    background: rgb(74, 40, 113);
  }
  20% {
    background: rgb(233, 136, 199);
  }
  40% {
    background: rgb(236, 253, 255);
  }
  60% {
    background: rgb(74, 40, 113);
  }
  80% {
    background: rgb(246, 240, 255);
  }
  100% {
    background: rgb(74, 40, 113);
  }
}
.bg-1 {
  background-color: rgb(254, 217, 48) !important;
}

.bg-2 {
  background-color: rgb(233, 136, 199) !important;
  color: white;
}
.bg-2 .maf-content * {
  color: white;
}
.bg-2 .maf-content hr {
  border-color: white;
}

.bg-3 {
  background-color: rgb(98, 52, 137) !important;
  color: white;
}
.bg-3 .maf-content * {
  color: white;
}
.bg-3 .maf-content hr {
  border-color: white;
}
.bg-3 h1, .bg-3 .h1-style, .bg-3 h2, .bg-3 .h2-style, .bg-3 h3, .bg-3 .h3-style, .bg-3 h4, .bg-3 .h4-style, .bg-3 h5, .bg-3 .h5-style, .bg-3 h6.h6-style {
  color: white !important;
}

.bg-4 {
  background-color: rgb(246, 240, 255) !important;
}

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

.bg-6 {
  background-color: rgb(255, 247, 253) !important;
}

.bg-7 {
  background-color: rgb(253, 231, 247) !important;
}

.is-main-header {
  color: rgb(74, 40, 113);
  display: inline-block;
  height: 360px;
  left: 0;
  top: 0;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: 666;
}
.is-main-header.is-fixed {
  position: fixed;
  transform: translateZ(0);
}
@media only screen and (min-width: 1024px) {
  .is-main-header {
    height: 360px;
  }
}
.is-main-header > div.h-con {
  background-color: white;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  position: relative;
  text-align: center;
}
.is-main-header > div.h-con .ui-con {
  height: 300px;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
.is-main-header > div.h-con .ui-con .ui-con-i {
  height: 100%;
  margin: 0 auto;
  max-width: none;
  position: relative;
}
.is-main-header > div.h-con .ui-con .ui-con-i .company-brand {
  bottom: 30px;
  cursor: pointer;
  font-family: "Quicksand", sans-serif;
  font-size: 1.5rem;
  height: 160px;
  justify-content: center;
  left: 50%;
  margin: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: translate(-50%, 0);
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 390px;
  z-index: 102;
}
body.maf-loaded .is-main-header > div.h-con .ui-con .ui-con-i .company-brand {
  opacity: 1;
}
.is-main-header > div.h-con .ui-con .ui-con-i .company-brand #maf-brand {
  font-size: 2rem;
  height: 100%;
  line-height: 0;
  margin: 0;
  white-space: nowrap;
}
.is-main-header > div.h-con .ui-con .ui-con-i .company-brand #maf-brand::before, .is-main-header > div.h-con .ui-con .ui-con-i .company-brand #maf-brand::after {
  display: none;
}
.is-main-header > div.h-con .ui-con .ui-con-i .company-brand #maf-brand #logo {
  display: block;
  height: 100%;
  margin: 0 auto;
  max-width: none;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: auto;
}
.is-main-header > div.h-con .ui-con .ui-con-i .company-brand #maf-brand #logo #name, .is-main-header > div.h-con .ui-con .ui-con-i .company-brand #maf-brand #logo #strap {
  visibility: hidden;
}
.is-main-header > div.h-con .ui-con .ui-con-i .company-brand #maf-strap {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 0 15px;
  text-transform: none;
  white-space: nowrap;
}
.is-main-header > div.h-con .ui-con .ui-con-i .company-brand #maf-strap span {
  text-transform: none;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con .ui-con .ui-con-i .company-brand #maf-strap {
    text-transform: uppercase;
    font-size: 2.2rem;
  }
}
.is-main-header > div.h-con .ui-con .ui-con-i .company-brand.left {
  left: 20px;
  text-align: left;
  transform: none;
  max-width: 60%;
}
@media only screen and (min-width: 1025px) {
  .is-main-header > div.h-con .ui-con .ui-con-i .company-brand.left {
    left: 100px;
  }
}
.is-main-header > div.h-con .ui-con .ui-con-i .company-brand.left #maf-brand #logo {
  margin: 0;
  min-height: 80%;
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui {
  align-items: flex-end;
  color: rgb(74, 40, 113);
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  line-height: 0;
  max-width: 1600px;
  opacity: 0;
  padding: 0;
  position: absolute;
  right: 50px;
  text-align: center;
  top: -200px;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: auto;
  z-index: 103;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con .ui-con .ui-con-i #header-ui {
    right: 100px;
  }
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui a {
  text-decoration: none;
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui #basket-link {
  display: inline-block;
  line-height: 1;
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui .button {
  background-color: transparent;
  border-color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  min-height: 30px;
  max-height: 30px;
  min-width: 0;
  padding: 5px 15px 3px 15px;
  vertical-align: top;
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui .button:hover {
  background-color: white;
  color: rgb(254, 217, 48);
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui .button.gray {
  display: none;
  text-transform: none;
}
@media only screen and (min-width: 360px) {
  .is-main-header > div.h-con .ui-con .ui-con-i #header-ui .button.gray {
    display: inline-flex;
  }
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui .button span {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .is-main-header > div.h-con .ui-con .ui-con-i #header-ui .button span {
    display: inline;
  }
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui .phone {
  color: rgb(254, 217, 48);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 22px;
  visibility: visible;
}
@media only screen and (max-width: 500px) {
  .is-main-header > div.h-con .ui-con .ui-con-i #header-ui .phone {
    visibility: hidden;
  }
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui .phone i {
  vertical-align: middle;
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui .phone span {
  display: inline-block;
  font-weight: 400;
  margin-right: 5px;
  vertical-align: middle;
  padding-bottom: 3px;
  color: rgb(246, 240, 255);
  font-size: 90%;
  visibility: visible;
}
@media only screen and (max-width: 500px) {
  .is-main-header > div.h-con .ui-con .ui-con-i #header-ui .phone span {
    visibility: hidden;
  }
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui .phone span img {
  max-width: 30px;
  transition: max-width 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media only screen and (min-width: 768px) {
  .is-main-header > div.h-con .ui-con .ui-con-i #header-ui .phone span img {
    max-width: 43px;
  }
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui .strap {
  display: none;
  font-size: 1.8rem;
  margin: 0;
}
@media only screen and (min-width: 960px) {
  .is-main-header > div.h-con .ui-con .ui-con-i #header-ui .strap {
    display: block;
  }
}
@media only screen and (min-width: 1152px) {
  .is-main-header > div.h-con .ui-con .ui-con-i #header-ui .strap {
    font-size: 2.4rem;
  }
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui .login {
  background-color: black;
  border-radius: 8px 8px 0 0;
  color: white;
  display: inline-block;
  font-size: 1.6rem;
  margin: 0 1px 0 8px;
  padding: 8px 10px 10px 10px;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transform: translateY(0);
  width: auto;
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui .login:hover {
  color: rgb(254, 217, 48);
  padding: 8px 10px 16px 10px;
  transform: translateY(-8px);
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui .icons {
  text-align: right;
}
.is-main-header > div.h-con .ui-con .ui-con-i #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 .ui-con .ui-con-i #header-ui .icons hr.show-mobile {
    display: none;
  }
}
body.maf-loaded .is-main-header > div.h-con .ui-con .ui-con-i #header-ui {
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt {
  align-items: center;
  background-color: rgb(254, 217, 48);
  display: flex;
  flex-direction: row;
  height: 68px;
  justify-content: center;
  left: 0;
  position: fixed;
  text-align: left;
  top: 0;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: 103;
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a {
  align-items: center;
  color: rgb(74, 40, 113);
  display: flex;
  flex: 0 0 auto;
  font-size: 1.4rem;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  opacity: 1;
  overflow: hidden;
  position: relative;
  padding: 5px 8px;
  width: 33.333%;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a {
    font-size: 1.6rem;
    padding: 5px 20px;
    width: auto;
  }
}
@media only screen and (min-width: 960px) {
  .is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a {
    font-size: 1.8rem;
  }
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a::after {
  background-color: rgb(74, 40, 113);
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 100%;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: -1;
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a span {
  display: inline-block;
  flex: 0 0 auto;
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a span img {
  display: none;
  height: 42px;
  margin-right: 5px;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  vertical-align: middle;
  width: auto;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a span img {
    display: inline-block;
  }
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a:hover {
  color: white;
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a:hover span img {
  filter: brightness(0) invert(1);
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a:hover::after {
  top: 0;
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a#pop-logo {
  height: 60px;
  left: 0;
  max-width: 107px;
  position: absolute;
  top: 100%;
  transform: scale(0);
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a#pop-logo span img {
  display: inline-block;
  height: 50px;
}
@media only screen and (min-width: 1024px) {
  .is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a#pop-logo {
    height: 100%;
    top: 0;
  }
}
.is-main-header > div.h-con .ui-con .ui-con-i #header-ui-alt > a#pop-logo.stuck {
  transform: scale(1);
}
.is-main-header > div.h-con .ui-con .ui-con-i .social-icons {
  font-size: 1.8rem;
}
.is-main-header > div.h-con .n-con {
  background-color: white;
  height: 60px;
  margin: 0 auto;
  max-width: none;
  position: relative;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.is-main-header > div.h-con .n-con .is-tvw-menu {
  height: 60px;
  width: 100%;
}
.is-main-header > div.h-con .n-con .is-tvw-menu.is-web {
  left: 0;
  opacity: 0;
  position: absolute;
  right: auto;
  text-align: center;
  top: 0;
  transform: none;
  transition: none;
  background-color: white;
  /*@media only screen and (min-width: $drop-under) {
  	//bottom: 40px;
  }*/
}
body.maf-loaded .is-main-header > div.h-con .n-con .is-tvw-menu.is-web {
  opacity: 1;
}
.is-main-header > div.h-con .n-con .is-tvw-menu.is-web > div {
  margin: 0;
  max-width: none;
  text-align: center;
  width: 100%;
}
.is-main-header > div.h-con .n-con .is-tvw-menu.is-web > div .links > ul > li a {
  text-decoration: none;
  text-transform: capitalize;
}
.is-main-header > div.h-con .n-con .is-tvw-menu.is-web > div .links > ul > li > a {
  opacity: 1;
}
.is-main-header > div.h-con .n-con .is-tvw-menu.is-web > div .links > ul > li > a span {
  padding: 0;
  position: relative;
}
.is-main-header > div.h-con .n-con .is-tvw-menu.is-web > div .links > ul > li > a span::before {
  background-color: black;
  bottom: -17px;
  content: "";
  display: none;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  transition: height 0.5s ease;
  width: 0;
  z-index: 0;
}
.is-main-header > div.h-con .n-con .is-tvw-menu.is-web > div .links > ul > li:hover > a {
  background-color: rgb(74, 40, 113);
}
.is-main-header > div.h-con .n-con .is-tvw-menu.is-web > div .links > ul > li:hover > a span::before {
  width: 100%;
  height: 5px;
}
.is-main-header > div.h-con .n-con .is-tvw-menu.is-web > div .links > ul > li.active > a span::before, .is-main-header > div.h-con .n-con .is-tvw-menu.is-web > div .links > ul > li.active > a span::after {
  width: 100%;
}
.is-main-header > div.h-con .n-con .is-tvw-menu.is-mobile {
  bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .is-main-header > div.h-con .n-con .is-tvw-menu.is-mobile {
    bottom: auto;
  }
}
.is-main-header > div.h-con .n-con .is-tvw-menu.is-mobile .is-burger {
  height: 40px;
  right: -300px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
}
@media only screen and (max-width: 1024px) {
  .is-main-header > div.h-con .n-con .is-tvw-menu.is-mobile .is-burger {
    height: 50px;
    width: 50px;
  }
}
body.maf-loaded .is-main-header > div.h-con .n-con .is-tvw-menu.is-mobile .is-burger {
  right: 20px;
}
@media only screen and (min-width: 1024px) {
  body.maf-loaded .is-main-header > div.h-con .n-con .is-tvw-menu.is-mobile .is-burger {
    right: 95px;
  }
}
.is-main-header > div.h-con .n-con .is-tvw-menu #pointer {
  border: 1px solid rgb(74, 40, 113);
  display: none;
  height: 100%;
  left: 3000px;
  max-width: none;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: background-color 400ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 50px;
  z-index: -1;
}
@media only screen and (min-width: 1024px) {
  .is-main-header > div.h-con .n-con .is-tvw-menu #pointer {
    display: inline-block;
  }
}
.is-main-header > div.h-con .n-con.stuck {
  left: 0;
  position: fixed;
  top: 68px;
  width: 100%;
}
.is-main-header > div.h-con .n-con.stuck .is-web {
  border-bottom: 1px solid rgb(246, 240, 255);
}
.is-main-header.squish {
  height: 360px;
}
.is-main-header.squish > div.h-con .ui-con {
  height: 70px;
}
.is-main-header.squish > div.h-con .ui-con .ui-con-i .company-brand {
  width: 210px;
}
.is-main-header.squish > div.h-con .ui-con .ui-con-i #header-ui .button {
  min-height: 30px;
}
@media only screen and (min-width: 768px) {
  .is-main-header.squish > div.h-con .ui-con .ui-con-i #header-ui .phone span img {
    max-width: 36px;
  }
}
.is-main-header.squish > div.h-con .n-con {
  height: 30px;
}
.is-main-header.squish > div.h-con .n-con .is-tvw-menu.is-web > div .links > ul > li > a span::before {
  height: 2px;
  top: -6px;
}
.is-main-header.squish > div.h-con .n-con .is-tvw-menu.is-mobile .is-burger {
  height: 40px;
  width: 40px;
}
body.is-home .is-main-header {
  background-color: transparent;
}

.hero-header {
  background-color: rgb(74, 40, 113);
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  text-align: center;
}
.hero-header h1, .hero-header .h1-style, .hero-header h2, .hero-header .h2-style, .hero-header h3, .hero-header .h3-style, .hero-header h4, .hero-header .h4-style, .hero-header h5, .hero-header .h5-style, .hero-header h6.h6-style {
  color: white;
}
.hero-header h1, .hero-header .h1-style {
  font-size: 3.5rem;
}
@media only screen and (min-width: 576px) {
  .hero-header h1, .hero-header .h1-style {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 960px) {
  .hero-header h1, .hero-header .h1-style {
    font-size: 6rem;
  }
}
@media only screen and (min-width: 1280px) {
  .hero-header h1, .hero-header .h1-style {
    font-size: 8rem;
  }
}
.hero-header > .maf-background {
  background-position: 50% 0px;
}
.hero-header > .maf-bg-overlay {
  background-image: url("/images/content/footer-bg.jpg");
  background-size: 100% 100%;
}
.hero-header .u-con {
  background-color: transparent;
  display: inline-block;
  flex: 0 0 auto;
  left: 0;
  height: 200px;
  position: fixed;
  top: 0;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: 100;
}
@media only screen and (min-width: 576px) {
  .hero-header .u-con {
    height: 250px;
  }
}
.hero-header .u-con .u-con-i {
  height: 100%;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 50px;
  position: relative;
}
@media only screen and (min-width: 576px) {
  .hero-header .u-con .u-con-i {
    padding: 0 100px;
  }
}
.hero-header .u-con .u-con-i #con-left, .hero-header .u-con .u-con-i #con-right {
  bottom: 10px;
  color: rgb(74, 40, 113);
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  left: 50px;
  opacity: 0;
  position: absolute;
  transition: opacity 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media only screen and (min-width: 576px) {
  .hero-header .u-con .u-con-i #con-left, .hero-header .u-con .u-con-i #con-right {
    left: 100px;
  }
}
@media only screen and (min-width: 1152px) {
  .hero-header .u-con .u-con-i #con-left, .hero-header .u-con .u-con-i #con-right {
    bottom: 25px;
  }
}
.hero-header .u-con .u-con-i #con-left p, .hero-header .u-con .u-con-i #con-right p {
  font-size: 1.6rem;
  line-height: 1.1;
  margin: 0;
}
@media only screen and (min-width: 960px) {
  .hero-header .u-con .u-con-i #con-left p, .hero-header .u-con .u-con-i #con-right p {
    font-size: 2.2rem;
  }
}
.hero-header .u-con .u-con-i #con-left p a, .hero-header .u-con .u-con-i #con-right p a {
  font-size: 1.4rem;
}
.hero-header .u-con .u-con-i #con-left p a span, .hero-header .u-con .u-con-i #con-right p a span {
  display: none;
}
@media only screen and (min-width: 576px) {
  .hero-header .u-con .u-con-i #con-left p a span, .hero-header .u-con .u-con-i #con-right p a span {
    display: inline;
  }
}
@media only screen and (min-width: 768px) {
  .hero-header .u-con .u-con-i #con-left p a, .hero-header .u-con .u-con-i #con-right p a {
    text-transform: uppercase;
  }
}
.hero-header .u-con .u-con-i #con-right {
  left: auto;
  right: 50px;
  text-align: right;
}
@media only screen and (min-width: 576px) {
  .hero-header .u-con .u-con-i #con-right {
    right: 100px;
  }
}
.hero-header .u-con .u-con-i #maf-brand, .hero-header .u-con .u-con-i #maf-brand-m {
  cursor: pointer;
  height: 90%;
  left: 50%;
  max-height: 107px;
  position: absolute;
  text-align: center;
  top: -300px;
  transform: translate(-50%, -50%);
  transition: top 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), height 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.hero-header .u-con .u-con-i #maf-brand svg, .hero-header .u-con .u-con-i #maf-brand-m svg {
  display: block;
  height: 80%;
  margin: 0 auto;
}
@media only screen and (min-width: 576px) {
  .hero-header .u-con .u-con-i #maf-brand svg, .hero-header .u-con .u-con-i #maf-brand-m svg {
    height: 100%;
  }
}
.hero-header .u-con .u-con-i #maf-brand svg path, .hero-header .u-con .u-con-i #maf-brand-m svg path {
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  fill: white !important;
}
.hero-header .u-con .u-con-i #maf-brand svg #maf-logo-lines, .hero-header .u-con .u-con-i #maf-brand-m svg #maf-logo-lines {
  stroke: white !important;
}
body.maf-loaded .hero-header .u-con .u-con-i #maf-brand, body.maf-loaded .hero-header .u-con .u-con-i #maf-brand-m {
  top: 50%;
}
.hero-header .u-con .u-con-i #maf-brand body.maf-pl-1 svg path, .hero-header .u-con .u-con-i #maf-brand-m body.maf-pl-1 svg path {
  fill: rgb(74, 40, 113) !important;
}
.hero-header .u-con .u-con-i #maf-brand body.maf-pl-1 svg #maf-logo-lines, .hero-header .u-con .u-con-i #maf-brand-m body.maf-pl-1 svg #maf-logo-lines {
  stroke: rgb(74, 40, 113) !important;
}
.hero-header .c-con {
  align-items: stretch;
  align-content: stretch;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 100px;
  position: relative;
  width: 100%;
}
.hero-header .c-con .row .column {
  justify-content: center;
}
.hero-header .c-con .row .column h1 {
  margin-bottom: 5%;
  max-width: 1000px;
}
.hero-header .c-con .row .column h1 span {
  display: inline-block;
  text-shadow: 3px 3px 8px black;
  width: 100%;
}
.hero-header .c-con .row .column h1 span.sm {
  font-size: 0.75em;
}
.hero-header .c-con .row .column p .button {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgb(74, 40, 113);
  color: white;
  margin: 10px 0;
}
@media only screen and (min-width: 576px) {
  .hero-header .c-con .row .column p .button {
    margin: 10px 32px;
  }
}
.hero-header .c-con .row .column p .button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
.hero-header .n-con {
  display: inline-block;
  flex: 0 0 auto;
  height: 100px;
  position: relative;
  width: 100%;
}
.hero-header .n-con .n-con-stky {
  background-color: white;
  border-top: 1px solid rgb(74, 40, 113);
  border-bottom: 1px solid rgb(74, 40, 113);
  display: inline-block;
  height: 100px;
  position: relative;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: 100;
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-web {
  height: 100%;
  left: -200vw;
  opacity: 0;
  position: absolute;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
body.maf-loaded .hero-header .n-con .n-con-stky .is-tvw-menu.is-web {
  left: 50%;
  opacity: 1;
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-web .nav-content {
  height: 100%;
  max-width: 1600px;
  padding: 0 100px;
  width: 100%;
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links {
  height: 100%;
  width: 100%;
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul {
  display: flex;
  border-left: 1px solid rgb(74, 40, 113);
  border-right: 1px solid rgb(74, 40, 113);
  height: 100%;
  width: 100%;
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li {
  border-right: 1px solid rgb(74, 40, 113);
  flex: 1 1 auto;
  padding: 0;
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li:last-child {
  border-right: 0;
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li > a {
  align-items: center;
  background-color: white;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 10px 20px;
}
@media only screen and (min-width: 1366px) {
  .hero-header .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li > a {
    text-transform: uppercase;
  }
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li:hover > a {
  transform: translateY(-10px);
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li.active {
  background-color: rgb(74, 40, 113);
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li.active > a {
  background-color: rgb(74, 40, 113);
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-mobile.maf-3 .nav-content .is-burger {
  transition: none;
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-mobile.maf-3 .nav-content .is-burger.active {
  position: fixed;
  right: 10px;
  top: 30px;
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-mobile.maf-3 .nav-content .links {
  position: fixed;
  top: 0;
}
.hero-header .n-con .n-con-stky .is-tvw-menu.is-mobile.maf-3 .nav-content .links > ul {
  height: calc(100vh - 65px);
  top: 65px;
}
.hero-header .n-con .n-con-stky.stuck, .hero-header .n-con .n-con-stky.perma-stuck {
  height: 50px;
  left: 0;
  position: fixed;
  top: 100px;
}
.hero-header .n-con .n-con-stky.stuck .is-tvw-menu.is-web .nav-content .links, .hero-header .n-con .n-con-stky.perma-stuck .is-tvw-menu.is-web .nav-content .links {
  left: 50%;
  max-width: 1400px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}
.hero-header .n-con .n-con-stky.stuck .is-tvw-menu.is-web .nav-content .links ul > li:hover > a, .hero-header .n-con .n-con-stky.perma-stuck .is-tvw-menu.is-web .nav-content .links ul > li:hover > a {
  background-color: rgb(99, 99, 99);
  color: white;
  transform: none;
}
.hero-header.squish .u-con {
  background-color: white;
  height: 100px;
}
.hero-header.squish .u-con .u-con-i #con-left, .hero-header.squish .u-con .u-con-i #con-right {
  opacity: 1;
}
.hero-header.squish .u-con .u-con-i #maf-brand {
  height: 62%;
}
.hero-header.squish .u-con .u-con-i #maf-brand svg path {
  fill: black !important;
}
.hero-header.squish .u-con .u-con-i #maf-brand svg #maf-logo-lines {
  stroke: black !important;
}
.hero-header.magazine .u-con {
  height: 180px;
}
.hero-header.magazine .u-con .u-con-i #maf-brand-m {
  max-height: 32px;
}
@media only screen and (min-width: 768px) {
  .hero-header.magazine .u-con .u-con-i #maf-brand-m {
    max-height: 55px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-header.magazine .u-con .u-con-i #maf-brand-m {
    max-height: 90px;
  }
}
.hero-header.magazine .u-con .u-con-i #maf-brand-m svg path {
  fill: rgb(74, 40, 113) !important;
}
body.maf-pl-1 .hero-header.magazine .u-con .u-con-i #maf-brand-m svg path {
  fill: white !important;
}
body.maf-pl-1 .hero-header.magazine .u-con .u-con-i #maf-brand-m svg #maf-logo-lines {
  stroke: white !important;
}
.hero-header.magazine .c-con .row .column {
  justify-content: flex-end;
  overflow: visible;
  padding-bottom: 0;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .hero-header.magazine .c-con .row .column {
    text-align: left;
  }
}
.hero-header.magazine .c-con .row .column h1 {
  display: inline-block;
  flex: 3 3 auto;
  font-size: 3.6rem;
  margin-bottom: 0;
  max-width: none;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .hero-header.magazine .c-con .row .column h1 {
    font-size: 4.8rem;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-header.magazine .c-con .row .column h1 {
    font-size: 5.4rem;
    padding-right: 100px;
    width: 66.666%;
  }
}
@media only screen and (min-width: 1152px) {
  .hero-header.magazine .c-con .row .column h1 {
    width: 75%;
  }
}
.hero-header.magazine .c-con .row .column p {
  display: inline-block;
  flex: 1 1 auto;
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .hero-header.magazine .c-con .row .column p {
    text-align: right;
    width: 33.333%;
  }
}
@media only screen and (min-width: 1152px) {
  .hero-header.magazine .c-con .row .column p {
    width: 25%;
  }
}
.hero-header.magazine .c-con .row .column p a.button {
  margin: 10px 0 0 0;
  max-width: 300px;
  min-width: 0;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .hero-header.magazine .c-con .row .column p a.button {
    margin: 10px 0 10px 0;
  }
}
.hero-header.magazine .c-con .row .column .maf-content {
  padding: 35px 0;
  position: relative;
}
.hero-header.magazine .c-con .row .column .maf-content::before {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  content: "";
  display: inline-block;
  height: 100%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
}
@media only screen and (min-width: 1024px) {
  .hero-header.magazine .c-con .row .column .maf-content {
    align-items: flex-end;
    flex-direction: row;
  }
}
.hero-header.magazine .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li.search {
  flex: 1 1 123px;
}
.hero-header.magazine .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li > a {
  text-transform: capitalize;
}
.hero-header.magazine .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li > form {
  display: flex;
  height: 100%;
}
.hero-header.magazine .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li > form input {
  border: 0;
  color: rgb(99, 99, 99);
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  height: 100%;
  line-height: 1.3;
  margin: auto 0;
  min-width: 0;
  outline-color: rgb(74, 40, 113);
  padding: 10px 20px;
  text-transform: none;
  transition: all 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
.hero-header.magazine .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li > form input::-moz-placeholder {
  font-family: "Quicksand", sans-serif;
  opacity: 1;
}
.hero-header.magazine .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li > form input::placeholder {
  font-family: "Quicksand", sans-serif;
  opacity: 1;
}
.hero-header.magazine .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li > form input:focus, .hero-header.magazine .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li > form input.active {
  background-color: rgb(74, 40, 113);
  min-width: 300px;
}
.hero-header.magazine.squish .u-con {
  height: 100px;
}
.hero-header.magazine.squish .u-con .u-con-i #maf-brand-m {
  transform: translate(-50%, 0);
  height: 44%;
}
@media only screen and (min-width: 1152px) {
  .hero-header.magazine.squish .u-con .u-con-i #maf-brand-m {
    transform: translate(-50%, -50%);
  }
}
body.maf-loaded .hero-header.magazine.squish .u-con .u-con-i #maf-brand-m {
  top: 10px;
}
@media only screen and (min-width: 1152px) {
  body.maf-loaded .hero-header.magazine.squish .u-con .u-con-i #maf-brand-m {
    top: 50%;
  }
}
body.maf-pl-1 .hero-header.magazine.squish .u-con .u-con-i #maf-brand-m svg path {
  fill: rgb(74, 40, 113) !important;
}
body.maf-pl-1 .hero-header.magazine.squish .u-con .u-con-i #maf-brand-m svg #maf-logo-lines {
  stroke: rgb(74, 40, 113) !important;
}
.hero-header.magazine.article .c-con .row .column .maf-content {
  align-items: center;
  border: 1px solid rgb(99, 99, 99);
  border-bottom: 0;
  flex-direction: column;
  max-width: 1160px;
  padding: 100px 50px 50px 50px;
}
.hero-header.magazine.article .c-con .row .column .maf-content::before {
  width: 100%;
}
.hero-header.magazine.article .c-con .row .column .maf-content > * {
  flex: 0 0 auto;
  width: 100%;
  padding: 0;
  text-align: center;
}
.hero-header.magazine.article .c-con .row .column .maf-content h1 {
  max-width: 760px;
}
.hero-header.magazine.article .c-con .row .column .maf-content p {
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  max-width: 1004px;
}
.hero-header.magazine.article .c-con .row .column .maf-content p.read {
  display: none;
  font-size: 1.8rem;
  font-style: italic;
}
.hero-header.magazine.article .c-con .row .column .maf-content p.read a {
  color: white;
  display: inline-block;
  text-decoration: none;
}
.hero-header.magazine.article .c-con .row .column .maf-content p.read a:hover {
  animation: point-d 1000ms infinite linear;
}
.hero-header.category, .hero-header.product, .hero-header.no-image {
  min-height: 150px;
}
.hero-header.category .c-con, .hero-header.product .c-con, .hero-header.no-image .c-con {
  display: none;
}
.hero-header.page .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li {
  flex: 0 0 auto;
  width: 200px;
}
.hero-header.page .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li:nth-last-child(2) {
  margin-left: auto;
}
@media only screen and (min-width: 1300px) {
  .hero-header.page .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li:nth-last-child(2) {
    border-left: 1px solid rgb(74, 40, 113);
  }
}
.hero-header.page.not-home .c-con .row .column h1 {
  margin-bottom: 0;
  text-shadow: 3px 3px 8px black;
  text-transform: uppercase;
}
.hero-header.page.not-home .c-con .row .column p {
  font-family: "Quicksand", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  max-width: 920px;
  text-shadow: 3px 3px 8px black;
}
@media only screen and (min-width: 960px) {
  .hero-header.page.not-home .c-con .row .column p {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .hero-header.page.not-home .c-con .row .column p {
    font-size: 6rem;
  }
}

section, .section {
  overflow: hidden;
}
section.is-hero, .section.is-hero {
  min-height: 540px;
  color: white;
  position: relative;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
section.is-hero .is-hero a.button, .section.is-hero .is-hero a.button {
  margin-bottom: 50px;
}
section.is-hero h1, section.is-hero .h1-style, section.is-hero h2, section.is-hero .h2-style, section.is-hero h3, section.is-hero .h3-style, section.is-hero h4, section.is-hero .h4-style, section.is-hero h5, section.is-hero .h5-style, section.is-hero h6.h6-style, .section.is-hero h1, .section.is-hero .h1-style, .section.is-hero h2, .section.is-hero .h2-style, .section.is-hero h3, .section.is-hero .h3-style, .section.is-hero h4, .section.is-hero .h4-style, .section.is-hero h5, .section.is-hero .h5-style, .section.is-hero h6.h6-style {
  margin-bottom: 50px;
}
section.is-hero p, .section.is-hero p {
  font-size: 2.8rem;
}
section.is-hero p.h1-style, .section.is-hero p.h1-style {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.5;
}
section.is-hero #hero-logo, .section.is-hero #hero-logo {
  display: inline-block;
  margin-bottom: 20px;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
section.is-hero #hero-logo p, .section.is-hero #hero-logo p {
  display: inline-block;
}
section.is-hero .maf-background, .section.is-hero .maf-background {
  background-position: bottom center;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
}
section.is-hero .header .maf-content, .section.is-hero .header .maf-content {
  max-width: 100%;
}
section.is-hero .row, .section.is-hero .row {
  overflow: visible;
  opacity: 0;
  transition: opacity 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
section.is-hero .row .column, .section.is-hero .row .column {
  background-color: rgb(74, 40, 113);
  justify-content: center;
  min-height: 0;
  text-align: center;
}
section.is-hero .row .column.maf-col-1 .maf-content, .section.is-hero .row .column.maf-col-1 .maf-content {
  margin-bottom: 30px;
  max-width: 900px;
}
@media only screen and (max-width: 768px) {
  section.is-hero .row .column.maf-col-1 .maf-content, .section.is-hero .row .column.maf-col-1 .maf-content {
    margin-bottom: none;
    margin-top: 30px;
  }
}
body.is-home section.is-hero h1, body.is-home section.is-hero .h1-style, body.is-home section.is-hero h2, body.is-home section.is-hero .h2-style, body.is-home .section.is-hero h1, body.is-home .section.is-hero .h1-style, body.is-home .section.is-hero h2, body.is-home .section.is-hero .h2-style {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (min-width: 960px) {
  body.is-home section.is-hero h1, body.is-home section.is-hero .h1-style, body.is-home section.is-hero h2, body.is-home section.is-hero .h2-style, body.is-home .section.is-hero h1, body.is-home .section.is-hero .h1-style, body.is-home .section.is-hero h2, body.is-home .section.is-hero .h2-style {
    font-size: 2.8rem;
  }
}
body.is-home section.is-hero.slideshow > .maf-background, body.is-home .section.is-hero.slideshow > .maf-background {
  background-image: none;
}
body.is-home section.is-hero .row, body.is-home .section.is-hero .row {
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
body.is-home section.is-hero .row .column, body.is-home .section.is-hero .row .column {
  background-color: rgb(246, 240, 255);
}
body.manageable-bo section.is-hero > .maf-background, body.manageable-bo .section.is-hero > .maf-background {
  margin: 0;
}
body.manageable-bo section.is-hero .row, body.manageable-bo .section.is-hero .row {
  padding-top: 0;
}
body.maf-loaded section.is-hero .row, body.maf-loaded .section.is-hero .row {
  opacity: 1;
}
section.is-hero.slideshow > .maf-background, .section.is-hero.slideshow > .maf-background {
  background-image: none;
}
section.is-hero.slideshow .flickity-slideshow, .section.is-hero.slideshow .flickity-slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide, .section.is-hero.slideshow .flickity-slideshow .ss-slide {
  height: 100%;
  overflow: hidden;
  width: 100%;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-background, .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-background {
  background-position: center;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
}
section.is-hero.alt-1, .section.is-hero.alt-1 {
  color: rgb(74, 40, 113);
  min-height: 300px;
}
section.is-hero.alt-1 h1, section.is-hero.alt-1 .h1-style, section.is-hero.alt-1 h2, section.is-hero.alt-1 .h2-style, section.is-hero.alt-1 h3, section.is-hero.alt-1 .h3-style, section.is-hero.alt-1 h4, section.is-hero.alt-1 .h4-style, section.is-hero.alt-1 h5, section.is-hero.alt-1 .h5-style, section.is-hero.alt-1 h6.h6-style, .section.is-hero.alt-1 h1, .section.is-hero.alt-1 .h1-style, .section.is-hero.alt-1 h2, .section.is-hero.alt-1 .h2-style, .section.is-hero.alt-1 h3, .section.is-hero.alt-1 .h3-style, .section.is-hero.alt-1 h4, .section.is-hero.alt-1 .h4-style, .section.is-hero.alt-1 h5, .section.is-hero.alt-1 .h5-style, .section.is-hero.alt-1 h6.h6-style {
  margin-bottom: 30px;
}
section.is-hero.alt-1 .row .column, .section.is-hero.alt-1 .row .column {
  background-color: rgb(246, 240, 255);
}
section.is-hero#section-shop-product-list-hero .row .column .maf-background, .section.is-hero#section-shop-product-list-hero .row .column .maf-background {
  background-image: url("/images/Layout/shop-hero.jpg");
}
section.one-column h1, section.one-column .h1-style, section.one-column h2, section.one-column .h2-style, section.one-column h3, section.one-column .h3-style, section.one-column h4, section.one-column .h4-style, section.one-column h5, section.one-column .h5-style, section.one-column h6.h6-style, .section.one-column h1, .section.one-column .h1-style, .section.one-column h2, .section.one-column .h2-style, .section.one-column h3, .section.one-column .h3-style, .section.one-column h4, .section.one-column .h4-style, .section.one-column h5, .section.one-column .h5-style, .section.one-column h6.h6-style {
  color: rgb(74, 40, 113);
}
section.one-column .row, .section.one-column .row {
  margin-bottom: 20px;
}
section.one-column .row .column .maf-content, .section.one-column .row .column .maf-content {
  max-width: 900px;
  padding: 40px 0;
}
section.one-column.callout, .section.one-column.callout {
  margin-top: -110px;
  margin-bottom: -110px;
  min-height: 700px;
}
body.manageable section.one-column.callout, body.manageable .section.one-column.callout {
  z-index: -10;
}
section.one-column.callout > .maf-background, .section.one-column.callout > .maf-background {
  animation: centre-scale 150s infinite linear;
}
section.one-column.callout .row, .section.one-column.callout .row {
  background-color: pink;
  padding-top: 130px;
  box-shadow: none;
  margin-bottom: 0;
  background-color: transparent;
}
section.one-column.callout .row .column .maf-content.maf-content p h3, .section.one-column.callout .row .column .maf-content.maf-content p h3 {
  color: white;
  text-decoration: underline;
}
section.one-column.brands .row .column .maf-content, .section.one-column.brands .row .column .maf-content {
  max-width: none;
}
section.one-column.bg-left .maf-background, .section.one-column.bg-left .maf-background {
  background-position: left;
}
section.one-column.bg-left .row .column, .section.one-column.bg-left .row .column {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
section.one-column.bg-left .row .column .maf-content, .section.one-column.bg-left .row .column .maf-content {
  align-items: flex-start;
}
section.one-column.bg-right .maf-background, .section.one-column.bg-right .maf-background {
  background-position: right;
}
section.one-column.bg-right .row .column, .section.one-column.bg-right .row .column {
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}
section.one-column.bg-right .row .column .maf-content, .section.one-column.bg-right .row .column .maf-content {
  align-items: flex-end;
}
section.one-column.ad-block .row .column, .section.one-column.ad-block .row .column {
  padding-top: 0;
}
section.one-column.ad-block .row .column .maf-content, .section.one-column.ad-block .row .column .maf-content {
  max-width: none;
}
section.one-column.mbe-award .row .column, .section.one-column.mbe-award .row .column {
  padding-bottom: 0;
}
section.one-column.mbe-award .row .column .maf-content, .section.one-column.mbe-award .row .column .maf-content {
  max-width: none;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  section.one-column.mbe-award .row .column .maf-content, .section.one-column.mbe-award .row .column .maf-content {
    flex-direction: row;
    justify-content: center;
  }
}
section.one-column.mbe-award .row .column .maf-content p, .section.one-column.mbe-award .row .column .maf-content p {
  color: rgb(74, 40, 113);
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  section.one-column.mbe-award .row .column .maf-content p, .section.one-column.mbe-award .row .column .maf-content p {
    width: auto;
  }
  section.one-column.mbe-award .row .column .maf-content p img, .section.one-column.mbe-award .row .column .maf-content p img {
    margin-right: 30px;
  }
}
section.one-column.vidpop .row, .section.one-column.vidpop .row {
  background-color: rgb(74, 40, 113);
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  section.one-column.vidpop .row, .section.one-column.vidpop .row {
    flex-direction: row;
  }
}
section.one-column.vidpop .row .column, .section.one-column.vidpop .row .column {
  justify-content: center;
}
section.one-column.vidpop .row .column > .maf-background, .section.one-column.vidpop .row .column > .maf-background {
  background-position: center;
}
section.one-column.vidpop .row .column.maf-col-1, .section.one-column.vidpop .row .column.maf-col-1 {
  align-items: flex-start;
  padding: 0 0 37% 0;
  text-align: left;
}
section.one-column.vidpop .row .column.maf-col-1 > a, .section.one-column.vidpop .row .column.maf-col-1 > a {
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
section.one-column.vidpop .row .column.maf-col-1 > a button, .section.one-column.vidpop .row .column.maf-col-1 > a button {
  background-color: rgba(255, 255, 255, 0.7);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 100px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100px;
}
section.one-column.vidpop .row .column.maf-col-1 > a button::before, .section.one-column.vidpop .row .column.maf-col-1 > a button::before {
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 40px solid rgb(74, 40, 113);
  content: "";
  display: inline-block;
  height: 0;
  left: 50%;
  position: absolute;
  transform: translate(-40%, -50%);
  transition: right 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  top: 50%;
  width: 0;
}
section.one-column.vidpop .row .column.maf-col-1 > a:hover, .section.one-column.vidpop .row .column.maf-col-1 > a:hover {
  background-color: rgba(70, 40, 113, 0.4);
}
section.one-column.vidpop .row .column.maf-col-1 > a:hover button, .section.one-column.vidpop .row .column.maf-col-1 > a:hover button {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 120px 10px rgba(0, 0, 0, 0.9);
}
section.one-column.vidpop .row .column.maf-col-1 .maf-content, .section.one-column.vidpop .row .column.maf-col-1 .maf-content {
  left: 30px;
  padding: 0;
  position: absolute;
  top: 30px;
  width: calc(100% - 60px);
  z-index: 1;
}
section.one-column.vidpop .row .column.maf-col-1 .maf-content > *, .section.one-column.vidpop .row .column.maf-col-1 .maf-content > * {
  color: white;
  text-shadow: 0 0 8px black;
}
section.one-column-full h1, section.one-column-full .h1-style, section.one-column-full h2, section.one-column-full .h2-style, section.one-column-full h3, section.one-column-full .h3-style, section.one-column-full h4, section.one-column-full .h4-style, section.one-column-full h5, section.one-column-full .h5-style, section.one-column-full h6.h6-style, .section.one-column-full h1, .section.one-column-full .h1-style, .section.one-column-full h2, .section.one-column-full .h2-style, .section.one-column-full h3, .section.one-column-full .h3-style, .section.one-column-full h4, .section.one-column-full .h4-style, .section.one-column-full h5, .section.one-column-full .h5-style, .section.one-column-full h6.h6-style {
  color: rgb(74, 40, 113);
}
section.one-column-full .row, .section.one-column-full .row {
  margin-bottom: 20px;
  background-color: white;
}
section.one-column-full .row .column .maf-content, .section.one-column-full .row .column .maf-content {
  max-width: 825px;
}
section.one-column-full.callout, .section.one-column-full.callout {
  min-height: 600px;
  color: white;
}
section.one-column-full.callout .maf-content *, .section.one-column-full.callout .maf-content * {
  color: white;
}
section.one-column-full.callout .maf-content hr, .section.one-column-full.callout .maf-content hr {
  border-color: white;
}
section.one-column-full.callout .maf-content a.button, .section.one-column-full.callout .maf-content a.button {
  color: rgb(74, 40, 113);
}
section.one-column-full.callout .maf-content a.button:hover, .section.one-column-full.callout .maf-content a.button:hover {
  color: white;
}
section.one-column-full.callout .row, .section.one-column-full.callout .row {
  overflow: hidden;
  background-color: rgb(74, 40, 113);
}
section.one-column-full.callout .row > .maf-background, .section.one-column-full.callout .row > .maf-background {
  animation: centre-scale 150s infinite linear;
}
section.one-column-full.callout .row .column, .section.one-column-full.callout .row .column {
  justify-content: center;
}
section.one-column-full.brands .row .column .maf-content, .section.one-column-full.brands .row .column .maf-content {
  max-width: none;
}
section.one-column-full.bg-left .maf-background, .section.one-column-full.bg-left .maf-background {
  background-position: left;
}
section.one-column-full.bg-left .row .column, .section.one-column-full.bg-left .row .column {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
section.one-column-full.bg-left .row .column .maf-content, .section.one-column-full.bg-left .row .column .maf-content {
  align-items: flex-start;
}
section.one-column-full.bg-right .maf-background, .section.one-column-full.bg-right .maf-background {
  background-position: right;
}
section.one-column-full.bg-right .row .column, .section.one-column-full.bg-right .row .column {
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}
section.one-column-full.bg-right .row .column .maf-content, .section.one-column-full.bg-right .row .column .maf-content {
  align-items: flex-end;
}
section.one-column-full.ad-block .row .column, .section.one-column-full.ad-block .row .column {
  padding-top: 0;
}
section.one-column-full.ad-block .row .column .maf-content, .section.one-column-full.ad-block .row .column .maf-content {
  max-width: none;
}
section.two-column, .section.two-column {
  min-height: 300px;
}
section.two-column h1, section.two-column .h1-style, section.two-column h2, section.two-column .h2-style, section.two-column h3, section.two-column .h3-style, section.two-column h4, section.two-column .h4-style, section.two-column h5, section.two-column .h5-style, section.two-column h6, section.two-column .h6-style, .section.two-column h1, .section.two-column .h1-style, .section.two-column h2, .section.two-column .h2-style, .section.two-column h3, .section.two-column .h3-style, .section.two-column h4, .section.two-column .h4-style, .section.two-column h5, .section.two-column .h5-style, .section.two-column h6, .section.two-column .h6-style {
  color: rgb(74, 40, 113);
}
@media only screen and (min-width: 1024px) {
  section.two-column .mobile-nobg .maf-background, .section.two-column .mobile-nobg .maf-background {
    background-image: none !important;
  }
}
section.two-column .row .column, .section.two-column .row .column {
  align-items: flex-start;
  overflow: hidden;
}
section.two-column .row .column .maf-content, .section.two-column .row .column .maf-content {
  max-width: 700px;
}
section.two-column .row .column.maf-col-1, .section.two-column .row .column.maf-col-1 {
  text-align: left;
}
section.two-column .row .column.maf-col-2, .section.two-column .row .column.maf-col-2 {
  text-align: left;
}
section.two-column.maf-col-bg-full .row, .section.two-column.maf-col-bg-full .row {
  max-width: none;
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full .row .column.maf-col-1, .section.two-column.maf-col-bg-full .row .column.maf-col-1 {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full .row .column.maf-col-1 .maf-col-i, .section.two-column.maf-col-bg-full .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 .row .column.maf-col-2, .section.two-column.maf-col-bg-full .row .column.maf-col-2 {
    align-items: flex-start;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full .row .column.maf-col-2 .maf-col-i, .section.two-column.maf-col-bg-full .row .column.maf-col-2 .maf-col-i {
    align-items: flex-end;
  }
}
section.two-column.img-right > .maf-background, .section.two-column.img-right > .maf-background {
  background-position: right;
}
section.two-column.img-right .row > .maf-background, .section.two-column.img-right .row > .maf-background {
  background-position: right;
}
section.two-column.img-right .row .column.maf-col-2, .section.two-column.img-right .row .column.maf-col-2 {
  min-height: 500px;
}
@media only screen and (min-width: 1024px) {
  section.two-column.img-right .row .column.maf-col-2, .section.two-column.img-right .row .column.maf-col-2 {
    min-height: 0;
  }
}
section.two-column.img-left > .maf-background, .section.two-column.img-left > .maf-background {
  background-position: left;
}
section.two-column.img-left .row > .maf-background, .section.two-column.img-left .row > .maf-background {
  background-position: left;
}
section.two-column.img-left .row .column.maf-col-1, .section.two-column.img-left .row .column.maf-col-1 {
  min-height: 500px;
}
@media only screen and (min-width: 1024px) {
  section.two-column.img-left .row .column.maf-col-1, .section.two-column.img-left .row .column.maf-col-1 {
    min-height: 0;
  }
}
section.two-column.maf-rep-pad .row, .section.two-column.maf-rep-pad .row {
  padding-bottom: 37.5px;
}
@media only screen and (min-width: 576px) {
  section.two-column.maf-rep-pad .row, .section.two-column.maf-rep-pad .row {
    padding-bottom: 75px;
  }
}
section.two-column.maf-rep-pad .row .column, .section.two-column.maf-rep-pad .row .column {
  padding: 37.5px 25px 0 25px;
}
@media only screen and (min-width: 576px) {
  section.two-column.maf-rep-pad .row .column, .section.two-column.maf-rep-pad .row .column {
    padding: 75px 50px 0 50px;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-rep-pad .row .column, .section.two-column.maf-rep-pad .row .column {
    padding: 75px 50px 0 50px;
  }
}
section.two-column.callout, .section.two-column.callout {
  font-size: 2.4rem;
}
section.two-column.callout h2, section.two-column.callout .h2-style, .section.two-column.callout h2, .section.two-column.callout .h2-style {
  border: 0;
  font-size: 6rem;
  max-width: 480px;
  padding: 0;
}
section.two-column.callout .button, .section.two-column.callout .button {
  max-width: 560px;
  width: 100%;
}
section.two-column.callout .header .maf-content, .section.two-column.callout .header .maf-content {
  padding-bottom: 37.5px;
}
section.two-column.callout .row, .section.two-column.callout .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout .row, .section.two-column.callout .row {
    flex-direction: row;
  }
}
section.two-column.callout .row .column.maf-col-1 .maf-content, .section.two-column.callout .row .column.maf-col-1 .maf-content {
  align-items: flex-start;
}
section.two-column.callout .row .column.maf-col-2, .section.two-column.callout .row .column.maf-col-2 {
  justify-content: center;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout .row .column.maf-col-2, .section.two-column.callout .row .column.maf-col-2 {
    text-align: right;
  }
}
section.two-column.callout .row .column.maf-col-2 p, .section.two-column.callout .row .column.maf-col-2 p {
  border: 1px solid rgb(99, 99, 99);
  border-radius: 50%;
  max-width: 560px;
  padding: 5px;
}
section.two-column.callout .row .column.maf-col-2 img, .section.two-column.callout .row .column.maf-col-2 img {
  border-radius: 50%;
  position: relative;
}
section.two-column.callout .row .column.maf-col-2 .maf-content, .section.two-column.callout .row .column.maf-col-2 .maf-content {
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout .row .column.maf-col-2 .maf-content, .section.two-column.callout .row .column.maf-col-2 .maf-content {
    align-items: flex-end;
  }
}
section.two-column.callout[class*=bg-] .row::after, .section.two-column.callout[class*=bg-] .row::after {
  display: none;
}
section.two-column:last-child .row::after, .section.two-column:last-child .row::after {
  display: none;
}
body.shop section.two-column .row::after, body.shop .section.two-column .row::after {
  display: none;
}
section.two-column.two-column-get-in-touch, .section.two-column.two-column-get-in-touch {
  min-height: 450px;
}
section.two-column.two-column-get-in-touch .header, .section.two-column.two-column-get-in-touch .header {
  display: none;
}
section.two-column.two-column-get-in-touch .row, .section.two-column.two-column-get-in-touch .row {
  justify-content: center;
}
section.two-column.two-column-get-in-touch .row > .maf-background, .section.two-column.two-column-get-in-touch .row > .maf-background {
  background-position: right;
  background-size: auto 100%;
}
section.two-column.two-column-get-in-touch .row .column, .section.two-column.two-column-get-in-touch .row .column {
  justify-content: center;
  max-width: 640px;
}
section.two-column.two-column-get-in-touch .row .column.maf-col-1, .section.two-column.two-column-get-in-touch .row .column.maf-col-1 {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  section.two-column.two-column-get-in-touch .row .column.maf-col-1, .section.two-column.two-column-get-in-touch .row .column.maf-col-1 {
    text-align: left;
  }
  section.two-column.two-column-get-in-touch .row .column.maf-col-1 .maf-content, .section.two-column.two-column-get-in-touch .row .column.maf-col-1 .maf-content {
    padding-right: 0;
  }
}
section.two-column.two-column-get-in-touch .row .column.maf-col-2, .section.two-column.two-column-get-in-touch .row .column.maf-col-2 {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  section.two-column.two-column-get-in-touch .row .column.maf-col-2, .section.two-column.two-column-get-in-touch .row .column.maf-col-2 {
    text-align: left;
  }
  section.two-column.two-column-get-in-touch .row .column.maf-col-2 .maf-content, .section.two-column.two-column-get-in-touch .row .column.maf-col-2 .maf-content {
    padding-left: 0;
  }
}
section.two-column.square-cols .row .column > .maf-background, .section.two-column.square-cols .row .column > .maf-background {
  background-position: center;
}
section.two-column.square-cols.imgleft .row .column.maf-col-1, .section.two-column.square-cols.imgleft .row .column.maf-col-1 {
  aspect-ratio: 1/1;
}
section.two-column.square-cols.imgleft .row .column.maf-col-1 .maf-content, .section.two-column.square-cols.imgleft .row .column.maf-col-1 .maf-content {
  display: none;
}
section.two-column.square-cols.imgleft .row .column.maf-col-2, .section.two-column.square-cols.imgleft .row .column.maf-col-2 {
  justify-content: center;
}
section.two-column.square-cols.imgright .row .column.maf-col-1, .section.two-column.square-cols.imgright .row .column.maf-col-1 {
  justify-content: center;
}
section.two-column.square-cols.imgright .row .column.maf-col-2, .section.two-column.square-cols.imgright .row .column.maf-col-2 {
  aspect-ratio: 1/1;
}
section.two-column.square-cols.imgright .row .column.maf-col-2 .maf-content, .section.two-column.square-cols.imgright .row .column.maf-col-2 .maf-content {
  display: none;
}
section.two-column.square-cols.imgboth .row .column.maf-col-1, .section.two-column.square-cols.imgboth .row .column.maf-col-1 {
  aspect-ratio: 1/1;
}
section.two-column.square-cols.imgboth .row .column.maf-col-1 .maf-content, .section.two-column.square-cols.imgboth .row .column.maf-col-1 .maf-content {
  display: none;
}
section.two-column.square-cols.imgboth .row .column.maf-col-2, .section.two-column.square-cols.imgboth .row .column.maf-col-2 {
  aspect-ratio: 1/1;
}
section.two-column.square-cols.imgboth .row .column.maf-col-2 .maf-content, .section.two-column.square-cols.imgboth .row .column.maf-col-2 .maf-content {
  display: none;
}
section.two-column.vidpop .row, .section.two-column.vidpop .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  section.two-column.vidpop .row, .section.two-column.vidpop .row {
    flex-direction: row;
  }
}
section.two-column.vidpop .row .column, .section.two-column.vidpop .row .column {
  justify-content: center;
}
section.two-column.vidpop .row .column > .maf-background, .section.two-column.vidpop .row .column > .maf-background {
  background-position: center;
}
section.two-column.vidpop .row .column.maf-col-1, .section.two-column.vidpop .row .column.maf-col-1 {
  padding: 0 0 45% 0;
}
section.two-column.vidpop .row .column.maf-col-1 > a, .section.two-column.vidpop .row .column.maf-col-1 > a {
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
section.two-column.vidpop .row .column.maf-col-1 > a button, .section.two-column.vidpop .row .column.maf-col-1 > a button {
  background-color: rgba(255, 255, 255, 0.7);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 100px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100px;
}
section.two-column.vidpop .row .column.maf-col-1 > a button::before, .section.two-column.vidpop .row .column.maf-col-1 > a button::before {
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 40px solid rgb(74, 40, 113);
  content: "";
  display: inline-block;
  height: 0;
  left: 50%;
  position: absolute;
  transform: translate(-40%, -50%);
  transition: right 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  top: 50%;
  width: 0;
}
section.two-column.vidpop .row .column.maf-col-1 > a:hover, .section.two-column.vidpop .row .column.maf-col-1 > a:hover {
  background-color: rgba(70, 40, 113, 0.4);
}
section.two-column.vidpop .row .column.maf-col-1 > a:hover button, .section.two-column.vidpop .row .column.maf-col-1 > a:hover button {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 120px 10px rgba(0, 0, 0, 0.9);
}
section.third-twothirds h1, section.third-twothirds .h1-style, section.third-twothirds h2, section.third-twothirds .h2-style, section.third-twothirds h3, section.third-twothirds .h3-style, section.third-twothirds h4, section.third-twothirds .h4-style, section.third-twothirds h5, section.third-twothirds .h5-style, section.third-twothirds h6.h6-style, .section.third-twothirds h1, .section.third-twothirds .h1-style, .section.third-twothirds h2, .section.third-twothirds .h2-style, .section.third-twothirds h3, .section.third-twothirds .h3-style, .section.third-twothirds h4, .section.third-twothirds .h4-style, .section.third-twothirds h5, .section.third-twothirds .h5-style, .section.third-twothirds h6.h6-style {
  color: rgb(74, 40, 113);
}
section.third-twothirds .row, .section.third-twothirds .row {
  margin-bottom: 70px;
}
section.third-twothirds .row .column .maf-content, .section.third-twothirds .row .column .maf-content {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  section.third-twothirds .row .column .maf-content, .section.third-twothirds .row .column .maf-content {
    text-align: left;
  }
}
section.third-twothirds .row .column.maf-col-1, .section.third-twothirds .row .column.maf-col-1 {
  padding-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  section.third-twothirds .row .column.maf-col-1, .section.third-twothirds .row .column.maf-col-1 {
    padding-right: 0;
    padding-bottom: 75px;
    text-align: left;
  }
  section.third-twothirds .row .column.maf-col-1 .maf-content, .section.third-twothirds .row .column.maf-col-1 .maf-content {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  section.third-twothirds .row .column.maf-col-2, .section.third-twothirds .row .column.maf-col-2 {
    align-items: flex-end;
  }
}
section.twothirds-third h1, section.twothirds-third .h1-style, section.twothirds-third h2, section.twothirds-third .h2-style, section.twothirds-third h3, section.twothirds-third .h3-style, section.twothirds-third h4, section.twothirds-third .h4-style, section.twothirds-third h5, section.twothirds-third .h5-style, section.twothirds-third h6.h6-style, .section.twothirds-third h1, .section.twothirds-third .h1-style, .section.twothirds-third h2, .section.twothirds-third .h2-style, .section.twothirds-third h3, .section.twothirds-third .h3-style, .section.twothirds-third h4, .section.twothirds-third .h4-style, .section.twothirds-third h5, .section.twothirds-third .h5-style, .section.twothirds-third h6.h6-style {
  color: rgb(74, 40, 113);
}
section.twothirds-third .row, .section.twothirds-third .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  section.twothirds-third .row, .section.twothirds-third .row {
    flex-direction: row;
  }
}
section.twothirds-third .row .column, .section.twothirds-third .row .column {
  align-items: flex-start;
  padding-bottom: 40px;
}
@media only screen and (min-width: 1024px) {
  section.twothirds-third .row .column, .section.twothirds-third .row .column {
    align-items: center;
    padding-bottom: 75px;
  }
}
section.twothirds-third .row .column .maf-content, .section.twothirds-third .row .column .maf-content {
  max-width: 700px;
  text-align: left;
}
@media only screen and (min-width: 1024px) {
  section.twothirds-third .row .column.maf-col-2, .section.twothirds-third .row .column.maf-col-2 {
    padding-left: 80px;
  }
  section.twothirds-third .row .column.maf-col-2 .maf-content, .section.twothirds-third .row .column.maf-col-2 .maf-content {
    padding-left: 0;
  }
}
section.three-column h1, section.three-column .h1-style, section.three-column h2, section.three-column .h2-style, section.three-column h3, section.three-column .h3-style, section.three-column h4, section.three-column .h4-style, section.three-column h5, section.three-column .h5-style, section.three-column h6.h6-style, .section.three-column h1, .section.three-column .h1-style, .section.three-column h2, .section.three-column .h2-style, .section.three-column h3, .section.three-column .h3-style, .section.three-column h4, .section.three-column .h4-style, .section.three-column h5, .section.three-column .h5-style, .section.three-column h6.h6-style {
  color: rgb(74, 40, 113);
}
section.three-column.small-cols .row, .section.three-column.small-cols .row {
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1280px;
}
@media only screen and (min-width: 960px) {
  section.three-column.small-cols .row, .section.three-column.small-cols .row {
    align-items: stretch;
    flex-direction: row;
  }
}
section.three-column.small-cols .row .column, .section.three-column.small-cols .row .column {
  flex: 0 0 auto;
  max-width: 427px;
  padding: 0 10px 40px 10px;
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.three-column.small-cols .row .column, .section.three-column.small-cols .row .column {
    width: 33.333%;
  }
}
section.three-column.small-cols .row .column .maf-content *:first-child, .section.three-column.small-cols .row .column .maf-content *:first-child {
  margin: 0;
}
section.three-column.three-buttons p, .section.three-column.three-buttons p {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
}
section.three-column.three-buttons p a, .section.three-column.three-buttons p a {
  color: rgb(74, 40, 113);
}
section.three-column.three-buttons .row .maf-background, .section.three-column.three-buttons .row .maf-background {
  margin: 0;
  padding: 0;
}
section.three-column.three-buttons .row .column, .section.three-column.three-buttons .row .column {
  cursor: pointer;
  min-height: 0;
  padding: 10px 0;
  text-align: center;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
section.three-column.three-buttons .row .column.maf-col-1, .section.three-column.three-buttons .row .column.maf-col-1 {
  margin: 0;
  max-height: 100px;
  background-color: rgb(255, 247, 253);
}
section.three-column.three-buttons .row .column.maf-col-1:hover, .section.three-column.three-buttons .row .column.maf-col-1:hover {
  background-color: rgb(254, 217, 48);
}
section.three-column.three-buttons .row .column.maf-col-2, .section.three-column.three-buttons .row .column.maf-col-2 {
  margin: 0;
  max-height: 100px;
  background-color: rgb(246, 240, 255);
}
section.three-column.three-buttons .row .column.maf-col-2:hover, .section.three-column.three-buttons .row .column.maf-col-2:hover {
  background-color: rgb(254, 217, 48);
}
section.three-column.three-buttons .row .column.maf-col-3, .section.three-column.three-buttons .row .column.maf-col-3 {
  margin: 0;
  max-height: 100px;
  background-color: rgb(236, 253, 255);
}
section.three-column.three-buttons .row .column.maf-col-3:hover, .section.three-column.three-buttons .row .column.maf-col-3:hover {
  background-color: rgb(254, 217, 48);
}
section.three-column.quick-links, .section.three-column.quick-links {
  background-color: rgb(255, 247, 253);
  max-width: 1600px;
}
section.three-column.quick-links p, .section.three-column.quick-links p {
  color: rgb(74, 40, 113);
}
section.three-column.quick-links .row, .section.three-column.quick-links .row {
  max-width: 1280px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 1024px) {
  section.three-column.quick-links .row, .section.three-column.quick-links .row {
    padding: 0 0 60px 0;
  }
}
section.three-column.quick-links .row .column, .section.three-column.quick-links .row .column {
  text-align: left;
  overflow: visible;
  padding: 40px 10px;
}
section.three-column.quick-links .row .column .maf-content, .section.three-column.quick-links .row .column .maf-content {
  background-color: rgb(253, 231, 247);
  cursor: pointer;
  height: 100%;
  padding: 40px 30px;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
section.three-column.quick-links .row .column .maf-content a.button, .section.three-column.quick-links .row .column .maf-content a.button {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  color: rgb(74, 40, 113) !important;
  font-size: 1.8rem;
  min-width: 100px;
  padding: 6px 20px;
}
section.three-column.quick-links .row .column .maf-content a.button::before, .section.three-column.quick-links .row .column .maf-content a.button::before {
  background-color: rgb(74, 40, 113);
}
section.three-column.quick-links .row .column .maf-content a.button:hover, .section.three-column.quick-links .row .column .maf-content a.button:hover {
  color: white !important;
}
section.three-column.quick-links .row .column .maf-content:hover, .section.three-column.quick-links .row .column .maf-content:hover {
  box-shadow: 6px 6px 3px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}
section.three-column.quick-links .row .column .maf-content:hover a.button, .section.three-column.quick-links .row .column .maf-content:hover a.button {
  color: white !important;
}
section.three-column.quick-links .row .column .maf-content:hover a.button::before, .section.three-column.quick-links .row .column .maf-content:hover a.button::before {
  left: 0;
}
section.three-column.quick-links .row .column.maf-col-2 .maf-content, .section.three-column.quick-links .row .column.maf-col-2 .maf-content {
  background-color: rgb(254, 217, 48);
}
section.three-column.quick-links .row .column.maf-col-3 .maf-content, .section.three-column.quick-links .row .column.maf-col-3 .maf-content {
  background-color: rgb(246, 240, 255);
}
section.four-column, .section.four-column {
  max-width: 1600px;
}
section.four-column h1, section.four-column .h1-style, section.four-column h2, section.four-column .h2-style, section.four-column h3, section.four-column .h3-style, section.four-column h4, section.four-column .h4-style, section.four-column h5, section.four-column .h5-style, section.four-column h6.h6-style, .section.four-column h1, .section.four-column .h1-style, .section.four-column h2, .section.four-column .h2-style, .section.four-column h3, .section.four-column .h3-style, .section.four-column h4, .section.four-column .h4-style, .section.four-column h5, .section.four-column .h5-style, .section.four-column h6.h6-style {
  color: rgb(74, 40, 113);
}
section.four-column .header, .section.four-column .header {
  justify-content: center;
}
section.four-column .row, .section.four-column .row {
  padding: 0 0;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media only screen and (min-width: 1023px) {
  section.four-column .row, .section.four-column .row {
    padding: 0 50px;
  }
}
section.four-column .row .column, .section.four-column .row .column {
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  padding: 0;
  text-align: left;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.four-column .row .column, .section.four-column .row .column {
    width: 50%;
  }
}
@media only screen and (min-width: 1280px) {
  section.four-column .row .column, .section.four-column .row .column {
    width: 25%;
  }
}
section.four-column .row .column .maf-content, .section.four-column .row .column .maf-content {
  background-color: white;
  height: 100%;
  margin-bottom: 30px;
  max-width: 550px;
  padding: 0 20px 30px 20px;
}
section.four-column .row .footer, .section.four-column .row .footer {
  padding: 0 50px 0 50px;
}
section.four-column.bg-2, .section.four-column.bg-2 {
  color: rgb(229, 229, 229);
}
section.four-column.bg-2 .maf-content *, .section.four-column.bg-2 .maf-content * {
  color: rgb(229, 229, 229);
}
section.four-column.bg-2 .maf-content hr, .section.four-column.bg-2 .maf-content hr {
  border-color: rgb(229, 229, 229);
}
section.four-column.bg-2 .maf-content a.button, .section.four-column.bg-2 .maf-content a.button {
  background-color: transparent;
  border-color: rgb(229, 229, 229);
  color: rgb(229, 229, 229);
}
section.four-column.bg-2 .maf-content a.button:hover, .section.four-column.bg-2 .maf-content a.button:hover {
  background-color: rgb(229, 229, 229);
  color: white;
}
section.concertina-section h1, section.concertina-section .h1-style, section.concertina-section h2, section.concertina-section .h2-style, section.concertina-section h3, section.concertina-section .h3-style, section.concertina-section h4, section.concertina-section .h4-style, section.concertina-section h5, section.concertina-section .h5-style, section.concertina-section h6.h6-style, .section.concertina-section h1, .section.concertina-section .h1-style, .section.concertina-section h2, .section.concertina-section .h2-style, .section.concertina-section h3, .section.concertina-section .h3-style, .section.concertina-section h4, .section.concertina-section .h4-style, .section.concertina-section h5, .section.concertina-section .h5-style, .section.concertina-section h6.h6-style {
  color: rgb(74, 40, 113);
}
section.concertina-section .row, .section.concertina-section .row {
  margin-bottom: 0;
  padding: 50px 20px;
  background-color: rgb(246, 240, 255);
}
section.concertina-section .row .column, .section.concertina-section .row .column {
  background-color: white;
  max-width: 1280px;
  text-align: left;
}
section.concertina-section .row .column .maf-content, .section.concertina-section .row .column .maf-content {
  max-width: none;
  padding: 0;
}
section.concertina-section .row .column .maf-cs-trigger, .section.concertina-section .row .column .maf-cs-trigger {
  border-bottom: 1px solid transparent;
  cursor: pointer;
  width: 100%;
}
section.concertina-section .row .column .maf-cs-trigger .maf-content, .section.concertina-section .row .column .maf-cs-trigger .maf-content {
  padding: 5px 5px 5px 43px;
  position: relative;
}
section.concertina-section .row .column .maf-cs-trigger .maf-content::before, .section.concertina-section .row .column .maf-cs-trigger .maf-content::before {
  border-top: 3px solid rgb(74, 40, 113);
  border-right: 3px solid rgb(74, 40, 113);
  content: "";
  display: inline-block;
  height: 15px;
  left: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 15px;
}
section.concertina-section .row .column .maf-cs-trigger .maf-content::after, .section.concertina-section .row .column .maf-cs-trigger .maf-content::after {
  background-color: rgb(236, 253, 255);
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 0;
  z-index: -1;
}
section.concertina-section .row .column .maf-cs-trigger .maf-content h1, section.concertina-section .row .column .maf-cs-trigger .maf-content .h1-style, section.concertina-section .row .column .maf-cs-trigger .maf-content h2, section.concertina-section .row .column .maf-cs-trigger .maf-content .h2-style, section.concertina-section .row .column .maf-cs-trigger .maf-content h3, section.concertina-section .row .column .maf-cs-trigger .maf-content .h3-style, section.concertina-section .row .column .maf-cs-trigger .maf-content h4, section.concertina-section .row .column .maf-cs-trigger .maf-content .h4-style, section.concertina-section .row .column .maf-cs-trigger .maf-content h5, section.concertina-section .row .column .maf-cs-trigger .maf-content .h5-style, section.concertina-section .row .column .maf-cs-trigger .maf-content h6.h6-style, section.concertina-section .row .column .maf-cs-trigger .maf-content p, .section.concertina-section .row .column .maf-cs-trigger .maf-content h1, .section.concertina-section .row .column .maf-cs-trigger .maf-content .h1-style, .section.concertina-section .row .column .maf-cs-trigger .maf-content h2, .section.concertina-section .row .column .maf-cs-trigger .maf-content .h2-style, .section.concertina-section .row .column .maf-cs-trigger .maf-content h3, .section.concertina-section .row .column .maf-cs-trigger .maf-content .h3-style, .section.concertina-section .row .column .maf-cs-trigger .maf-content h4, .section.concertina-section .row .column .maf-cs-trigger .maf-content .h4-style, .section.concertina-section .row .column .maf-cs-trigger .maf-content h5, .section.concertina-section .row .column .maf-cs-trigger .maf-content .h5-style, .section.concertina-section .row .column .maf-cs-trigger .maf-content h6.h6-style, .section.concertina-section .row .column .maf-cs-trigger .maf-content p {
  color: rgb(74, 40, 113);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
}
section.concertina-section .row .column .maf-cs-trigger .maf-content:hover::after, .section.concertina-section .row .column .maf-cs-trigger .maf-content:hover::after {
  width: 100%;
}
section.concertina-section .row .column .maf-cs-trigger.active .maf-content::before, .section.concertina-section .row .column .maf-cs-trigger.active .maf-content::before {
  transform: translateY(-80%) rotate(135deg);
}
section.concertina-section .row .column .maf-cs-target, .section.concertina-section .row .column .maf-cs-target {
  display: none;
  width: 100%;
}
section.concertina-section .row .column .maf-cs-target .maf-content, .section.concertina-section .row .column .maf-cs-target .maf-content {
  align-items: flex-start;
}
section.concertina-section .row .column .maf-cs-target .maf-content h1, section.concertina-section .row .column .maf-cs-target .maf-content .h1-style, section.concertina-section .row .column .maf-cs-target .maf-content h2, section.concertina-section .row .column .maf-cs-target .maf-content .h2-style, section.concertina-section .row .column .maf-cs-target .maf-content h3, section.concertina-section .row .column .maf-cs-target .maf-content .h3-style, section.concertina-section .row .column .maf-cs-target .maf-content h4, section.concertina-section .row .column .maf-cs-target .maf-content .h4-style, section.concertina-section .row .column .maf-cs-target .maf-content h5, section.concertina-section .row .column .maf-cs-target .maf-content .h5-style, section.concertina-section .row .column .maf-cs-target .maf-content h6.h6-style, section.concertina-section .row .column .maf-cs-target .maf-content p, .section.concertina-section .row .column .maf-cs-target .maf-content h1, .section.concertina-section .row .column .maf-cs-target .maf-content .h1-style, .section.concertina-section .row .column .maf-cs-target .maf-content h2, .section.concertina-section .row .column .maf-cs-target .maf-content .h2-style, .section.concertina-section .row .column .maf-cs-target .maf-content h3, .section.concertina-section .row .column .maf-cs-target .maf-content .h3-style, .section.concertina-section .row .column .maf-cs-target .maf-content h4, .section.concertina-section .row .column .maf-cs-target .maf-content .h4-style, .section.concertina-section .row .column .maf-cs-target .maf-content h5, .section.concertina-section .row .column .maf-cs-target .maf-content .h5-style, .section.concertina-section .row .column .maf-cs-target .maf-content h6.h6-style, .section.concertina-section .row .column .maf-cs-target .maf-content p {
  letter-spacing: -0.5px;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  section.concertina-section .row .column .maf-cs-target .maf-content h1, section.concertina-section .row .column .maf-cs-target .maf-content .h1-style, section.concertina-section .row .column .maf-cs-target .maf-content h2, section.concertina-section .row .column .maf-cs-target .maf-content .h2-style, section.concertina-section .row .column .maf-cs-target .maf-content h3, section.concertina-section .row .column .maf-cs-target .maf-content .h3-style, section.concertina-section .row .column .maf-cs-target .maf-content h4, section.concertina-section .row .column .maf-cs-target .maf-content .h4-style, section.concertina-section .row .column .maf-cs-target .maf-content h5, section.concertina-section .row .column .maf-cs-target .maf-content .h5-style, section.concertina-section .row .column .maf-cs-target .maf-content h6.h6-style, section.concertina-section .row .column .maf-cs-target .maf-content p, .section.concertina-section .row .column .maf-cs-target .maf-content h1, .section.concertina-section .row .column .maf-cs-target .maf-content .h1-style, .section.concertina-section .row .column .maf-cs-target .maf-content h2, .section.concertina-section .row .column .maf-cs-target .maf-content .h2-style, .section.concertina-section .row .column .maf-cs-target .maf-content h3, .section.concertina-section .row .column .maf-cs-target .maf-content .h3-style, .section.concertina-section .row .column .maf-cs-target .maf-content h4, .section.concertina-section .row .column .maf-cs-target .maf-content .h4-style, .section.concertina-section .row .column .maf-cs-target .maf-content h5, .section.concertina-section .row .column .maf-cs-target .maf-content .h5-style, .section.concertina-section .row .column .maf-cs-target .maf-content h6.h6-style, .section.concertina-section .row .column .maf-cs-target .maf-content p {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
  }
}
section.concertina-section .row .column .maf-cs-target .maf-content h1:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content .h1-style:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content h2:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content .h2-style:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content h3:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content .h3-style:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content h4:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content .h4-style:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content h5:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content .h5-style:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content h6.h6-style:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content p:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content h1:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content .h1-style:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content h2:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content .h2-style:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content h3:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content .h3-style:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content h4:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content .h4-style:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content h5:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content .h5-style:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content h6.h6-style:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content p:nth-child(odd) {
  color: rgb(74, 40, 113);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  max-width: 1000px;
  padding: 5px 5px 0 5px;
}
@media only screen and (max-width: 768px) {
  section.concertina-section .row .column .maf-cs-target .maf-content h1:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content .h1-style:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content h2:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content .h2-style:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content h3:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content .h3-style:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content h4:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content .h4-style:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content h5:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content .h5-style:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content h6.h6-style:nth-child(odd), section.concertina-section .row .column .maf-cs-target .maf-content p:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content h1:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content .h1-style:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content h2:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content .h2-style:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content h3:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content .h3-style:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content h4:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content .h4-style:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content h5:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content .h5-style:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content h6.h6-style:nth-child(odd), .section.concertina-section .row .column .maf-cs-target .maf-content p:nth-child(odd) {
    font-size: 2rem;
  }
}
section.concertina-section .row .column .maf-cs-target .maf-content h1:nth-child(even), section.concertina-section .row .column .maf-cs-target .maf-content .h1-style:nth-child(even), section.concertina-section .row .column .maf-cs-target .maf-content h2:nth-child(even), section.concertina-section .row .column .maf-cs-target .maf-content .h2-style:nth-child(even), section.concertina-section .row .column .maf-cs-target .maf-content h3:nth-child(even), section.concertina-section .row .column .maf-cs-target .maf-content .h3-style:nth-child(even), section.concertina-section .row .column .maf-cs-target .maf-content h4:nth-child(even), section.concertina-section .row .column .maf-cs-target .maf-content .h4-style:nth-child(even), section.concertina-section .row .column .maf-cs-target .maf-content h5:nth-child(even), section.concertina-section .row .column .maf-cs-target .maf-content .h5-style:nth-child(even), section.concertina-section .row .column .maf-cs-target .maf-content h6.h6-style:nth-child(even), section.concertina-section .row .column .maf-cs-target .maf-content p:nth-child(even), .section.concertina-section .row .column .maf-cs-target .maf-content h1:nth-child(even), .section.concertina-section .row .column .maf-cs-target .maf-content .h1-style:nth-child(even), .section.concertina-section .row .column .maf-cs-target .maf-content h2:nth-child(even), .section.concertina-section .row .column .maf-cs-target .maf-content .h2-style:nth-child(even), .section.concertina-section .row .column .maf-cs-target .maf-content h3:nth-child(even), .section.concertina-section .row .column .maf-cs-target .maf-content .h3-style:nth-child(even), .section.concertina-section .row .column .maf-cs-target .maf-content h4:nth-child(even), .section.concertina-section .row .column .maf-cs-target .maf-content .h4-style:nth-child(even), .section.concertina-section .row .column .maf-cs-target .maf-content h5:nth-child(even), .section.concertina-section .row .column .maf-cs-target .maf-content .h5-style:nth-child(even), .section.concertina-section .row .column .maf-cs-target .maf-content h6.h6-style:nth-child(even), .section.concertina-section .row .column .maf-cs-target .maf-content p:nth-child(even) {
  border-bottom: 1px solid rgb(246, 240, 255);
  margin-bottom: 20px;
  max-width: 900px;
  padding: 0 5px 15px 5px;
}
section.concertina-section.edit .row .column .maf-cs-target, .section.concertina-section.edit .row .column .maf-cs-target {
  display: block;
}
section.blog-section div.cardbox, .section.blog-section div.cardbox {
  justify-content: flex-start;
  margin-right: -10px;
  margin-left: -10px;
  width: calc(100% + 20px);
}
section.blog-section div.cardbox article.card, .section.blog-section div.cardbox article.card {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.blog-section div.cardbox article.card, .section.blog-section div.cardbox article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  section.blog-section div.cardbox article.card, .section.blog-section div.cardbox article.card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1024px) {
  section.blog-section div.cardbox article.card, .section.blog-section div.cardbox article.card {
    width: 25%;
  }
}
section.blog-section div.cardbox article.card .portal-item, .section.blog-section div.cardbox article.card .portal-item {
  color: rgb(74, 40, 113);
  margin-bottom: 30px;
}
section.blog-section div.cardbox article.card .portal-item .portal-content .tn, .section.blog-section div.cardbox article.card .portal-item .portal-content .tn {
  z-index: 1;
}
section.blog-section div.cardbox article.card .portal-item .portal-content .tn .tn-img, .section.blog-section div.cardbox article.card .portal-item .portal-content .tn .tn-img {
  z-index: 0;
}
section.blog-section div.cardbox article.card .portal-item .portal-content .info, .section.blog-section div.cardbox article.card .portal-item .portal-content .info {
  background-color: white;
  overflow: visible;
  padding: 0;
  z-index: 2;
}
section.blog-section div.cardbox article.card .portal-item .portal-content .title, .section.blog-section div.cardbox article.card .portal-item .portal-content .title {
  font-size: 2.2rem;
  line-height: 1.3;
  margin: 0;
  padding: 15px 10px 5px 10px;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  z-index: 1;
}
section.blog-section div.cardbox article.card .portal-item .portal-content .date, .section.blog-section div.cardbox article.card .portal-item .portal-content .date {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0 10px 10px 10px;
  width: 100%;
  z-index: 2;
}
section.blog-section div.cardbox article.card .portal-item .portal-content .desc, .section.blog-section div.cardbox article.card .portal-item .portal-content .desc {
  background-color: transparent;
  max-width: none;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  z-index: 2;
}
section.blog-section div.cardbox article.card .portal-item .portal-content .button, .section.blog-section div.cardbox article.card .portal-item .portal-content .button {
  margin-bottom: 20px;
}
section.blog-section div.cardbox article.card .portal-item:hover .portal-content, .section.blog-section div.cardbox article.card .portal-item:hover .portal-content {
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.3);
}
section.blog-section div.cardbox article.card .portal-item:hover .portal-content .info, .section.blog-section div.cardbox article.card .portal-item:hover .portal-content .info {
  background-color: rgb(246, 240, 255);
}
section.blog-section div.cardbox article.card .portal-item:hover .portal-content .info .title, .section.blog-section div.cardbox article.card .portal-item:hover .portal-content .info .title {
  background-color: rgb(246, 240, 255);
}
section.blog-section div.cardbox article.card .portal-item:hover .portal-content .info .button, .section.blog-section div.cardbox article.card .portal-item:hover .portal-content .info .button {
  color: white !important;
}
section.blog-section div.cardbox article.card .portal-item:hover .portal-content .info .button::before, .section.blog-section div.cardbox article.card .portal-item:hover .portal-content .info .button::before {
  left: 0;
}
section.blog-section.is-hero, .section.blog-section.is-hero {
  min-height: 300px;
}
section.blog-section.is-hero .row .column, .section.blog-section.is-hero .row .column {
  background-color: rgb(246, 240, 255);
}
section.blog-section.is-hero .row .column .maf-content > *, .section.blog-section.is-hero .row .column .maf-content > * {
  color: rgb(74, 40, 113);
}
section.blog-section.is-hero .row .column .maf-content .pub-date, .section.blog-section.is-hero .row .column .maf-content .pub-date {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 600;
  margin: 5px;
  opacity: 0.5;
}
section.blog-section.is-hero.has-bg, .section.blog-section.is-hero.has-bg {
  min-height: 500px;
}
section.blog-section.is-hero.has-bg .row .column, .section.blog-section.is-hero.has-bg .row .column {
  background-color: transparent;
}
section.blog-section.is-hero.has-bg .row .column .maf-content > *, .section.blog-section.is-hero.has-bg .row .column .maf-content > * {
  color: white;
  text-shadow: 0 0 16px black, 0 0 3px black;
}
section.blog-section.blog-top-level .row .column .maf-content, .section.blog-section.blog-top-level .row .column .maf-content {
  padding: 0;
  text-align: left;
}
section.blog-section.blog-top-level .row .column .maf-content.search, .section.blog-section.blog-top-level .row .column .maf-content.search {
  background-color: rgb(74, 40, 113);
  margin-bottom: 100px;
  padding: 50px;
}
section.blog-section.blog-top-level .row .column.maf-col-2 .twitter-feed .tweet_list li, .section.blog-section.blog-top-level .row .column.maf-col-2 .twitter-feed .tweet_list li {
  background-color: rgb(236, 253, 255);
  margin-bottom: 20px;
  padding: 20px;
}
section.blog-section.blog-top-level.cat-feed div.blog-feed article.blog-summary, .section.blog-section.blog-top-level.cat-feed div.blog-feed article.blog-summary {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-top-level.cat-feed div.blog-feed article.blog-summary, .section.blog-section.blog-top-level.cat-feed div.blog-feed article.blog-summary {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  section.blog-section.blog-top-level.cat-feed div.blog-feed article.blog-summary, .section.blog-section.blog-top-level.cat-feed div.blog-feed article.blog-summary {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1280px) {
  section.blog-section.blog-top-level.cat-feed div.blog-feed article.blog-summary, .section.blog-section.blog-top-level.cat-feed div.blog-feed article.blog-summary {
    width: 25%;
  }
}
section.blog-section.blog-highlight h1, section.blog-section.blog-highlight .h1-style, section.blog-section.blog-highlight h2, section.blog-section.blog-highlight .h2-style, section.blog-section.blog-highlight h3, section.blog-section.blog-highlight .h3-style, section.blog-section.blog-highlight h4, section.blog-section.blog-highlight .h4-style, section.blog-section.blog-highlight h5, section.blog-section.blog-highlight .h5-style, section.blog-section.blog-highlight h6, section.blog-section.blog-highlight .h6-style, .section.blog-section.blog-highlight h1, .section.blog-section.blog-highlight .h1-style, .section.blog-section.blog-highlight h2, .section.blog-section.blog-highlight .h2-style, .section.blog-section.blog-highlight h3, .section.blog-section.blog-highlight .h3-style, .section.blog-section.blog-highlight h4, .section.blog-section.blog-highlight .h4-style, .section.blog-section.blog-highlight h5, .section.blog-section.blog-highlight .h5-style, .section.blog-section.blog-highlight h6, .section.blog-section.blog-highlight .h6-style {
  color: rgb(74, 40, 113);
}
section.blog-section.blog-highlight .row, .section.blog-section.blog-highlight .row {
  padding-bottom: 75px;
}
section.blog-section.blog-highlight .row .column, .section.blog-section.blog-highlight .row .column {
  padding-bottom: 0;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article, .section.blog-section.blog-highlight .row .column .maf-content.lead-article {
  margin-bottom: 30px;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article p.brand, .section.blog-section.blog-highlight .row .column .maf-content.lead-article p.brand {
  margin-bottom: 5px;
  max-width: 500px;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article p.strap, .section.blog-section.blog-highlight .row .column .maf-content.lead-article p.strap {
  color: rgb(74, 40, 113);
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article p.read, .section.blog-section.blog-highlight .row .column .maf-content.lead-article p.read {
  border: 0;
  padding: 0;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article p.read a, .section.blog-section.blog-highlight .row .column .maf-content.lead-article p.read a {
  color: rgb(74, 40, 113);
  text-transform: uppercase;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article article, .section.blog-section.blog-highlight .row .column .maf-content.lead-article article {
  background-color: rgb(99, 99, 99);
  line-height: 0;
  margin-bottom: 30px;
  width: 100%;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article article > a, .section.blog-section.blog-highlight .row .column .maf-content.lead-article article > a {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article article > a::after, .section.blog-section.blog-highlight .row .column .maf-content.lead-article article > a::after {
  content: "";
  display: table;
  padding-bottom: 55%;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article article > a > .maf-bg-overlay, .section.blog-section.blog-highlight .row .column .maf-content.lead-article article > a > .maf-bg-overlay {
  background-image: url("/images/Layout/texture-bmp/vignette.png");
  background-size: 100% 100%;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article article > a .article-content, .section.blog-section.blog-highlight .row .column .maf-content.lead-article article > a .article-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  padding: 50px;
  position: absolute;
  width: 100%;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article article > a .article-content p.h3-style, .section.blog-section.blog-highlight .row .column .maf-content.lead-article article > a .article-content p.h3-style {
  border: 0;
  color: white;
  padding: 0;
  text-shadow: 2px 2px 5px black;
  text-transform: uppercase;
}
section.blog-section.blog-highlight .row .column .maf-content.lead-article article > a .article-content h1, .section.blog-section.blog-highlight .row .column .maf-content.lead-article article > a .article-content h1 {
  color: white;
  text-shadow: 3px 3px 8px black;
}
section.blog-section.blog-highlight .row .column .maf-content:first-child, .section.blog-section.blog-highlight .row .column .maf-content:first-child {
  padding-top: 10px;
}
@media only screen and (min-width: 1024px) {
  section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content, .section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content, .section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content {
    padding-left: 0;
  }
}
section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content.img-gal .gal-item, .section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content.img-gal .gal-item {
  padding: 0 10px 20px 10px;
  width: 100%;
}
section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content.img-gal .gal-item > a, .section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content.img-gal .gal-item > a {
  padding-bottom: 50%;
}
@media only screen and (min-width: 768px) {
  section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content.img-gal .gal-item, .section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content.img-gal .gal-item {
    width: 50%;
  }
  section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content.img-gal .gal-item > a, .section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content.img-gal .gal-item > a {
    padding-bottom: 80%;
  }
}
section.blog-section.blog-highlight .footer .maf-content, .section.blog-section.blog-highlight .footer .maf-content {
  margin-top: 30px;
}
section.blog-section.blog-highlight div.blog-feed article.blog-summary, .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, .section.blog-section.blog-highlight div.blog-feed article.blog-summary {
    width: 50%;
  }
}
section.blog-section.blog-highlight div.blog-feed aside.ad-block, .section.blog-section.blog-highlight div.blog-feed aside.ad-block {
  margin-bottom: 0;
}
section.blog-section.blog-detail .sharer, .section.blog-section.blog-detail .sharer {
  align-items: center;
  color: rgb(74, 40, 113);
  display: flex;
  margin-bottom: 10px;
}
section.blog-section.blog-detail .sharer span, section.blog-section.blog-detail .sharer a, .section.blog-section.blog-detail .sharer span, .section.blog-section.blog-detail .sharer a {
  line-height: 1;
  display: inline-block;
}
section.blog-section.blog-detail .sharer span, .section.blog-section.blog-detail .sharer span {
  margin-right: 5px;
}
section.blog-section.blog-detail .sharer a, .section.blog-section.blog-detail .sharer a {
  margin: 0 5px;
}
section.blog-section.blog-detail .sharer i, .section.blog-section.blog-detail .sharer i {
  font-size: 2.2rem;
}
section.blog-section.blog-detail .blog-title, .section.blog-section.blog-detail .blog-title {
  margin-bottom: 0;
}
section.blog-section.blog-detail .pub-date, .section.blog-section.blog-detail .pub-date {
  color: rgb(74, 40, 113);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  color: black;
}
@media only screen and (max-width: 768px) {
  section.blog-section.blog-detail .pub-date, .section.blog-section.blog-detail .pub-date {
    font-size: 2rem;
  }
}
section.blog-section.blog-detail #blog-bar, .section.blog-section.blog-detail #blog-bar {
  border-top: 1px solid rgb(99, 99, 99);
  border-bottom: 1px solid rgb(99, 99, 99);
  display: flex;
  font-size: 1.6rem;
  margin-bottom: 60px;
  padding: 20px 0;
  width: 100%;
}
section.blog-section.blog-detail #blog-bar > div, .section.blog-section.blog-detail #blog-bar > div {
  display: inline-block;
  flex: 1 1 auto;
}
section.blog-section.blog-detail #blog-bar > div p, .section.blog-section.blog-detail #blog-bar > div p {
  font-weight: 300;
  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, .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: 2%;
}
section.blog-section.blog-detail #blog-bar > div p span.date, section.blog-section.blog-detail #blog-bar > div p strong.date, section.blog-section.blog-detail #blog-bar > div p a.date, .section.blog-section.blog-detail #blog-bar > div p span.date, .section.blog-section.blog-detail #blog-bar > div p strong.date, .section.blog-section.blog-detail #blog-bar > div p a.date {
  text-transform: uppercase;
}
section.blog-section.blog-detail #blog-bar > div:first-child, .section.blog-section.blog-detail #blog-bar > div:first-child {
  text-transform: uppercase;
}
section.blog-section.blog-detail #blog-bar > div:last-child, .section.blog-section.blog-detail #blog-bar > div:last-child {
  text-align: right;
}
section.blog-section.blog-detail #blog-bar > div:last-child p > *:last-child, .section.blog-section.blog-detail #blog-bar > div:last-child p > *:last-child {
  margin-right: 0;
}
section.blog-section.blog-detail .blog-body, .section.blog-section.blog-detail .blog-body {
  width: 100%;
}
section.blog-section.blog-detail .blog-body > *:first-child, .section.blog-section.blog-detail .blog-body > *:first-child {
  color: rgb(74, 40, 113);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  section.blog-section.blog-detail .blog-body > *:first-child, .section.blog-section.blog-detail .blog-body > *:first-child {
    font-size: 2rem;
  }
}
section.blog-section.blog-detail .blog-body figure, .section.blog-section.blog-detail .blog-body figure {
  display: inline-block;
  margin: 15px auto;
  width: 100%;
}
section.blog-section.blog-detail .blog-body figure img, .section.blog-section.blog-detail .blog-body figure img {
  width: 100%;
}
section.blog-section.blog-detail .blog-body figure figcaption, .section.blog-section.blog-detail .blog-body figure figcaption {
  background-color: rgb(246, 240, 255);
  color: rgb(74, 40, 113);
  display: inline-block;
  font-size: 0.9em;
  font-style: italic;
  padding: 10px;
  width: 100%;
}
section.blog-section.blog-detail .main-img, .section.blog-section.blog-detail .main-img {
  margin-bottom: 30px;
}
section.blog-section.blog-detail .main-img figure figcaption, .section.blog-section.blog-detail .main-img figure figcaption {
  display: none;
}
section.blog-section.blog-detail .row::after, .section.blog-section.blog-detail .row::after {
  display: none;
}
section.blog-section.blog-detail .row .column .maf-content, .section.blog-section.blog-detail .row .column .maf-content {
  padding: 0;
}
section.blog-section.blog-detail .row .column.maf-col-1, .section.blog-section.blog-detail .row .column.maf-col-1 {
  align-items: flex-start;
}
section.blog-section.blog-detail .row .column.maf-col-1 .maf-content, .section.blog-section.blog-detail .row .column.maf-col-1 .maf-content {
  max-width: 900px;
}
section.blog-section.blog-detail .row .column.maf-col-2 .twitter-feed .tweet_list li, .section.blog-section.blog-detail .row .column.maf-col-2 .twitter-feed .tweet_list li {
  background-color: rgb(236, 253, 255);
  margin-bottom: 20px;
  padding: 20px;
}
section.blog-section.blog-detail .row .column.maf-col-2 .maf-content .blog-nav, .section.blog-section.blog-detail .row .column.maf-col-2 .maf-content .blog-nav {
  width: 100%;
}
section.blog-section.blog-detail .row .column.maf-col-2 .maf-content .blog-nav .blog-aside-content:last-child, .section.blog-section.blog-detail .row .column.maf-col-2 .maf-content .blog-nav .blog-aside-content:last-child {
  margin-bottom: 0;
}
section.blog-section.blog-detail .row .column.maf-col-2 .maf-content .blog-nav .blog-aside-content:last-child button:last-child, .section.blog-section.blog-detail .row .column.maf-col-2 .maf-content .blog-nav .blog-aside-content:last-child button:last-child {
  margin-bottom: 10px;
}
section.blog-section.assoc .header .maf-content, .section.blog-section.assoc .header .maf-content {
  max-width: none;
  padding-top: 0;
  text-align: left;
}
section.blog-section.assoc .row .column, .section.blog-section.assoc .row .column {
  padding-bottom: 0;
}
section.blog-event-section div.cardbox, .section.blog-event-section div.cardbox {
  justify-content: center;
}
section.blog-event-section div.cardbox article.card, .section.blog-event-section div.cardbox article.card {
  flex: 0 1 285px;
  width: auto;
}
section.blog-event-section div.cardbox article.card .portal-item .portal-content .card-cats.event, .section.blog-event-section div.cardbox article.card .portal-item .portal-content .card-cats.event {
  background-color: rgb(74, 40, 113);
}
section.job-section div.job-feed, .section.job-section div.job-feed {
  max-width: 995px;
}
section.job-section div.job-feed .job-summary .portal-item .portal-content .info .button, .section.job-section div.job-feed .job-summary .portal-item .portal-content .info .button {
  border-color: rgb(233, 136, 199);
  color: rgb(233, 136, 199);
  font-size: 1.2rem;
  margin: 100px 0;
  padding: 10px 35px;
}
section.job-section div.job-feed .job-summary .portal-item:hover .portal-content .info .button, .section.job-section div.job-feed .job-summary .portal-item:hover .portal-content .info .button {
  color: white;
}
section.job-section.is-hero .button, .section.job-section.is-hero .button {
  align-self: flex-end;
}
section.job-section.is-hero .footer p, .section.job-section.is-hero .footer p {
  font-size: 2rem;
}
section.job-section.is-hero .footer span, .section.job-section.is-hero .footer span {
  color: rgb(254, 217, 48);
}
section.job-section.job-top-level #filters .filter-content .filter-set, .section.job-section.job-top-level #filters .filter-content .filter-set {
  padding: 100px;
  border: 1px solid rgb(74, 40, 113);
}
section.job-section.job-top-level #filters .filter-content .filter-set .label, .section.job-section.job-top-level #filters .filter-content .filter-set .label {
  margin: 0 0 10px 0;
}
section.job-section.job-top-level #filters .filter-content .filter-set button, .section.job-section.job-top-level #filters .filter-content .filter-set button {
  margin: 0 5px 5px 0;
  padding: 10px 15px;
  width: auto;
}
section.job-section.job-top-level div.job-feed, .section.job-section.job-top-level div.job-feed {
  max-width: none;
}
section.job-section.job-top-level div.job-feed .job-summary, .section.job-section.job-top-level div.job-feed .job-summary {
  max-width: none;
  padding: 37.5px 0 0 0;
  width: 100%;
}
section.job-section.job-top-level div.job-feed .job-summary .portal-item, .section.job-section.job-top-level div.job-feed .job-summary .portal-item {
  align-items: flex-start;
  border-bottom: 1px solid rgb(74, 40, 113);
  box-shadow: none;
  overflow: visible;
  padding: 10px 0 50px 0;
  text-align: left;
  transition-duration: 700ms;
}
section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .desc, .section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .desc {
  color: rgb(74, 40, 113);
}
section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .attr, .section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .attr {
  color: rgb(74, 40, 113);
  display: flex;
  flex-wrap: wrap;
}
section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .attr > div, .section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .attr > div {
  display: inline-block;
  margin-bottom: 15px;
  min-width: 170px;
  padding-right: 50px;
  width: 20%;
}
section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .attr > div strong, section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .attr > div span, section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .attr > div time, .section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .attr > div strong, .section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .attr > div span, .section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .attr > div time {
  display: inline-block;
  width: 100%;
}
section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .button, .section.job-section.job-top-level div.job-feed .job-summary .portal-item .portal-content .info .button {
  align-self: auto;
  margin: 10px 0 20px 0;
  transition-duration: 700ms;
}
section.job-section.job-top-level div.job-feed .job-summary .portal-item:hover, .section.job-section.job-top-level div.job-feed .job-summary .portal-item:hover {
  background-color: rgba(220, 220, 200, 0.1);
  padding-right: 50px;
  padding-left: 50px;
}
section.job-section.job-top-level div.job-feed .job-summary .portal-item:hover .portal-content .info .button, .section.job-section.job-top-level div.job-feed .job-summary .portal-item:hover .portal-content .info .button {
  transform: translateX(-50px);
}
section.job-section.job-top-level .header .maf-content, .section.job-section.job-top-level .header .maf-content {
  max-width: none;
  text-align: left;
}
section.job-section.job-top-level .header .maf-content p.page-lead, .section.job-section.job-top-level .header .maf-content p.page-lead {
  font-weight: 600;
  margin-bottom: 20px;
}
section.job-section.job-top-level .header .maf-content:nth-of-type(2), .section.job-section.job-top-level .header .maf-content:nth-of-type(2) {
  padding-top: 200px;
}
section.job-section.job-top-level .row .column, .section.job-section.job-top-level .row .column {
  padding-top: 100px;
}
section.job-section.job-highlight .row .column, .section.job-section.job-highlight .row .column {
  padding-top: 37.5px;
  padding-bottom: 37.5px;
}
section.job-section.job-highlight .footer .button, .section.job-section.job-highlight .footer .button {
  align-self: center;
}
section.job-section.job-highlight div.job-feed, .section.job-section.job-highlight div.job-feed {
  padding: 0;
}
section.job-section.job-highlight div.job-feed .job-summary, .section.job-section.job-highlight div.job-feed .job-summary {
  color: white;
  font-weight: 600;
  padding: 0 100px;
  margin-bottom: 100px;
}
section.job-section.job-highlight div.job-feed .job-summary .portal-item, .section.job-section.job-highlight div.job-feed .job-summary .portal-item {
  padding: 0;
}
section.job-section.job-highlight div.job-feed .job-summary .portal-item .portal-content .info .cats, .section.job-section.job-highlight div.job-feed .job-summary .portal-item .portal-content .info .cats {
  background-color: rgb(254, 217, 48);
  color: white;
  font-size: 1.2rem;
  margin: 0;
  padding: 100px 100px 50px 100px;
  width: 100%;
}
section.job-section.job-highlight div.job-feed .job-summary .portal-item .portal-content .info .title, .section.job-section.job-highlight div.job-feed .job-summary .portal-item .portal-content .info .title {
  color: white;
  display: inline;
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
section.job-section.job-highlight div.job-feed .job-summary .portal-item .portal-content .info .desc, .section.job-section.job-highlight div.job-feed .job-summary .portal-item .portal-content .info .desc {
  background-color: rgb(254, 217, 48);
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  padding: 0 100px 100px 100px;
}
section.job-section.job-detail strong, .section.job-section.job-detail strong {
  font-weight: 400;
}
section.job-section.job-detail .job-title, .section.job-section.job-detail .job-title {
  color: rgb(233, 136, 199);
}
section.job-section.job-detail .pub-date, .section.job-section.job-detail .pub-date {
  display: none;
}
section.job-section.job-detail .blog-body, .section.job-section.job-detail .blog-body {
  max-width: 800px;
}
section.job-section.job-detail .main-img, .section.job-section.job-detail .main-img {
  margin-bottom: 30px;
}
section.job-section.job-detail .header .pub-date, .section.job-section.job-detail .header .pub-date {
  font-size: 1.4rem;
  font-style: italic;
  margin: 0;
  opacity: 0.5;
}
section.job-section.job-detail .button, .section.job-section.job-detail .button {
  background-color: rgb(233, 136, 199);
  border-color: rgb(233, 136, 199);
}
section.job-section.job-detail .row .column, .section.job-section.job-detail .row .column {
  justify-content: flex-start;
}
section.job-section.job-detail .row .column .maf-content, .section.job-section.job-detail .row .column .maf-content {
  align-items: flex-start;
}
section.job-section.job-detail .row .column .maf-content p.page-lead, .section.job-section.job-detail .row .column .maf-content p.page-lead {
  margin-bottom: 30px;
}
@media only screen and (min-width: 1024px) {
  section.job-section.job-detail .row .column.maf-col-1, .section.job-section.job-detail .row .column.maf-col-1 {
    align-items: flex-end;
  }
}
section.job-section.job-detail .row .column.maf-col-1 .maf-content, .section.job-section.job-detail .row .column.maf-col-1 .maf-content {
  padding: 0 8.333% 0 0;
}
@media only screen and (min-width: 1024px) {
  section.job-section.job-detail .row .column.maf-col-2, .section.job-section.job-detail .row .column.maf-col-2 {
    align-items: flex-start;
  }
}
section.job-section.job-detail .row .column.maf-col-2 .maf-content p strong, section.job-section.job-detail .row .column.maf-col-2 .maf-content p span, .section.job-section.job-detail .row .column.maf-col-2 .maf-content p strong, .section.job-section.job-detail .row .column.maf-col-2 .maf-content p span {
  display: inline-block;
  width: 100%;
}
section.job-section.job-detail .row .column.maf-col-2 .maf-content .blog-nav, .section.job-section.job-detail .row .column.maf-col-2 .maf-content .blog-nav {
  width: 100%;
}
section.job-section.job-detail .row .column.maf-col-2 .maf-content .blog-nav .blog-aside-content:last-child, .section.job-section.job-detail .row .column.maf-col-2 .maf-content .blog-nav .blog-aside-content:last-child {
  margin-bottom: 0;
}
section.job-section.job-detail .row .column.maf-col-2 .maf-content .blog-nav .blog-aside-content:last-child button:last-child, .section.job-section.job-detail .row .column.maf-col-2 .maf-content .blog-nav .blog-aside-content:last-child button:last-child {
  margin-bottom: 10px;
}
section.job-section .job-nav, .section.job-section .job-nav {
  padding: 0;
  width: 100%;
}
section.job-section .job-nav .job-aside-content, .section.job-section .job-nav .job-aside-content {
  display: inline-block;
  margin-bottom: 50px;
  width: 100%;
}
section.job-section .job-nav .job-aside-content .nav-title, .section.job-section .job-nav .job-aside-content .nav-title {
  color: rgb(74, 40, 113);
  font-size: 2.6rem;
  margin: 15px 0;
}
section.job-section .job-nav .job-aside-content a, .section.job-section .job-nav .job-aside-content a {
  color: rgb(233, 136, 199);
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  width: 100%;
}
section.job-section .job-nav .job-aside-content a .job-current-item, .section.job-section .job-nav .job-aside-content a .job-current-item {
  color: rgb(74, 40, 113);
  display: inline-block;
  padding: 5px 0;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
section.job-section .job-nav .job-aside-content a .job-current-item p, .section.job-section .job-nav .job-aside-content a .job-current-item p {
  margin: 0;
}
section.job-section .job-nav .job-aside-content a .job-current-item time, .section.job-section .job-nav .job-aside-content a .job-current-item time {
  display: none;
  font-size: 1.2rem;
  opacity: 0.8;
}
section.job-section .job-nav .job-aside-content a:hover .blog-current-item, .section.job-section .job-nav .job-aside-content a:hover .blog-current-item {
  background-color: rgb(233, 136, 199);
  color: white;
  padding: 5px;
}
section.job-section .job-nav .job-aside-content.nav-filter::after, section.job-section .job-nav .job-aside-content.nav-filter::before, .section.job-section .job-nav .job-aside-content.nav-filter::after, .section.job-section .job-nav .job-aside-content.nav-filter::before {
  content: " ";
  display: table;
}
section.job-section .job-nav .job-aside-content.nav-filter::after, .section.job-section .job-nav .job-aside-content.nav-filter::after {
  clear: both;
}
section.job-section .job-nav .job-aside-content.nav-filter button, .section.job-section .job-nav .job-aside-content.nav-filter button {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  color: rgb(74, 40, 113);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  margin: 0;
  outline: transparent;
  padding: 5px 0;
  text-align: left;
  text-transform: capitalize;
  width: 100%;
}
section.job-section .job-nav .job-aside-content.nav-filter button:hover, section.job-section .job-nav .job-aside-content.nav-filter button.active, .section.job-section .job-nav .job-aside-content.nav-filter button:hover, .section.job-section .job-nav .job-aside-content.nav-filter button.active {
  background-color: rgb(233, 136, 199);
  color: white;
  padding: 5px;
}
section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-click, .section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-click {
  border-bottom: 1px solid rgb(233, 136, 199);
  color: rgb(74, 40, 113);
  font-size: 1.8rem;
  padding: 25px;
}
section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-click i, .section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-click i {
  font-size: 1.6rem;
}
section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-click:hover, section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-click:focus, section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-click:active, section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-click .active, .section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-click:hover, .section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-click:focus, .section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-click:active, .section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-click .active {
  background-color: rgb(233, 136, 199);
  border-bottom: 1px solid rgb(74, 40, 113);
}
section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-group.is-on, .section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-group.is-on {
  border-top: none;
}
section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-group a, .section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-group a {
  border-bottom: 1px solid rgb(233, 136, 199);
  color: rgb(74, 40, 113);
  font-size: 1.6rem;
  font-weight: 300;
  padding-left: 50px;
}
section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-group a:hover, .section.job-section .job-nav .job-aside-content.is-toggle-group .toggle-group a:hover {
  background-color: rgb(233, 136, 199);
  border-bottom: 1px solid rgb(74, 40, 113);
}
section.job-section .job-nav .job-aside-content:first-child .nav-title, .section.job-section .job-nav .job-aside-content:first-child .nav-title {
  margin-top: 0;
}
section.portfolio-section div.portfolio-feed, .section.portfolio-section div.portfolio-feed {
  justify-content: flex-start;
  padding: 0;
}
section.portfolio-section div.portfolio-feed article.card, .section.portfolio-section div.portfolio-feed article.card {
  margin: 0;
  padding: 0;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.portfolio-section div.portfolio-feed article.card, .section.portfolio-section div.portfolio-feed article.card {
    width: 50%;
  }
}
section.portfolio-section div.portfolio-feed article.card .portal-item, .section.portfolio-section div.portfolio-feed article.card .portal-item {
  background-color: rgb(74, 40, 113);
  text-align: center;
}
section.portfolio-section div.portfolio-feed article.card .portal-item .portal-content .tn .tn-img, .section.portfolio-section div.portfolio-feed article.card .portal-item .portal-content .tn .tn-img {
  opacity: 0.33;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: auto;
}
section.portfolio-section div.portfolio-feed article.card .portal-item .portal-content .info, .section.portfolio-section div.portfolio-feed article.card .portal-item .portal-content .info {
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  position: absolute;
}
section.portfolio-section div.portfolio-feed article.card .portal-item .portal-content .info .label, .section.portfolio-section div.portfolio-feed article.card .portal-item .portal-content .info .label {
  color: white;
  margin-bottom: 0;
  transition: text-shadow 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: auto;
}
section.portfolio-section div.portfolio-feed article.card .portal-item .portal-content .info .title, .section.portfolio-section div.portfolio-feed article.card .portal-item .portal-content .info .title {
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  margin: 0;
  padding: 0 100px;
  transition: text-shadow 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: auto;
}
section.portfolio-section div.portfolio-feed article.card .portal-item .portal-content .info .button, .section.portfolio-section div.portfolio-feed article.card .portal-item .portal-content .info .button {
  display: none;
}
section.portfolio-section div.portfolio-feed article.card .portal-item:hover .portal-content .tn .tn-img, .section.portfolio-section div.portfolio-feed article.card .portal-item:hover .portal-content .tn .tn-img {
  opacity: 0.66;
}
section.portfolio-section div.portfolio-feed article.card .portal-item:hover .portal-content .info .label, section.portfolio-section div.portfolio-feed article.card .portal-item:hover .portal-content .info .title, .section.portfolio-section div.portfolio-feed article.card .portal-item:hover .portal-content .info .label, .section.portfolio-section div.portfolio-feed article.card .portal-item:hover .portal-content .info .title {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 0, 0, 0.4), 0 0 13px rgba(0, 0, 0, 0.4), 0 0 21px rgba(0, 0, 0, 0.4);
}
section.portfolio-section.is-hero, .section.portfolio-section.is-hero {
  background-color: rgb(74, 40, 113);
  color: white;
  min-height: 300px;
}
section.portfolio-section.is-hero > .maf-background, .section.portfolio-section.is-hero > .maf-background {
  opacity: 0.65;
}
section.portfolio-section.is-hero .row .column .maf-content, .section.portfolio-section.is-hero .row .column .maf-content {
  max-width: 90%;
}
section.portfolio-section.is-hero .row .column .maf-content h2, section.portfolio-section.is-hero .row .column .maf-content .h2-style, .section.portfolio-section.is-hero .row .column .maf-content h2, .section.portfolio-section.is-hero .row .column .maf-content .h2-style {
  font-family: "Quicksand", sans-serif;
  font-size: 4.2rem;
  margin-bottom: 0;
}
section.portfolio-section.is-hero .row .column .maf-content .pub-date, .section.portfolio-section.is-hero .row .column .maf-content .pub-date {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 600;
  margin: 5px;
  opacity: 0.5;
}
section.portfolio-section.portfolio-top-level #filters .filter-content .filter-set .label, .section.portfolio-section.portfolio-top-level #filters .filter-content .filter-set .label {
  display: none;
}
section.portfolio-section.portfolio-top-level div.cardbox article.card .portal-item, .section.portfolio-section.portfolio-top-level div.cardbox article.card .portal-item {
  background-color: rgb(74, 40, 113);
  color: white;
}
section.portfolio-section.portfolio-top-level div.cardbox article.card .portal-item .portal-content .info, .section.portfolio-section.portfolio-top-level div.cardbox article.card .portal-item .portal-content .info {
  justify-content: flex-end;
}
section.portfolio-section.portfolio-top-level div.cardbox.featured article.card, .section.portfolio-section.portfolio-top-level div.cardbox.featured article.card {
  width: 100%;
}
section.portfolio-section.portfolio-top-level div.cardbox.featured article.card .portal-item, .section.portfolio-section.portfolio-top-level div.cardbox.featured article.card .portal-item {
  background-color: rgb(74, 40, 113);
  color: white;
}
section.portfolio-section.portfolio-top-level div.cardbox.featured article.card .portal-item .portal-content .tn::after, .section.portfolio-section.portfolio-top-level div.cardbox.featured article.card .portal-item .portal-content .tn::after {
  padding-bottom: 33.333%;
}
section.portfolio-section.portfolio-top-level div.cardbox.featured article.card .portal-item .portal-content .tn .tn-img, .section.portfolio-section.portfolio-top-level div.cardbox.featured article.card .portal-item .portal-content .tn .tn-img {
  height: auto;
  width: 100%;
}
section.portfolio-section.portfolio-top-level div.cardbox.featured article.card:nth-of-type(2n) .portal-item, .section.portfolio-section.portfolio-top-level div.cardbox.featured article.card:nth-of-type(2n) .portal-item {
  background-color: white;
  color: rgb(74, 40, 113);
}
section.portfolio-section.portfolio-top-level div.cardbox.featured article.card:nth-of-type(2n) .portal-item:hover .portal-content .info .title, .section.portfolio-section.portfolio-top-level div.cardbox.featured article.card:nth-of-type(2n) .portal-item:hover .portal-content .info .title {
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.2), 0 0 8px rgba(255, 255, 255, 0.2), 0 0 13px rgba(255, 255, 255, 0.2), 0 0 21px rgba(255, 255, 255, 0.2);
}
section.portfolio-section.portfolio-top-level .header .maf-content, .section.portfolio-section.portfolio-top-level .header .maf-content {
  max-width: none;
}
section.portfolio-section.portfolio-top-level .header.title, .section.portfolio-section.portfolio-top-level .header.title {
  justify-content: center;
  max-width: none;
}
section.portfolio-section.portfolio-top-level .header.title .maf-content, .section.portfolio-section.portfolio-top-level .header.title .maf-content {
  padding: 37.5px 25px;
}
@media only screen and (min-width: 576px) {
  section.portfolio-section.portfolio-top-level .header.title .maf-content, .section.portfolio-section.portfolio-top-level .header.title .maf-content {
    padding: 75px 50px;
  }
}
section.portfolio-section.portfolio-top-level .row, .section.portfolio-section.portfolio-top-level .row {
  max-width: none;
}
section.portfolio-section.portfolio-top-level .row .column, .section.portfolio-section.portfolio-top-level .row .column {
  padding-right: 0;
  padding-left: 0;
}
section.portfolio-section.portfolio-highlight .header, .section.portfolio-section.portfolio-highlight .header {
  color: rgb(255, 247, 253);
}
section.portfolio-section.portfolio-highlight .row, .section.portfolio-section.portfolio-highlight .row {
  max-width: none;
  padding: 0;
}
section.portfolio-section.portfolio-highlight .row .column.maf-col-1, .section.portfolio-section.portfolio-highlight .row .column.maf-col-1 {
  padding: 0;
}
section.portfolio-section.portfolio-highlight .row .column.maf-col-1 .maf-content, .section.portfolio-section.portfolio-highlight .row .column.maf-col-1 .maf-content {
  padding: 0;
}
section.portfolio-section.portfolio-highlight .footer, .section.portfolio-section.portfolio-highlight .footer {
  display: none;
  padding-bottom: 50px;
}
section.portfolio-section.portfolio-highlight .footer .button, .section.portfolio-section.portfolio-highlight .footer .button {
  align-self: center;
}
section.portfolio-section.portfolio-highlight div.portfolio-feed article.card .portal-item, .section.portfolio-section.portfolio-highlight div.portfolio-feed article.card .portal-item {
  color: white;
}
section.portfolio-section.portfolio-highlight div.portfolio-feed article.card:nth-of-type(2n) .portal-item, .section.portfolio-section.portfolio-highlight div.portfolio-feed article.card:nth-of-type(2n) .portal-item {
  background-color: rgb(233, 136, 199);
}
section.portfolio-section.portfolio-highlight div.portfolio-feed article.card:nth-of-type(3n) .portal-item, .section.portfolio-section.portfolio-highlight div.portfolio-feed article.card:nth-of-type(3n) .portal-item {
  background-color: rgb(236, 253, 255);
}
section.portfolio-section.portfolio-highlight div.portfolio-feed article.card:nth-of-type(4n) .portal-item, .section.portfolio-section.portfolio-highlight div.portfolio-feed article.card:nth-of-type(4n) .portal-item {
  background-color: rgb(246, 240, 255);
}
section.portfolio-section.portfolio-highlight div.portfolio-feed article.card:nth-of-type(6n) .portal-item, .section.portfolio-section.portfolio-highlight div.portfolio-feed article.card:nth-of-type(6n) .portal-item {
  background-color: rgb(255, 247, 253);
}
section.portfolio-section.portfolio-detail, .section.portfolio-section.portfolio-detail {
  background-color: white;
}
section.portfolio-section.portfolio-detail .pub-date, .section.portfolio-section.portfolio-detail .pub-date {
  font-size: 1.4rem;
  font-style: italic;
  margin: 5px;
}
section.portfolio-section.portfolio-detail .main-img, .section.portfolio-section.portfolio-detail .main-img {
  margin-bottom: 30px;
}
section.portfolio-section.portfolio-detail .row .column, .section.portfolio-section.portfolio-detail .row .column {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
section.portfolio-section.portfolio-detail .row .column.maf-col-1 .maf-content, .section.portfolio-section.portfolio-detail .row .column.maf-col-1 .maf-content {
  max-width: 1065px;
}
@media only screen and (min-width: 768px) {
  section.event-section div.cardbox article.card, section.event-section aside.cardbox article.card, .section.event-section div.cardbox article.card, .section.event-section aside.cardbox article.card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1024px) {
  section.event-section div.cardbox article.card, section.event-section aside.cardbox article.card, .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 .info, section.event-section aside.cardbox article.card .portal-item .portal-content .info, .section.event-section div.cardbox article.card .portal-item .portal-content .info, .section.event-section aside.cardbox article.card .portal-item .portal-content .info {
  background-color: transparent;
  padding: 0 10px 20px 10px;
}
section.event-section div.cardbox article.card .portal-item .portal-content .title, section.event-section aside.cardbox article.card .portal-item .portal-content .title, .section.event-section div.cardbox article.card .portal-item .portal-content .title, .section.event-section aside.cardbox article.card .portal-item .portal-content .title {
  font-size: 2.4rem;
  margin: 20px 0 5px 0;
}
section.event-section div.cardbox article.card .portal-item .portal-content .title .venue, section.event-section aside.cardbox article.card .portal-item .portal-content .title .venue, .section.event-section div.cardbox article.card .portal-item .portal-content .title .venue, .section.event-section aside.cardbox article.card .portal-item .portal-content .title .venue {
  display: inline-block;
  font-size: 1.8rem;
  margin-top: 5px;
  width: 100%;
}
section.event-section div.cardbox article.card .portal-item .portal-content .attr, section.event-section aside.cardbox article.card .portal-item .portal-content .attr, .section.event-section div.cardbox article.card .portal-item .portal-content .attr, .section.event-section aside.cardbox article.card .portal-item .portal-content .attr {
  color: rgb(74, 40, 113);
  display: inline-block;
  font-size: 1.8rem;
}
section.event-section div.cardbox article.card .portal-item .portal-content .attr .date i, section.event-section aside.cardbox article.card .portal-item .portal-content .attr .date i, .section.event-section div.cardbox article.card .portal-item .portal-content .attr .date i, .section.event-section aside.cardbox article.card .portal-item .portal-content .attr .date i {
  display: none;
}
section.event-section div.cardbox article.card .portal-item .portal-content .button, section.event-section aside.cardbox article.card .portal-item .portal-content .button, .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: 10px 0;
}
section.event-section div.cardbox article.card .portal-item:hover .portal-content .button, section.event-section aside.cardbox article.card .portal-item:hover .portal-content .button, .section.event-section div.cardbox article.card .portal-item:hover .portal-content .button, .section.event-section aside.cardbox article.card .portal-item:hover .portal-content .button {
  color: white !important;
}
section.event-section div.cardbox article.card .portal-item:hover .portal-content .button::before, section.event-section aside.cardbox article.card .portal-item:hover .portal-content .button::before, .section.event-section div.cardbox article.card .portal-item:hover .portal-content .button::before, .section.event-section aside.cardbox article.card .portal-item:hover .portal-content .button::before {
  left: 0;
}
section.event-section div.cardbox .no-events, section.event-section aside.cardbox .no-events, .section.event-section div.cardbox .no-events, .section.event-section aside.cardbox .no-events {
  background-color: rgb(246, 240, 255);
  border-radius: 8px;
  padding: 20px 40px;
}
section.event-section div.cardbox .no-events .h2-style, section.event-section aside.cardbox .no-events .h2-style, .section.event-section div.cardbox .no-events .h2-style, .section.event-section aside.cardbox .no-events .h2-style {
  color: rgb(74, 40, 113);
}
section.event-section.event-highlight .card-box-slider, .section.event-section.event-highlight .card-box-slider {
  width: 90%;
}
section.event-section.event-highlight .card-box-slider .flickity-viewport, .section.event-section.event-highlight .card-box-slider .flickity-viewport {
  overflow: visible;
}
section.event-section.event-highlight .card-box-slider .flickity-viewport::before, section.event-section.event-highlight .card-box-slider .flickity-viewport::after, .section.event-section.event-highlight .card-box-slider .flickity-viewport::before, .section.event-section.event-highlight .card-box-slider .flickity-viewport::after {
  background-image: linear-gradient(to right, rgb(233, 136, 199), transparent);
  content: "";
  display: inline-block;
  height: 100%;
  left: -42px;
  position: absolute;
  top: 0;
  width: 200px;
  z-index: 1;
}
section.event-section.event-highlight .card-box-slider .flickity-viewport::after, .section.event-section.event-highlight .card-box-slider .flickity-viewport::after {
  background-image: linear-gradient(to left, rgb(233, 136, 199), transparent);
  left: auto;
  right: -42px;
}
section.event-section.event-highlight .card-box-slider article.card, .section.event-section.event-highlight .card-box-slider article.card {
  display: inline-block;
  flex: 0 0 auto;
  margin: 0 10px 40px 10px;
  max-width: 305px;
  min-height: 355px;
  padding: 0 10px;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.event-section.event-highlight .card-box-slider article.card, .section.event-section.event-highlight .card-box-slider article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  section.event-section.event-highlight .card-box-slider article.card, .section.event-section.event-highlight .card-box-slider article.card {
    width: 25%;
  }
}
section.event-section.event-highlight .card-box-slider article.card .portal-item, .section.event-section.event-highlight .card-box-slider article.card .portal-item {
  background-color: white;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgb(147, 33, 43);
  border-radius: 2px;
  cursor: pointer;
  display: block;
  font-size: 1.6rem;
  height: 100%;
  margin: 0 auto;
  max-width: 400px;
  overflow: hidden;
  opacity: 1;
  position: absolute;
  text-align: center;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  position: relative;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .card-cats, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .card-cats {
  display: none;
  font-size: 1.4rem;
  font-weight: 400;
  min-height: 20px;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn {
  height: calc(100% - 70px);
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 70px;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: 0;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.no-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.no-img {
  display: none;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn .tn-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn .tn-img {
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: all 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.square::after, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree::after, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.square::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after {
  content: "";
  display: table;
  padding-bottom: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.square .tn-img, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree .tn-img, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom .tn-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.square .tn-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree .tn-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom .tn-img {
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(1);
  min-width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree::after {
  padding-bottom: 75%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after {
  padding-bottom: 51%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .info, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .info {
  align-items: flex-start;
  display: flex;
  height: 100%;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: 1;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .title, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .title {
  align-items: center;
  background-color: rgb(254, 217, 48);
  color: white;
  display: inline-flex;
  flex-direction: column;
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1.2;
  margin: 0;
  min-height: 70px;
  order: -1;
  padding: 10px;
  position: relative;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .title::before, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .title::before {
  content: "";
  background-image: url(/images/Layout/texture-bmp/leather.jpg);
  background-repeat: repeat;
  background-size: auto;
  background-blend-mode: multiply;
  display: inline-block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: top right;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: 0;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .dates, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .dates {
  display: inline-block;
  font-size: 1.6rem;
  width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .desc, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .desc {
  align-items: center;
  color: rgb(74, 40, 113);
  display: inline-flex;
  flex: 1 1 auto;
  justify-content: center;
  line-height: 1.2;
  margin: 0;
  opacity: 0;
  padding: 10px;
  text-align: center;
  transition: opacity 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: 1;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr {
  display: none;
  width: 100%;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr div, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr time, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr div, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr time {
  display: block;
  margin-bottom: 5px;
  width: auto;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr div i, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr time i, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr div i, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr time i {
  margin-right: 10px;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .card-button, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .card-button {
  align-self: center;
  background-color: white;
  border-color: rgb(74, 40, 113);
  box-shadow: none;
  color: rgb(74, 40, 113);
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  margin: 0;
  margin: auto 0 10px 0;
  min-width: 0;
  padding: 5px 25px;
  text-transform: uppercase;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item.no-link, .section.event-section.event-highlight .card-box-slider article.card .portal-item.no-link {
  cursor: default;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item.no-link .portal-content .info .card-button, .section.event-section.event-highlight .card-box-slider article.card .portal-item.no-link .portal-content .info .card-button {
  display: none;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item.edit .portal-content .info, .section.event-section.event-highlight .card-box-slider article.card .portal-item.edit .portal-content .info {
  position: static;
  transform: none;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item:hover, .section.event-section.event-highlight .card-box-slider article.card .portal-item:hover {
  border-color: rgba(147, 33, 43, 0.25);
}
section.event-section.event-highlight .card-box-slider article.card .portal-item:hover .portal-content .tn .tn-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item:hover .portal-content .tn .tn-img {
  filter: brightness(1.5) contrast(1.2) grayscale(0.5);
  opacity: 0.05;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item:hover .portal-content .desc, .section.event-section.event-highlight .card-box-slider article.card .portal-item:hover .portal-content .desc {
  opacity: 1;
}
section.event-section.event-highlight .card-box-slider article.card .portal-item:hover .portal-content .button, .section.event-section.event-highlight .card-box-slider article.card .portal-item:hover .portal-content .button {
  background-color: rgb(254, 217, 48);
  border-color: rgb(254, 217, 48);
  color: white;
}
section.event-section.event-highlight .card-box-slider .flickity-page-dots, .section.event-section.event-highlight .card-box-slider .flickity-page-dots {
  bottom: -20px;
  display: block;
  margin: 0;
  padding: 0;
}
section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot, .section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot {
  background: transparent;
  border: 2px solid rgb(254, 217, 48);
  height: 20px;
  margin: 0 3px;
  opacity: 1;
  position: relative;
  width: 20px;
}
section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot::before, .section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot::before {
  background-color: rgb(254, 217, 48);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 0;
}
section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot.is-selected::before, .section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot.is-selected::before {
  height: 70%;
  width: 70%;
}
section.event-section.event-highlight .card-box-slider .flickity-button, .section.event-section.event-highlight .card-box-slider .flickity-button {
  background-color: transparent;
  display: inline-block;
}
section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button {
  border-radius: 0;
  box-shadow: none;
  height: 80px;
  margin: 0;
  opacity: 0.7;
  padding: 0;
  top: 42%;
  transform-origin: center;
  width: 30px;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button {
    width: 50px;
  }
}
section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::before, section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::after, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::before, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::after {
  background-color: rgb(254, 217, 48);
  border-radius: 5px;
  content: "";
  display: inline-block;
  height: 5px;
  left: -5%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transform-origin: left center;
  width: 80%;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::before, section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::after, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::before, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::after {
    height: 7px;
  }
}
section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::before, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::before {
  top: calc(50% - 1.5px);
  transform: translate(0, -50%) rotate(45deg);
}
@media only screen and (min-width: 576px) {
  section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::before, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::before {
    top: calc(50% - 2px);
  }
}
section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::after, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::after {
  top: calc(50% + 1.5px);
  transform: translate(0, -50%) rotate(-45deg);
}
@media only screen and (min-width: 576px) {
  section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::after, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button::after {
    top: calc(50% + 2px);
  }
}
section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button .flickity-button-icon, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button .flickity-button-icon {
  display: none;
}
section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button.previous, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button.previous {
  left: -6.5%;
}
@media only screen and (min-width: 576px) {
  section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button.previous, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button.previous {
    left: -5%;
  }
}
section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button.next, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button.next {
  right: -6.5%;
  transform: translateY(-50%) rotate(180deg);
}
@media only screen and (min-width: 576px) {
  section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button.next, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button.next {
    right: -5%;
  }
}
section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button:hover, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button:hover {
  opacity: 1;
}
section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button:disabled, .section.event-section.event-highlight .card-box-slider .flickity-button.flickity-prev-next-button:disabled {
  opacity: 0.3;
}
section.event-section.event-highlight .row, .section.event-section.event-highlight .row {
  overflow: visible;
}
section.event-section.event-highlight .row .column, .section.event-section.event-highlight .row .column {
  padding-top: 40px;
  padding-bottom: 0;
  overflow: visible;
}
section.event-section.event-highlight .row .column .maf-content, .section.event-section.event-highlight .row .column .maf-content {
  max-width: 1280px;
}
section.event-section.event-detail h1, section.event-section.event-detail .h1-style, section.event-section.event-detail h2, section.event-section.event-detail .h2-style, section.event-section.event-detail h3, section.event-section.event-detail .h3-style, section.event-section.event-detail h4, section.event-section.event-detail .h4-style, section.event-section.event-detail h5, section.event-section.event-detail .h5-style, section.event-section.event-detail h6, section.event-section.event-detail .h6-style, .section.event-section.event-detail h1, .section.event-section.event-detail .h1-style, .section.event-section.event-detail h2, .section.event-section.event-detail .h2-style, .section.event-section.event-detail h3, .section.event-section.event-detail .h3-style, .section.event-section.event-detail h4, .section.event-section.event-detail .h4-style, .section.event-section.event-detail h5, .section.event-section.event-detail .h5-style, .section.event-section.event-detail h6, .section.event-section.event-detail .h6-style {
  color: rgb(74, 40, 113);
}
section.event-section.event-detail p.date, .section.event-section.event-detail p.date {
  font-family: "Quicksand", sans-serif;
  font-size: 1.5em;
}
section.event-section.event-detail p.price, .section.event-section.event-detail p.price {
  margin: 0;
}
section.event-section.event-detail p.price span, .section.event-section.event-detail p.price span {
  display: inline-block;
  font-weight: 400;
}
section.event-section.event-detail .is-map, .section.event-section.event-detail .is-map {
  margin-bottom: 30px;
  min-height: 300px;
}
section.event-section.event-detail .row .column.maf-col-1 .maf-content, .section.event-section.event-detail .row .column.maf-col-1 .maf-content {
  align-items: flex-start;
  text-align: left;
}
section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events, .section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events {
  flex: 0 0 auto;
  justify-content: center;
  margin-right: -15px;
  margin-left: -15px;
  padding: 0;
  width: calc(100% + 30px);
}
section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card, .section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card {
  border: 0;
  margin-bottom: 30px;
  padding: 0 15px;
}
@media only screen and (min-width: 960px) {
  section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card, .section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card {
    width: 33%;
  }
}
section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item, .section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item {
  overflow: visible;
}
section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item .portal-content, .section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item .portal-content {
  color: white;
  flex-direction: column;
  text-align: center;
}
section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item .portal-content .tn, .section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item .portal-content .tn {
  width: 100%;
}
section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item .portal-content .tag, .section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item .portal-content .tag {
  background-color: rgb(236, 253, 255);
  font-size: 1.4rem;
  font-weight: 900;
  left: -10px;
  padding: 3px 8px;
  position: absolute;
  text-transform: uppercase;
  top: 10%;
  width: auto;
}
section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item .portal-content .info, .section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item .portal-content .info {
  padding: 0;
  width: 100%;
}
section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item .portal-content .info .title, .section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item .portal-content .info .title {
  background-color: rgb(74, 40, 113);
  margin: 0;
  padding: 20px;
  transition: background-color 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item:hover .portal-content .info .title, .section.event-section.event-detail .row .column.maf-col-1 .maf-content aside.cardbox.assoc-events article.card .portal-item:hover .portal-content .info .title {
  background-color: rgb(236, 253, 255);
}
@media only screen and (min-width: 1024px) {
  section.event-section.event-detail .row .column.maf-col-2, .section.event-section.event-detail .row .column.maf-col-2 {
    padding-left: 0;
  }
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content, .section.event-section.event-detail .row .column.maf-col-2 .maf-content {
  align-items: flex-start;
}
@media only screen and (min-width: 1024px) {
  section.event-section.event-detail .row .column.maf-col-2 .maf-content, .section.event-section.event-detail .row .column.maf-col-2 .maf-content {
    padding-left: 0;
  }
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content hr, .section.event-section.event-detail .row .column.maf-col-2 .maf-content hr {
  margin: 10px 0 40px 0;
  max-width: 50px;
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content p strong, .section.event-section.event-detail .row .column.maf-col-2 .maf-content p strong {
  font-size: 1.3;
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list h2, section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list .h2-style, .section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list h2, .section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list .h2-style {
  background-color: rgb(254, 217, 48);
  color: white;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  padding: 10px 10px 15px 10px;
  position: relative;
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list h2::before, section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list .h2-style::before, .section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list h2::before, .section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list .h2-style::before {
  content: "";
  background-image: url("/images/Layout/texture-bmp/leather.jpg");
  background-repeat: repeat;
  background-size: auto;
  background-blend-mode: multiply;
  display: inline-block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: top right;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: 0;
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list a, .section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list a {
  color: rgb(74, 40, 113);
  font-size: 0.9em;
  padding-left: 1.1em;
  position: relative;
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list a::before, .section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list a::before {
  color: rgb(74, 40, 113);
  content: "–";
  font-size: 1em;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 0;
}
section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list a:hover, .section.event-section.event-detail .row .column.maf-col-2 .maf-content aside.assoc-event-list a:hover {
  padding-left: 0.8em;
}
section.event-section.event-archive.event-typ-1 h2.arc-head, .section.event-section.event-archive.event-typ-1 h2.arc-head {
  background-color: rgb(254, 217, 48);
  color: white;
  margin-bottom: 90px;
  padding: 20px 0;
  position: relative;
  text-align: left;
}
section.event-section.event-archive.event-typ-1 h2.arc-head::before, section.event-section.event-archive.event-typ-1 h2.arc-head::after, .section.event-section.event-archive.event-typ-1 h2.arc-head::before, .section.event-section.event-archive.event-typ-1 h2.arc-head::after {
  background-color: rgb(254, 217, 48);
  content: "";
  display: inline-block;
  left: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
section.event-section.event-archive.event-typ-1 h2.arc-head::after, .section.event-section.event-archive.event-typ-1 h2.arc-head::after {
  left: auto;
  right: 100%;
}
section.event-section.event-archive.event-typ-1 .maf-divider, .section.event-section.event-archive.event-typ-1 .maf-divider {
  border: 1px solid rgb(74, 40, 113);
  border-right: 0;
  border-left: 0;
  background-color: rgb(233, 136, 199);
  display: inline-block;
  height: 20px;
  margin-bottom: 60px;
  padding: 10px 0;
  position: relative;
  text-align: left;
  width: 100%;
}
section.event-section.event-archive.event-typ-1 .maf-divider::before, section.event-section.event-archive.event-typ-1 .maf-divider::after, .section.event-section.event-archive.event-typ-1 .maf-divider::before, .section.event-section.event-archive.event-typ-1 .maf-divider::after {
  background-color: rgb(233, 136, 199);
  border: 1px solid rgb(74, 40, 113);
  border-right: 0;
  border-left: 0;
  content: "";
  display: inline-block;
  left: 100%;
  height: 100%;
  position: absolute;
  top: -1px;
  width: 100%;
}
section.event-section.event-archive.event-typ-1 .maf-divider::after, .section.event-section.event-archive.event-typ-1 .maf-divider::after {
  left: auto;
  right: 100%;
}
section.event-section.event-archive.event-typ-1 .maf-divider:last-child, .section.event-section.event-archive.event-typ-1 .maf-divider:last-child {
  display: none;
}
section.event-section.event-archive.event-typ-1 article.archive, .section.event-section.event-archive.event-typ-1 article.archive {
  margin-bottom: 60px;
  max-width: 960px;
  width: 100%;
}
section.event-section.event-archive.event-typ-1 article.archive .title, .section.event-section.event-archive.event-typ-1 article.archive .title {
  margin: 0 0 5px 0;
}
section.event-section.event-archive.event-typ-1 article.archive .cur-label, .section.event-section.event-archive.event-typ-1 article.archive .cur-label {
  color: rgb(254, 217, 48);
  margin: 0 0 5px 0;
}
section.event-section.event-archive.event-typ-1 article.archive .row, .section.event-section.event-archive.event-typ-1 article.archive .row {
  flex-direction: column-reverse;
  overflow: visible;
}
@media only screen and (min-width: 1024px) {
  section.event-section.event-archive.event-typ-1 article.archive .row, .section.event-section.event-archive.event-typ-1 article.archive .row {
    flex-direction: row;
  }
}
section.event-section.event-archive.event-typ-1 article.archive .row .column, .section.event-section.event-archive.event-typ-1 article.archive .row .column {
  padding: 0 0;
  overflow: visible;
  text-align: left;
}
@media only screen and (min-width: 1023px) {
  section.event-section.event-archive.event-typ-1 article.archive .row .column, .section.event-section.event-archive.event-typ-1 article.archive .row .column {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 1024px) {
  section.event-section.event-archive.event-typ-1 article.archive .row .column.tn, .section.event-section.event-archive.event-typ-1 article.archive .row .column.tn {
    text-align: right;
  }
}
section.event-section.event-archive.event-typ-1 .row, .section.event-section.event-archive.event-typ-1 .row {
  overflow: visible;
}
section.event-section.event-archive.event-typ-1 .row .column, .section.event-section.event-archive.event-typ-1 .row .column {
  overflow: visible;
}
section.event-section.exhibition-gallery, .section.event-section.exhibition-gallery {
  text-align: center;
}
section.event-section.exhibition-gallery .row .column.maf-col-1, .section.event-section.exhibition-gallery .row .column.maf-col-1 {
  padding-top: 50px;
}
section.shop-section div.cardbox article.card .portal-item .portal-content .title, .section.shop-section div.cardbox article.card .portal-item .portal-content .title {
  padding-bottom: 0;
}
section.shop-section.category-list .header .maf-content p, .section.shop-section.category-list .header .maf-content p {
  color: rgb(74, 40, 113);
  font-size: 2rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  section.shop-section.category-list .header .maf-content p, .section.shop-section.category-list .header .maf-content p {
    font-size: 2.4rem;
  }
}
section.shop-section.category-list div.cardbox article.card .portal-item .portal-content .title, .section.shop-section.category-list div.cardbox article.card .portal-item .portal-content .title {
  text-transform: none;
}
section.shop-section.category-list div.cardbox article.card .portal-item .portal-content .paypal, .section.shop-section.category-list div.cardbox article.card .portal-item .portal-content .paypal {
  width: 100%;
}
section.shop-section.category-list div.cardbox article.card .portal-item .portal-content .paypal button, .section.shop-section.category-list div.cardbox article.card .portal-item .portal-content .paypal button {
  background-color: white;
  border: 4px solid white;
  color: rgb(254, 217, 48);
  font-size: 1.8rem;
  margin: 0 0 10px 0;
  padding: 6px 20px;
}
section.shop-section.category-list div.cardbox article.card .portal-item .portal-content .paypal button:hover, .section.shop-section.category-list div.cardbox article.card .portal-item .portal-content .paypal button:hover {
  background-color: transparent;
  color: white;
}
section.shop-section.category-list div.cardbox .maf-msg, .section.shop-section.category-list div.cardbox .maf-msg {
  margin: 0 50px;
}
section.shop-section.product-list .row .column, .section.shop-section.product-list .row .column {
  overflow: visible;
}
section.shop-section.product-list .filter-bar, .section.shop-section.product-list .filter-bar {
  border-left: 1px solid rgb(74, 40, 113);
  color: rgb(99, 99, 99);
  display: flex;
  flex-direction: column;
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 75px;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  section.shop-section.product-list .filter-bar, .section.shop-section.product-list .filter-bar {
    flex-direction: row;
  }
}
section.shop-section.product-list .filter-bar::before, section.shop-section.product-list .filter-bar::after, .section.shop-section.product-list .filter-bar::before, .section.shop-section.product-list .filter-bar::after {
  background-color: rgb(74, 40, 113);
  bottom: auto;
  content: "";
  display: inline-block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  width: 100vw;
}
section.shop-section.product-list .filter-bar::after, .section.shop-section.product-list .filter-bar::after {
  bottom: 0;
  top: auto;
}
section.shop-section.product-list .filter-bar > div, .section.shop-section.product-list .filter-bar > div {
  display: inline-block;
  flex: 1 1 auto;
  min-height: 76px;
  min-width: 154px;
}
section.shop-section.product-list .filter-bar > div.label, .section.shop-section.product-list .filter-bar > div.label {
  align-items: center;
  border-right: 1px solid rgb(74, 40, 113);
  color: rgb(74, 40, 113);
  display: inline-flex;
  justify-content: center;
  padding: 10px;
  text-transform: uppercase;
}
section.shop-section.product-list .filter-bar > div.filter .select, .section.shop-section.product-list .filter-bar > div.filter .select {
  border-bottom: 0;
  border-left: 0;
}
section.shop-section.product-list .filter-bar > div.filter .select select, .section.shop-section.product-list .filter-bar > div.filter .select select {
  font-family: "Quicksand", sans-serif;
}
section.shop-section.product-list .featured, .section.shop-section.product-list .featured {
  align-items: flex-start;
  border: 1px solid rgb(99, 99, 99);
  font-size: 2.2rem;
  margin-bottom: 75px;
  text-align: left;
}
section.shop-section.product-list .featured h2, .section.shop-section.product-list .featured h2 {
  background-color: rgb(74, 40, 113);
  border-bottom: 1px solid rgb(99, 99, 99);
  margin: 0;
  padding: 50px;
}
section.shop-section.product-list .featured .name, section.shop-section.product-list .featured .price, .section.shop-section.product-list .featured .name, .section.shop-section.product-list .featured .price {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Quicksand", sans-serif;
}
section.shop-section.product-list .featured .price, .section.shop-section.product-list .featured .price {
  color: rgb(233, 136, 199);
}
section.shop-section.product-list .featured .price .sold, .section.shop-section.product-list .featured .price .sold {
  color: rgb(74, 40, 113);
}
section.shop-section.product-list .featured .row, .section.shop-section.product-list .featured .row {
  padding: 25px;
}
@media only screen and (min-width: 576px) {
  section.shop-section.product-list .featured .row, .section.shop-section.product-list .featured .row {
    padding: 50px;
  }
}
section.shop-section.product-list .featured .row .column, .section.shop-section.product-list .featured .row .column {
  padding: 25px;
  text-align: left;
}
@media only screen and (min-width: 576px) {
  section.shop-section.product-list .featured .row .column, .section.shop-section.product-list .featured .row .column {
    padding: 50px;
  }
}
section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .info, .section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .info {
  background-color: transparent;
}
section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .title, .section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .title {
  margin: 10px 0 5px 0;
}
section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .price, .section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .price {
  color: rgb(74, 40, 113);
  font-size: 2.4rem;
  margin-bottom: 5px;
}
section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .desc, .section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .desc {
  margin-bottom: 10px;
}
section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .paypal, .section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .paypal {
  width: 100%;
}
section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .paypal button, .section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .paypal button {
  background-color: white;
  border: 4px solid white;
  color: rgb(254, 217, 48);
  font-size: 1.8rem;
  margin: 0 0 10px 0;
  padding: 6px 20px;
}
section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .paypal button:hover, .section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .paypal button:hover {
  background-color: transparent;
  color: white;
}
section.shop-section.product-list div.cardbox article.card .portal-item:hover .portal-content .card-button, .section.shop-section.product-list div.cardbox article.card .portal-item:hover .portal-content .card-button {
  color: white !important;
}
section.shop-section.product-list div.cardbox article.card .portal-item:hover .portal-content .card-button::before, .section.shop-section.product-list div.cardbox article.card .portal-item:hover .portal-content .card-button::before {
  left: 0;
}
section.shop-section.product-list div.cardbox .maf-msg, .section.shop-section.product-list div.cardbox .maf-msg {
  margin: 0 50px;
}
section.shop-section.product-detail .image-placeholder, .section.shop-section.product-detail .image-placeholder {
  background-color: rgb(74, 40, 113);
  position: relative;
}
section.shop-section.product-detail .image-placeholder::before, .section.shop-section.product-detail .image-placeholder::before {
  content: "";
  display: table;
  padding-bottom: 75%;
}
section.shop-section.product-detail .image-placeholder .maf-content, .section.shop-section.product-detail .image-placeholder .maf-content {
  align-items: center;
  height: 100%;
  justify-content: center;
  left: 0;
  padding: 100px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
section.shop-section.product-detail .image-browser, .section.shop-section.product-detail .image-browser {
  display: flex;
  flex-direction: column;
  width: 100%;
}
section.shop-section.product-detail .image-browser .image-viewer, .section.shop-section.product-detail .image-browser .image-viewer {
  flex: 1 1 auto;
  height: calc(100% - 130px);
  position: relative;
}
section.shop-section.product-detail .image-browser .image-viewer img, .section.shop-section.product-detail .image-browser .image-viewer img {
  display: inline-block;
  height: auto;
  width: 100%;
}
section.shop-section.product-detail .image-browser .image-viewer .image-no, .section.shop-section.product-detail .image-browser .image-viewer .image-no {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 30px 0 0 0;
  bottom: 0;
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  padding: 10px 20px 10px 30px;
  position: absolute;
  right: 0;
}
section.shop-section.product-detail .image-browser .image-viewer .image-no i, .section.shop-section.product-detail .image-browser .image-viewer .image-no i {
  font-size: 2rem;
  margin-right: 8px;
  vertical-align: -10%;
}
section.shop-section.product-detail .image-browser #image-nav, .section.shop-section.product-detail .image-browser #image-nav {
  height: 120px;
  margin: 10px auto 0 auto;
  position: relative;
  width: calc(100% - 40px);
}
section.shop-section.product-detail .image-browser #image-nav .image-slide, .section.shop-section.product-detail .image-browser #image-nav .image-slide {
  height: 120px;
  margin-right: 10px;
  width: calc(25% - 9px);
}
section.shop-section.product-detail .image-browser #image-nav .image-slide img, .section.shop-section.product-detail .image-browser #image-nav .image-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
section.shop-section.product-detail .image-browser #image-nav .image-slide img.active, .section.shop-section.product-detail .image-browser #image-nav .image-slide img.active {
  border: 2px solid rgb(212, 117, 5);
}
section.shop-section.product-detail .image-browser #image-nav .flickity-prev-next-button, .section.shop-section.product-detail .image-browser #image-nav .flickity-prev-next-button {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  width: 40px;
}
section.shop-section.product-detail .image-browser #image-nav .flickity-prev-next-button.previous, .section.shop-section.product-detail .image-browser #image-nav .flickity-prev-next-button.previous {
  left: -30px;
}
section.shop-section.product-detail .image-browser #image-nav .flickity-prev-next-button.next, .section.shop-section.product-detail .image-browser #image-nav .flickity-prev-next-button.next {
  right: -30px;
}
section.shop-section.product-detail .image-browser #image-nav .flickity-prev-next-button .flickity-button-icon, .section.shop-section.product-detail .image-browser #image-nav .flickity-prev-next-button .flickity-button-icon {
  fill: rgb(74, 40, 113);
}
section.shop-section.product-detail .product-images, .section.shop-section.product-detail .product-images {
  margin-bottom: 20px;
  max-width: 400px;
}
section.shop-section.product-detail .product-images .main-img, .section.shop-section.product-detail .product-images .main-img {
  padding: 0 5px 5px 0;
}
section.shop-section.product-detail .product-images .img-nav, .section.shop-section.product-detail .product-images .img-nav {
  align-items: center;
  display: flex;
  width: 100%;
}
section.shop-section.product-detail .product-images .img-nav > div, .section.shop-section.product-detail .product-images .img-nav > div {
  display: inline-block;
  flex: 1 1 25%;
  min-height: 65px;
  padding: 0 5px 0 0;
}
section.shop-section.product-detail .product-images .img-nav > div img, .section.shop-section.product-detail .product-images .img-nav > div img {
  cursor: pointer;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
section.shop-section.product-detail .product-images .img-nav > div img.active, .section.shop-section.product-detail .product-images .img-nav > div img.active {
  border: 2px solid rgb(74, 40, 113);
}
section.shop-section.product-detail .price, .section.shop-section.product-detail .price {
  color: rgb(74, 40, 113);
  width: 100%;
}
section.shop-section.product-detail .price .sold, .section.shop-section.product-detail .price .sold {
  color: rgb(74, 40, 113);
}
section.shop-section.product-detail .row .column .maf-content, .section.shop-section.product-detail .row .column .maf-content {
  align-items: flex-start;
  height: 100%;
}
section.shop-section.product-detail .row .column.maf-col-2 .button, .section.shop-section.product-detail .row .column.maf-col-2 .button {
  margin-top: auto;
}
section.shop-section.product-detail .row .column.maf-col-3, .section.shop-section.product-detail .row .column.maf-col-3 {
  text-align: left;
}
section.shop-section.product-detail .row .column.maf-col-3 h2, section.shop-section.product-detail .row .column.maf-col-3 .h2-style, .section.shop-section.product-detail .row .column.maf-col-3 h2, .section.shop-section.product-detail .row .column.maf-col-3 .h2-style {
  border-top: 1px solid rgb(99, 99, 99);
  border-bottom: 1px solid rgb(99, 99, 99);
  font-size: 3rem;
  font-weight: 500;
  padding: 20px 0;
}
section.shop-section.product-detail .row .column.maf-col-3 .attr-content, .section.shop-section.product-detail .row .column.maf-col-3 .attr-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
section.shop-section.product-detail .row .column.maf-col-3 .attr-content p, .section.shop-section.product-detail .row .column.maf-col-3 .attr-content p {
  display: inline-block;
  font-size: 0.916667em;
  flex: 0 1 auto;
  padding-right: 100px;
  width: auto;
}
section.shop-section.product-detail .row .column.maf-col-3 .attr-content p span.h, .section.shop-section.product-detail .row .column.maf-col-3 .attr-content p span.h {
  color: rgb(233, 136, 199);
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
}
section.shop-section.product-detail .row .column.maf-col-3 .attr-content p span.sub, .section.shop-section.product-detail .row .column.maf-col-3 .attr-content p span.sub {
  text-transform: uppercase;
}
section.shop-section.product-detail .row .column.maf-col-3 .attr-content p span.v, .section.shop-section.product-detail .row .column.maf-col-3 .attr-content p span.v {
  display: inline-block;
  min-width: 40px;
}
section.shop-section.product-detail .row .column.maf-col-3 .attr-content p span.v.r, .section.shop-section.product-detail .row .column.maf-col-3 .attr-content p span.v.r {
  padding-right: 10px;
}
section.shop-section.product-detail .row::after, .section.shop-section.product-detail .row::after {
  display: none;
}
section.project-section .row .column, .section.project-section .row .column {
  min-height: 280px;
}
section.project-section .row .column.is-link, .section.project-section .row .column.is-link {
  text-align: center;
  justify-content: center;
}
section.project-section .row .column.is-link a, .section.project-section .row .column.is-link a {
  display: inline-block;
  line-height: 1;
  width: 100%;
}
section.project-section .row .column.is-link h2, .section.project-section .row .column.is-link h2 {
  display: inline-block;
  font-size: 3.2rem;
  margin: 0;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
section.project-section .row .column.is-link .price-string, .section.project-section .row .column.is-link .price-string {
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-size: 3rem;
  line-height: 1;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
section.project-section .row .column.is-link .maf-background, .section.project-section .row .column.is-link .maf-background {
  background-color: rgb(246, 240, 255);
}
section.project-section .row .column.is-link .maf-bg-overlay, .section.project-section .row .column.is-link .maf-bg-overlay {
  background-color: rgb(233, 136, 199);
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
section.project-section .row .column.is-link .maf-bg-overlay::before, section.project-section .row .column.is-link .maf-bg-overlay::after, .section.project-section .row .column.is-link .maf-bg-overlay::before, .section.project-section .row .column.is-link .maf-bg-overlay::after {
  border: 1px solid rgb(74, 40, 113);
  content: "";
  display: inline-block;
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
  z-index: -1;
}
section.project-section .row .column.is-link:hover .maf-bg-overlay, .section.project-section .row .column.is-link:hover .maf-bg-overlay {
  opacity: 1;
}
section.project-section .row .column.is-link:hover .maf-bg-overlay::before, .section.project-section .row .column.is-link:hover .maf-bg-overlay::before {
  height: calc(100% - 40px);
  width: calc(100% - 40px);
}
section.project-section .row .column.is-link:hover .maf-bg-overlay::after, .section.project-section .row .column.is-link:hover .maf-bg-overlay::after {
  height: calc(100% - 25px);
  width: calc(100% - 25px);
}
section.project-section .row .column.is-link .maf-content, .section.project-section .row .column.is-link .maf-content {
  border: 0;
  padding: 25px;
}
section.slideshow-section, .section.slideshow-section {
  padding: 37.5px 0;
}
@media only screen and (min-width: 576px) {
  section.slideshow-section, .section.slideshow-section {
    padding: 75px 0;
  }
}
section.slideshow-section .row .column .maf-content, .section.slideshow-section .row .column .maf-content {
  padding-top: 30px;
}
section.slideshow-section .row .column .maf-content h2, section.slideshow-section .row .column .maf-content .h2-style, .section.slideshow-section .row .column .maf-content h2, .section.slideshow-section .row .column .maf-content .h2-style {
  border-top: 0;
  color: rgb(99, 99, 99);
  max-width: 440px;
  text-transform: uppercase;
}
section.slideshow-section .row .column .maf-content hr, .section.slideshow-section .row .column .maf-content hr {
  max-width: 440px;
}
section.slideshow-section .row .footer .maf-content, .section.slideshow-section .row .footer .maf-content {
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
section.slideshow-section .row .footer .maf-content p, .section.slideshow-section .row .footer .maf-content p {
  margin: 5px 10px;
  width: auto;
}
section.slideshow-section .flickity-slideshow, section.slideshow-section .flickity-slideshow-edit, .section.slideshow-section .flickity-slideshow, .section.slideshow-section .flickity-slideshow-edit {
  margin-bottom: 30px;
  width: 90%;
}
section.slideshow-section .flickity-slideshow .ss-slide, section.slideshow-section .flickity-slideshow-edit .ss-slide, .section.slideshow-section .flickity-slideshow .ss-slide, .section.slideshow-section .flickity-slideshow-edit .ss-slide {
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  padding: 25px 20px 25px 40px;
  position: relative;
  quotes: "“" "”";
  width: 100%;
}
section.slideshow-section .flickity-slideshow .ss-slide::before, section.slideshow-section .flickity-slideshow-edit .ss-slide::before, .section.slideshow-section .flickity-slideshow .ss-slide::before, .section.slideshow-section .flickity-slideshow-edit .ss-slide::before {
  color: rgb(254, 217, 48);
  content: open-quote;
  display: none;
  font-size: 4em;
  font-weight: 600;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 0;
}
section.slideshow-section .flickity-slideshow .ss-slide > div, section.slideshow-section .flickity-slideshow-edit .ss-slide > div, .section.slideshow-section .flickity-slideshow .ss-slide > div, .section.slideshow-section .flickity-slideshow-edit .ss-slide > div {
  text-align: center;
}
section.slideshow-section .flickity-slideshow .ss-slide > div p, section.slideshow-section .flickity-slideshow-edit .ss-slide > div p, .section.slideshow-section .flickity-slideshow .ss-slide > div p, .section.slideshow-section .flickity-slideshow-edit .ss-slide > div p {
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  line-height: 1.6;
  margin-right: auto;
  margin-left: auto;
  max-width: 920px;
}
section.slideshow-section .flickity-slideshow .ss-slide > div p:last-child, section.slideshow-section .flickity-slideshow-edit .ss-slide > div p:last-child, .section.slideshow-section .flickity-slideshow .ss-slide > div p:last-child, .section.slideshow-section .flickity-slideshow-edit .ss-slide > div p:last-child {
  font-style: italic;
}
section.slideshow-section .flickity-slideshow .flickity-page-dots .dot, section.slideshow-section .flickity-slideshow-edit .flickity-page-dots .dot, .section.slideshow-section .flickity-slideshow .flickity-page-dots .dot, .section.slideshow-section .flickity-slideshow-edit .flickity-page-dots .dot {
  border-color: transparent;
  background-image: linear-gradient(to bottom, #ababab, #c2c2c2);
}
section.slideshow-section .flickity-slideshow .flickity-page-dots .dot::before, section.slideshow-section .flickity-slideshow-edit .flickity-page-dots .dot::before, .section.slideshow-section .flickity-slideshow .flickity-page-dots .dot::before, .section.slideshow-section .flickity-slideshow-edit .flickity-page-dots .dot::before {
  background-color: #d7d7d7;
}
section.slideshow-section .flickity-slideshow .flickity-page-dots .dot.is-selected::before, section.slideshow-section .flickity-slideshow-edit .flickity-page-dots .dot.is-selected::before, .section.slideshow-section .flickity-slideshow .flickity-page-dots .dot.is-selected::before, .section.slideshow-section .flickity-slideshow-edit .flickity-page-dots .dot.is-selected::before {
  height: 60%;
  width: 60%;
}
section.slideshow-section[class*=bg-], .section.slideshow-section[class*=bg-] {
  padding-bottom: 75px;
}
section.slideshow-section[class*=bg-] .row, .section.slideshow-section[class*=bg-] .row {
  margin-bottom: 0;
}
section.simple-gallery figcaption, .section.simple-gallery figcaption {
  display: none;
}
section.simple-gallery a.button.orange:hover, .section.simple-gallery a.button.orange:hover {
  border-color: rgb(236, 253, 255);
}
section.simple-gallery .row .column.maf-col-1, .section.simple-gallery .row .column.maf-col-1 {
  padding-top: 37.5px;
  padding-bottom: 37.5px;
}
section.simple-gallery .row .column.maf-col-1 .is-simple-gallery, .section.simple-gallery .row .column.maf-col-1 .is-simple-gallery {
  max-width: 1280px;
}
section.page-content-section .is-simple-gallery, .section.page-content-section .is-simple-gallery {
  margin-bottom: 20px;
}
section.page-content-section .is-simple-gallery figure, .section.page-content-section .is-simple-gallery figure {
  padding: 0 3px 0 0;
}
section.page-content-section .is-simple-gallery figure figcaption, .section.page-content-section .is-simple-gallery figure figcaption {
  display: none;
}
section.page-content-section #contact-form, .section.page-content-section #contact-form {
  margin-bottom: 30px;
}
section.page-content-section .row, .section.page-content-section .row {
  max-width: 1000px;
  background-color: rgb(236, 253, 255);
  margin-bottom: 20px;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  section.page-content-section .row, .section.page-content-section .row {
    flex-direction: row;
  }
}
section.page-content-section .row .column .maf-content p img, .section.page-content-section .row .column .maf-content p img {
  margin-top: 20px;
  margin-bottom: 20px;
}
section.page-content-section .row .column.maf-col-1, .section.page-content-section .row .column.maf-col-1 {
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding-bottom: 100px;
}
section.page-content-section .row .column.maf-col-1 .maf-content .img, .section.page-content-section .row .column.maf-col-1 .maf-content .img {
  min-width: 100%;
}
section.page-content-section .row .column.maf-col-2, .section.page-content-section .row .column.maf-col-2 {
  align-items: flex-end;
  width: 100%;
  padding-left: 0px;
}
@media only screen and (min-width: 768px) {
  section.page-content-section .row .column.maf-col-2, .section.page-content-section .row .column.maf-col-2 {
    width: 33.333%;
  }
}
section.page-content-section .row .column.maf-col-2 .maf-content, .section.page-content-section .row .column.maf-col-2 .maf-content {
  padding: 0 50px 0 0;
}
section.page-content-section div.portal, .section.page-content-section div.portal {
  margin: 0 0 30px 0;
  padding: 0;
  width: 100%;
}
section.page-content-section div.portal article.card, section.page-content-section div.portal div.card, .section.page-content-section div.portal article.card, .section.page-content-section div.portal div.card {
  margin: 0;
  padding: 0;
  width: 50%;
}
@media only screen and (min-width: 768px) {
  section.page-content-section div.portal article.card, section.page-content-section div.portal div.card, .section.page-content-section div.portal article.card, .section.page-content-section div.portal div.card {
    width: 100%;
  }
}
section.page-content-section div.portal article.card .portal-item, section.page-content-section div.portal div.card .portal-item, .section.page-content-section div.portal article.card .portal-item, .section.page-content-section div.portal div.card .portal-item {
  border-radius: 0;
  max-width: none;
}
section.page-content-section div.portal article.card .portal-item .portal-content, section.page-content-section div.portal div.card .portal-item .portal-content, .section.page-content-section div.portal article.card .portal-item .portal-content, .section.page-content-section div.portal div.card .portal-item .portal-content {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  section.page-content-section div.portal article.card .portal-item .portal-content, section.page-content-section div.portal div.card .portal-item .portal-content, .section.page-content-section div.portal article.card .portal-item .portal-content, .section.page-content-section div.portal div.card .portal-item .portal-content {
    flex-direction: column;
  }
}
section.page-content-section div.portal article.card .portal-item .portal-content .info, section.page-content-section div.portal div.card .portal-item .portal-content .info, .section.page-content-section div.portal article.card .portal-item .portal-content .info, .section.page-content-section div.portal div.card .portal-item .portal-content .info {
  background-color: rgb(254, 217, 48);
  color: white;
  padding: 0;
  position: relative;
}
section.page-content-section div.portal article.card .portal-item .portal-content .info::after, section.page-content-section div.portal div.card .portal-item .portal-content .info::after, .section.page-content-section div.portal article.card .portal-item .portal-content .info::after, .section.page-content-section div.portal div.card .portal-item .portal-content .info::after {
  content: "";
  display: table;
  padding-bottom: 100%;
}
section.page-content-section div.portal article.card .portal-item .portal-content .info .info-i, section.page-content-section div.portal div.card .portal-item .portal-content .info .info-i, .section.page-content-section div.portal article.card .portal-item .portal-content .info .info-i, .section.page-content-section div.portal div.card .portal-item .portal-content .info .info-i {
  align-items: center;
  display: flex;
  height: 100%;
  flex-direction: column-reverse;
  justify-content: center;
  padding: 10px;
  position: absolute;
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 100%;
}
section.page-content-section div.portal article.card .portal-item .portal-content .title, section.page-content-section div.portal div.card .portal-item .portal-content .title, .section.page-content-section div.portal article.card .portal-item .portal-content .title, .section.page-content-section div.portal div.card .portal-item .portal-content .title {
  font-size: 2.4rem;
  line-height: 1;
}
section.page-content-section div.portal article.card .portal-item .portal-content .desc p, section.page-content-section div.portal div.card .portal-item .portal-content .desc p, .section.page-content-section div.portal article.card .portal-item .portal-content .desc p, .section.page-content-section div.portal div.card .portal-item .portal-content .desc p {
  margin: 0;
}
section.page-content-section div.portal article.card .portal-item:hover .portal-content .info .info-i, section.page-content-section div.portal div.card .portal-item:hover .portal-content .info .info-i, .section.page-content-section div.portal article.card .portal-item:hover .portal-content .info .info-i, .section.page-content-section div.portal div.card .portal-item:hover .portal-content .info .info-i {
  transform: translateY(10px);
}
@media only screen and (min-width: 768px) {
  section.page-content-section div.portal article.card .portal-item:hover .portal-content .info .info-i, section.page-content-section div.portal div.card .portal-item:hover .portal-content .info .info-i, .section.page-content-section div.portal article.card .portal-item:hover .portal-content .info .info-i, .section.page-content-section div.portal div.card .portal-item:hover .portal-content .info .info-i {
    transform: translateY(-10px);
  }
}
section.page-content-section div.portal article.card:nth-of-type(even) .portal-item .portal-content, section.page-content-section div.portal div.card:nth-of-type(even) .portal-item .portal-content, .section.page-content-section div.portal article.card:nth-of-type(even) .portal-item .portal-content, .section.page-content-section div.portal div.card:nth-of-type(even) .portal-item .portal-content {
  flex-direction: column;
}
section.page-content-section div.portal article.card:nth-of-type(even) .portal-item .portal-content .info, section.page-content-section div.portal div.card:nth-of-type(even) .portal-item .portal-content .info, .section.page-content-section div.portal article.card:nth-of-type(even) .portal-item .portal-content .info, .section.page-content-section div.portal div.card:nth-of-type(even) .portal-item .portal-content .info {
  background-color: rgb(233, 136, 199);
}
section.page-content-section div.portal article.card:nth-of-type(even) .portal-item:hover .portal-content .info .info-i, section.page-content-section div.portal div.card:nth-of-type(even) .portal-item:hover .portal-content .info .info-i, .section.page-content-section div.portal article.card:nth-of-type(even) .portal-item:hover .portal-content .info .info-i, .section.page-content-section div.portal div.card:nth-of-type(even) .portal-item:hover .portal-content .info .info-i {
  transform: translateY(-10px);
}
section.booking-form .column, .section.booking-form .column {
  text-align: left;
}
section.booking-form h2, .section.booking-form h2 {
  font-size: 2.2rem;
  margin: 50px 0 28px 0;
}
section.booking-form p, .section.booking-form p {
  font-size: 1.8rem;
}
section.booking-form p.close, .section.booking-form p.close {
  margin: 0 0 5px 0;
}
section.booking-form form textarea, .section.booking-form form textarea {
  height: 180px;
}
section.booking-form table, .section.booking-form table {
  margin-bottom: 30px;
}
section.booking-form table tr td, .section.booking-form table tr td {
  font-size: 1.6rem;
}
section.booking-form table tr td select, .section.booking-form table tr td select {
  margin: 0;
}
section.booking-form table tr:nth-child(odd), .section.booking-form table tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.3);
}
section.booking-form table tr:first-child, .section.booking-form table tr:first-child {
  background-color: rgb(254, 217, 48);
  font-weight: bold;
  padding-bottom: 8px;
}
section.social-section, .section.social-section {
  padding: 0;
}
section.social-section .header .maf-content, .section.social-section .header .maf-content {
  align-items: center;
  text-align: center;
}
section.social-section .row .column .maf-content, .section.social-section .row .column .maf-content {
  align-items: flex-start;
  text-align: left;
}
section.social-section .row .column .maf-content p.label, .section.social-section .row .column .maf-content p.label {
  font-family: "Quicksand", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  border: 0;
  color: rgb(74, 40, 113);
  padding: 0;
}
section.social-section .row .column.maf-col-1, .section.social-section .row .column.maf-col-1 {
  padding-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  section.social-section .row .column.maf-col-1, .section.social-section .row .column.maf-col-1 {
    padding-bottom: 75px;
  }
}
@media only screen and (min-width: 1024px) {
  section.social-section .row .column.maf-col-2 .maf-content, .section.social-section .row .column.maf-col-2 .maf-content {
    padding-left: 0;
  }
}
section.projects .header, .section.projects .header {
  padding-top: 0;
  padding-bottom: 100px;
}
section.projects .header .maf-content, .section.projects .header .maf-content {
  padding-top: 100px;
  position: relative;
}
section.projects .header .maf-content::before, .section.projects .header .maf-content::before {
  background-color: rgb(74, 40, 113);
  content: "";
  display: inline-block;
  height: 1px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: calc( 100% - 100px );
  position: absolute;
}
section.projects .row, .section.projects .row {
  margin-bottom: 100px;
}
section.projects .row::before, .section.projects .row::before {
  background-color: rgb(74, 40, 113);
  bottom: 0;
  content: "";
  display: inline-block;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: calc( 100% - 200px );
  position: absolute;
}
section.projects .row .column.quarter, .section.projects .row .column.quarter {
  max-width: 25%;
}
section.search-section .row .header .maf-content, .section.search-section .row .header .maf-content {
  padding-top: 30px;
}
section.search-section .row .column.whole, .section.search-section .row .column.whole {
  padding-top: 30px;
  text-align: left;
}
section.search-section .row .column.whole .maf-content h2, .section.search-section .row .column.whole .maf-content h2 {
  font-size: 2.4rem;
}
section.search-section .row .column.whole .maf-content ul, .section.search-section .row .column.whole .maf-content ul {
  list-style-type: none;
  padding: 0;
}
section.search-section .row .column.whole .maf-content ul li, .section.search-section .row .column.whole .maf-content ul li {
  padding: 7px 10px 3px 10px;
}
section.search-section .row .column.whole .maf-content ul li::before, .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), .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, .section.search-section .row .column.whole .maf-content p.label {
  color: rgb(74, 40, 113);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  section.search-section .row .column.whole .maf-content p.label, .section.search-section .row .column.whole .maf-content p.label {
    font-size: 2rem;
  }
}
section.search-section .row .column.whole .maf-content.results, .section.search-section .row .column.whole .maf-content.results {
  align-self: flex-start;
  margin-bottom: 20px;
}
section.search-section .label, .section.search-section .label {
  margin-bottom: 10px;
}
section[class*=portal-].portal-section div.cardbox article.card, section[class*=portal-].portal-section div.cardbox div.card, .section[class*=portal-].portal-section div.cardbox article.card, .section[class*=portal-].portal-section div.cardbox div.card {
  width: 100%;
}
@media only screen and (min-width: 960px) {
  section[class*=portal-].portal-section div.cardbox article.card, section[class*=portal-].portal-section div.cardbox div.card, .section[class*=portal-].portal-section div.cardbox article.card, .section[class*=portal-].portal-section div.cardbox div.card {
    width: 50%;
  }
}
@media only screen and (min-width: 1366px) {
  section[class*=portal-].portal-section div.cardbox article.card, section[class*=portal-].portal-section div.cardbox div.card, .section[class*=portal-].portal-section div.cardbox article.card, .section[class*=portal-].portal-section div.cardbox div.card {
    width: 33.333%;
  }
}
section[class*=portal-].portal-section .header .maf-content, .section[class*=portal-].portal-section .header .maf-content {
  max-width: none;
}
section[class*=portal-].portal-section .row, .section[class*=portal-].portal-section .row {
  padding: 0;
}
section[class*=portal-].portal-section .row .column, .section[class*=portal-].portal-section .row .column {
  padding: 0;
}
section[class*=portal-].portal-section.alt-1 div.portal article.card .portal-item .portal-content .desc p, section[class*=portal-].portal-section.alt-1 div.portal div.card .portal-item .portal-content .desc p, .section[class*=portal-].portal-section.alt-1 div.portal article.card .portal-item .portal-content .desc p, .section[class*=portal-].portal-section.alt-1 div.portal div.card .portal-item .portal-content .desc p {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: left;
}
section[class*=patchwork-] *[class*=maf-col-], .section[class*=patchwork-] *[class*=maf-col-] {
  justify-content: center;
  text-align: left;
}
section[class*=patchwork-].patchwork-3col-1 .maf-col-1, section[class*=patchwork-].patchwork-3col-1 .maf-col-2, .section[class*=patchwork-].patchwork-3col-1 .maf-col-1, .section[class*=patchwork-].patchwork-3col-1 .maf-col-2 {
  min-height: 50vw;
}
@media only screen and (min-width: 1024px) {
  section[class*=patchwork-].patchwork-3col-1 .maf-col-1, section[class*=patchwork-].patchwork-3col-1 .maf-col-2, .section[class*=patchwork-].patchwork-3col-1 .maf-col-1, .section[class*=patchwork-].patchwork-3col-1 .maf-col-2 {
    min-height: 25vw;
  }
}
section[class*=patchwork-].patchwork-3col-1 .maf-col-3, .section[class*=patchwork-].patchwork-3col-1 .maf-col-3 {
  min-height: 100vw;
}
@media only screen and (min-width: 1024px) {
  section[class*=patchwork-].patchwork-3col-1 .maf-col-3, .section[class*=patchwork-].patchwork-3col-1 .maf-col-3 {
    min-height: 50vw;
  }
}
section[class*=patchwork-].patchwork-3col-1 .maf-col-3.bg-2, .section[class*=patchwork-].patchwork-3col-1 .maf-col-3.bg-2 {
  justify-content: flex-start;
  min-height: 0;
}
@media only screen and (min-width: 1024px) {
  section[class*=patchwork-].patchwork-3col-1 .maf-col-3.bg-2, .section[class*=patchwork-].patchwork-3col-1 .maf-col-3.bg-2 {
    min-height: 50vw;
  }
}
section[class*=patchwork-].patchwork-3col-2 .maf-col-1 .maf-content, .section[class*=patchwork-].patchwork-3col-2 .maf-col-1 .maf-content {
  align-self: flex-end;
  max-width: 92%;
}
@media only screen and (min-width: 1280px) {
  section[class*=patchwork-].patchwork-3col-2 .maf-col-1 .maf-content, .section[class*=patchwork-].patchwork-3col-2 .maf-col-1 .maf-content {
    max-width: 84%;
  }
}
section[class*=patchwork-].patchwork-3col-2 .maf-col-2, section[class*=patchwork-].patchwork-3col-2 .maf-col-3, .section[class*=patchwork-].patchwork-3col-2 .maf-col-2, .section[class*=patchwork-].patchwork-3col-2 .maf-col-3 {
  justify-content: flex-end;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 50vw;
}
@media only screen and (min-width: 1024px) {
  section[class*=patchwork-].patchwork-3col-2 .maf-col-2, section[class*=patchwork-].patchwork-3col-2 .maf-col-3, .section[class*=patchwork-].patchwork-3col-2 .maf-col-2, .section[class*=patchwork-].patchwork-3col-2 .maf-col-3 {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 0;
  }
}
section[class*=patchwork-].patchwork-3col-2 .maf-col-2 .button, section[class*=patchwork-].patchwork-3col-2 .maf-col-3 .button, .section[class*=patchwork-].patchwork-3col-2 .maf-col-2 .button, .section[class*=patchwork-].patchwork-3col-2 .maf-col-3 .button {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
section[class*=patchwork-].patchwork-3col-2 .maf-col-2 .button:hover, section[class*=patchwork-].patchwork-3col-2 .maf-col-3 .button:hover, .section[class*=patchwork-].patchwork-3col-2 .maf-col-2 .button:hover, .section[class*=patchwork-].patchwork-3col-2 .maf-col-3 .button:hover {
  background-color: rgba(255, 255, 255, 0.5) !important;
}
section[class*=patchwork-].patchwork-4col-1 .maf-col-1, section[class*=patchwork-].patchwork-4col-1 .maf-col-2, .section[class*=patchwork-].patchwork-4col-1 .maf-col-1, .section[class*=patchwork-].patchwork-4col-1 .maf-col-2 {
  min-height: 100vw;
  padding: 0 100px;
}
@media only screen and (min-width: 576px) {
  section[class*=patchwork-].patchwork-4col-1 .maf-col-1, section[class*=patchwork-].patchwork-4col-1 .maf-col-2, .section[class*=patchwork-].patchwork-4col-1 .maf-col-1, .section[class*=patchwork-].patchwork-4col-1 .maf-col-2 {
    min-height: 50vw;
  }
}
@media only screen and (min-width: 1024px) {
  section[class*=patchwork-].patchwork-4col-1 .maf-col-1, section[class*=patchwork-].patchwork-4col-1 .maf-col-2, .section[class*=patchwork-].patchwork-4col-1 .maf-col-1, .section[class*=patchwork-].patchwork-4col-1 .maf-col-2 {
    min-height: 25vw;
    padding: 50px;
  }
}
section[class*=patchwork-].patchwork-4col-1 .maf-col-3, .section[class*=patchwork-].patchwork-4col-1 .maf-col-3 {
  min-height: 50vw;
}
@media only screen and (min-width: 1024px) {
  section[class*=patchwork-].patchwork-4col-1 .maf-col-3, .section[class*=patchwork-].patchwork-4col-1 .maf-col-3 {
    min-height: 25vw;
  }
}
section[class*=patchwork-].patchwork-4col-1 .maf-col-4, .section[class*=patchwork-].patchwork-4col-1 .maf-col-4 {
  min-height: 100vw;
}
@media only screen and (min-width: 1024px) {
  section[class*=patchwork-].patchwork-4col-1 .maf-col-4, .section[class*=patchwork-].patchwork-4col-1 .maf-col-4 {
    min-height: 50vw;
  }
}
section[class*=patchwork-].patchwork-4col-1 .maf-col-4.bg-2, .section[class*=patchwork-].patchwork-4col-1 .maf-col-4.bg-2 {
  justify-content: flex-start;
  min-height: 0;
}
@media only screen and (min-width: 1024px) {
  section[class*=patchwork-].patchwork-4col-1 .maf-col-4.bg-2, .section[class*=patchwork-].patchwork-4col-1 .maf-col-4.bg-2 {
    min-height: 50vw;
  }
}
section[class*=patchwork-].patchwork-4col-1 .row.maf-row-2, .section[class*=patchwork-].patchwork-4col-1 .row.maf-row-2 {
  flex-direction: column;
  flex-wrap: nowrap;
}
@media only screen and (min-width: 576px) {
  section[class*=patchwork-].patchwork-4col-1 .row.maf-row-2, .section[class*=patchwork-].patchwork-4col-1 .row.maf-row-2 {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
section[class*=patchwork-].patchwork-4col-2 .row .column, .section[class*=patchwork-].patchwork-4col-2 .row .column {
  padding: 0;
}
section[class*=patchwork-].patchwork-4col-2 .row .column .maf-content, .section[class*=patchwork-].patchwork-4col-2 .row .column .maf-content {
  font-size: 1.4rem;
  justify-content: center;
  padding: 100px;
  text-align: center;
}
section[class*=patchwork-].patchwork-4col-2 .row .column .maf-content p, .section[class*=patchwork-].patchwork-4col-2 .row .column .maf-content p {
  max-width: 240px;
}
section[class*=patchwork-].patchwork-4col-2 .row .column.maf-col-1, .section[class*=patchwork-].patchwork-4col-2 .row .column.maf-col-1 {
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 98vw;
}
@media only screen and (min-width: 1024px) {
  section[class*=patchwork-].patchwork-4col-2 .row .column.maf-col-1, .section[class*=patchwork-].patchwork-4col-2 .row .column.maf-col-1 {
    min-height: 800px;
  }
}
section[class*=patchwork-].patchwork-4col-2 .row .column.maf-col-1 .maf-content, .section[class*=patchwork-].patchwork-4col-2 .row .column.maf-col-1 .maf-content {
  background-color: white;
  max-width: 400px;
  min-height: 400px;
}
section[class*=patchwork-].patchwork-4col-2 .row .column.maf-col-2, .section[class*=patchwork-].patchwork-4col-2 .row .column.maf-col-2 {
  min-height: 400px;
}
section[class*=patchwork-].patchwork-4col-2 .row .column.maf-col-3, section[class*=patchwork-].patchwork-4col-2 .row .column .maf-col-4, .section[class*=patchwork-].patchwork-4col-2 .row .column.maf-col-3, .section[class*=patchwork-].patchwork-4col-2 .row .column .maf-col-4 {
  min-height: 400px;
}
section[class*=patchwork-].patchwork-4col-2 .row.maf-row-1, .section[class*=patchwork-].patchwork-4col-2 .row.maf-row-1 {
  margin-bottom: 30px;
}
section[class*=patchwork-].patchwork-4col-2 .row.maf-row-3, .section[class*=patchwork-].patchwork-4col-2 .row.maf-row-3 {
  flex-direction: column;
  flex-wrap: nowrap;
}
@media only screen and (min-width: 576px) {
  section[class*=patchwork-].patchwork-4col-2 .row.maf-row-3, .section[class*=patchwork-].patchwork-4col-2 .row.maf-row-3 {
    flex-direction: row;
  }
}
section[class*=patchwork-].alt-1 .row .column.maf-col-1 .maf-content, .section[class*=patchwork-].alt-1 .row .column.maf-col-1 .maf-content {
  background-color: transparent;
}
section[class*=patchwork-].alt-1 .row .column.maf-col-3 .maf-content, .section[class*=patchwork-].alt-1 .row .column.maf-col-3 .maf-content {
  background-color: white;
}
section.mailchimp .field-shift, .section.mailchimp .field-shift {
  left: -9999px;
  position: absolute;
}
section.mailchimp label, .section.mailchimp label {
  font-weight: 500;
}
section.mailchimp .checkbox-group, .section.mailchimp .checkbox-group {
  list-style-type: none;
  padding: 0;
}
section.mailchimp .radio-group label, .section.mailchimp .radio-group label {
  font-weight: 400;
}
section.mailchimp .radio-group label input, .section.mailchimp .radio-group label input {
  margin-right: 10px;
}
section.mailchimp .row, .section.mailchimp .row {
  padding: 0 100px;
}
section.mailchimp .row .column, .section.mailchimp .row .column {
  padding-top: 0;
  text-align: left;
}
section.contact-section, .section.contact-section {
  margin-top: 20px;
  z-index: 1;
}
section.contact-section h1, section.contact-section .h1-style, section.contact-section h2, section.contact-section .h2-style, section.contact-section h3, section.contact-section .h3-style, section.contact-section h4, section.contact-section .h4-style, section.contact-section h5, section.contact-section .h5-style, section.contact-section h6, section.contact-section .h6-style, .section.contact-section h1, .section.contact-section .h1-style, .section.contact-section h2, .section.contact-section .h2-style, .section.contact-section h3, .section.contact-section .h3-style, .section.contact-section h4, .section.contact-section .h4-style, .section.contact-section h5, .section.contact-section .h5-style, .section.contact-section h6, .section.contact-section .h6-style {
  color: rgb(74, 40, 113);
}
section.contact-section .social-icons, .section.contact-section .social-icons {
  font-size: 1.8rem;
  margin-top: 20px;
}
section.contact-section .social-icons a i, .section.contact-section .social-icons a i {
  background-color: rgb(254, 217, 48);
  border: 2px solid rgb(254, 217, 48);
  height: 35px;
  width: 35px;
}
section.contact-section .social-icons a i::before, .section.contact-section .social-icons a i::before {
  color: white;
}
section.contact-section .social-icons a i:hover, .section.contact-section .social-icons a i:hover {
  background-color: transparent;
}
section.contact-section .social-icons a i:hover::before, .section.contact-section .social-icons a i:hover::before {
  color: rgb(254, 217, 48);
}
section.contact-section #logo-contact, .section.contact-section #logo-contact {
  max-width: 350px;
}
section.contact-section .phone span, .section.contact-section .phone span {
  color: rgb(74, 40, 113);
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  width: 100%;
}
section.contact-section .phone span.atype, .section.contact-section .phone span.atype {
  color: rgb(99, 99, 99);
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
}
section.contact-section .phone strong, .section.contact-section .phone strong {
  color: rgb(74, 40, 113);
  font-weight: 500;
}
section.contact-section .is-map, .section.contact-section .is-map {
  min-height: 550px;
}
section.contact-section .header .maf-content, .section.contact-section .header .maf-content {
  align-items: flex-start;
  max-width: none;
  padding-top: 0;
  text-align: left;
}
section.contact-section .header .maf-content p, .section.contact-section .header .maf-content p {
  max-width: 920px;
}
section.contact-section .row .column, .section.contact-section .row .column {
  background-color: rgb(246, 240, 255);
}
section.contact-section .row .column .maf-content, .section.contact-section .row .column .maf-content {
  align-items: flex-start;
}
section.contact-section .row .column.maf-col-1, .section.contact-section .row .column.maf-col-1 {
  align-items: flex-start;
}
section.contact-section .row .column.maf-col-1 .maf-content, .section.contact-section .row .column.maf-col-1 .maf-content {
  max-width: 765px;
}
section.contact-section .row .column.maf-col-1 .maf-content form, .section.contact-section .row .column.maf-col-1 .maf-content form {
  max-width: none;
}
section.contact-section .row .column.maf-col-1 .maf-content form .maf-input.half, .section.contact-section .row .column.maf-col-1 .maf-content form .maf-input.half {
  margin-bottom: 30px;
}
section.contact-section .row .column.maf-col-1 .maf-content form .maf-input.actions, .section.contact-section .row .column.maf-col-1 .maf-content form .maf-input.actions {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: right;
}
section.contact-section .row .column.maf-col-1 .maf-content form .maf-input.actions button, .section.contact-section .row .column.maf-col-1 .maf-content form .maf-input.actions button {
  display: inline-block;
  max-width: 440px;
  margin-top: auto;
  margin-bottom: auto;
}
section.contact-section .row .column.maf-col-1 .maf-content form .maf-input.cap-con, .section.contact-section .row .column.maf-col-1 .maf-content form .maf-input.cap-con {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
section.contact-section .row .column.maf-col-1 .maf-content form .maf-input.cap-con .g-recap-con, .section.contact-section .row .column.maf-col-1 .maf-content form .maf-input.cap-con .g-recap-con {
  margin: 0;
}
section.nap-section, .section.nap-section {
  margin-top: 20px;
}
section.nap-section p i, .section.nap-section p i {
  margin-right: 8px;
  vertical-align: middle;
}
section.nap-section p.name, .section.nap-section p.name {
  font-weight: 500;
  margin: 0;
}
section.nap-section p.phone, .section.nap-section p.phone {
  margin: 0;
}
section.nap-section p.phone span, .section.nap-section p.phone span {
  display: inline-block;
  font-weight: 500;
  min-width: 40px;
}
section.nap-section p.msg, .section.nap-section p.msg {
  font-weight: 400;
  font-style: italic;
  max-width: 300px;
}
section.nap-section .row .column .maf-content, .section.nap-section .row .column .maf-content {
  align-items: flex-start;
}
section.nap-section .row .column.maf-col-1 p, .section.nap-section .row .column.maf-col-1 p {
  max-width: 500px;
}
section.nap-section .row.map, .section.nap-section .row.map {
  max-width: none;
}
section.nap-section .row.map .column, .section.nap-section .row.map .column {
  max-width: none;
  padding: 0;
}
section.nap-section .row.map .column .maf-content, .section.nap-section .row.map .column .maf-content {
  max-width: none;
  padding: 0;
}
section.nap-section .row.map .column .maf-content .is-map, .section.nap-section .row.map .column .maf-content .is-map {
  min-height: 100vw;
}
@media only screen and (min-width: 1024px) {
  section.nap-section .row.map .column .maf-content .is-map, .section.nap-section .row.map .column .maf-content .is-map {
    min-height: 33vw;
  }
}
section.map-section, .section.map-section {
  margin-bottom: 0;
}
section.map-section address, .section.map-section address {
  font-family: "Quicksand", sans-serif;
}
section.map-section p.phone, .section.map-section p.phone {
  font-family: "Quicksand", sans-serif;
}
section.map-section p.phone span, .section.map-section p.phone span {
  display: inline-block;
  min-width: 40px;
}
section.map-section p.phone a, .section.map-section p.phone a {
  color: rgb(74, 40, 113);
  text-decoration: none;
}
section.map-section .row .column .maf-content .is-map, .section.map-section .row .column .maf-content .is-map {
  border: 16px solid rgb(254, 217, 48);
  overflow: hidden;
}
section.map-section .row .column .maf-content .is-map::before, .section.map-section .row .column .maf-content .is-map::before {
  content: "";
  display: table;
  padding-bottom: 100%;
  width: 100%;
}
section.place-map-section .is-map, .section.place-map-section .is-map {
  height: 100%;
  min-height: 500px;
  max-width: 92%;
}
@media only screen and (min-width: 1280px) {
  section.place-map-section .is-map, .section.place-map-section .is-map {
    max-width: 84%;
  }
}
section.place-map-section .row.nested, .section.place-map-section .row.nested {
  margin: 0 0 0 auto;
  max-width: 92%;
}
@media only screen and (min-width: 576px) {
  section.place-map-section .row.nested, .section.place-map-section .row.nested {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1280px) {
  section.place-map-section .row.nested, .section.place-map-section .row.nested {
    max-width: 84%;
  }
}
section.place-map-section .row.nested .column .maf-content, .section.place-map-section .row.nested .column .maf-content {
  max-width: none;
}
section.place-map-section .row.nested .column.maf-col-3, .section.place-map-section .row.nested .column.maf-col-3 {
  padding: 100px 50px 0 0;
}
section.place-map-section .row.nested .column.maf-col-3 .maf-content, .section.place-map-section .row.nested .column.maf-col-3 .maf-content {
  align-self: flex-end;
}
section.place-map-section .row.nested .column.maf-col-4, .section.place-map-section .row.nested .column.maf-col-4 {
  padding: 100px 0 0 0;
}
@media only screen and (min-width: 576px) {
  section.place-map-section .row.nested .column.maf-col-4, .section.place-map-section .row.nested .column.maf-col-4 {
    padding: 100px 0 0 50px;
  }
}
section.product-static .intro .button, .section.product-static .intro .button {
  background-color: rgb(74, 40, 113);
  color: white;
}
section.product-static .intro .button:hover, .section.product-static .intro .button:hover {
  background-color: transparent;
  color: rgb(74, 40, 113);
}
section.product-static .toggle-click, .section.product-static .toggle-click {
  padding-left: 30px;
}
section.product-static .toggle-click:hover, .section.product-static .toggle-click:hover {
  background-color: rgb(233, 136, 199);
}
section.product-static .is-toggle-group, .section.product-static .is-toggle-group {
  margin-bottom: 30px;
}
section.product-static .row .column .maf-content, .section.product-static .row .column .maf-content {
  margin-bottom: 30px;
}
section.product-static .row .column .title > *, .section.product-static .row .column .title > * {
  margin: 0;
}
section.product-static .row .column .title p, .section.product-static .row .column .title p {
  font-size: 2.5rem;
}
section.product-static .row .column.maf-col-2, .section.product-static .row .column.maf-col-2 {
  padding-top: 0;
}
@media only screen and (min-width: 1024px) {
  section.product-static .row .column.maf-col-2, .section.product-static .row .column.maf-col-2 {
    padding-top: 0;
  }
}
section.product-static .row .column.maf-col-2 .maf-content, .section.product-static .row .column.maf-col-2 .maf-content {
  flex-direction: row;
  flex-wrap: wrap;
}
section.product-static .row .column.maf-col-2 .maf-content [class*=maf-img-], .section.product-static .row .column.maf-col-2 .maf-content [class*=maf-img-] {
  margin-bottom: 20px;
}
section.product-static .row .column.maf-col-2 .maf-content .maf-img-2, section.product-static .row .column.maf-col-2 .maf-content .maf-img-3, .section.product-static .row .column.maf-col-2 .maf-content .maf-img-2, .section.product-static .row .column.maf-col-2 .maf-content .maf-img-3 {
  width: calc(50% - 10px);
  margin-right: 10px;
}
section.product-static .row .column.maf-col-2 .maf-content .maf-img-3, .section.product-static .row .column.maf-col-2 .maf-content .maf-img-3 {
  margin-right: 0;
  margin-left: 10px;
}
section.squeeze-download, .section.squeeze-download {
  padding: 50px 0;
}
section.squeeze-download .header, .section.squeeze-download .header {
  text-align: center;
}
section.squeeze-download .g-recap-con .g-recaptcha, .section.squeeze-download .g-recap-con .g-recaptcha {
  left: 50%;
  transform: translateX(-50%);
}
section.squeeze-download .row .column .maf-content, .section.squeeze-download .row .column .maf-content {
  max-width: 750px;
}
section.privacy-policy, .section.privacy-policy {
  font-size: 1.8rem;
}
section.privacy-policy h2, .section.privacy-policy h2 {
  font-size: 3rem;
  margin: 30px 0;
  text-transform: none;
}
section.privacy-policy p.page-lead, .section.privacy-policy p.page-lead {
  text-align: center;
  margin-bottom: 37.5px;
}
section.privacy-policy .row, .section.privacy-policy .row {
  max-width: 1000px;
}
section.privacy-policy .row .column, .section.privacy-policy .row .column {
  align-items: flex-start;
  text-align: left;
}
section.privacy-policy .row .column .maf-content, .section.privacy-policy .row .column .maf-content {
  align-items: flex-start;
  justify-content: flex-start;
}
section.account#login-s .row .column .maf-form, .section.account#login-s .row .column .maf-form {
  max-width: 400px;
}
section.account#login-menu-s .row, .section.account#login-menu-s .row {
  max-width: none;
}
section.account#login-menu-s .row .column, .section.account#login-menu-s .row .column {
  padding-top: 5px;
  padding-bottom: 10px;
}
section.account#login-menu-s .row .column .maf-content, .section.account#login-menu-s .row .column .maf-content {
  align-items: flex-end;
  flex-direction: row;
  justify-content: flex-end;
  max-width: none;
}
section.account#login-menu-s .row .column .maf-content .maf-form, .section.account#login-menu-s .row .column .maf-content .maf-form {
  display: inline-block;
  max-width: 400px;
  width: auto;
}
section.account#login-menu-s .row .column .maf-content button, section.account#login-menu-s .row .column .maf-content .button, .section.account#login-menu-s .row .column .maf-content button, .section.account#login-menu-s .row .column .maf-content .button {
  align-self: auto;
  background-color: rgb(233, 136, 199);
  border-color: rgb(233, 136, 199);
  color: white;
  margin-bottom: 0;
  margin-left: 10px;
  min-height: 0;
  padding: 3px 10px;
  width: auto;
}
section.account#login-menu-s + section::after, .section.account#login-menu-s + section::after {
  display: none;
}
section.account#login .row .column, .section.account#login .row .column {
  background-color: transparent;
}
section.account#login .row .column .maf-content, .section.account#login .row .column .maf-content {
  max-width: 906px;
}
section.account#login .row .column .maf-content p.page-lead, .section.account#login .row .column .maf-content p.page-lead {
  font-weight: 600;
  line-height: 1;
}
section.account#login .row .column .maf-content .maf-form, .section.account#login .row .column .maf-content .maf-form {
  padding-top: 50px;
}
section.account#login .row .column .maf-content .maf-form button, .section.account#login .row .column .maf-content .maf-form button {
  font-size: 2.8rem;
  font-weight: 400;
  margin-top: 50px;
}
section.account#register section, .section.account#register section {
  margin-bottom: 75px;
  overflow: visible;
  position: relative;
  z-index: 1;
}
section.account#register section::before, .section.account#register section::before {
  background-color: rgb(254, 217, 48);
  border-right: 20px solid white;
  border-left: 20px solid white;
  content: "";
  display: inline-block;
  height: 75px;
  left: 50%;
  max-width: calc(1600px - 40px);
  position: absolute;
  top: 100%;
  transform: translate(-50%, 0);
  width: calc(100% - 40px);
  z-index: -1;
}
section.account#register section > .maf-background, .section.account#register section > .maf-background {
  background-color: rgb(254, 217, 48);
}
section.account#register section .row, .section.account#register section .row {
  overflow: visible;
  position: relative;
}
section.account#register section .row::after, .section.account#register section .row::after {
  background-color: rgb(254, 217, 48);
  border: 24px solid white;
  box-shadow: none;
  content: "";
  display: inline-block;
  height: 120px;
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translate(-50%, -50%) rotateX(45deg) rotateZ(45deg);
  width: 120px;
}
section.account#register section .row .column, .section.account#register section .row .column {
  min-height: 150px;
  z-index: 2;
}
section.account#register section:last-child, .section.account#register section:last-child {
  margin-bottom: 0;
}
section.account#register section:last-child::before, .section.account#register section:last-child::before {
  display: none;
}
section.account#register section:last-child .row::after, .section.account#register section:last-child .row::after {
  display: none;
}
section.account#register section h1 span, section.account#register section h2 span, .section.account#register section h1 span, .section.account#register section h2 span {
  color: rgb(233, 136, 199);
}
section.account#register section h1 span a, section.account#register section h2 span a, .section.account#register section h1 span a, .section.account#register section h2 span a {
  color: rgb(233, 136, 199);
}
section.account#register section h2, .section.account#register section h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  text-align: left;
}
section.account#register section h2 span.ss, .section.account#register section h2 span.ss {
  font-size: 1.5rem;
}
section.account#register section ol, .section.account#register section ol {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin-left: 5px;
}
@media only screen and (min-width: 960px) {
  section.account#register section ol, .section.account#register section ol {
    align-items: center;
  }
}
section.account#register section ol li, .section.account#register section ol li {
  color: rgb(74, 40, 113);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  line-height: 1.1;
  text-align: left;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  section.account#register section ol li, .section.account#register section ol li {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 960px) {
  section.account#register section ol li, .section.account#register section ol li {
    width: auto;
  }
}
section.account#register section button, .section.account#register section button {
  margin-top: 50px;
}
section.account#register section .packages, .section.account#register section .packages {
  display: flex;
  flex-direction: column;
  margin-right: -10px;
  width: calc(100% + 10px);
}
@media only screen and (min-width: 768px) {
  section.account#register section .packages, .section.account#register section .packages {
    flex-direction: row;
  }
}
section.account#register section .packages .package, .section.account#register section .packages .package {
  border-bottom: 10px solid rgb(254, 217, 48);
  flex: 0 0 33.333%;
  text-align: left;
  padding: 20px 4.166%;
}
@media only screen and (min-width: 768px) {
  section.account#register section .packages .package, .section.account#register section .packages .package {
    border-right: 10px solid rgb(254, 217, 48);
    border-bottom: 0;
  }
}
section.account#register section .packages .package.gold, .section.account#register section .packages .package.gold {
  background-color: rgb(187, 142, 4);
}
section.account#register section .packages .package.silver, .section.account#register section .packages .package.silver {
  background-color: rgb(183, 183, 183);
}
section.account#register section .packages .package.bronze, .section.account#register section .packages .package.bronze {
  background-color: rgb(133, 101, 57);
}
section.account#register section .packages .package .radio, .section.account#register section .packages .package .radio {
  align-items: flex-start;
}
section.account#register section .packages .package .radio span, .section.account#register section .packages .package .radio span {
  font-size: 3rem;
}
section.account#register section .row .column .maf-content, .section.account#register section .row .column .maf-content {
  max-width: 906px;
}
section.account#register section .row .column .maf-content .form, .section.account#register section .row .column .maf-content .form {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  section.special-1 .header, .section.special-1 .header {
    height: 300px;
  }
}
section.special-1 .header .maf-content, .section.special-1 .header .maf-content {
  align-items: flex-start;
  filter: grayscale(100%);
  opacity: 0;
  max-width: none;
  text-align: left;
  transform: translateY(60px);
  transition: all 1200ms ease-out;
}
section.special-1 .header .maf-content h1, section.special-1 .header .maf-content .h1-style, section.special-1 .header .maf-content h2, section.special-1 .header .maf-content .h2-style, section.special-1 .header .maf-content h3, section.special-1 .header .maf-content .h3-style, section.special-1 .header .maf-content h4, section.special-1 .header .maf-content .h4-style, section.special-1 .header .maf-content h5, section.special-1 .header .maf-content .h5-style, section.special-1 .header .maf-content h6.h6-style, .section.special-1 .header .maf-content h1, .section.special-1 .header .maf-content .h1-style, .section.special-1 .header .maf-content h2, .section.special-1 .header .maf-content .h2-style, .section.special-1 .header .maf-content h3, .section.special-1 .header .maf-content .h3-style, .section.special-1 .header .maf-content h4, .section.special-1 .header .maf-content .h4-style, .section.special-1 .header .maf-content h5, .section.special-1 .header .maf-content .h5-style, .section.special-1 .header .maf-content h6.h6-style {
  max-width: 700px;
}
section.special-1 .header .maf-content p, .section.special-1 .header .maf-content p {
  font-size: 2.6rem;
}
section.special-1 .header .maf-content p.page-lead, .section.special-1 .header .maf-content p.page-lead {
  font-size: 2.2rem;
}
section.special-1 .header.anim .maf-content, .section.special-1 .header.anim .maf-content {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0);
}
section.special-1 .row .column, .section.special-1 .row .column {
  padding: 37.5px 25px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  text-align: left;
}
@media only screen and (min-width: 576px) {
  section.special-1 .row .column, .section.special-1 .row .column {
    padding: 75px 50px;
  }
}
section.special-1 .row .column > div, .section.special-1 .row .column > div {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: flex-start;
  margin: 20px 0;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  section.special-1 .row .column > div, .section.special-1 .row .column > div {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1290px) {
  section.special-1 .row .column > div, .section.special-1 .row .column > div {
    height: 300px;
    margin: 50px 0;
  }
}
@media only screen and (min-width: 576px) {
  section.special-1 .row .column > div:nth-of-type(even), .section.special-1 .row .column > div:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}
section.special-1 .row .column > div .img, .section.special-1 .row .column > div .img {
  display: inline-block;
  flex: 1 1 auto;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  section.special-1 .row .column > div .img, .section.special-1 .row .column > div .img {
    flex: 1 1 30%;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  section.special-1 .row .column > div .img, .section.special-1 .row .column > div .img {
    flex: 0 0 295px;
  }
}
section.special-1 .row .column > div .img img, .section.special-1 .row .column > div .img img {
  transform: scale(0);
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transform-origin: 50% 0;
  margin-bottom: 10px;
  max-width: 150px;
}
@media only screen and (min-width: 576px) {
  section.special-1 .row .column > div .img img, .section.special-1 .row .column > div .img img {
    margin-bottom: 0;
    max-width: 100%;
  }
}
section.special-1 .row .column > div .img p, .section.special-1 .row .column > div .img p {
  align-items: center;
  display: flex;
  font-size: 2.4rem;
  font-weight: 400;
  justify-content: center;
  line-height: 1;
  margin: 8px 0 0 0;
  min-height: 48px;
  opacity: 0;
  text-align: center;
  transition: opacity 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 175ms;
}
section.special-1 .row .column > div .maf-content, .section.special-1 .row .column > div .maf-content {
  align-items: flex-start;
  flex: 1 1 auto;
  justify-content: center;
  max-width: 420px;
  padding: 0 100px;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  section.special-1 .row .column > div .maf-content, .section.special-1 .row .column > div .maf-content {
    flex: 0 0 420px;
    text-align: left;
  }
}
section.special-1 .row .column > div .maf-content p, .section.special-1 .row .column > div .maf-content p {
  margin-bottom: 0;
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 700ms;
}
section.special-1 .row .column > div .maf-content p:first-child, .section.special-1 .row .column > div .maf-content p:first-child {
  color: rgb(254, 217, 48);
  font-size: 3rem;
  font-weight: 400;
  transition: opacity 700ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 350ms;
}
section.special-1 .row .column > div.anim .img img, .section.special-1 .row .column > div.anim .img img {
  transform: scale(1);
}
section.special-1 .row .column > div.anim .maf-content p, .section.special-1 .row .column > div.anim .maf-content p {
  opacity: 1;
}
section.special-1 .row .column > div#maf-con-6, .section.special-1 .row .column > div#maf-con-6 {
  align-items: flex-start;
  display: none;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 160px;
}
@media only screen and (min-width: 1290px) {
  section.special-1 .row .column > div#maf-con-6, .section.special-1 .row .column > div#maf-con-6 {
    display: flex;
  }
}
section.special-1 .row .column > div#maf-con-6 .img, .section.special-1 .row .column > div#maf-con-6 .img {
  flex: 0 1 185px;
  width: auto;
}
section.special-1 .row .column > div#maf-con-6 .img.anim img, .section.special-1 .row .column > div#maf-con-6 .img.anim img {
  transform: scale(1);
}
section.special-1 .row .column > div#maf-con-6 .img.anim p, .section.special-1 .row .column > div#maf-con-6 .img.anim p {
  opacity: 1;
}
section.special-1 .row .column > svg, .section.special-1 .row .column > svg {
  display: none;
  z-index: 0;
}
@media only screen and (min-width: 1290px) {
  section.special-1 .row .column > svg, .section.special-1 .row .column > svg {
    display: inline-block;
  }
}
section.special-1 .row .column > svg#line-1, .section.special-1 .row .column > svg#line-1 {
  height: 108px;
  position: absolute;
  top: 355px;
  width: 965px;
}
section.special-1 .row .column > svg#line-2, .section.special-1 .row .column > svg#line-2 {
  height: 112px;
  position: absolute;
  top: 753px;
  width: 975px;
}
section.special-1 .row .column > svg#line-3, .section.special-1 .row .column > svg#line-3 {
  height: 122px;
  position: absolute;
  top: 1149px;
  width: 1010px;
}
section.special-1 .row .column > svg#line-4, .section.special-1 .row .column > svg#line-4 {
  height: 130px;
  position: absolute;
  top: 1543px;
  width: 1040px;
}
section.special-1 .row .column > svg#line-5, .section.special-1 .row .column > svg#line-5 {
  height: 234px;
  position: absolute;
  top: 1940px;
  width: 1065px;
}
section.special-1.edit .header, .section.special-1.edit .header {
  height: 300px;
}
section.special-1.edit .header .maf-content, .section.special-1.edit .header .maf-content {
  filter: none;
  opacity: 1;
  transform: none;
}
section.special-1.edit .row .column > div .img img, .section.special-1.edit .row .column > div .img img {
  transform: none;
}
section.special-1.edit .row .column > div .img p, .section.special-1.edit .row .column > div .img p {
  opacity: 1;
}
section.special-1.edit .row .column > div .maf-content p, .section.special-1.edit .row .column > div .maf-content p {
  opacity: 1;
}
section.special-1.maf-f-c .footer .maf-content, .section.special-1.maf-f-c .footer .maf-content {
  padding-bottom: 75px;
}
section.map.interactive-map .is-map, .section.map.interactive-map .is-map {
  min-height: 600px;
}
section.map.interactive-map .is-map #google-map-interactive .gm-style-iw-t::after, .section.map.interactive-map .is-map #google-map-interactive .gm-style-iw-t::after {
  background-color: rgb(254, 217, 48) !important;
  z-index: -1;
}
section.map.interactive-map .is-map #google-map-interactive .gm-style-iw.gm-style-iw-c, .section.map.interactive-map .is-map #google-map-interactive .gm-style-iw.gm-style-iw-c {
  background-color: white !important;
  border-radius: 0 !important;
  border: 7px solid rgb(254, 217, 48) !important;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content p, .section.map.interactive-map .is-map #google-map-interactive .map-info-content p {
  font-size: 1.4rem;
  margin-bottom: 5px;
  min-width: 200px;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content p.name, .section.map.interactive-map .is-map #google-map-interactive .map-info-content p.name {
  font-size: 1.6rem;
  font-weight: 700;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content a.button, .section.map.interactive-map .is-map #google-map-interactive .map-info-content a.button {
  background-color: rgb(254, 217, 48);
  border-color: rgb(254, 217, 48);
  font-size: 1.4rem;
  min-height: 0;
  min-width: 0;
  padding: 3px 8px;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content a.button:hover, .section.map.interactive-map .is-map #google-map-interactive .map-info-content a.button:hover {
  background-color: transparent;
  color: rgb(254, 217, 48);
}
section.map.interactive-map #map-filters, .section.map.interactive-map #map-filters {
  padding-top: 20px;
}
section.map.interactive-map #map-filters .button, .section.map.interactive-map #map-filters .button {
  border-radius: 0;
  color: white;
}
section.map.interactive-map #map-filters .button:hover, section.map.interactive-map #map-filters .button.active, .section.map.interactive-map #map-filters .button:hover, .section.map.interactive-map #map-filters .button.active {
  background-color: rgb(255, 247, 253);
  border-color: rgb(255, 247, 253);
}
section.user-gallery.send, .section.user-gallery.send {
  margin-top: 20px;
}
section.user-gallery.send #error-op, .section.user-gallery.send #error-op {
  display: none;
  visibility: hidden;
  width: 100%;
}
section.user-gallery.send #error-op.show, .section.user-gallery.send #error-op.show {
  display: inline-block;
  visibility: visible;
}
section.user-gallery.send #error-op p:last-child, .section.user-gallery.send #error-op p:last-child {
  margin: 0;
}
section.user-gallery.send .row, .section.user-gallery.send .row {
  background-color: rgb(246, 240, 255);
}
section.user-gallery.send .row .column .maf-form input + label, .section.user-gallery.send .row .column .maf-form input + label {
  color: rgb(153, 0, 0);
}
section.user-gallery.send .row .column .maf-form .button, .section.user-gallery.send .row .column .maf-form .button {
  border: 0;
}
section.user-gallery.send .row .column .maf-form .maf-button, .section.user-gallery.send .row .column .maf-form .maf-button {
  margin-top: 0;
}
section.user-gallery.send.video .row, .section.user-gallery.send.video .row {
  background-color: rgb(236, 253, 255);
}
section.user-gallery.view .row .column, .section.user-gallery.view .row .column {
  text-align: left;
}
section.user-gallery.view .row .column .maf-content, .section.user-gallery.view .row .column .maf-content {
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  section.user-gallery.view .row .column.maf-col-1, .section.user-gallery.view .row .column.maf-col-1 {
    align-items: flex-start;
  }
}
section.user-gallery.view .row .column.maf-col-1 .maf-content:first-child, .section.user-gallery.view .row .column.maf-col-1 .maf-content:first-child {
  margin-bottom: 10px;
}
section.user-gallery.view .row .column.maf-col-2, .section.user-gallery.view .row .column.maf-col-2 {
  background-color: rgb(253, 231, 247);
}
@media only screen and (min-width: 576px) {
  section.user-gallery.view .row .column.maf-col-2, .section.user-gallery.view .row .column.maf-col-2 {
    padding: 75px 45px;
  }
}
section.user-gallery.view .row .column.maf-col-2 .maf-content, .section.user-gallery.view .row .column.maf-col-2 .maf-content {
  max-width: 440px;
}
section.user-gallery.view .row .column.maf-col-2 .maf-content h2, .section.user-gallery.view .row .column.maf-col-2 .maf-content h2 {
  margin-bottom: 21px;
}
section.user-gallery.view .row .column.maf-col-2 .maf-content .insta-feed, .section.user-gallery.view .row .column.maf-col-2 .maf-content .insta-feed {
  margin-bottom: 20px;
}
section.form-section, .section.form-section {
  margin-top: 20px;
}
section.form-section h1, section.form-section .h1-style, section.form-section h2, section.form-section .h2-style, section.form-section h3, section.form-section .h3-style, section.form-section h4, section.form-section .h4-style, section.form-section h5, section.form-section .h5-style, section.form-section h6.h6-style, .section.form-section h1, .section.form-section .h1-style, .section.form-section h2, .section.form-section .h2-style, .section.form-section h3, .section.form-section .h3-style, .section.form-section h4, .section.form-section .h4-style, .section.form-section h5, .section.form-section .h5-style, .section.form-section h6.h6-style {
  color: rgb(74, 40, 113);
}
section.form-section p.error, .section.form-section p.error {
  color: rgb(255, 102, 0);
  font-weight: 600;
  margin-bottom: 5px;
}
section.form-section #giftaid-c.hide, .section.form-section #giftaid-c.hide {
  display: none;
  visibility: hidden;
}
section.form-section.fundraise-form .row, .section.form-section.fundraise-form .row {
  background-color: white;
  background-image: url("/images/Layout/fundraising_form_bg.jpg");
  background-position: top;
  background-size: contain;
}
section.form-section.fundraise-form.salon-form .row, .section.form-section.fundraise-form.salon-form .row {
  background-image: url("/images/Layout/salon-pack-form-background.jpg");
}
section.form-section.fundraise-form.salon-form .row .column, .section.form-section.fundraise-form.salon-form .row .column {
  margin-bottom: 15rem;
}
section.form-section.donation-form .row, .section.form-section.donation-form .row {
  background-color: white;
  background-position: top;
  background-size: contain;
}
section.form-section.donation-form .row .maf-form .disclaimer, .section.form-section.donation-form .row .maf-form .disclaimer {
  font-weight: 700;
  border-radius: 1rem;
  background-color: #4a2871;
  padding: 2em;
  margin: 0 0 30px 0;
  color: #FFF;
}
section.form-section.donation-form .row .maf-form .disclaimer a, section.form-section.donation-form .row .maf-form .disclaimer a:visited, .section.form-section.donation-form .row .maf-form .disclaimer a, .section.form-section.donation-form .row .maf-form .disclaimer a:visited {
  color: #FFF;
  line-height: 1.6;
  text-decoration: underline;
  transition: all 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
section.form-section.donation-form .row .maf-form .disclaimer.just-give-caller, .section.form-section.donation-form .row .maf-form .disclaimer.just-give-caller {
  padding: 2rem 1rem;
  display: flex;
  font-size: 14.4px;
}
section.form-section.donation-form .row .maf-form .disclaimer.just-give-caller > div, .section.form-section.donation-form .row .maf-form .disclaimer.just-give-caller > div {
  display: inline-block;
}
section.form-section.donation-form .row .maf-form .disclaimer.just-give-caller .justgive1, .section.form-section.donation-form .row .maf-form .disclaimer.just-give-caller .justgive1 {
  flex: 0 0 auto;
  display: none;
}
@media only screen and (min-width: 768px) {
  section.form-section.donation-form .row .maf-form .disclaimer.just-give-caller .justgive1, .section.form-section.donation-form .row .maf-form .disclaimer.just-give-caller .justgive1 {
    display: inline-block;
  }
}
section.form-section.donation-form .row .maf-form .disclaimer.just-give-caller .justgive2, .section.form-section.donation-form .row .maf-form .disclaimer.just-give-caller .justgive2 {
  padding: 0 1rem;
}
section.form-section.donation-form .row .maf-form .small-text, .section.form-section.donation-form .row .maf-form .small-text {
  font-size: 1.7rem;
  font-weight: 400;
}
section.form-section.donation-form #donated, .section.form-section.donation-form #donated {
  background-color: rgb(236, 253, 255);
  background-image: url("/images/Layout/Donate-bg-3.jpg");
  background-position: top;
  background-repeat: repeat-y;
  margin-bottom: 20px;
}
section.form-section.donation-form #donated h1, .section.form-section.donation-form #donated h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
}
section.form-section.donation-form .thankyou-img, .section.form-section.donation-form .thankyou-img {
  width: 100%;
}
section.form-section.donation-form .thankyou-img img, .section.form-section.donation-form .thankyou-img img {
  display: block;
  max-width: 100%;
  display: block;
}
section.form-section .row, .section.form-section .row {
  background-color: rgb(236, 253, 255);
}
section.form-section .row .column, .section.form-section .row .column {
  max-width: 1024px;
  background-color: white;
}
@media only screen and (min-width: 1024px) {
  section.form-section .row .column, .section.form-section .row .column {
    background-color: transparent;
  }
}
section.form-section .row .column .maf-content, .section.form-section .row .column .maf-content {
  padding: 0 30px;
}
section.form-section .row .column .maf-content:nth-child(2), .section.form-section .row .column .maf-content:nth-child(2) {
  margin-top: 30px;
}
section.form-section .row .column .maf-content.maf-form, .section.form-section .row .column .maf-content.maf-form {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 10px 30px 40px 30px;
}
section.form-section .row .column .maf-content.maf-form h2:first-child, .section.form-section .row .column .maf-content.maf-form h2:first-child {
  margin-top: 20px;
}
section.form-section .row .column .maf-content.maf-form .op, .section.form-section .row .column .maf-content.maf-form .op {
  background-color: rgb(229, 229, 229);
  border-radius: 5px;
  margin-top: 10px;
  padding: 15px 10px 10px 10px;
  text-align: center;
  width: 100%;
}
section.form-section .row .column .maf-content.maf-form > p:first-child, .section.form-section .row .column .maf-content.maf-form > p:first-child {
  margin-top: 20px;
}
section.form-section .row .column .maf-content.maf-form form, .section.form-section .row .column .maf-content.maf-form form {
  max-width: 1024px;
}
section.form-section .row .column .maf-content.maf-form form input, .section.form-section .row .column .maf-content.maf-form form input {
  background-color: #f9f9f9;
}
section.form-section .row .column .maf-content.maf-form form label, .section.form-section .row .column .maf-content.maf-form form label {
  font-weight: 400;
}
section.form-section .row .column .maf-content.maf-form form .label, .section.form-section .row .column .maf-content.maf-form form .label {
  margin-bottom: 5px;
}
section.form-section .row .column .maf-content.maf-form form .error, .section.form-section .row .column .maf-content.maf-form form .error {
  font-weight: 600;
  margin-bottom: 5px;
}
section.form-section .row .column .maf-content.maf-form form hr, .section.form-section .row .column .maf-content.maf-form form hr {
  border: 0;
}
section.form-section .row .column .maf-content.maf-form form .maf-input strong, .section.form-section .row .column .maf-content.maf-form form .maf-input strong {
  color: rgb(74, 40, 113);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  vertical-align: -10%;
}
section.form-section .row .column .maf-content.maf-form form .grey-block, .section.form-section .row .column .maf-content.maf-form form .grey-block {
  display: inline-block;
  margin: 0 0 20px 0;
  padding-top: 30px;
  position: relative;
  width: 100%;
  z-index: 1;
}
section.form-section .row .column .maf-content.maf-form form .grey-block::before, .section.form-section .row .column .maf-content.maf-form form .grey-block::before {
  background-color: rgb(229, 229, 229);
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
}
section.form-section .row .column .maf-content.maf-form form .maf-button, .section.form-section .row .column .maf-content.maf-form form .maf-button {
  margin-bottom: 0;
}
section.form-section .row .column .maf-content.maf-form .actions, .section.form-section .row .column .maf-content.maf-form .actions {
  margin: 20px 0 40px 0;
  width: 100%;
}
section.form-section .row .column .maf-content.maf-form .actions .button.outline, .section.form-section .row .column .maf-content.maf-form .actions .button.outline {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: normal;
  margin: 0 10px 0 0;
  padding: 10px 60px;
  vertical-align: middle;
}
section.form-section.embedded-donation-form iframe, .section.form-section.embedded-donation-form iframe {
  width: 100%;
}
section.form-section.embedded-donation-form .row .column .maf-content.maf-form, .section.form-section.embedded-donation-form .row .column .maf-content.maf-form {
  display: block;
  margin: 0;
  padding: 0;
}
section.form-section.donation-form-pdf .row, .section.form-section.donation-form-pdf .row {
  background-color: white;
}
section.form-section.donation-form-pdf .row .column form, .section.form-section.donation-form-pdf .row .column form {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 2rem;
}
section.form-section.donation-form-pdf .row .column input, .section.form-section.donation-form-pdf .row .column input {
  background-color: white;
  border: 1px solid #4a2871;
  border-radius: 3px;
  color: #4a2871;
  display: inline-block;
  font-family: "Quicksand";
  outline-color: #fed930;
  padding: 10px 33px 10px 15px;
  width: 100%;
}
section.form-section.donation-form-pdf .row .column input[type=checkbox], .section.form-section.donation-form-pdf .row .column input[type=checkbox] {
  width: auto;
  transform: scale(1.5, 1.5);
}
section.form-section.donation-form-pdf .row .column input[type=radio], .section.form-section.donation-form-pdf .row .column input[type=radio] {
  width: auto;
  transform: scale(1.5, 1.5);
}
section.form-section.donation-form-pdf .row .column .checkboxText, .section.form-section.donation-form-pdf .row .column .checkboxText {
  margin-left: 0.5rem;
}
section.form-section.donation-form-pdf .row .column #length, .section.form-section.donation-form-pdf .row .column #length {
  width: 20%;
}
section.form-section.donation-form-pdf .row .column input[type=submit], .section.form-section.donation-form-pdf .row .column input[type=submit] {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.5rem 2rem;
  border-radius: 5px;
  border: 0;
  background-color: #fed930;
  color: #4a2871;
  margin: 30px 0 0 0;
  transition-duration: 0.25s;
  font-size: 2.4rem;
}
section.form-section.donation-form-pdf .row .column input[type=submit]:hover, .section.form-section.donation-form-pdf .row .column input[type=submit]:hover {
  background: linear-gradient(to right, rgb(233, 136, 199) 100%, rgb(254, 217, 48) 100%);
  color: white !important;
  opacity: 1;
}
section.form-section.donation-form-pdf .row .column .button, .section.form-section.donation-form-pdf .row .column .button {
  width: 100%;
}
section.form-section.donation-form-pdf .row .column p,
section.form-section.donation-form-pdf .row .column a,
section.form-section.donation-form-pdf .row .column input,
section.form-section.donation-form-pdf .row .column .checkboxText,
section.form-section.donation-form-pdf .row .column label, .section.form-section.donation-form-pdf .row .column p,
.section.form-section.donation-form-pdf .row .column a,
.section.form-section.donation-form-pdf .row .column input,
.section.form-section.donation-form-pdf .row .column .checkboxText,
.section.form-section.donation-form-pdf .row .column label {
  font-size: 1.8rem;
}
section.form-section.donation-form-pdf .row .column label, .section.form-section.donation-form-pdf .row .column label {
  font-weight: 700;
  margin-top: 30px;
  color: #4a2871;
}
section.form-section.donation-form-pdf .row .column label a, .section.form-section.donation-form-pdf .row .column label a {
  text-decoration: underline;
}
section.form-section.donation-form-pdf .row .column label a:hover, section.form-section.donation-form-pdf .row .column label a:focus, .section.form-section.donation-form-pdf .row .column label a:hover, .section.form-section.donation-form-pdf .row .column label a:focus {
  text-decoration: none;
}
section.form-section.donation-form-pdf .row .column #disclaimer, .section.form-section.donation-form-pdf .row .column #disclaimer {
  font-weight: 700;
  border-radius: 1rem;
  background-color: #4a2871;
  padding: 2em;
  margin: 30px 0 0 0;
  color: #FFF;
}
section.form-section.donation-form-pdf .row .column h1, .section.form-section.donation-form-pdf .row .column h1 {
  color: #4a2871;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
section.form-section.donation-form-pdf .row .column #length, .section.form-section.donation-form-pdf .row .column #length {
  width: 50%;
}
section.form-section.donation-form-pdf .row .column #lengthFields, .section.form-section.donation-form-pdf .row .column #lengthFields {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}
section.form-section.donation-form-pdf .row .column #lengthFields *, .section.form-section.donation-form-pdf .row .column #lengthFields * {
  width: auto;
  margin: 10px 10px 0 10px;
}
section.form-section.donation-form-pdf .row .column .check, .section.form-section.donation-form-pdf .row .column .check {
  background-color: #eee;
  border: 2px solid #4a2871;
  border-radius: 50%;
  display: inline-block;
  height: 23px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 23px;
  z-index: 0;
}
section.form-section.donation-form-pdf .row .column #modal, .section.form-section.donation-form-pdf .row .column #modal {
  background: #fed92f;
  width: 100%;
  display: flex;
  border-radius: 1rem;
  padding: 2em;
  margin-bottom: 100px;
  align-items: center;
}
section.form-section.donation-form-pdf .row .column #timer, .section.form-section.donation-form-pdf .row .column #timer {
  width: 100%;
  color: #4a2871;
  font-weight: 700;
  text-align: center;
}
section.video-bg, .section.video-bg {
  background-color: black;
  color: white;
  min-height: 56.25vw;
  overflow: hidden;
}
section.video-bg .row .column, .section.video-bg .row .column {
  align-items: center;
  justify-content: center;
}
section.image-left-narrow, .section.image-left-narrow {
  margin: 30px auto;
}
@media only screen and (min-width: 1024px) {
  section.image-left-narrow .row .column, .section.image-left-narrow .row .column {
    padding: 0 100px 0 0;
  }
}
section.image-left-narrow .row .column.maf-col-1, .section.image-left-narrow .row .column.maf-col-1 {
  min-height: 450px;
}
@media only screen and (min-width: 1024px) {
  section.image-left-narrow .row .column.maf-col-2 .maf-content, .section.image-left-narrow .row .column.maf-col-2 .maf-content {
    padding: 0 120px;
  }
}
@media only screen and (min-width: 1024px) {
  section.right-left-narrow .row .column.maf-col-1 .maf-content, .section.right-left-narrow .row .column.maf-col-1 .maf-content {
    padding: 0 10px 0 150px;
  }
}
@media only screen and (min-width: 1024px) {
  section.right-left-narrow .row .column.maf-col-2 .maf-content, .section.right-left-narrow .row .column.maf-col-2 .maf-content {
    padding: 0 150px 0 10px;
  }
}
section.borders .row .column, .section.borders .row .column {
  margin-bottom: 10px;
}
@media only screen and (min-width: 1024px) {
  section.borders .row .column, .section.borders .row .column {
    margin-bottom: 20px;
  }
}
section.borders .row .column.maf-col-1, .section.borders .row .column.maf-col-1 {
  border-radius: 3px;
}
@media only screen and (min-width: 1024px) {
  section.borders .row .column.maf-col-1, .section.borders .row .column.maf-col-1 {
    border-right: 10px solid white;
  }
}
section.borders .row .column.maf-col-2, .section.borders .row .column.maf-col-2 {
  border-radius: 3px;
}
@media only screen and (min-width: 1024px) {
  section.borders .row .column.maf-col-2, .section.borders .row .column.maf-col-2 {
    border-left: 10px solid white;
  }
}
section.borders .row .column.whole.maf-col-1, .section.borders .row .column.whole.maf-col-1 {
  border-radius: 0;
  border: 0;
}
section.donate, .section.donate {
  background-color: #623489;
  color: white;
}
section.donate p.page-lead, .section.donate p.page-lead {
  color: white;
  max-width: 480px;
}
section.donate .row .column .maf-content, .section.donate .row .column .maf-content {
  padding: 0 10px;
  text-align: left;
}
section.donate .row .column .maf-content .company-name, .section.donate .row .column .maf-content .company-name {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 20px;
  width: 100%;
}
section.donate .row .column.half .maf-content, .section.donate .row .column.half .maf-content {
  align-items: flex-start;
}
section.donate .donate-box, .section.donate .donate-box {
  background-color: rgb(74, 40, 113);
  border-radius: 8px;
  display: inline-block;
  margin: 30px 30px 0 0;
  max-width: 580px;
  padding: 20px;
  position: relative;
  width: 100%;
}
section.donate .donate-box p, .section.donate .donate-box p {
  margin-bottom: 20px;
  max-width: 500px;
  padding-right: 40px;
}
section.donate .donate-box p.title, .section.donate .donate-box p.title {
  font-size: 2.4rem;
  font-weight: 500;
}
section.donate .donate-box p.text, .section.donate .donate-box p.text {
  font-size: 1.8rem;
}
section.donate .donate-box p:last-child, .section.donate .donate-box p:last-child {
  margin-bottom: 0;
}
section.donate .donate-box .coins, .section.donate .donate-box .coins {
  height: auto;
  position: absolute;
  right: -20px;
  top: -20px;
  width: 100px;
}
section.donate .donate-box .crown, .section.donate .donate-box .crown {
  height: auto;
  position: absolute;
  right: -20px;
  top: -20px;
  width: 100px;
}
section.donate .donate-box form, .section.donate .donate-box form {
  display: flex;
  flex-direction: column;
}
section.donate .donate-box form .select, .section.donate .donate-box form .select {
  display: inline-block;
  margin: 0 0 10px 0;
  width: 100%;
}
section.donate .donate-box form .select select, .section.donate .donate-box form .select select {
  color: rgb(74, 40, 113);
  font-weight: 500;
}
section.donate .donate-box form button, .section.donate .donate-box form button {
  font-weight: 500;
  height: 50px;
  margin: 0 0 10px 0;
  min-width: 150px;
  width: 150px;
}
section.donate .donate-box form button::before, .section.donate .donate-box form button::before {
  background-color: rgb(233, 136, 199);
}
@media only screen and (min-width: 1152px) {
  section.donate .donate-box form, .section.donate .donate-box form {
    flex-direction: row;
  }
  section.donate .donate-box form .select, .section.donate .donate-box form .select {
    margin: 0 10px 10px 0;
    width: calc(100% - 160px);
  }
}

section.concertina-section + section.concertina-section .row {
  padding-top: 0;
}

aside.assoc-media .row .column .maf-content {
  max-width: none;
}
aside.assoc-media .row .column .maf-content figure figcaption {
  display: none;
}
aside.assoc-media .row .column .maf-content figure.video .is-video {
  background-color: black;
}

.is-footer {
  background-color: rgb(74, 40, 113);
  color: white;
  font-size: 1.6rem;
  z-index: 0;
  background-position: top;
}
.is-footer a:not(.button) {
  color: rgb(233, 136, 199);
  text-decoration: none;
  line-height: 3rem;
  padding-left: 0px;
}
.is-footer a:not(.button):hover {
  color: rgb(254, 217, 48);
  padding-left: 5px;
}
.is-footer h1, .is-footer .h1-style, .is-footer h2, .is-footer .h2-style, .is-footer h3, .is-footer .h3-style, .is-footer h4, .is-footer .h4-style, .is-footer h5, .is-footer .h5-style, .is-footer h6.h6-style {
  color: white;
  font-size: 2.6rem;
  margin-bottom: 20px;
}
.is-footer p, .is-footer address, .is-footer .name, .is-footer .label {
  line-height: 1.4;
  margin-bottom: 20px;
}
.is-footer p.bold, .is-footer address.bold, .is-footer .name.bold, .is-footer .label.bold {
  margin-bottom: 5px;
}
.is-footer p i, .is-footer address i, .is-footer .name i, .is-footer .label i {
  display: inline-block;
  height: 20px;
  opacity: 1;
  font-size: 2rem;
  margin-right: 10px;
  position: relative;
  vertical-align: middle;
  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.signup, .is-footer address.signup, .is-footer .name.signup, .is-footer .label.signup {
  font-size: 1.8rem;
}
.is-footer p.signup span, .is-footer address.signup span, .is-footer .name.signup span, .is-footer .label.signup span {
  display: inline-block;
  width: 100%;
}
.is-footer hr {
  border-color: white;
  margin-top: 10px;
}
.is-footer form {
  margin: 0 auto 30px auto;
  width: auto;
}
@media only screen and (min-width: 1024px) {
  .is-footer form {
    margin: 0 0 30px 0;
  }
}
.is-footer form input, .is-footer form button {
  display: inline-block;
  height: 67px;
  font-size: 3rem;
  margin: 0;
  padding: 18px;
}
.is-footer form input {
  border: 1px solid white;
  color: white;
  margin: 0 0 20px 0;
  max-width: 490px;
  vertical-align: top;
  width: calc(100% - 67px);
}
.is-footer form input::-moz-placeholder {
  color: white;
  font-weight: 500;
  opacity: 1;
  text-transform: uppercase;
}
.is-footer form input::placeholder {
  color: white;
  font-weight: 500;
  opacity: 1;
  text-transform: uppercase;
}
.is-footer form input:focus {
  color: white;
}
.is-footer form input:last-child {
  margin-right: 0;
}
.is-footer form button {
  border: 1px solid white;
  background: white;
  font-size: 1.8rem;
  margin: 0;
  text-align: center;
  width: 67px;
}
.is-footer form button.chevron::before, .is-footer form button.chevron::after {
  background-color: black;
}
.is-footer form button:hover, .is-footer form button:focus, .is-footer form button:active {
  background-color: white;
  border-color: white;
}
.is-footer .company-name {
  font-weight: 700;
}
.is-footer .name {
  margin-bottom: 0;
  width: 100%;
}
.is-footer .label {
  margin-bottom: 20px;
  width: 100%;
}
.is-footer .badges {
  align-items: center;
  display: flex;
  width: 100%;
}
.is-footer .badges a {
  display: inline-block;
  flex: 0 0 auto;
  margin: 0 auto;
  padding: 0 5px;
  text-align: center;
}
.is-footer .badges a img {
  width: 100px;
}
.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 .site-nav {
  display: flex;
  width: 100%;
}
.is-footer .site-nav .bottom-nav {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  margin: 0 0 30px 0;
}
.is-footer .site-nav .bottom-nav a {
  display: inline-block;
  width: auto;
}
.is-footer .site-nav .bottom-nav a.lvl-2 {
  padding-left: 20px;
}
.is-footer .social-icons {
  display: flex;
  font-size: 2.4rem;
  margin-bottom: 30px;
  text-align: left;
  width: 100%;
}
.is-footer .social-icons a {
  margin-right: 10px;
  padding-left: 0;
}
.is-footer .social-icons a:last-child {
  margin-right: 0;
}
.is-footer .social-icons a:hover {
  padding-left: 0;
}
.is-footer .social-icons a i {
  background-color: white;
  border-color: white;
  height: 36px;
  width: 36px;
}
.is-footer .social-icons a i::before {
  color: rgb(74, 40, 113);
}
.is-footer .social-icons a i:hover {
  background-color: transparent;
}
.is-footer .social-icons a i:hover::before {
  color: white;
}
.is-footer .row .column {
  align-items: flex-start;
  min-height: 0;
  overflow: visible;
  padding-top: 75px;
  padding-bottom: 0;
  text-align: left;
}
.is-footer .row .column.nested {
  padding: 0;
}
.is-footer .row .column .maf-content {
  height: 100%;
  max-width: 330px;
  padding: 0 10px;
}
.is-footer .row .column.maf-col-0 {
  padding-bottom: 0;
}
.is-footer .row .column.maf-col-0 .maf-content {
  align-items: center;
  max-width: none;
  padding-top: -40px;
}
.is-footer .row .column.maf-col-0 .maf-content > div svg {
  width: 180px;
  fill: white;
}
.is-footer .row.row-2 .column {
  padding-top: 20px;
}
.is-footer .row.row-2 .column .maf-content {
  align-items: flex-start;
  max-width: none;
}
@media only screen and (min-width: 1024px) {
  .is-footer .row.row-2 .column .maf-content {
    flex-direction: row;
  }
}
.is-footer .row.row-2 .column .maf-content p {
  max-width: 240px;
  padding-right: 10px;
}
.is-footer .legals {
  background-color: rgb(74, 40, 113);
  color: white;
  padding: 15px 0;
  width: 100%;
  z-index: 3;
}
.is-footer .legals p {
  display: inline-block;
  flex: 0 0 auto;
  font-weight: 400;
  margin: 0;
  max-width: 100%;
  padding: 0 35px;
  text-align: left;
  width: auto;
}
@media only screen and (min-width: 1024px) {
  .is-footer .legals p {
    padding: 0 60px;
  }
}
.is-footer .legals p a {
  color: white;
  padding: 0;
}
.is-footer .legals p a:hover {
  color: white;
  text-decoration: none;
  opacity: 0.7;
}
.is-footer .legals .row {
  align-items: center;
  box-shadow: none;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1600px;
  overflow: visible;
  padding-bottom: 0;
}/*# sourceMappingURL=tvw-main.css.map */