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

html {
  font-size: 62.5%; }

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

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

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

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

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

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

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

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

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

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

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

.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: 1400px;
  position: relative;
  width: 100%;
  padding: 0; }
  @media only screen and (min-width: 576px) {
    .row {
      padding: 0 15px; } }
  @media only screen and (min-width: 1024px) {
    .row {
      flex-direction: row;
      flex-wrap: wrap; } }
  .row.nested {
    padding: 0; }
  @media only screen and (min-width: 576px) {
    .row .header {
      padding-left: 0;
      padding-right: 0; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-colour-page {
  background-color: white; }

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

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

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

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

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

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

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

h1, h2, h3, h4, h5, h6, p, a, div, li, span, address, blockquote {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a, a:visited {
  color: #6ea9ad;
  line-height: 1.6;
  transition: all 350ms ease-out; }

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

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

address {
  font-style: normal;
  font-weight: inherit;
  line-height: 1.6; }
  address > span.pcode {
    white-space: nowrap; }

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

h1, .h1-style, h2, .h2-style, h3, .h3-style, h4, .h4-style, h5, .h5-style, h6.h6-style {
  color: #707070;
  font-feature-settings: 'lnum' 1;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.6em;
  position: relative;
  width: 100%;
  /*&::after {
    background-color: $text-body-dark;
    bottom: 0;
    border-radius: 1px;
    content: '';
    display: inline-block;
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 85%;
  }*/ }

h1, .h1-style {
  font-family: "Roboto", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  text-transform: none; }
  @media only screen and (min-width: 576px) {
    h1, .h1-style {
      font-size: 6.2rem; } }
  @media only screen and (min-width: 768px) {
    h1, .h1-style {
      font-size: 7.4rem; } }

h2, .h2-style {
  font-family: "Roboto", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #6ea9ad; }
  @media only screen and (min-width: 576px) {
    h2, .h2-style {
      font-size: 6rem; } }

h3, .h3-style {
  font-family: "Roboto", sans-serif;
  font-size: 3rem; }
  @media only screen and (min-width: 576px) {
    h3, .h3-style {
      font-size: 3.6rem; } }

h4, .h4-style {
  font-family: "Roboto", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2; }
  @media only screen and (min-width: 576px) {
    h4, .h4-style {
      font-size: 2.8rem; } }

h5, .h5-style {
  font-family: "Roboto", sans-serif;
  font-size: 2.2rem; }

h6, .h6-style {
  font-family: "Roboto", sans-serif;
  font-size: 2.2rem;
  text-align: left; }

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

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

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

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

strong {
  font-weight: 700; }

sup {
  font-size: 0.6em; }

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

hr {
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-top: 1px solid #6ea9ad;
  display: inline-block;
  height: 0;
  margin: 0.5em auto 1em auto;
  width: 100%; }
  hr.heavy {
    margin: 1em 0 2em 0;
    border-top: 5px solid #707070; }
  hr.divider {
    background-color: transparent;
    background-image: url("/images/Layout/divider.png");
    background-size: contain;
    height: 22px;
    max-width: 1400px; }

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

.maf-content ul, .maf-content ol {
  list-style-position: outside;
  margin: 1em 0 2em 0;
  padding: 0 0 0 22px;
  width: 100%; }
  .maf-content ul li, .maf-content ol li {
    margin: 0 0 1em 0; }
    .maf-content ul li > p, .maf-content ol li > p {
      margin: 0; }
.maf-content ul {
  list-style-type: none; }
  .maf-content ul li {
    margin-bottom: 5px;
    position: relative; }
    .maf-content ul li::before {
      background-color: #6ea9ad;
      border-radius: 50%;
      content: '';
      color: inherit;
      display: inline-block;
      font-weight: 600;
      height: 7px;
      left: -18px;
      position: absolute;
      top: 0.55em;
      width: 7px; }
    .maf-content ul li ul {
      margin-top: 12px; }
.maf-content ol {
  counter-reset: maf-ol-counter;
  list-style: none;
  padding-left: 40px;
  position: relative; }
  .maf-content ol li {
    counter-increment: maf-ol-counter;
    margin-bottom: 5px;
    position: relative; }
    .maf-content ol li::before {
      content: counter(maf-ol-counter) ".";
      color: #6ea9ad;
      display: inline-block;
      font-family: "Roboto", sans-serif;
      font-size: 1em;
      font-weight: 600;
      height: 30px;
      left: -2.2em;
      line-height: 1;
      margin-right: 0.8rem;
      opacity: 1;
      position: absolute;
      top: 0.2em;
      transform: translateY(0.1em);
      vertical-align: top;
      width: 1.2em; }

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

blockquote {
  color: #6ea9ad;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1;
  margin: 0.5em 0 1em 0;
  padding: 50px 0 70px 0px;
  position: relative; }
  blockquote::before {
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-top: 1px solid #6ea9ad;
    display: inline-block;
    height: 0;
    margin: 0.5em auto 1em auto;
    width: 100%;
    content: '';
    left: 0;
    position: absolute;
    top: 0; }
  blockquote::after {
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-top: 1px solid #6ea9ad;
    bottom: 0;
    content: '';
    display: inline-block;
    height: 0;
    left: 0;
    margin: 0.5em auto 1em auto;
    position: absolute;
    width: 100%; }
  blockquote p {
    color: inherit;
    font-size: 3.6rem;
    font-weight: inherit;
    line-height: 1.6 !important;
    margin: 0 0 1em 0;
    max-width: none !important;
    /*&:nth-of-type(2){
      color: $text-body-dark;
      font-family: $font-stack-body;
      font-size: 1.4rem;
    	font-style: italic;
      font-weight: 400;
      margin-top: 20px;
      text-transform: uppercase;
    }*/ }
    blockquote p.small-text {
      font-size: 1.2rem !important;
      font-weight: 400 !important; }
    blockquote p:last-child {
      margin-bottom: 0; }
  blockquote.heavy {
    font-family: "Roboto", sans-serif;
    font-size: 4rem;
    margin: auto 0 !important; }
    @media only screen and (min-width: 576px) {
      blockquote.heavy {
        font-size: 6rem; } }
    blockquote.heavy p {
      font-style: normal;
      line-height: 0.9;
      text-transform: uppercase; }
      blockquote.heavy p:last-child {
        color: #e4e4e4;
        font-size: 2.4rem; }
  blockquote + blockquote {
    margin-top: 0; }

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

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

input, textarea {
  background-color: transparent;
  border: 1px solid #6ea9ad;
  border-radius: 0;
  color: #295e81;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-feature-settings: 'lnum' 1;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 700;
  margin: 0;
  outline: none;
  outline-color: transparent;
  padding: 20px 15px;
  transition: all 350ms ease-out;
  width: 100%; }
  input::placeholder, textarea::placeholder {
    color: #295e81;
    font-family: "Roboto", sans-serif; }
  input:focus, textarea:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #6ea9ad; }
    input:focus::placeholder, textarea:focus::placeholder {
      opacity: 0.5; }

textarea {
  resize: none; }
  textarea.deep {
    min-height: 360px; }

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

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

input[type="submit"],
input[type="reset"],
button.maf-button {
  align-items: center;
  align-self: flex-start;
  background-color: #6ea9ad;
  background-size: 100% 100%;
  border: 1px solid #6ea9ad;
  border-radius: 3rem;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  justify-content: center;
  min-width: 200px;
  opacity: 1;
  outline: transparent;
  padding: 12px 30px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 350ms ease-out;
  width: auto; }
  input[type="submit"]:hover, input[type="submit"]:focus,
  input[type="reset"]:hover,
  input[type="reset"]:focus,
  button.maf-button:hover,
  button.maf-button:focus {
    background-color: transparent;
    color: #6ea9ad;
    opacity: 1;
    text-decoration: none; }

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

/*input[type="radio"]::before {
  content:"";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
}*/
input[type="radio"]:checked::before {
  transform: scale(2); }

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

.checkbox {
  align-items: center;
  display: flex; }
  .checkbox .pretty-check {
    display: inline-block;
    flex: 0 0 auto;
    height: 30px;
    position: relative;
    margin: 2px;
    width: 30px; }
    .checkbox .pretty-check label {
      border-radius: 0;
      border: 3px solid #295e81;
      cursor: pointer;
      height: 100%;
      left: 0;
      margin: 0;
      min-height: 0;
      outline: none;
      position: absolute;
      width: 100%;
      top: 0; }
      .checkbox .pretty-check label:after {
        background: transparent;
        border: 3px solid white;
        border-top: none;
        border-right: none;
        content: '';
        height: 4px;
        left: 6px;
        opacity: 0;
        position: absolute;
        top: 7px;
        transition: all 350ms ease-out;
        transform: rotate(-50deg);
        width: 10px; }
      .checkbox .pretty-check label:focus {
        background: rgba(102, 146, 94, 0.6); }
        .checkbox .pretty-check label:focus::after {
          opacity: 0.9; }
    .checkbox .pretty-check input[type=checkbox] {
      left: -100vw;
      position: absolute;
      visibility: hidden;
      z-index: 0; }
      .checkbox .pretty-check input[type=checkbox]:checked + label {
        background: #295e81; }
        .checkbox .pretty-check input[type=checkbox]:checked + label:after {
          opacity: 1; }
        .checkbox .pretty-check input[type=checkbox]:checked + label:focus {
          background: rgba(102, 146, 94, 0.6); }
          .checkbox .pretty-check input[type=checkbox]:checked + label:focus::after {
            opacity: 0.9; }
  .checkbox span {
    cursor: pointer;
    font-size: 2.2rem;
    line-height: 0.7;
    padding-left: 5px;
    text-align: left; }
  .checkbox:hover .pretty-check label {
    background: rgba(102, 146, 94, 0.6); }
    .checkbox:hover .pretty-check label::after {
      opacity: 0.9; }

.radio {
  align-items: center;
  cursor: pointer;
  display: flex;
  margin-bottom: 1em;
  width: 100%; }
  .radio .pretty-radio {
    display: inline-block;
    position: relative;
    margin: 0;
    width: 40px; }
    .radio .pretty-radio label {
      border-radius: 50%;
      border: 10px solid #6ea9ad;
      cursor: pointer;
      height: 40px;
      left: 0;
      margin: 0;
      position: absolute;
      transition: background-color 350ms ease-out;
      width: 40px;
      top: 1px; }
      .radio .pretty-radio label:after {
        background: transparent;
        border: 2px solid #6ea9ad;
        border-top: none;
        border-right: none;
        content: '';
        display: none;
        height: 4px;
        left: 4px;
        opacity: 0;
        position: absolute;
        top: 5px;
        transition: all 350ms ease-out;
        transform: rotate(-50deg);
        width: 8px; }
      .radio .pretty-radio label:hover {
        background: #295e81; }
      .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: #295e81; }
        .radio .pretty-radio input[type=radio]:checked + label:after {
          opacity: 1; }
  .radio span {
    margin-bottom: 8px;
    padding-left: 10px;
    text-align: left;
    width: calc(100% - 40px); }
  .radio:hover .pretty-radio label {
    background: #295e81; }

.select {
  background-color: white;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  cursor: pointer;
  height: 56px;
  margin: 0;
  overflow: hidden;
  padding-right: 10px;
  position: relative;
  transition: border-color 350ms ease-out;
  width: 100%;
  z-index: 0;
  	/*&::before {
  		//background: linear-gradient(to left, white 0%, white 75%, rgba(255,255,255,0));
  		//border-left: 1px solid rgb(224,223,224);
  		content: '';
      display: none;
  		height: 100%;
      pointer-events: none;
  		position: absolute;
  		right: 0;
  		transition: all $timing $ease;
  		top: 0;
  		width: 50px;
  		z-index: 1;
  	}*/ }
  .select.short {
    max-width: 150px; }
  .select::after {
    background-color: transparent;
    border: 1px solid #707070;
    border-left: 0;
    border-top: 0;
    content: '';
    height: 7px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    transform: translate(-50%, -60%) rotate(45deg);
    transform-origin: center;
    transition: all 350ms ease-out;
    top: 45%;
    width: 7px;
    z-index: 1; }
  .select select {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #707070;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    height: 100%;
    outline: transparent;
    padding: 15px;
    transition: all 350ms ease-out;
    width: calc( 100% + 25px );
    z-index: 1; }
    .select select option {
      font-family: "Roboto", sans-serif; }
  .select:hover, .select:focus-within {
    border-color: #707070; }
    .select:hover::after, .select:focus-within::after {
      top: 50%; }

.file-button {
  cursor: pointer;
  display: inline-block;
  height: 50px;
  margin: 0 !important;
  outline: none;
  position: relative;
  width: 260px; }
  .file-button input {
    margin: 0;
    min-width: 260px;
    opacity: 0; }
  .file-button span {
    align-items: center;
    background-color: #295e81;
    border-color: #295e81;
    border-radius: 12px;
    color: white;
    display: flex;
    font-size: 2rem;
    font-weight: 500;
    height: 100%;
    justify-content: center;
    left: 0;
    line-height: 1.2;
    padding: 15px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%; }
    .file-button span:hover {
      background-color: #6ea9ad;
      border-color: #6ea9ad; }
  .file-button:focus-within span, .file-button:focus span {
    background-color: #6ea9ad;
    border-color: #6ea9ad; }

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

.spinner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 102px; }
  .spinner label {
    color: #295e81;
    display: inline-block;
    flex: 0 0 auto;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    width: 100%; }
  .spinner input[type=number]::-webkit-inner-spin-button,
  .spinner input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .spinner input[type=number] {
    -moz-appearance: textfield; }
  .spinner input {
    border: 4px solid #295e81;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    color: #707070;
    display: inline-block;
    flex: 0 0 auto;
    font-family: "Roboto", sans-serif;
    font-size: 2.4rem;
    font-style: normal;
    height: 54px;
    line-height: 1.65;
    margin: 0;
    padding: 20px;
    text-align: center;
    width: 74px; }
    .spinner input:focus {
      outline: 0; }
  .spinner .quantity-nav {
    display: inline-block;
    flex: 0 0 auto;
    position: relative;
    height: 54px;
    width: 27px; }
  .spinner .quantity-button {
    align-items: center;
    border: 4px solid #295e81;
    color: #707070;
    cursor: pointer;
    display: flex;
    font-size: 2rem;
    font-family: "Roboto", sans-serif;
    height: 27px;
    justify-content: center;
    outline: none;
    position: relative;
    text-align: center;
    transition: all 350ms ease-out;
    user-select: none;
    width: 27px; }
    .spinner .quantity-button.quantity-up {
      height: 25px;
      border-top-right-radius: 10px;
      border-bottom: 0; }
      .spinner .quantity-button.quantity-up:before, .spinner .quantity-button.quantity-up:after {
        background-color: #295e81;
        content: '';
        display: inline-block;
        height: 3px;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 60%; }
      .spinner .quantity-button.quantity-up:after {
        transform: translate(-50%, -50%) rotate(90deg); }
    .spinner .quantity-button.quantity-down {
      border-bottom-right-radius: 10px;
      height: 29px; }
      .spinner .quantity-button.quantity-down:before {
        background-color: #295e81;
        content: '';
        display: inline-block;
        height: 3px;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 60%; }
    .spinner .quantity-button:hover, .spinner .quantity-button:focus {
      background-color: #295e81; }
      .spinner .quantity-button:hover::before, .spinner .quantity-button:hover::after, .spinner .quantity-button:focus::before, .spinner .quantity-button:focus::after {
        background-color: white; }

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

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

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

@keyframes button-anim {
  0% {
    height: 0;
    opacity: 0;
    width: 0; }
  20% {
    opacity: 1; }
  70% {
    opacity: 1; }
  99% {
    height: 600px;
    opacity: 0;
    width: 600px; }
  100% {
    height: 0;
    opacity: 0;
    width: 0; } }
@keyframes button-arrow {
  0% {
    right: 0; }
  30% {
    right: 5px; }
  60% {
    right: 0; } }
.button, .button:visited, .button:focus, .button:active {
  align-items: flex-start;
  background-color: #6ea9ad;
  border: 2px solid #6ea9ad;
  border-radius: 25px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  justify-content: flex-start;
  line-height: 1;
  margin-top: 40px;
  min-width: 100px;
  opacity: 1;
  outline: transparent;
  padding: 12px 100px 12px 15px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: all 350ms ease-out;
  width: auto;
  z-index: 1; }
  @media only screen and (min-width: 576px) {
    .button, .button:visited, .button:focus, .button:active {
      min-width: 280px; } }
  .button.small, .button:visited.small, .button:focus.small, .button:active.small {
    font-size: 2rem; }
  .button::after, .button:visited::after, .button:focus::after, .button:active::after {
    border: solid white;
    border-width: 0 3px 3px 0;
    content: '';
    display: inline-block;
    opacity: 1;
    padding: 3px;
    position: absolute;
    right: 20px;
    transition: all 350ms ease-out;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    top: 40%;
    z-index: 0; }
  .button:hover, .button:focus, .button.active, .button:visited:hover, .button:visited:focus, .button:visited.active, .button:focus:hover, .button:focus:focus, .button:focus.active, .button:active:hover, .button:active:focus, .button:active.active {
    background-color: #295e81;
    border: 2px solid #295e81;
    opacity: 1;
    text-decoration: none; }
    .button:hover::after, .button:focus::after, .button.active::after, .button:visited:hover::after, .button:visited:focus::after, .button:visited.active::after, .button:focus:hover::after, .button:focus:focus::after, .button:focus.active::after, .button:active:hover::after, .button:active:focus::after, .button:active.active::after {
      border-width: 0 3px 3px 0;
      padding: 3px;
      right: 10px;
      transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg); }
  .button.form-enter, .button:visited.form-enter, .button:focus.form-enter, .button:active.form-enter {
    background-color: #6ea9ad;
    border-color: #6ea9ad;
    color: white;
    margin-top: 10px;
    min-width: 190px; }
    .button.form-enter:hover, .button.form-enter:focus, .button.form-enter.active, .button:visited.form-enter:hover, .button:visited.form-enter:focus, .button:visited.form-enter.active, .button:focus.form-enter:hover, .button:focus.form-enter:focus, .button:focus.form-enter.active, .button:active.form-enter:hover, .button:active.form-enter:focus, .button:active.form-enter.active {
      background-color: transparent;
      color: #6ea9ad; }

.button + .button {
  margin-left: 20px; }

.footer-button {
  background-color: #6ea9ad;
  border-radius: 15px;
  color: white;
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  padding: 18px 20px;
  text-transform: uppercase; }
  .footer-button:hover, .footer-button:focus {
    background-color: #295e81;
    text-decoration: none; }

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

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

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

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

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

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

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

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

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

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

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

.is-toggle-group .toggle-click {
  background: none;
  color: #707070;
  cursor: pointer;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 700;
  outline: none;
  padding: 5px 10px 5px 0;
  position: relative;
  transition: all 350ms ease-out;
  text-align: left;
  width: 100%; }
  .is-toggle-group .toggle-click i {
    color: #707070;
    display: inline-block;
    height: 30px;
    font-size: 3.6rem;
    opacity: 1;
    position: relative;
    transition: color 350ms ease-out;
    vertical-align: middle;
    width: 30px; }
    .is-toggle-group .toggle-click i::before {
      display: inline-block;
      left: 50%;
      position: absolute;
      top: 50%;
      transform: translate(-50%, -60%) rotate(0deg);
      transform-origin: center;
      transition: transform 400ms ease-out; }
  .is-toggle-group .toggle-click.active, .is-toggle-group .toggle-click:hover {
    color: #6ea9ad; }
    .is-toggle-group .toggle-click.active i, .is-toggle-group .toggle-click:hover i {
      color: #6ea9ad; }
  .is-toggle-group .toggle-click.active i::before {
    transition: transform 350ms ease-out;
    transform: translate(-50%, -50%) rotate(180deg); }
.is-toggle-group .toggle-group {
  display: none; }
  .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: #295e81;
    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: #295e81;
      border-radius: 3px 3px 0 0;
      color: #707070;
      cursor: pointer;
      padding: 5px 7px 3px 7px;
      position: absolute;
      font-size: 2rem;
      right: 0;
      top: -27px; }
    @media only screen and (min-width: 960px) {
      .is-modal #content-container {
        width: 60vw; } }
    @media only screen and (min-width: 1200px) {
      .is-modal #content-container {
        width: 35vw; } }

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

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

.maf-msg {
  align-items: center;
  display: inline-flex;
  font-family: "Roboto", sans-serif;
  font-size: 2.0rem;
  line-height: 1.4;
  font-weight: 700;
  justify-content: center;
  margin-bottom: 10px;
  padding: 10px 20px;
  text-align: center;
  width: 100%; }
  @media only screen and (min-width: 576px) {
    .maf-msg {
      font-size: 2.4rem; } }
  .maf-msg i, .maf-msg span {
    vertical-align: middle; }
  .maf-msg i {
    margin: 5px 5px 0 0; }
  .maf-msg.error-msg {
    background-color: rgba(255, 200, 200, 0.1);
    border: 1px solid #ba4848;
    color: #ba4848; }
  .maf-msg.success-msg {
    background-color: #cef0ce;
    border: 1px solid #1e3c1e;
    color: #295e81; }
  .maf-msg.input-msg {
    background-color: transparent;
    border: 0;
    font-size: 1.4rem;
    justify-content: flex-end;
    text-align: right;
    margin: 0;
    padding: 0; }

#http-error {
  background-color: transparent;
  min-height: 100vh;
  padding: 0; }
  #http-error.e404 {
    padding-top: 50px; }
    #http-error.e404 h1 {
      color: #707070;
      margin: 0 0 30px 0; }
    #http-error.e404 p {
      color: #707070;
      font-size: 2.5rem;
      margin: 0 auto 30px auto;
      width: 60%; }
    #http-error.e404 #error {
      margin: 0 auto;
      text-align: center;
      width: 80%; }
    #http-error.e404 .error-icon {
      display: block;
      margin: 0 auto;
      width: 25%; }
      #http-error.e404 .error-icon .a {
        fill: #707070; }
    #http-error.e404 .button {
      font-size: 2.4rem;
      margin: 0 auto;
      width: auto; }

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

#print-container {
  margin: auto;
  padding-top: 30px;
  width: 700px; }
  #print-container h1, #print-container h2, #print-container h3 {
    color: #707070;
    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: #707070;
  border: 3px solid #707070;
  border-radius: 8px;
  color: #707070;
  bottom: 0.5em;
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  left: 0.5em;
  padding: 5px;
  position: fixed;
  text-align: center;
  z-index: 99999; }
  #next-month-clear span {
    display: inline-block;
    flex: 0 0 auto;
    margin-bottom: 3px; }

.is-map {
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%; }
  .is-map .maf-map-pos {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }
    .is-map .maf-map-pos .maf-obj-map {
      height: 100%;
      width: 100%; }
      .is-map .maf-map-pos .maf-obj-map button {
        min-height: 0;
        transform: none; }
        .is-map .maf-map-pos .maf-obj-map button::before, .is-map .maf-map-pos .maf-obj-map button::after {
          display: none; }
      .is-map .maf-map-pos .maf-obj-map a[title="Click to see this area on Google Maps"] {
        display: none !important; }
      .is-map .maf-map-pos .maf-obj-map .gmnoprint a, .is-map .maf-map-pos .maf-obj-map .gmnoprint span, .is-map .maf-map-pos .maf-obj-map .gm-style-cc {
        display: none; }
      .is-map .maf-map-pos .maf-obj-map .gm-style button.gm-fullscreen-control {
        background: rgba(14, 118, 188, 0.2) !important; }
      .is-map .maf-map-pos .maf-obj-map .gmnoprint div {
        background: none !important; }
        .is-map .maf-map-pos .maf-obj-map .gmnoprint div.gm-svpc {
          display: none; }
        .is-map .maf-map-pos .maf-obj-map .gmnoprint div button[title="Zoom in"], .is-map .maf-map-pos .maf-obj-map .gmnoprint div button[title="Zoom out"] {
          background: rgba(14, 118, 188, 0.2) !important;
          border: 1px solid #424242;
          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 {
  --icon-colour: #6ea9ad;
  --text-colour: white;
  align-items: center;
  color: var(--text-colour);
  display: inline-flex;
  font-size: 2rem;
  justify-content: center;
  line-height: 0;
  margin: 0;
  width: auto; }
  .social-icons a {
    color: var(--text-colour);
    display: inline-block;
    line-height: 0;
    opacity: 1;
    outline: none;
    padding: 5px; }
    .social-icons a:last-child {
      margin-right: 0; }
    .social-icons a i {
      background-color: var(--icon-colour);
      border: 2px solid var(--icon-colour);
      border-radius: 37px;
      color: inherit;
      cursor: pointer;
      display: inline-block;
      height: 37px;
      line-height: 0;
      position: relative;
      transition: all 350ms ease-out;
      width: 37px; }
      .social-icons a i::before {
        color: inherit;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%); }
    .social-icons a:hover i, .social-icons a:focus i {
      background-color: transparent;
      color: var(--icon-colour); }
  .social-icons.corporate-colours a {
    border: 0 solid transparent;
    background-color: transparent; }
    .social-icons.corporate-colours a i.tvw-facebook {
      background-color: #3b5999;
      border-color: #3b5999; }
    .social-icons.corporate-colours a i.tvw-twitter {
      background-color: #55acee;
      border-color: #55acee; }
    .social-icons.corporate-colours a i.tvw-flickr {
      background-color: #0063dc;
      border-color: #0063dc; }
    .social-icons.corporate-colours a i.tvw-linkedin {
      background-color: #0077b5;
      border-color: #0077b5; }
    .social-icons.corporate-colours a i.tvw-instagram {
      background-color: #d6249f;
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
      border-color: #d6249f; }
    .social-icons.corporate-colours a i.tvw-vimeo {
      background-color: #1ab7ea;
      border-color: #1ab7ea; }
    .social-icons.corporate-colours a i.tvw-youtube {
      background-color: #cd201f;
      border-color: #cd201f; }
    .social-icons.corporate-colours a i.tvw-gplus {
      background-color: #dd4b39;
      border-color: #dd4b39; }
    .social-icons.corporate-colours a:hover i {
      color: white; }
  .social-icons.name-view {
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%; }
    .social-icons.name-view > a {
      align-content: center;
      align-items: center;
      display: flex;
      line-height: 1;
      width: auto; }
      .social-icons.name-view > a i {
        background-color: transparent;
        border: 0;
        border-radius: 0;
        flex: 0 0 auto;
        height: 25px;
        width: 25px; }
      .social-icons.name-view > a span {
        display: inline-block;
        flex: 1 1 auto;
        font-size: 1.6rem;
        padding-left: 5px;
        transition: transform 350ms ease-out; }
      .social-icons.name-view > a:hover {
        color: white; }
        .social-icons.name-view > a:hover i {
          color: #707070; }
        .social-icons.name-view > a:hover span {
          transform: translateX(5px); }
  .social-icons.open-style a i {
    color: var(--text-colour);
    height: auto;
    width: auto; }
    .social-icons.open-style a i::before {
      left: auto;
      position: static;
      top: auto;
      transform: none; }
  .social-icons.open-style a:hover i, .social-icons.open-style a:focus i {
    color: #6ea9ad; }

.twitter-feed {
  height: 100%;
  width: 100%; }
  .twitter-feed h2 {
    margin-top: 0; }
  .twitter-feed .tweet {
    max-width: 100%; }
  .twitter-feed .tweet_list {
    margin: 0;
    padding: 0;
    text-align: left; }
    .twitter-feed .tweet_list li {
      display: inline-block;
      font-size: 1.4rem;
      margin-bottom: 20px;
      padding-bottom: 0;
      position: relative;
      width: 100%; }
      .twitter-feed .tweet_list li::before {
        display: none; }
      .twitter-feed .tweet_list li a {
        color: black;
        font-weight: bold;
        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-container {
    text-align: center; }
    .insta-feed .eapps-instagram-feed-posts-grid-load-more-container .eapps-instagram-feed-posts-grid-load-more {
      background: none !important;
      border: 2px solid white;
      border-radius: 3rem !important;
      display: inline-block;
      height: auto !important;
      margin-top: 150px;
      padding: 15px 30px;
      transition: all 350ms ease-out;
      width: auto !important; }
      .insta-feed .eapps-instagram-feed-posts-grid-load-more-container .eapps-instagram-feed-posts-grid-load-more .eapps-instagram-feed-posts-grid-load-more-text {
        font-family: "Montserrat", sans-serif !important;
        font-size: 1.4rem !important;
        font-weight: 700;
        line-height: 1 !important;
        text-transform: uppercase;
        transition: all 350ms ease-out; }
      .insta-feed .eapps-instagram-feed-posts-grid-load-more-container .eapps-instagram-feed-posts-grid-load-more:hover {
        background-color: white !important; }
        .insta-feed .eapps-instagram-feed-posts-grid-load-more-container .eapps-instagram-feed-posts-grid-load-more:hover .eapps-instagram-feed-posts-grid-load-more-text {
          color: #262626 !important; }

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

div#suitcase {
  cursor: pointer;
  display: inline-block;
  position: fixed;
  right: 0;
  top: calc(60% + 56px);
  transition: right 350ms ease-out;
  width: auto;
  z-index: 420; }
  div#suitcase i {
    font-size: 2rem; }
  div#suitcase #stc-btn {
    align-items: center;
    background-color: #707070;
    border: 1px solid #707070;
    color: white;
    display: flex;
    flex-direction: column;
    height: 52px;
    justify-content: center;
    padding: 5px;
    position: relative;
    transition: background-color 350ms ease-out;
    width: 52px; }
    div#suitcase #stc-btn i {
      margin: auto 0; }
    div#suitcase #stc-btn span {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 500;
      text-transform: uppercase; }
  div#suitcase #stc-act {
    background-color: white;
    border: 1px solid #707070;
    display: flex;
    left: 100%;
    position: absolute;
    transition: all 350ms ease-out;
    top: 0; }
    div#suitcase #stc-act a {
      align-items: center;
      color: #707070;
      display: flex;
      flex-direction: column;
      height: 50px;
      justify-content: center;
      outline: none;
      padding: 5px;
      position: relative;
      text-decoration: none;
      width: 50px; }
      div#suitcase #stc-act a i {
        display: inline-block;
        margin: auto 0;
        transition: color 350ms ease-out; }
      div#suitcase #stc-act a span {
        display: inline-block;
        font-size: 0.8rem;
        font-weight: 500;
        transition: color 350ms ease-out;
        text-transform: uppercase; }
      div#suitcase #stc-act a:hover, div#suitcase #stc-act a:focus {
        background-color: #707070;
        opacity: 1; }
        div#suitcase #stc-act a:hover i, div#suitcase #stc-act a:hover span, div#suitcase #stc-act a:focus i, div#suitcase #stc-act a:focus span {
          color: white; }
  div#suitcase:hover, div#suitcase:focus-within {
    right: 150px; }

div.maf-share-this {
  cursor: pointer;
  display: inline-block;
  font-size: 2rem;
  position: fixed;
  right: 0;
  top: 60%;
  transition: right 350ms ease-out;
  width: auto;
  z-index: 420; }
  div.maf-share-this i {
    font-size: 2rem; }
  div.maf-share-this .maf-share-btn {
    align-items: center;
    background-color: #295e81;
    border: 1px solid #295e81;
    color: white;
    display: flex;
    flex-direction: column;
    height: 52px;
    justify-content: center;
    padding: 5px;
    position: relative;
    transition: background-color 350ms ease-out;
    width: 52px; }
    div.maf-share-this .maf-share-btn i {
      margin: auto 0; }
    div.maf-share-this .maf-share-btn span {
      font-size: 0.8rem;
      font-weight: 500;
      text-transform: uppercase; }
  div.maf-share-this .maf-share-acts {
    background-color: white;
    border: 1px solid #295e81;
    display: flex;
    left: 100%;
    position: absolute;
    transition: all 350ms ease-out;
    top: 0; }
    div.maf-share-this .maf-share-acts a {
      color: #295e81;
      display: inline-block;
      height: 50px;
      outline: none;
      padding: 5px;
      position: relative;
      width: 50px; }
      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, div.maf-share-this .maf-share-acts a:focus {
        background-color: #295e81;
        opacity: 1; }
        div.maf-share-this .maf-share-acts a:hover i, div.maf-share-this .maf-share-acts a:focus i {
          color: white; }
  div.maf-share-this:hover, div.maf-share-this:focus-within {
    right: 200px; }
  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: white;
  border: 1px solid #6ea9ad;
  border-radius: 12px 0 0 12px;
  font-size: 1.4rem;
  height: auto;
  line-height: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 40vh;
  width: 40px; }
  @media only screen and (min-width: 1600px) {
    div#email-floater {
      height: auto;
      padding: 20px 15px;
      width: 142px; } }
  div#email-floater img {
    display: none;
    margin-bottom: 12px;
    width: 50px; }
    @media only screen and (min-width: 1600px) {
      div#email-floater img {
        display: inline-block; } }
  div#email-floater button, div#email-floater a {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: #6ea9ad;
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 700;
    height: 40px;
    justify-content: flex-start;
    line-height: 1;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: left;
    text-decoration: none;
    width: 40px; }
    div#email-floater button span, div#email-floater a span {
      transition: all 350ms ease-out; }
    div#email-floater button:hover, div#email-floater a:hover {
      color: #295e81; }
    div#email-floater button i, div#email-floater a i {
      font-size: 2rem;
      left: 50%;
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%); }
    div#email-floater button span, div#email-floater a span {
      display: none; }
    @media only screen and (min-width: 1600px) {
      div#email-floater button, div#email-floater a {
        height: auto;
        margin: 0 0 12px 0;
        width: auto; }
        div#email-floater button i, div#email-floater a i {
          display: none; }
        div#email-floater button span, div#email-floater a span {
          display: inline; } }
  div#email-floater button {
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-size: 2.6rem;
    font-weight: 400;
    outline-color: transparent;
    text-transform: uppercase; }
  div#email-floater a {
    margin-bottom: 0; }
  div#email-floater hr {
    border-color: white;
    border-width: 1px;
    display: inline-block;
    margin: 0; }
    @media only screen and (min-width: 1600px) {
      div#email-floater hr {
        display: none; } }
  div#email-floater.no-show {
    display: none; }

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

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

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

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

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

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

.pagination {
  align-self: center;
  border: 1px solid #d0d0d0;
  border-right: 0;
  border-left: 0;
  color: #707070;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 50px 0 20px 0;
  padding: 20px 0;
  text-align: center;
  width: 100%; }
  .pagination a, .pagination span {
    align-items: center;
    color: #707070;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
    margin: 3px;
    min-height: 34px;
    min-width: 34px;
    padding: 5px; }
  .pagination a {
    opacity: 1;
    text-decoration: none; }
    .pagination a:hover, .pagination a:focus {
      background-color: #6ea9ad;
      box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.1);
      color: white; }
    .pagination a.previous {
      margin-right: 2px; }
    .pagination a.next {
      margin-left: 2px; }
  .pagination span.active {
    background-color: #6ea9ad;
    box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.1);
    color: white; }

#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% - ( 38px * 2 ) );
      left: 0;
      margin: 30px;
      overflow: hidden;
      position: absolute;
      top: 0;
      transition: all 850ms ease-out;
      width: calc( 100% - ( 38px * 2 ) ); }
      #gallery .item > div:hover {
        background-size: 110% auto; }
      #gallery .item > div .fancybox {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0; }
      #gallery .item > div .h-state {
        align-items: center;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid white;
        color: white;
        display: flex;
        height: 100%;
        justify-content: center;
        left: -100%;
        position: absolute;
        transition: all 850ms ease-out;
        top: -100%;
        width: 100%; }
        #gallery .item > div .h-state::before {
          background-color: white;
          content: "";
          display: block;
          height: 1px;
          left: 100%;
          position: absolute;
          top: 100%;
          width: 100%; }
        #gallery .item > div .h-state::after {
          background-color: white;
          content: "";
          display: block;
          height: 100%;
          left: 100%;
          position: absolute;
          top: 100%;
          width: 1px; }
        #gallery .item > div .h-state h2 {
          display: inline-block;
          font-family: "Roboto", 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 {
  margin: 0 -20px;
  max-width: none;
  width: calc( 100% + 40px );
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center; }
  .is-simple-gallery figure {
    display: inline-block;
    flex: 0 0 100%;
    margin: 0;
    max-width: 340px;
    padding: 40px 20px;
    position: relative; }
    @media only screen and (min-width: 576px) {
      .is-simple-gallery figure {
        flex: 0 0 50%; } }
    @media only screen and (min-width: 960px) {
      .is-simple-gallery figure {
        flex: 0 0 25%; } }
    .is-simple-gallery figure > a {
      display: block;
      height: 100%;
      opacity: 1;
      overflow: hidden;
      position: relative;
      transition: all 700ms ease-out;
      width: 100%; }
      .is-simple-gallery figure > a::after {
        content: "";
        display: table;
        padding-bottom: 100%; }
      .is-simple-gallery figure > a > div, .is-simple-gallery figure > a > img {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: inline-block;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        transform: scale(1);
        transform-origin: center;
        transition: all 700ms ease-out;
        width: 100%; }
      .is-simple-gallery figure > a > img {
        object-fit: cover; }
      .is-simple-gallery figure > a figcaption {
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 0 15px 0 0;
        bottom: 0;
        color: white;
        display: none;
        font-family: "Roboto", sans-serif;
        font-size: 1.2rem;
        left: 0;
        padding: 5px 8px;
        position: absolute; }
      .is-simple-gallery figure > a:hover > div, .is-simple-gallery figure > a:hover > img {
        transform: scale(1.05); }

.gal-prod {
  background-color: white;
  display: inline-flex;
  flex-direction: row;
  font-size: 1.4rem;
  left: 50%;
  max-height: calc( 100% - 90px );
  overflow-y: auto;
  padding: 15px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 90%; }
  .gal-prod > div {
    display: inline-block;
    flex: 1 1 auto;
    padding: 15px; }
    .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%;
        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: #707070;
        border-color: #707070;
        background-image: linear-gradient(to top right, #707070, #e1e1e1);
        color: #707070;
        margin-top: 10px; }
      .gal-prod > div.p-text .embed .small-text {
        margin-top: 5px; }

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

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

div.text-box {
  border: 1px solid #f2f2f2;
  padding: 60px 30px;
  margin: 23px 0;
  width: 100%; }

div.image-box {
  align-items: center;
  color: #707070;
  display: inline-flex;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  flex-direction: column;
  max-width: 700px;
  padding: 0;
  position: relative;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    div.image-box {
      align-items: flex-start;
      flex-direction: row; } }
  div.image-box h1, div.image-box .h1-style, div.image-box h2, div.image-box .h2-style, div.image-box h3, div.image-box .h3-style, div.image-box h4, div.image-box .h4-style, div.image-box h5, div.image-box .h5-style, div.image-box h6.h6-style {
    padding-bottom: 0.3em; }
    div.image-box h1::after, div.image-box .h1-style::after, div.image-box h2::after, div.image-box .h2-style::after, div.image-box h3::after, div.image-box .h3-style::after, div.image-box h4::after, div.image-box .h4-style::after, div.image-box h5::after, div.image-box .h5-style::after, div.image-box h6.h6-style::after {
      display: none; }
  div.image-box p, div.image-box li {
    max-width: none !important; }
  div.image-box li::before {
    color: #707070; }
  div.image-box > div {
    display: inline-block;
    flex: 0 0 auto;
    padding: 0 7.5px 0.5em 7.5px; }
    div.image-box > div > *:last-child {
      margin-bottom: 0; }
  div.image-box .image {
    width: auto; }
    div.image-box .image img, div.image-box .image svg {
      display: block;
      margin: 0;
      max-width: 100%;
      width: 100%; }
    div.image-box .image p.has-img {
      margin-right: 0;
      margin-left: 0;
      width: 100%; }
      div.image-box .image p.has-img img {
        margin: 0 !important; }
  div.image-box .text {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    text-align: left; }
    @media only screen and (min-width: 768px) {
      div.image-box .text {
        padding-left: 15px; } }
  div.image-box.center {
    margin-right: auto;
    margin-left: auto; }

div.image-box-2 {
  align-items: flex-start;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #707070;
  display: inline-flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1000px;
  padding: 0;
  position: relative;
  width: 48%; }
  @media only screen and (min-width: 576px) {
    div.image-box-2 {
      flex-direction: row; } }
  @media only screen and (min-width: 768px) {
    div.image-box-2 {
      flex-direction: column; } }
  div.image-box-2 h1, div.image-box-2 .h1-style, div.image-box-2 h2, div.image-box-2 .h2-style, div.image-box-2 h3, div.image-box-2 .h3-style, div.image-box-2 h4, div.image-box-2 .h4-style, div.image-box-2 h5, div.image-box-2 .h5-style, div.image-box-2 h6.h6-style {
    padding-bottom: 0.3em; }
    div.image-box-2 h1::after, div.image-box-2 .h1-style::after, div.image-box-2 h2::after, div.image-box-2 .h2-style::after, div.image-box-2 h3::after, div.image-box-2 .h3-style::after, div.image-box-2 h4::after, div.image-box-2 .h4-style::after, div.image-box-2 h5::after, div.image-box-2 .h5-style::after, div.image-box-2 h6.h6-style::after {
      display: none; }
  div.image-box-2 p, div.image-box-2 li {
    max-width: none !important; }
  div.image-box-2 li::before {
    color: #707070; }
  div.image-box-2 > div {
    display: inline-block;
    flex: 0 0 auto;
    padding: 0 7.5px 0.5em 7.5px; }
    div.image-box-2 > div > *:last-child {
      margin-bottom: 0; }
  div.image-box-2 .image {
    width: auto; }
    div.image-box-2 .image img, div.image-box-2 .image svg {
      display: block;
      margin: 0;
      max-width: 100%;
      width: 100%; }
    div.image-box-2 .image p.has-img {
      margin-right: 0;
      margin-left: 0;
      width: 100%; }
      div.image-box-2 .image p.has-img img {
        margin: 0 !important; }
  div.image-box-2 .text {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    text-align: left; }
    @media only screen and (min-width: 768px) {
      div.image-box-2 .text {
        padding-left: 15px; } }
  div.image-box-2.center {
    margin-right: auto;
    margin-left: auto; }

div.double-box-right {
  display: flex;
  flex-direction: column; }
  @media only screen and (min-width: 576px) {
    div.double-box-right {
      flex-direction: row; } }
  div.double-box-right .content-box-left {
    width: 48%; }
    @media only screen and (min-width: 576px) {
      div.double-box-right .content-box-left {
        width: 48%; } }
    div.double-box-right .content-box-left .top-circle {
      width: 300px;
      height: 300px;
      border: solid 10px #6ea9ad;
      border-radius: 50%;
      text-align: center;
      align-content: center;
      padding-top: 45px; }
      div.double-box-right .content-box-left .top-circle h4 {
        color: #707070;
        font-size: 40px;
        font-weight: 300; }
      div.double-box-right .content-box-left .top-circle h2 {
        color: #295e81;
        font-size: 80px;
        line-height: 40%;
        margin: 0 0 20px 0;
        padding: 0; }
    div.double-box-right .content-box-left .bottom-text-section {
      width: 100%;
      padding: 30px 0;
      min-width: 300px; }
  div.double-box-right .content-box-right {
    background-color: white;
    min-height: 200px;
    min-width: 350px;
    margin-left: 2%;
    width: 100%;
    flex-direction: column; }
    @media only screen and (min-width: 576px) {
      div.double-box-right .content-box-right {
        flex-direction: row;
        width: 48%; } }
    div.double-box-right .content-box-right .top-circle {
      width: 300px;
      height: 300px;
      border: solid 10px #6ea9ad;
      border-radius: 50%;
      text-align: center;
      align-content: center;
      margin: 0;
      padding: 0;
      padding-top: 50px; }
      div.double-box-right .content-box-right .top-circle h4 {
        color: #707070;
        font-size: 40px;
        font-weight: 300; }
      div.double-box-right .content-box-right .top-circle h2 {
        color: #295e81;
        font-size: 50px;
        line-height: 40%;
        margin: 0 0 20px 0;
        padding: 0; }
    div.double-box-right .content-box-right .bottom-text-section {
      width: 100%;
      padding: 30px 0;
      min-width: 300px; }
  div.double-box-right p, div.double-box-right li {
    max-width: none !important; }
  div.double-box-right li::before {
    color: #707070; }
  div.double-box-right > div {
    display: inline-block;
    flex: 0 0 auto;
    padding: 0 7.5px 0.5em 7.5px; }
    div.double-box-right > div > *:last-child {
      margin-bottom: 0; }
  div.double-box-right .text {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    text-align: left; }
    @media only screen and (min-width: 768px) {
      div.double-box-right .text {
        padding-left: 15px; } }
  div.double-box-right.center {
    margin-right: auto;
    margin-left: auto; }

div.content-callout {
  color: white;
  display: inline-flex;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  flex-direction: column;
  padding: 30px; }
  @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: "Roboto", sans-serif;
    font-size: 3.6rem;
    line-height: 1.1; }

div.history-2-col {
  min-width: 700px; }
  div.history-2-col .row .column.maf-col-2 {
    padding: 0;
    margin: 0;
    border: 0;
    width: 65%; }
    @media only screen and (min-width: 1024px) {
      div.history-2-col .row .column.maf-col-2 {
        width: 65%; } }
    div.history-2-col .row .column.maf-col-2::before {
      display: none; }
    div.history-2-col .row .column.maf-col-2::after {
      display: none; }
  div.history-2-col .row .column.maf-col-3 {
    padding: 0;
    margin: 0;
    border: 0;
    width: 35%; }
    @media only screen and (min-width: 1024px) {
      div.history-2-col .row .column.maf-col-3 {
        width: 35%; } }
    div.history-2-col .row .column.maf-col-3::before {
      display: none; }
    div.history-2-col .row .column.maf-col-3::after {
      display: none; }

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

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

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

div.cardbox, aside.cardbox {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -15px;
  width: calc(100% + 30px);
  /*&.catcard {
    margin-top: $spacing;
    article.card {
      margin-bottom: $spacing;
      .portal-item {
        .portal-content {
          background-color: $colour-1;
          color: $text-body-light;
          overflow: hidden;
          .tn {
            opacity: 0.4;
          }
          .cc-title {
            align-content: center;
            align-items: center;
            color: $text-body-light;
            display: flex;
            font-size: 3rem;
            font-weight: 700;
            height: 100%;
            justify-content: center;
            left: 0;
            line-height: 1.2;
            padding: 20px;
            position: absolute;
            text-shadow: 8px 8px 27px rgba(7, 7, 7, 0.48);
            transition: all $timing $ease;
            top: 0;
            width: 100%;
            z-index: 1;
            @media only screen and (min-width: 576px) {
              font-size: 3.8rem;
            }
          }
          .info {
            height: 100%;
            justify-content: center;
            left: 0;
            opacity: 0;
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 2;
            .card-button {
              background-color: transparent;
              border-color: $text-body-light;
            }
          }
        }
        &:hover, &:focus {
          .tn {
            opacity: 0.1;
          }
          .cc-title {
            color: $colour-1;
            filter: blur(5px);
            opacity: 0;
          }
          .info {
            opacity: 1;
          }
        }
      }
    }
  }*/ }
  div.cardbox .maf-content, aside.cardbox .maf-content {
    padding: 0; }
  div.cardbox article.card, aside.cardbox article.card {
    --card-colour: #22aae2;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    margin-bottom: 40px;
    padding: 15px;
    width: 100%;
    z-index: 1; }
    @media only screen and (min-width: 768px) {
      div.cardbox article.card, aside.cardbox article.card {
        width: 50%; } }
    @media only screen and (min-width: 1024px) {
      div.cardbox article.card, aside.cardbox article.card {
        width: 33.333%; } }
    div.cardbox article.card .portal-item, aside.cardbox article.card .portal-item {
      background-color: white;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      color: #707070;
      cursor: pointer;
      display: inline-block;
      font-size: 1.6rem;
      font-weight: 400;
      height: 100%;
      opacity: 1;
      outline: none;
      overflow: hidden;
      position: relative;
      text-align: left;
      text-decoration: none;
      transform-origin: center;
      transition: all 350ms ease-out;
      width: 100%; }
      div.cardbox article.card .portal-item .portal-content, aside.cardbox article.card .portal-item .portal-content {
        align-content: flex-start;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        position: relative;
        transition: all 350ms ease-out;
        width: 100%; }
        div.cardbox article.card .portal-item .portal-content .card-cats, aside.cardbox article.card .portal-item .portal-content .card-cats {
          border-radius: 0 0 5px 0;
          background-color: #6ea9ad;
          display: inline-block;
          left: 0;
          line-height: 0.9;
          padding: 8px 9px 6px 9px;
          position: absolute;
          top: 0;
          text-transform: uppercase;
          width: auto;
          z-index: 1; }
        div.cardbox article.card .portal-item .portal-content .tn, aside.cardbox article.card .portal-item .portal-content .tn {
          display: inline-block;
          flex: 0 0 auto;
          overflow: hidden;
          position: relative;
          transition: all 350ms ease-out;
          width: 100%; }
          div.cardbox article.card .portal-item .portal-content .tn .tn-img, aside.cardbox article.card .portal-item .portal-content .tn .tn-img {
            height: 100%;
            margin: 0 auto;
            object-fit: cover;
            transform-origin: center;
            transition: all 700ms ease-out;
            width: 100%;
            z-index: 0; }
          div.cardbox article.card .portal-item .portal-content .tn .maf-na, aside.cardbox article.card .portal-item .portal-content .tn .maf-na {
            align-items: center;
            display: inline-flex;
            flex-direction: column;
            justify-content: center;
            left: 0;
            height: 100%;
            font-size: 2rem;
            padding: 20px;
            position: absolute;
            top: 0;
            width: 100%; }
            div.cardbox article.card .portal-item .portal-content .tn .maf-na span, div.cardbox article.card .portal-item .portal-content .tn .maf-na i, aside.cardbox article.card .portal-item .portal-content .tn .maf-na span, aside.cardbox article.card .portal-item .portal-content .tn .maf-na i {
              display: inline-block;
              flex: 0 0 auto; }
            div.cardbox article.card .portal-item .portal-content .tn .maf-na span, aside.cardbox article.card .portal-item .portal-content .tn .maf-na span {
              text-align: center;
              width: 100%; }
            div.cardbox article.card .portal-item .portal-content .tn .maf-na i, aside.cardbox article.card .portal-item .portal-content .tn .maf-na i {
              font-size: 2em; }
          div.cardbox article.card .portal-item .portal-content .tn .tn-button, aside.cardbox article.card .portal-item .portal-content .tn .tn-button {
            background-color: #6ea9ad;
            bottom: 0;
            color: white;
            display: inline-block;
            font-size: 2rem;
            font-weight: 600;
            line-height: 1;
            min-height: 45px;
            padding: 12px 18px 8px 18px;
            position: absolute;
            right: calc(100% - 48px);
            transition: right 350ms ease-out;
            width: 100%; }
            div.cardbox article.card .portal-item .portal-content .tn .tn-button::after, aside.cardbox article.card .portal-item .portal-content .tn .tn-button::after {
              border: 4px solid white;
              border-bottom: 0;
              border-left: 0;
              content: '';
              display: inline-block;
              height: 13px;
              position: absolute;
              right: 0;
              top: 50%;
              transform: translate(-18px, -50%) rotate(45deg);
              width: 13px; }
          div.cardbox article.card .portal-item .portal-content .tn .hover-text, aside.cardbox article.card .portal-item .portal-content .tn .hover-text {
            align-items: center;
            background-color: var(--card-colour);
            display: flex;
            height: 100%;
            left: 0;
            opacity: 0;
            overflow: hidden;
            padding: 10%;
            position: absolute;
            transition: opacity 350ms ease-out;
            top: 0;
            width: 100%; }
          div.cardbox article.card .portal-item .portal-content .tn.no-img .maf-na, aside.cardbox article.card .portal-item .portal-content .tn.no-img .maf-na {
            position: static; }
          div.cardbox article.card .portal-item .portal-content .tn.square::after, div.cardbox article.card .portal-item .portal-content .tn.fourthree::after, div.cardbox article.card .portal-item .portal-content .tn.custom::after, div.cardbox article.card .portal-item .portal-content .tn.show-all::after, aside.cardbox article.card .portal-item .portal-content .tn.square::after, aside.cardbox article.card .portal-item .portal-content .tn.fourthree::after, aside.cardbox article.card .portal-item .portal-content .tn.custom::after, aside.cardbox article.card .portal-item .portal-content .tn.show-all::after {
            content: '';
            display: table;
            padding-bottom: 100%; }
          div.cardbox article.card .portal-item .portal-content .tn.square .tn-img, div.cardbox article.card .portal-item .portal-content .tn.fourthree .tn-img, div.cardbox article.card .portal-item .portal-content .tn.custom .tn-img, div.cardbox article.card .portal-item .portal-content .tn.show-all .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.square .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.fourthree .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.custom .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.show-all .tn-img {
            left: 0;
            position: absolute;
            top: 0;
            transform: scale(1);
            min-width: 100%; }
          div.cardbox article.card .portal-item .portal-content .tn.fourthree::after, aside.cardbox article.card .portal-item .portal-content .tn.fourthree::after {
            padding-bottom: 75%; }
          div.cardbox article.card .portal-item .portal-content .tn.static, aside.cardbox article.card .portal-item .portal-content .tn.static {
            overflow: visible;
            position: static; }
            div.cardbox article.card .portal-item .portal-content .tn.static .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.static .tn-img {
              height: auto;
              max-width: 100%;
              object-fit: scale-down;
              transform-origin: center bottom;
              width: auto; }
            div.cardbox article.card .portal-item .portal-content .tn.static.no-img, aside.cardbox article.card .portal-item .portal-content .tn.static.no-img {
              min-height: 100px; }
          div.cardbox article.card .portal-item .portal-content .tn.show-all::after, aside.cardbox article.card .portal-item .portal-content .tn.show-all::after {
            padding-bottom: 50%; }
          div.cardbox article.card .portal-item .portal-content .tn.show-all .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.show-all .tn-img {
            object-fit: contain; }
          div.cardbox article.card .portal-item .portal-content .tn.custom::after, aside.cardbox article.card .portal-item .portal-content .tn.custom::after {
            padding-bottom: 67.677%; }
        div.cardbox article.card .portal-item .portal-content .info, aside.cardbox article.card .portal-item .portal-content .info {
          align-items: flex-start;
          border-top: 5px solid #6ea9ad;
          display: flex;
          flex: 1 1 auto;
          flex-direction: column;
          justify-content: center;
          padding: 5px 0 0 0;
          transition: all 350ms ease-out;
          width: 100%;
          /*&::before {
            background-image: url('/images/Layout/card-bg.png');
            background-size: 100% 100%;
            content: '';
            height: 100%;
            left: 0;
            min-width: 390px;
            position: absolute;
            top: 0;
            width: 80%;
          }*/ }
        div.cardbox article.card .portal-item .portal-content .categories, aside.cardbox article.card .portal-item .portal-content .categories {
          color: #6ea9ad;
          font-weight: bold;
          padding-top: 5px; }
        div.cardbox article.card .portal-item .portal-content .title, aside.cardbox article.card .portal-item .portal-content .title {
          color: inherit;
          display: inline-block;
          font-size: 2.8rem;
          font-weight: 400;
          line-height: 1.1;
          margin: 0;
          padding: 0;
          position: relative;
          width: 100%; }
          div.cardbox article.card .portal-item .portal-content .title::after, aside.cardbox article.card .portal-item .portal-content .title::after {
            display: none; }
        div.cardbox article.card .portal-item .portal-content .desc, aside.cardbox article.card .portal-item .portal-content .desc {
          display: inline-block;
          line-height: 1.4;
          margin: 0;
          padding: 15px 0 0 0;
          width: 100%; }
          div.cardbox article.card .portal-item .portal-content .desc p, aside.cardbox article.card .portal-item .portal-content .desc p {
            margin-bottom: 0; }
        div.cardbox article.card .portal-item .portal-content .attr, aside.cardbox article.card .portal-item .portal-content .attr {
          display: flex;
          justify-content: center;
          margin-bottom: 10px;
          position: relative;
          width: 100%; }
          div.cardbox article.card .portal-item .portal-content .attr > span, aside.cardbox article.card .portal-item .portal-content .attr > span {
            display: inline-block;
            line-height: 1;
            width: auto; }
        div.cardbox article.card .portal-item .portal-content .date, aside.cardbox article.card .portal-item .portal-content .date {
          font-size: 1.8rem;
          font-weight: 500;
          margin: 0;
          padding: 5px 0;
          width: 100%; }
          div.cardbox article.card .portal-item .portal-content .date time, aside.cardbox article.card .portal-item .portal-content .date time {
            display: inline-block;
            position: relative; }
            div.cardbox article.card .portal-item .portal-content .date time .dl, aside.cardbox article.card .portal-item .portal-content .date time .dl {
              font-weight: 400; }
        div.cardbox article.card .portal-item .portal-content .card-button, aside.cardbox article.card .portal-item .portal-content .card-button {
          background-color: #707070;
          border-color: #707070;
          font-size: 1.6rem;
          margin: auto 0 0 0;
          min-width: 0;
          padding: 10px 15px; }
      div.cardbox article.card .portal-item .itin-actions, aside.cardbox article.card .portal-item .itin-actions {
        align-items: center;
        display: flex;
        justify-content: center;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%; }
        div.cardbox article.card .portal-item .itin-actions form button, aside.cardbox article.card .portal-item .itin-actions form button {
          background-color: transparent;
          border: 0;
          color: inherit;
          cursor: pointer;
          font-family: "Roboto", sans-serif;
          font-size: 1.6rem;
          outline: transparent;
          padding: 5px 10px;
          transition: all 350ms ease-out; }
          div.cardbox article.card .portal-item .itin-actions form button i, aside.cardbox article.card .portal-item .itin-actions form button i {
            font-size: 1.8rem;
            margin-right: 5px; }
          div.cardbox article.card .portal-item .itin-actions form button:hover, aside.cardbox article.card .portal-item .itin-actions form button:hover {
            text-shadow: 2px 2px 0 #6ea9ad; }
        div.cardbox article.card .portal-item .itin-actions > div, div.cardbox article.card .portal-item .itin-actions > form, aside.cardbox article.card .portal-item .itin-actions > div, aside.cardbox article.card .portal-item .itin-actions > form {
          display: inline-block;
          flex: 0 0 auto;
          width: auto; }
        div.cardbox article.card .portal-item .itin-actions .fav-add, aside.cardbox article.card .portal-item .itin-actions .fav-add {
          border: 3px solid white;
          border-radius: 50%;
          height: 30px;
          margin: 5px;
          margin-right: auto;
          opacity: 0;
          padding: 5px;
          position: relative;
          transition: opacity 350ms ease-out;
          width: 30px; }
          div.cardbox article.card .portal-item .itin-actions .fav-add i, aside.cardbox article.card .portal-item .itin-actions .fav-add i {
            left: 50%;
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%); }
      div.cardbox article.card .portal-item.no-link, aside.cardbox article.card .portal-item.no-link {
        cursor: default; }
        div.cardbox article.card .portal-item.no-link .portal-content .info .card-button, aside.cardbox article.card .portal-item.no-link .portal-content .info .card-button {
          display: none; }
      div.cardbox article.card .portal-item.edit .portal-content .info, aside.cardbox article.card .portal-item.edit .portal-content .info {
        position: static;
        transform: none; }
      div.cardbox article.card .portal-item:not(.no-link):hover .portal-content .tn .tn-img, div.cardbox article.card .portal-item:not(.no-link):focus .portal-content .tn .tn-img, aside.cardbox article.card .portal-item:not(.no-link):hover .portal-content .tn .tn-img, aside.cardbox article.card .portal-item:not(.no-link):focus .portal-content .tn .tn-img {
        transform: scale(1.05); }
      div.cardbox article.card .portal-item:not(.no-link):hover .portal-content .tn .tn-button, div.cardbox article.card .portal-item:not(.no-link):focus .portal-content .tn .tn-button, aside.cardbox article.card .portal-item:not(.no-link):hover .portal-content .tn .tn-button, aside.cardbox article.card .portal-item:not(.no-link):focus .portal-content .tn .tn-button {
        right: 0; }
      div.cardbox article.card .portal-item:not(.no-link):hover .portal-content .tn .hover-text, div.cardbox article.card .portal-item:not(.no-link):focus .portal-content .tn .hover-text, aside.cardbox article.card .portal-item:not(.no-link):hover .portal-content .tn .hover-text, aside.cardbox article.card .portal-item:not(.no-link):focus .portal-content .tn .hover-text {
        opacity: 1; }
    div.cardbox article.card.added .portal-item .itin-actions .fav-add, aside.cardbox article.card.added .portal-item .itin-actions .fav-add {
      opacity: 1; }
    div.cardbox article.card.maf-clr-1 .portal-item .portal-content .info .title, aside.cardbox article.card.maf-clr-1 .portal-item .portal-content .info .title {
      background-color: #6ea9ad; }
    div.cardbox article.card.sz-2, aside.cardbox article.card.sz-2 {
      width: 100%; }
      @media only screen and (min-width: 1024px) {
        div.cardbox article.card.sz-2, aside.cardbox article.card.sz-2 {
          width: 50%; } }
      div.cardbox article.card.sz-2 .portal-item .portal-content .tn.custom::after, aside.cardbox article.card.sz-2 .portal-item .portal-content .tn.custom::after {
        padding-bottom: 52.9%; }
  div.cardbox.cols-2 article.card, aside.cardbox.cols-2 article.card {
    width: 100%; }
    div.cardbox.cols-2 article.card .portal-item, aside.cardbox.cols-2 article.card .portal-item {
      max-width: none; }
    @media only screen and (min-width: 1024px) {
      div.cardbox.cols-2 article.card, aside.cardbox.cols-2 article.card {
        max-width: none;
        width: 50%; }
        div.cardbox.cols-2 article.card.maf-cs-2, div.cardbox.cols-2 article.card.maf-cs-3, div.cardbox.cols-2 article.card.maf-cs-4, aside.cardbox.cols-2 article.card.maf-cs-2, aside.cardbox.cols-2 article.card.maf-cs-3, aside.cardbox.cols-2 article.card.maf-cs-4 {
          width: 100%; } }
  div.cardbox.cols-3 article.card, aside.cardbox.cols-3 article.card {
    width: 100%; }
    @media only screen and (min-width: 960px) {
      div.cardbox.cols-3 article.card, aside.cardbox.cols-3 article.card {
        max-width: none;
        width: 33.333%; }
        div.cardbox.cols-3 article.card.maf-cs-2, aside.cardbox.cols-3 article.card.maf-cs-2 {
          width: 66.666%; }
        div.cardbox.cols-3 article.card.maf-cs-3, aside.cardbox.cols-3 article.card.maf-cs-3 {
          width: 100%; } }
  div.cardbox.cols-4 article.card, aside.cardbox.cols-4 article.card {
    width: 100%; }
    @media only screen and (min-width: 576px) {
      div.cardbox.cols-4 article.card, aside.cardbox.cols-4 article.card {
        max-width: none;
        width: 50%; } }
    @media only screen and (min-width: 1152px) {
      div.cardbox.cols-4 article.card, aside.cardbox.cols-4 article.card {
        width: 25%; }
        div.cardbox.cols-4 article.card.maf-cs-2, aside.cardbox.cols-4 article.card.maf-cs-2 {
          width: 50%; }
        div.cardbox.cols-4 article.card.maf-cs-3, aside.cardbox.cols-4 article.card.maf-cs-3 {
          width: 75%; }
        div.cardbox.cols-4 article.card.maf-cs-4, aside.cardbox.cols-4 article.card.maf-cs-4 {
          width: 100%; } }
  div.cardbox .no-articles, aside.cardbox .no-articles {
    font-size: 1.2em;
    padding: 0 15px;
    width: 100%; }
  div.cardbox aside.ad-block, aside.cardbox aside.ad-block {
    cursor: pointer;
    display: inline-block;
    flex: 0 0 auto;
    margin-bottom: 60px;
    padding: 0 15px;
    width: 100%; }
  div.cardbox .maf-msg, aside.cardbox .maf-msg {
    margin: 0 7.5px 30px 7.5px;
    z-index: 1; }
    @media only screen and (min-width: 1366px) {
      div.cardbox .maf-msg, aside.cardbox .maf-msg {
        margin: 0 15px 30px 15px; } }

div.catbox, aside.catbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 0;
  margin: 0 -20px;
  width: calc(100% + 40px); }
  div.catbox article.card, aside.catbox article.card {
    display: inline-block;
    flex: 0 0 auto;
    padding: 20px;
    width: 100%; }
    @media only screen and (min-width: 576px) {
      div.catbox article.card, aside.catbox article.card {
        width: 50%; } }
    @media only screen and (min-width: 768px) {
      div.catbox article.card, aside.catbox article.card {
        width: 33.333%; } }
    @media only screen and (min-width: 960px) {
      div.catbox article.card, aside.catbox article.card {
        width: 25%; } }
    div.catbox article.card .portal-item, aside.catbox article.card .portal-item {
      display: inline-block;
      height: 100%;
      line-height: 0;
      opacity: 1;
      outline: none;
      overflow: hidden;
      text-decoration: none;
      width: 100%; }
      div.catbox article.card .portal-item .portal-content, aside.catbox article.card .portal-item .portal-content {
        background-color: white;
        height: 100%;
        position: relative; }
        div.catbox article.card .portal-item .portal-content .tn, aside.catbox article.card .portal-item .portal-content .tn {
          border: 10px solid white;
          display: inline-block;
          overflow: hidden;
          position: relative;
          width: 100%; }
          div.catbox article.card .portal-item .portal-content .tn::after, aside.catbox article.card .portal-item .portal-content .tn::after {
            content: '';
            display: table;
            padding-bottom: 86.014%; }
          div.catbox article.card .portal-item .portal-content .tn .tn-img, aside.catbox article.card .portal-item .portal-content .tn .tn-img {
            height: 100%;
            left: 0;
            margin: 0 auto;
            object-fit: cover;
            opacity: 1;
            position: absolute;
            top: 0;
            transform: scale(1);
            transform-origin: center;
            transition: all 700ms ease-out;
            width: 100%; }
          div.catbox article.card .portal-item .portal-content .tn.no-img .tn-img, aside.catbox article.card .portal-item .portal-content .tn.no-img .tn-img {
            align-items: center;
            display: flex;
            flex-direction: column;
            justify-content: center; }
        div.catbox article.card .portal-item .portal-content .info, aside.catbox article.card .portal-item .portal-content .info {
          align-items: center;
          display: inline-flex;
          flex-direction: column;
          justify-content: center;
          overflow: hidden;
          padding: 2px 20px 12px 20px;
          transition: all 350ms ease-out;
          width: 100%; }
          div.catbox article.card .portal-item .portal-content .info .ico, aside.catbox article.card .portal-item .portal-content .info .ico {
            display: flex;
            min-height: 69px; }
            div.catbox article.card .portal-item .portal-content .info .ico .ico-img, aside.catbox article.card .portal-item .portal-content .info .ico .ico-img {
              display: inline-block;
              flex: 0 0 auto;
              margin: auto;
              transition: transform 350ms ease-out; }
          div.catbox article.card .portal-item .portal-content .info .title, aside.catbox article.card .portal-item .portal-content .info .title {
            align-items: center;
            color: #707070;
            display: inline-flex;
            font-weight: 600;
            font-size: 2.8rem;
            justify-content: center;
            line-height: 1.2;
            min-height: 96px;
            margin: 0;
            padding: 0;
            text-transform: none;
            width: auto; }
          div.catbox article.card .portal-item .portal-content .info .desc, aside.catbox article.card .portal-item .portal-content .info .desc {
            align-items: center;
            color: white;
            display: none;
            justify-content: center;
            padding: 8px 10px;
            position: absolute;
            transition: top 350ms ease-out;
            width: 100%; }
            div.catbox article.card .portal-item .portal-content .info .desc > *, aside.catbox article.card .portal-item .portal-content .info .desc > * {
              color: white;
              font-size: 1.4rem;
              max-width: 325px;
              width: 100%; }
              div.catbox article.card .portal-item .portal-content .info .desc > *:last-child, aside.catbox article.card .portal-item .portal-content .info .desc > *:last-child {
                margin-bottom: 0; }
      div.catbox article.card .portal-item:hover .portal-content .tn .tn-img, div.catbox article.card .portal-item:focus .portal-content .tn .tn-img, aside.catbox article.card .portal-item:hover .portal-content .tn .tn-img, aside.catbox article.card .portal-item:focus .portal-content .tn .tn-img {
        opacity: 1;
        transform: scale(1.05); }
      div.catbox article.card .portal-item:hover .portal-content .info .ico .ico-img, div.catbox article.card .portal-item:focus .portal-content .info .ico .ico-img, aside.catbox article.card .portal-item:hover .portal-content .info .ico .ico-img, aside.catbox article.card .portal-item:focus .portal-content .info .ico .ico-img {
        transform: scale(1.2); }
  div.catbox.cols-2 article.card, aside.catbox.cols-2 article.card {
    width: 100%; }
    @media only screen and (min-width: 1024px) {
      div.catbox.cols-2 article.card, aside.catbox.cols-2 article.card {
        width: 50%; }
        div.catbox.cols-2 article.card.maf-cs-2, div.catbox.cols-2 article.card.maf-cs-3, div.catbox.cols-2 article.card.maf-cs-4, aside.catbox.cols-2 article.card.maf-cs-2, aside.catbox.cols-2 article.card.maf-cs-3, aside.catbox.cols-2 article.card.maf-cs-4 {
          width: 100%; } }
  div.catbox.cols-3, aside.catbox.cols-3 {
    justify-content: center; }
    @media only screen and (min-width: 768px) {
      div.catbox.cols-3, aside.catbox.cols-3 {
        justify-content: space-between; } }
    div.catbox.cols-3 article.card, aside.catbox.cols-3 article.card {
      width: 100%; }
      @media only screen and (min-width: 768px) {
        div.catbox.cols-3 article.card, aside.catbox.cols-3 article.card {
          width: 50%; } }
      @media only screen and (min-width: 1152px) {
        div.catbox.cols-3 article.card, aside.catbox.cols-3 article.card {
          width: 33.333%; }
          div.catbox.cols-3 article.card.maf-cs-2, aside.catbox.cols-3 article.card.maf-cs-2 {
            width: 66.666%; }
          div.catbox.cols-3 article.card.maf-cs-3, aside.catbox.cols-3 article.card.maf-cs-3 {
            width: 100%; } }
  div.catbox.cols-4 article.card, aside.catbox.cols-4 article.card {
    width: 100%; }
    @media only screen and (min-width: 576px) {
      div.catbox.cols-4 article.card, aside.catbox.cols-4 article.card {
        width: 50%; } }
    @media only screen and (min-width: 1152px) {
      div.catbox.cols-4 article.card, aside.catbox.cols-4 article.card {
        width: 25%; }
        div.catbox.cols-4 article.card.maf-cs-2, aside.catbox.cols-4 article.card.maf-cs-2 {
          width: 50%; }
        div.catbox.cols-4 article.card.maf-cs-3, aside.catbox.cols-4 article.card.maf-cs-3 {
          width: 75%; }
        div.catbox.cols-4 article.card.maf-cs-4, aside.catbox.cols-4 article.card.maf-cs-4 {
          width: 100%; } }

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

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

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

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

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

#basket-link.icon {
  align-items: center;
  color: #707070;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 15px;
  opacity: 1;
  position: relative;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase; }
  #basket-link.icon span {
    display: none;
    flex: 0 0 auto;
    line-height: 1.2; }
    @media only screen and (min-width: 576px) {
      #basket-link.icon span {
        display: inline-block; } }
    #basket-link.icon span:first-child {
      padding: 0 5px 0 0; }
  #basket-link.icon i {
    border: 4px solid #295e81;
    border-radius: 50%;
    color: #707070;
    cursor: pointer;
    display: inline-block;
    font-size: 2.2rem;
    height: 46px;
    padding: 10px;
    position: relative;
    transition: color 350ms ease-out;
    width: 46px; }
    #basket-link.icon i::before {
      left: 50%;
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%); }
  #basket-link.icon .items {
    align-items: center;
    background-color: #6ea9ad;
    border-radius: 50%;
    color: white;
    display: flex;
    font-size: 1rem;
    font-weight: 500;
    height: 20px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: -5px;
    top: -4px;
    width: 20px;
    z-index: 1; }
  #basket-link.icon:hover i, #basket-link.icon:focus i {
    background-color: #295e81;
    color: white; }
#basket-link.default {
  color: #707070;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 10px; }
  #basket-link.default i {
    font-size: 2rem;
    margin-top: 5px;
    margin-right: 10px; }
  #basket-link.default .items .lbl {
    font-weight: 400; }
  #basket-link.default .price {
    margin-left: 10px; }

.maf-bc {
  display: flex;
  justify-content: center;
  padding: 0;
  width: 100%; }
  @media only screen and (min-width: 576px) {
    .maf-bc {
      padding: 0 15px; } }
  .maf-bc.clr-1 {
    background-color: #707070; }
  .maf-bc .maf-bc-i {
    color: #707070;
    font-size: 1.6rem;
    max-width: 1400px;
    padding: 35px 15px 10px 15px;
    width: 100%; }
    .maf-bc .maf-bc-i a {
      color: inherit;
      position: relative;
      text-decoration: none; }
      .maf-bc .maf-bc-i a::before {
        background-color: #707070;
        bottom: 0;
        content: '';
        display: inline-block;
        height: 1px;
        left: 50%;
        position: absolute;
        transform: translate(-50%, 0);
        transition: width 700ms ease-out;
        width: 0;
        z-index: -1; }
      .maf-bc .maf-bc-i a:hover {
        color: #707070; }
        .maf-bc .maf-bc-i a:hover::before {
          width: 100%; }
    .maf-bc .maf-bc-i span.tpage {
      font-weight: 600; }
    .maf-bc .maf-bc-i span.dl {
      display: inline-block;
      margin: 0 5px; }

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

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

#mp-pop-log h1, #mp-pop-log .h1-style, #mp-pop-log h2, #mp-pop-log .h2-style, #mp-pop-log h3, #mp-pop-log .h3-style, #mp-pop-log h4, #mp-pop-log .h4-style, #mp-pop-log h5, #mp-pop-log .h5-style, #mp-pop-log h6.h6-style {
  font-family: "Roboto", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  padding-bottom: 35px;
  position: relative; }
  #mp-pop-log h1::after, #mp-pop-log .h1-style::after, #mp-pop-log h2::after, #mp-pop-log .h2-style::after, #mp-pop-log h3::after, #mp-pop-log .h3-style::after, #mp-pop-log h4::after, #mp-pop-log .h4-style::after, #mp-pop-log h5::after, #mp-pop-log .h5-style::after, #mp-pop-log h6.h6-style::after {
    background-image: url("/images/Layout/hr-bg-green.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 0;
    content: '';
    height: 15px;
    left: 0;
    position: absolute;
    width: 100%; }
#mp-pop-log p.small-text {
  font-size: 1.4rem; }
#mp-pop-log > div {
  background-color: #e4e4e4;
  border-radius: 12px; }
  #mp-pop-log > div .mod-content {
    text-align: left; }
    #mp-pop-log > div .mod-content #p-wrd {
      position: relative; }
      #mp-pop-log > div .mod-content #p-wrd input {
        padding-right: 70px; }
      #mp-pop-log > div .mod-content #p-wrd #forgot {
        display: inline-block;
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 1;
        position: absolute;
        right: 25px;
        text-decoration: none;
        top: 50%;
        transform: translateY(-50%); }
        #mp-pop-log > div .mod-content #p-wrd #forgot:hover {
          color: #6ea9ad; }

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

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

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

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

.nav-underline {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 15px; }
  .nav-underline .line {
    background-color: #707070;
    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: #6ea9ad;
    border: 1px solid #707070;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0);
    cursor: pointer;
    filter: drop-shadow(0 0 0px rgba(0, 0, 0, 0));
    height: calc(100% - 60px);
    justify-content: center;
    padding: 15px;
    text-align: center;
    transition: all 350ms ease-out;
    width: 100%; }
    .maf-portal .maf-content:hover {
      background-color: #295e81 !important;
      box-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
      filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.7)); }
  @media only screen and (min-width: 576px) {
    .maf-portal {
      padding-top: 30px;
      padding-bottom: 30px; }
      .maf-portal .maf-content {
        width: calc(100% - 60px); } }

main {
  background-size: cover;
  padding: 0 0; }
  @media only screen and (min-width: 576px) {
    main {
      padding: 0 0; } }
  body.manageable-bo main {
    padding-top: 0;
    min-height: 0; }

section, .section {
  overflow: hidden; }

section p.page-lead, section span.page-lead, .section p.page-lead, .section span.page-lead, footer p.page-lead, footer span.page-lead, .bo-row p.page-lead, .bo-row span.page-lead {
  font-family: "Roboto", sans-serif;
  font-size: 2.0rem;
  line-height: 1.4;
  font-weight: 700; }
  @media only screen and (min-width: 576px) {
    section p.page-lead, section span.page-lead, .section p.page-lead, .section span.page-lead, footer p.page-lead, footer span.page-lead, .bo-row p.page-lead, .bo-row span.page-lead {
      font-size: 2.4rem; } }
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: "Roboto", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 10px; }
section p.massive-text, section span.massive-text, .section p.massive-text, .section span.massive-text, footer p.massive-text, footer span.massive-text, .bo-row p.massive-text, .bo-row span.massive-text {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1; }
section p.tiny-text, section span.tiny-text, .section p.tiny-text, .section span.tiny-text, footer p.tiny-text, footer span.tiny-text, .bo-row p.tiny-text, .bo-row span.tiny-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.5em !important; }
section p.script-text, section span.script-text, .section p.script-text, .section span.script-text, footer p.script-text, footer span.script-text, .bo-row p.script-text, .bo-row span.script-text {
  font-family: cursive; }
section p.p-yes, section p.p-no, section span.p-yes, section span.p-no, .section p.p-yes, .section p.p-no, .section span.p-yes, .section span.p-no, footer p.p-yes, footer p.p-no, footer span.p-yes, footer span.p-no, .bo-row p.p-yes, .bo-row p.p-no, .bo-row span.p-yes, .bo-row span.p-no {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  padding-left: 11%;
  position: relative; }
  section p.p-yes::before, section p.p-no::before, section span.p-yes::before, section span.p-no::before, .section p.p-yes::before, .section p.p-no::before, .section span.p-yes::before, .section span.p-no::before, footer p.p-yes::before, footer p.p-no::before, footer span.p-yes::before, footer span.p-no::before, .bo-row p.p-yes::before, .bo-row p.p-no::before, .bo-row span.p-yes::before, .bo-row span.p-no::before {
    background-image: url("/images/Layout/ui/tick-circ.svg");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 9%; }
section p.p-yes::before, section span.p-yes::before, .section p.p-yes::before, .section span.p-yes::before, footer p.p-yes::before, footer span.p-yes::before, .bo-row p.p-yes::before, .bo-row span.p-yes::before {
  background-image: url("/images/Layout/ui/tick-circ.svg"); }
section p.p-no::before, section span.p-no::before, .section p.p-no::before, .section span.p-no::before, footer p.p-no::before, footer span.p-no::before, .bo-row p.p-no::before, .bo-row span.p-no::before {
  background-image: url("/images/Layout/ui/cross-circ.svg"); }
section p.has-img, .section p.has-img, footer p.has-img, .bo-row p.has-img {
  /*align-items: center;
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -25px;
  margin-left: -25px;
  width: calc(100% + 50px);*/ }
  section p.has-img img, .section p.has-img img, footer p.has-img img, .bo-row p.has-img img {
    margin: 10px 0 !important; }
    section p.has-img img + img, .section p.has-img img + img, footer p.has-img img + img, .bo-row p.has-img img + img {
      margin-left: 10px; }
  section p.has-img figure img, .section p.has-img figure img, footer p.has-img figure img, .bo-row p.has-img figure img {
    margin: 0 !important; }
section p.p-links, .section p.p-links, footer p.p-links, .bo-row p.p-links {
  margin: 10px -15px 30px -15px;
  position: relative;
  width: calc(100% + 30px); }
  section p.p-links a, .section p.p-links a, footer p.p-links a, .bo-row p.p-links a {
    margin: 0 15px 10px 15px; }
    section p.p-links a img, .section p.p-links a img, footer p.p-links a img, .bo-row p.p-links a img {
      display: inline-block; }
section p.has-figs, .section p.has-figs, footer p.has-figs, .bo-row p.has-figs {
  align-items: flex-end;
  align-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0.4em -20px 2em -20px;
  width: calc(100% + 40px); }
  section p.has-figs figure, .section p.has-figs figure, footer p.has-figs figure, .bo-row p.has-figs figure {
    flex: 0 1 auto;
    margin: 0 20px 1em 20px; }
section h1.page-lead, section .h1-style.page-lead, section h2.page-lead, section .h2-style.page-lead, section h3.page-lead, section .h3-style.page-lead, section h4.page-lead, section .h4-style.page-lead, section h5.page-lead, section .h5-style.page-lead, section h6.page-lead, section .h6-style.page-lead, section p.page-lead, section .p-style.page-lead, .section h1.page-lead, .section .h1-style.page-lead, .section h2.page-lead, .section .h2-style.page-lead, .section h3.page-lead, .section .h3-style.page-lead, .section h4.page-lead, .section .h4-style.page-lead, .section h5.page-lead, .section .h5-style.page-lead, .section h6.page-lead, .section .h6-style.page-lead, .section p.page-lead, .section .p-style.page-lead, footer h1.page-lead, footer .h1-style.page-lead, footer h2.page-lead, footer .h2-style.page-lead, footer h3.page-lead, footer .h3-style.page-lead, footer h4.page-lead, footer .h4-style.page-lead, footer h5.page-lead, footer .h5-style.page-lead, footer h6.page-lead, footer .h6-style.page-lead, footer p.page-lead, footer .p-style.page-lead, .bo-row h1.page-lead, .bo-row .h1-style.page-lead, .bo-row h2.page-lead, .bo-row .h2-style.page-lead, .bo-row h3.page-lead, .bo-row .h3-style.page-lead, .bo-row h4.page-lead, .bo-row .h4-style.page-lead, .bo-row h5.page-lead, .bo-row .h5-style.page-lead, .bo-row h6.page-lead, .bo-row .h6-style.page-lead, .bo-row p.page-lead, .bo-row .p-style.page-lead {
  font-family: "Roboto", sans-serif;
  font-size: 2.0rem;
  line-height: 1.4;
  font-weight: 700; }
  @media only screen and (min-width: 576px) {
    section h1.page-lead, section .h1-style.page-lead, section h2.page-lead, section .h2-style.page-lead, section h3.page-lead, section .h3-style.page-lead, section h4.page-lead, section .h4-style.page-lead, section h5.page-lead, section .h5-style.page-lead, section h6.page-lead, section .h6-style.page-lead, section p.page-lead, section .p-style.page-lead, .section h1.page-lead, .section .h1-style.page-lead, .section h2.page-lead, .section .h2-style.page-lead, .section h3.page-lead, .section .h3-style.page-lead, .section h4.page-lead, .section .h4-style.page-lead, .section h5.page-lead, .section .h5-style.page-lead, .section h6.page-lead, .section .h6-style.page-lead, .section p.page-lead, .section .p-style.page-lead, footer h1.page-lead, footer .h1-style.page-lead, footer h2.page-lead, footer .h2-style.page-lead, footer h3.page-lead, footer .h3-style.page-lead, footer h4.page-lead, footer .h4-style.page-lead, footer h5.page-lead, footer .h5-style.page-lead, footer h6.page-lead, footer .h6-style.page-lead, footer p.page-lead, footer .p-style.page-lead, .bo-row h1.page-lead, .bo-row .h1-style.page-lead, .bo-row h2.page-lead, .bo-row .h2-style.page-lead, .bo-row h3.page-lead, .bo-row .h3-style.page-lead, .bo-row h4.page-lead, .bo-row .h4-style.page-lead, .bo-row h5.page-lead, .bo-row .h5-style.page-lead, .bo-row h6.page-lead, .bo-row .h6-style.page-lead, .bo-row p.page-lead, .bo-row .p-style.page-lead {
      font-size: 2.4rem; } }
section h1.no-margin, section .h1-style.no-margin, section h2.no-margin, section .h2-style.no-margin, section h3.no-margin, section .h3-style.no-margin, section h4.no-margin, section .h4-style.no-margin, section h5.no-margin, section .h5-style.no-margin, section h6.no-margin, section .h6-style.no-margin, section p.no-margin, section .p-style.no-margin, .section h1.no-margin, .section .h1-style.no-margin, .section h2.no-margin, .section .h2-style.no-margin, .section h3.no-margin, .section .h3-style.no-margin, .section h4.no-margin, .section .h4-style.no-margin, .section h5.no-margin, .section .h5-style.no-margin, .section h6.no-margin, .section .h6-style.no-margin, .section p.no-margin, .section .p-style.no-margin, footer h1.no-margin, footer .h1-style.no-margin, footer h2.no-margin, footer .h2-style.no-margin, footer h3.no-margin, footer .h3-style.no-margin, footer h4.no-margin, footer .h4-style.no-margin, footer h5.no-margin, footer .h5-style.no-margin, footer h6.no-margin, footer .h6-style.no-margin, footer p.no-margin, footer .p-style.no-margin, .bo-row h1.no-margin, .bo-row .h1-style.no-margin, .bo-row h2.no-margin, .bo-row .h2-style.no-margin, .bo-row h3.no-margin, .bo-row .h3-style.no-margin, .bo-row h4.no-margin, .bo-row .h4-style.no-margin, .bo-row h5.no-margin, .bo-row .h5-style.no-margin, .bo-row h6.no-margin, .bo-row .h6-style.no-margin, .bo-row p.no-margin, .bo-row .p-style.no-margin {
  margin: 0 !important; }
section h1.small-margin, section .h1-style.small-margin, section h2.small-margin, section .h2-style.small-margin, section h3.small-margin, section .h3-style.small-margin, section h4.small-margin, section .h4-style.small-margin, section h5.small-margin, section .h5-style.small-margin, section h6.small-margin, section .h6-style.small-margin, section p.small-margin, section .p-style.small-margin, .section h1.small-margin, .section .h1-style.small-margin, .section h2.small-margin, .section .h2-style.small-margin, .section h3.small-margin, .section .h3-style.small-margin, .section h4.small-margin, .section .h4-style.small-margin, .section h5.small-margin, .section .h5-style.small-margin, .section h6.small-margin, .section .h6-style.small-margin, .section p.small-margin, .section .p-style.small-margin, footer h1.small-margin, footer .h1-style.small-margin, footer h2.small-margin, footer .h2-style.small-margin, footer h3.small-margin, footer .h3-style.small-margin, footer h4.small-margin, footer .h4-style.small-margin, footer h5.small-margin, footer .h5-style.small-margin, footer h6.small-margin, footer .h6-style.small-margin, footer p.small-margin, footer .p-style.small-margin, .bo-row h1.small-margin, .bo-row .h1-style.small-margin, .bo-row h2.small-margin, .bo-row .h2-style.small-margin, .bo-row h3.small-margin, .bo-row .h3-style.small-margin, .bo-row h4.small-margin, .bo-row .h4-style.small-margin, .bo-row h5.small-margin, .bo-row .h5-style.small-margin, .bo-row h6.small-margin, .bo-row .h6-style.small-margin, .bo-row p.small-margin, .bo-row .p-style.small-margin {
  margin-bottom: 0.2em !important; }
section h1.big-text, section .h1-style.big-text, section h2.big-text, section .h2-style.big-text, section h3.big-text, section .h3-style.big-text, section h4.big-text, section .h4-style.big-text, section h5.big-text, section .h5-style.big-text, section h6.big-text, section .h6-style.big-text, section p.big-text, section .p-style.big-text, .section h1.big-text, .section .h1-style.big-text, .section h2.big-text, .section .h2-style.big-text, .section h3.big-text, .section .h3-style.big-text, .section h4.big-text, .section .h4-style.big-text, .section h5.big-text, .section .h5-style.big-text, .section h6.big-text, .section .h6-style.big-text, .section p.big-text, .section .p-style.big-text, footer h1.big-text, footer .h1-style.big-text, footer h2.big-text, footer .h2-style.big-text, footer h3.big-text, footer .h3-style.big-text, footer h4.big-text, footer .h4-style.big-text, footer h5.big-text, footer .h5-style.big-text, footer h6.big-text, footer .h6-style.big-text, footer p.big-text, footer .p-style.big-text, .bo-row h1.big-text, .bo-row .h1-style.big-text, .bo-row h2.big-text, .bo-row .h2-style.big-text, .bo-row h3.big-text, .bo-row .h3-style.big-text, .bo-row h4.big-text, .bo-row .h4-style.big-text, .bo-row h5.big-text, .bo-row .h5-style.big-text, .bo-row h6.big-text, .bo-row .h6-style.big-text, .bo-row p.big-text, .bo-row .p-style.big-text {
  font-size: 2.8rem; }
section h1.massive-text, section .h1-style.massive-text, section h2.massive-text, section .h2-style.massive-text, section h3.massive-text, section .h3-style.massive-text, section h4.massive-text, section .h4-style.massive-text, section h5.massive-text, section .h5-style.massive-text, section h6.massive-text, section .h6-style.massive-text, section p.massive-text, section .p-style.massive-text, .section h1.massive-text, .section .h1-style.massive-text, .section h2.massive-text, .section .h2-style.massive-text, .section h3.massive-text, .section .h3-style.massive-text, .section h4.massive-text, .section .h4-style.massive-text, .section h5.massive-text, .section .h5-style.massive-text, .section h6.massive-text, .section .h6-style.massive-text, .section p.massive-text, .section .p-style.massive-text, footer h1.massive-text, footer .h1-style.massive-text, footer h2.massive-text, footer .h2-style.massive-text, footer h3.massive-text, footer .h3-style.massive-text, footer h4.massive-text, footer .h4-style.massive-text, footer h5.massive-text, footer .h5-style.massive-text, footer h6.massive-text, footer .h6-style.massive-text, footer p.massive-text, footer .p-style.massive-text, .bo-row h1.massive-text, .bo-row .h1-style.massive-text, .bo-row h2.massive-text, .bo-row .h2-style.massive-text, .bo-row h3.massive-text, .bo-row .h3-style.massive-text, .bo-row h4.massive-text, .bo-row .h4-style.massive-text, .bo-row h5.massive-text, .bo-row .h5-style.massive-text, .bo-row h6.massive-text, .bo-row .h6-style.massive-text, .bo-row p.massive-text, .bo-row .p-style.massive-text {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1; }
section h1.tiny-text, section .h1-style.tiny-text, section h2.tiny-text, section .h2-style.tiny-text, section h3.tiny-text, section .h3-style.tiny-text, section h4.tiny-text, section .h4-style.tiny-text, section h5.tiny-text, section .h5-style.tiny-text, section h6.tiny-text, section .h6-style.tiny-text, section p.tiny-text, section .p-style.tiny-text, .section h1.tiny-text, .section .h1-style.tiny-text, .section h2.tiny-text, .section .h2-style.tiny-text, .section h3.tiny-text, .section .h3-style.tiny-text, .section h4.tiny-text, .section .h4-style.tiny-text, .section h5.tiny-text, .section .h5-style.tiny-text, .section h6.tiny-text, .section .h6-style.tiny-text, .section p.tiny-text, .section .p-style.tiny-text, footer h1.tiny-text, footer .h1-style.tiny-text, footer h2.tiny-text, footer .h2-style.tiny-text, footer h3.tiny-text, footer .h3-style.tiny-text, footer h4.tiny-text, footer .h4-style.tiny-text, footer h5.tiny-text, footer .h5-style.tiny-text, footer h6.tiny-text, footer .h6-style.tiny-text, footer p.tiny-text, footer .p-style.tiny-text, .bo-row h1.tiny-text, .bo-row .h1-style.tiny-text, .bo-row h2.tiny-text, .bo-row .h2-style.tiny-text, .bo-row h3.tiny-text, .bo-row .h3-style.tiny-text, .bo-row h4.tiny-text, .bo-row .h4-style.tiny-text, .bo-row h5.tiny-text, .bo-row .h5-style.tiny-text, .bo-row h6.tiny-text, .bo-row .h6-style.tiny-text, .bo-row p.tiny-text, .bo-row .p-style.tiny-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.5em !important; }
section h1.highlight-text, section .h1-style.highlight-text, section h2.highlight-text, section .h2-style.highlight-text, section h3.highlight-text, section .h3-style.highlight-text, section h4.highlight-text, section .h4-style.highlight-text, section h5.highlight-text, section .h5-style.highlight-text, section h6.highlight-text, section .h6-style.highlight-text, section p.highlight-text, section .p-style.highlight-text, .section h1.highlight-text, .section .h1-style.highlight-text, .section h2.highlight-text, .section .h2-style.highlight-text, .section h3.highlight-text, .section .h3-style.highlight-text, .section h4.highlight-text, .section .h4-style.highlight-text, .section h5.highlight-text, .section .h5-style.highlight-text, .section h6.highlight-text, .section .h6-style.highlight-text, .section p.highlight-text, .section .p-style.highlight-text, footer h1.highlight-text, footer .h1-style.highlight-text, footer h2.highlight-text, footer .h2-style.highlight-text, footer h3.highlight-text, footer .h3-style.highlight-text, footer h4.highlight-text, footer .h4-style.highlight-text, footer h5.highlight-text, footer .h5-style.highlight-text, footer h6.highlight-text, footer .h6-style.highlight-text, footer p.highlight-text, footer .p-style.highlight-text, .bo-row h1.highlight-text, .bo-row .h1-style.highlight-text, .bo-row h2.highlight-text, .bo-row .h2-style.highlight-text, .bo-row h3.highlight-text, .bo-row .h3-style.highlight-text, .bo-row h4.highlight-text, .bo-row .h4-style.highlight-text, .bo-row h5.highlight-text, .bo-row .h5-style.highlight-text, .bo-row h6.highlight-text, .bo-row .h6-style.highlight-text, .bo-row p.highlight-text, .bo-row .p-style.highlight-text {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  font-size: 3rem;
  font-weight: 600;
  margin-top: 10px;
  padding: 10px 0;
  text-transform: uppercase;
  width: auto; }
section h1.small-margin, section .h1-style.small-margin, section h2.small-margin, section .h2-style.small-margin, section h3.small-margin, section .h3-style.small-margin, section h4.small-margin, section .h4-style.small-margin, section h5.small-margin, section .h5-style.small-margin, section h6.small-margin, section .h6-style.small-margin, section p.small-margin, section .p-style.small-margin, .section h1.small-margin, .section .h1-style.small-margin, .section h2.small-margin, .section .h2-style.small-margin, .section h3.small-margin, .section .h3-style.small-margin, .section h4.small-margin, .section .h4-style.small-margin, .section h5.small-margin, .section .h5-style.small-margin, .section h6.small-margin, .section .h6-style.small-margin, .section p.small-margin, .section .p-style.small-margin, footer h1.small-margin, footer .h1-style.small-margin, footer h2.small-margin, footer .h2-style.small-margin, footer h3.small-margin, footer .h3-style.small-margin, footer h4.small-margin, footer .h4-style.small-margin, footer h5.small-margin, footer .h5-style.small-margin, footer h6.small-margin, footer .h6-style.small-margin, footer p.small-margin, footer .p-style.small-margin, .bo-row h1.small-margin, .bo-row .h1-style.small-margin, .bo-row h2.small-margin, .bo-row .h2-style.small-margin, .bo-row h3.small-margin, .bo-row .h3-style.small-margin, .bo-row h4.small-margin, .bo-row .h4-style.small-margin, .bo-row h5.small-margin, .bo-row .h5-style.small-margin, .bo-row h6.small-margin, .bo-row .h6-style.small-margin, .bo-row p.small-margin, .bo-row .p-style.small-margin {
  margin-bottom: 0.5em; }
section h1.big-margin, section .h1-style.big-margin, section h2.big-margin, section .h2-style.big-margin, section h3.big-margin, section .h3-style.big-margin, section h4.big-margin, section .h4-style.big-margin, section h5.big-margin, section .h5-style.big-margin, section h6.big-margin, section .h6-style.big-margin, section p.big-margin, section .p-style.big-margin, .section h1.big-margin, .section .h1-style.big-margin, .section h2.big-margin, .section .h2-style.big-margin, .section h3.big-margin, .section .h3-style.big-margin, .section h4.big-margin, .section .h4-style.big-margin, .section h5.big-margin, .section .h5-style.big-margin, .section h6.big-margin, .section .h6-style.big-margin, .section p.big-margin, .section .p-style.big-margin, footer h1.big-margin, footer .h1-style.big-margin, footer h2.big-margin, footer .h2-style.big-margin, footer h3.big-margin, footer .h3-style.big-margin, footer h4.big-margin, footer .h4-style.big-margin, footer h5.big-margin, footer .h5-style.big-margin, footer h6.big-margin, footer .h6-style.big-margin, footer p.big-margin, footer .p-style.big-margin, .bo-row h1.big-margin, .bo-row .h1-style.big-margin, .bo-row h2.big-margin, .bo-row .h2-style.big-margin, .bo-row h3.big-margin, .bo-row .h3-style.big-margin, .bo-row h4.big-margin, .bo-row .h4-style.big-margin, .bo-row h5.big-margin, .bo-row .h5-style.big-margin, .bo-row h6.big-margin, .bo-row .h6-style.big-margin, .bo-row p.big-margin, .bo-row .p-style.big-margin {
  margin-bottom: 1.5em; }
section h1.dark-glow, section .h1-style.dark-glow, section h2.dark-glow, section .h2-style.dark-glow, section h3.dark-glow, section .h3-style.dark-glow, section h4.dark-glow, section .h4-style.dark-glow, section h5.dark-glow, section .h5-style.dark-glow, section h6.dark-glow, section .h6-style.dark-glow, section p.dark-glow, section .p-style.dark-glow, .section h1.dark-glow, .section .h1-style.dark-glow, .section h2.dark-glow, .section .h2-style.dark-glow, .section h3.dark-glow, .section .h3-style.dark-glow, .section h4.dark-glow, .section .h4-style.dark-glow, .section h5.dark-glow, .section .h5-style.dark-glow, .section h6.dark-glow, .section .h6-style.dark-glow, .section p.dark-glow, .section .p-style.dark-glow, footer h1.dark-glow, footer .h1-style.dark-glow, footer h2.dark-glow, footer .h2-style.dark-glow, footer h3.dark-glow, footer .h3-style.dark-glow, footer h4.dark-glow, footer .h4-style.dark-glow, footer h5.dark-glow, footer .h5-style.dark-glow, footer h6.dark-glow, footer .h6-style.dark-glow, footer p.dark-glow, footer .p-style.dark-glow, .bo-row h1.dark-glow, .bo-row .h1-style.dark-glow, .bo-row h2.dark-glow, .bo-row .h2-style.dark-glow, .bo-row h3.dark-glow, .bo-row .h3-style.dark-glow, .bo-row h4.dark-glow, .bo-row .h4-style.dark-glow, .bo-row h5.dark-glow, .bo-row .h5-style.dark-glow, .bo-row h6.dark-glow, .bo-row .h6-style.dark-glow, .bo-row p.dark-glow, .bo-row .p-style.dark-glow {
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.4); }
section h1.light-glow, section .h1-style.light-glow, section h2.light-glow, section .h2-style.light-glow, section h3.light-glow, section .h3-style.light-glow, section h4.light-glow, section .h4-style.light-glow, section h5.light-glow, section .h5-style.light-glow, section h6.light-glow, section .h6-style.light-glow, section p.light-glow, section .p-style.light-glow, .section h1.light-glow, .section .h1-style.light-glow, .section h2.light-glow, .section .h2-style.light-glow, .section h3.light-glow, .section .h3-style.light-glow, .section h4.light-glow, .section .h4-style.light-glow, .section h5.light-glow, .section .h5-style.light-glow, .section h6.light-glow, .section .h6-style.light-glow, .section p.light-glow, .section .p-style.light-glow, footer h1.light-glow, footer .h1-style.light-glow, footer h2.light-glow, footer .h2-style.light-glow, footer h3.light-glow, footer .h3-style.light-glow, footer h4.light-glow, footer .h4-style.light-glow, footer h5.light-glow, footer .h5-style.light-glow, footer h6.light-glow, footer .h6-style.light-glow, footer p.light-glow, footer .p-style.light-glow, .bo-row h1.light-glow, .bo-row .h1-style.light-glow, .bo-row h2.light-glow, .bo-row .h2-style.light-glow, .bo-row h3.light-glow, .bo-row .h3-style.light-glow, .bo-row h4.light-glow, .bo-row .h4-style.light-glow, .bo-row h5.light-glow, .bo-row .h5-style.light-glow, .bo-row h6.light-glow, .bo-row .h6-style.light-glow, .bo-row p.light-glow, .bo-row .p-style.light-glow {
  text-shadow: 0 0 0.1em rgba(255, 255, 255, 0.7); }
section h1.p-style, section .h1-style.p-style, section h2.p-style, section .h2-style.p-style, section h3.p-style, section .h3-style.p-style, section h4.p-style, section .h4-style.p-style, section h5.p-style, section .h5-style.p-style, section h6.p-style, section .h6-style.p-style, section p.p-style, section .p-style.p-style, .section h1.p-style, .section .h1-style.p-style, .section h2.p-style, .section .h2-style.p-style, .section h3.p-style, .section .h3-style.p-style, .section h4.p-style, .section .h4-style.p-style, .section h5.p-style, .section .h5-style.p-style, .section h6.p-style, .section .h6-style.p-style, .section p.p-style, .section .p-style.p-style, footer h1.p-style, footer .h1-style.p-style, footer h2.p-style, footer .h2-style.p-style, footer h3.p-style, footer .h3-style.p-style, footer h4.p-style, footer .h4-style.p-style, footer h5.p-style, footer .h5-style.p-style, footer h6.p-style, footer .h6-style.p-style, footer p.p-style, footer .p-style.p-style, .bo-row h1.p-style, .bo-row .h1-style.p-style, .bo-row h2.p-style, .bo-row .h2-style.p-style, .bo-row h3.p-style, .bo-row .h3-style.p-style, .bo-row h4.p-style, .bo-row .h4-style.p-style, .bo-row h5.p-style, .bo-row .h5-style.p-style, .bo-row h6.p-style, .bo-row .h6-style.p-style, .bo-row p.p-style, .bo-row .p-style.p-style {
  font-size: 1.6rem;
  font-weight: 400; }
  @media only screen and (min-width: 768px) {
    section h1.p-style, section .h1-style.p-style, section h2.p-style, section .h2-style.p-style, section h3.p-style, section .h3-style.p-style, section h4.p-style, section .h4-style.p-style, section h5.p-style, section .h5-style.p-style, section h6.p-style, section .h6-style.p-style, section p.p-style, section .p-style.p-style, .section h1.p-style, .section .h1-style.p-style, .section h2.p-style, .section .h2-style.p-style, .section h3.p-style, .section .h3-style.p-style, .section h4.p-style, .section .h4-style.p-style, .section h5.p-style, .section .h5-style.p-style, .section h6.p-style, .section .h6-style.p-style, .section p.p-style, .section .p-style.p-style, footer h1.p-style, footer .h1-style.p-style, footer h2.p-style, footer .h2-style.p-style, footer h3.p-style, footer .h3-style.p-style, footer h4.p-style, footer .h4-style.p-style, footer h5.p-style, footer .h5-style.p-style, footer h6.p-style, footer .h6-style.p-style, footer p.p-style, footer .p-style.p-style, .bo-row h1.p-style, .bo-row .h1-style.p-style, .bo-row h2.p-style, .bo-row .h2-style.p-style, .bo-row h3.p-style, .bo-row .h3-style.p-style, .bo-row h4.p-style, .bo-row .h4-style.p-style, .bo-row h5.p-style, .bo-row .h5-style.p-style, .bo-row h6.p-style, .bo-row .h6-style.p-style, .bo-row p.p-style, .bo-row .p-style.p-style {
      font-size: 2rem; } }
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 #295e81;
    border-radius: 50px;
    color: #295e81;
    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: #295e81;
      content: "";
      height: 2px;
      left: calc( 100% + 50px );
      position: absolute;
      top: 50%;
      transition: all 350ms ease-out;
      width: 700px; }
    section div.hr-button a::after, .section div.hr-button a::after, footer div.hr-button a::after, .bo-row div.hr-button a::after {
      left: auto;
      right: calc( 100% + 50px ); }
    section div.hr-button a:hover, .section div.hr-button a:hover, footer div.hr-button a:hover, .bo-row div.hr-button a:hover {
      background-color: #295e81;
      color: white; }
      section div.hr-button a:hover::before, .section div.hr-button a:hover::before, footer div.hr-button a:hover::before, .bo-row div.hr-button a:hover::before {
        left: 100%; }
      section div.hr-button a:hover::after, .section div.hr-button a:hover::after, footer div.hr-button a:hover::after, .bo-row div.hr-button a:hover::after {
        right: 100%; }
section a.button.square, section div.button.square, section button.button.square, section button.maf-button.square, .section a.button.square, .section div.button.square, .section button.button.square, .section button.maf-button.square, footer a.button.square, footer div.button.square, footer button.button.square, footer button.maf-button.square, .bo-row a.button.square, .bo-row div.button.square, .bo-row button.button.square, .bo-row button.maf-button.square {
  border: 1px solid #6ea9ad;
  border-radius: 0;
  color: #6ea9ad; }
  section a.button.square::after, section div.button.square::after, section button.button.square::after, section button.maf-button.square::after, .section a.button.square::after, .section div.button.square::after, .section button.button.square::after, .section button.maf-button.square::after, footer a.button.square::after, footer div.button.square::after, footer button.button.square::after, footer button.maf-button.square::after, .bo-row a.button.square::after, .bo-row div.button.square::after, .bo-row button.button.square::after, .bo-row button.maf-button.square::after {
    display: none; }
  section a.button.square:hover, section div.button.square:hover, section button.button.square:hover, section button.maf-button.square:hover, .section a.button.square:hover, .section div.button.square:hover, .section button.button.square:hover, .section button.maf-button.square:hover, footer a.button.square:hover, footer div.button.square:hover, footer button.button.square:hover, footer button.maf-button.square:hover, .bo-row a.button.square:hover, .bo-row div.button.square:hover, .bo-row button.button.square:hover, .bo-row button.maf-button.square:hover {
    background-color: #6ea9ad;
    color: white; }
section a.button.light, section div.button.light, section button.button.light, section button.maf-button.light, .section a.button.light, .section div.button.light, .section button.button.light, .section button.maf-button.light, footer a.button.light, footer div.button.light, footer button.button.light, footer button.maf-button.light, .bo-row a.button.light, .bo-row div.button.light, .bo-row button.button.light, .bo-row button.maf-button.light {
  background-color: #295e81; }
  section a.button.light::before, section a.button.light::after, section div.button.light::before, section div.button.light::after, section button.button.light::before, section button.button.light::after, section button.maf-button.light::before, section button.maf-button.light::after, .section a.button.light::before, .section a.button.light::after, .section div.button.light::before, .section div.button.light::after, .section button.button.light::before, .section button.button.light::after, .section button.maf-button.light::before, .section button.maf-button.light::after, footer a.button.light::before, footer a.button.light::after, footer div.button.light::before, footer div.button.light::after, footer button.button.light::before, footer button.button.light::after, footer button.maf-button.light::before, footer button.maf-button.light::after, .bo-row a.button.light::before, .bo-row a.button.light::after, .bo-row div.button.light::before, .bo-row div.button.light::after, .bo-row button.button.light::before, .bo-row button.button.light::after, .bo-row button.maf-button.light::before, .bo-row button.maf-button.light::after {
    background-color: #6ea9ad; }
section a.button.chev-point, section div.button.chev-point, section button.button.chev-point, section button.maf-button.chev-point, .section a.button.chev-point, .section div.button.chev-point, .section button.button.chev-point, .section button.maf-button.chev-point, footer a.button.chev-point, footer div.button.chev-point, footer button.button.chev-point, footer button.maf-button.chev-point, .bo-row a.button.chev-point, .bo-row div.button.chev-point, .bo-row button.button.chev-point, .bo-row button.maf-button.chev-point {
  background-color: transparent;
  border: 0;
  color: #e37541;
  box-shadow: none;
  line-height: 1;
  padding: 15px 18px 15px 0;
  position: relative; }
  section a.button.chev-point::after, section div.button.chev-point::after, section button.button.chev-point::after, section button.maf-button.chev-point::after, .section a.button.chev-point::after, .section div.button.chev-point::after, .section button.button.chev-point::after, .section button.maf-button.chev-point::after, footer a.button.chev-point::after, footer div.button.chev-point::after, footer button.button.chev-point::after, footer button.maf-button.chev-point::after, .bo-row a.button.chev-point::after, .bo-row div.button.chev-point::after, .bo-row button.button.chev-point::after, .bo-row button.maf-button.chev-point::after {
    background-color: transparent;
    border: 3px solid #e37541;
    border-top: 0;
    border-left: 0;
    content: '';
    display: inline-block;
    height: 8px;
    left: auto;
    position: absolute;
    right: 0;
    top: 42%;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
    transition: all 350ms ease-out;
    width: 8px; }
  section a.button.chev-point:hover::after, section div.button.chev-point:hover::after, section button.button.chev-point:hover::after, section button.maf-button.chev-point:hover::after, .section a.button.chev-point:hover::after, .section div.button.chev-point:hover::after, .section button.button.chev-point:hover::after, .section button.maf-button.chev-point:hover::after, footer a.button.chev-point:hover::after, footer div.button.chev-point:hover::after, footer button.button.chev-point:hover::after, footer button.maf-button.chev-point:hover::after, .bo-row a.button.chev-point:hover::after, .bo-row div.button.chev-point:hover::after, .bo-row button.button.chev-point:hover::after, .bo-row button.maf-button.chev-point:hover::after {
    top: 46%; }
section a.button.dl-pdf, section div.button.dl-pdf, section button.button.dl-pdf, section button.maf-button.dl-pdf, .section a.button.dl-pdf, .section div.button.dl-pdf, .section button.button.dl-pdf, .section button.maf-button.dl-pdf, footer a.button.dl-pdf, footer div.button.dl-pdf, footer button.button.dl-pdf, footer button.maf-button.dl-pdf, .bo-row a.button.dl-pdf, .bo-row div.button.dl-pdf, .bo-row button.button.dl-pdf, .bo-row button.maf-button.dl-pdf {
  background-color: transparent;
  border: 0;
  color: #295e81;
  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: #6ea9ad;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: white;
  font-family: "Roboto", 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: #295e81;
    content: '';
    display: inline-block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 42px; }
  section a.button.tri-box::after, section div.button.tri-box::after, section button.button.tri-box::after, section button.maf-button.tri-box::after, .section a.button.tri-box::after, .section div.button.tri-box::after, .section button.button.tri-box::after, .section button.maf-button.tri-box::after, footer a.button.tri-box::after, footer div.button.tri-box::after, footer button.button.tri-box::after, footer button.maf-button.tri-box::after, .bo-row a.button.tri-box::after, .bo-row div.button.tri-box::after, .bo-row button.button.tri-box::after, .bo-row button.maf-button.tri-box::after {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid white;
    content: '';
    display: inline-block;
    height: 0;
    position: absolute;
    right: 15px;
    transform: translate(0, -50%);
    transition: right 350ms ease-out;
    top: 50%;
    width: 0; }
  section a.button.tri-box:hover, section div.button.tri-box:hover, section button.button.tri-box:hover, section button.maf-button.tri-box:hover, .section a.button.tri-box:hover, .section div.button.tri-box:hover, .section button.button.tri-box:hover, .section button.maf-button.tri-box:hover, footer a.button.tri-box:hover, footer div.button.tri-box:hover, footer button.button.tri-box:hover, footer button.maf-button.tri-box:hover, .bo-row a.button.tri-box:hover, .bo-row div.button.tri-box:hover, .bo-row button.button.tri-box:hover, .bo-row button.maf-button.tri-box:hover {
    background-color: #6ea9ad;
    border-color: #6ea9ad; }
    section a.button.tri-box:hover::after, section div.button.tri-box:hover::after, section button.button.tri-box:hover::after, section button.maf-button.tri-box:hover::after, .section a.button.tri-box:hover::after, .section div.button.tri-box:hover::after, .section button.button.tri-box:hover::after, .section button.maf-button.tri-box:hover::after, footer a.button.tri-box:hover::after, footer div.button.tri-box:hover::after, footer button.button.tri-box:hover::after, footer button.maf-button.tri-box:hover::after, .bo-row a.button.tri-box:hover::after, .bo-row div.button.tri-box:hover::after, .bo-row button.button.tri-box:hover::after, .bo-row button.maf-button.tri-box:hover::after {
      right: 10px; }
section a.button.tri, section div.button.tri, section button.button.tri, section button.maf-button.tri, .section a.button.tri, .section div.button.tri, .section button.button.tri, .section button.maf-button.tri, footer a.button.tri, footer div.button.tri, footer button.button.tri, footer button.maf-button.tri, .bo-row a.button.tri, .bo-row div.button.tri, .bo-row button.button.tri, .bo-row button.maf-button.tri {
  padding: 9px 40px 9px 18px; }
  section a.button.tri::after, section div.button.tri::after, section button.button.tri::after, section button.maf-button.tri::after, .section a.button.tri::after, .section div.button.tri::after, .section button.button.tri::after, .section button.maf-button.tri::after, footer a.button.tri::after, footer div.button.tri::after, footer button.button.tri::after, footer button.maf-button.tri::after, .bo-row a.button.tri::after, .bo-row div.button.tri::after, .bo-row button.button.tri::after, .bo-row button.maf-button.tri::after {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid white;
    content: '';
    display: inline-block;
    height: 0;
    position: absolute;
    right: 20px;
    transform: translate(0, -50%);
    transition: all 350ms ease-out;
    top: 50%;
    width: 0; }
  section a.button.tri:hover::after, section div.button.tri:hover::after, section button.button.tri:hover::after, section button.maf-button.tri:hover::after, .section a.button.tri:hover::after, .section div.button.tri:hover::after, .section button.button.tri:hover::after, .section button.maf-button.tri:hover::after, footer a.button.tri:hover::after, footer div.button.tri:hover::after, footer button.button.tri:hover::after, footer button.maf-button.tri:hover::after, .bo-row a.button.tri:hover::after, .bo-row div.button.tri:hover::after, .bo-row button.button.tri:hover::after, .bo-row button.maf-button.tri:hover::after {
    right: 12px;
    transform: translate(0, -50%) scale(1.2); }
section a.button.chevron, section div.button.chevron, section button.button.chevron, section button.maf-button.chevron, .section a.button.chevron, .section div.button.chevron, .section button.button.chevron, .section button.maf-button.chevron, footer a.button.chevron, footer div.button.chevron, footer button.button.chevron, footer button.maf-button.chevron, .bo-row a.button.chevron, .bo-row div.button.chevron, .bo-row button.button.chevron, .bo-row button.maf-button.chevron {
  padding-right: 40px;
  position: relative; }
  section a.button.chevron::before, section a.button.chevron::after, section div.button.chevron::before, section div.button.chevron::after, section button.button.chevron::before, section button.button.chevron::after, section button.maf-button.chevron::before, section button.maf-button.chevron::after, .section a.button.chevron::before, .section a.button.chevron::after, .section div.button.chevron::before, .section div.button.chevron::after, .section button.button.chevron::before, .section button.button.chevron::after, .section button.maf-button.chevron::before, .section button.maf-button.chevron::after, footer a.button.chevron::before, footer a.button.chevron::after, footer div.button.chevron::before, footer div.button.chevron::after, footer button.button.chevron::before, footer button.button.chevron::after, footer button.maf-button.chevron::before, footer button.maf-button.chevron::after, .bo-row a.button.chevron::before, .bo-row a.button.chevron::after, .bo-row div.button.chevron::before, .bo-row div.button.chevron::after, .bo-row button.button.chevron::before, .bo-row button.button.chevron::after, .bo-row button.maf-button.chevron::before, .bo-row button.maf-button.chevron::after {
    background-color: white;
    content: '';
    display: inline-block;
    position: absolute;
    height: 3px;
    width: 14px;
    right: 20px;
    top: 50%;
    transform: rotate(45deg);
    transform-origin: right center;
    transition: all 350ms ease-out; }
  section a.button.chevron::after, section div.button.chevron::after, section button.button.chevron::after, section button.maf-button.chevron::after, .section a.button.chevron::after, .section div.button.chevron::after, .section button.button.chevron::after, .section button.maf-button.chevron::after, footer a.button.chevron::after, footer div.button.chevron::after, footer button.button.chevron::after, footer button.maf-button.chevron::after, .bo-row a.button.chevron::after, .bo-row div.button.chevron::after, .bo-row button.button.chevron::after, .bo-row button.maf-button.chevron::after {
    transform: rotate(-45deg); }
  section a.button.chevron:hover::before, section div.button.chevron:hover::before, section button.button.chevron:hover::before, section button.maf-button.chevron:hover::before, .section a.button.chevron:hover::before, .section div.button.chevron:hover::before, .section button.button.chevron:hover::before, .section button.maf-button.chevron:hover::before, footer a.button.chevron:hover::before, footer div.button.chevron:hover::before, footer button.button.chevron:hover::before, footer button.maf-button.chevron:hover::before, .bo-row a.button.chevron:hover::before, .bo-row div.button.chevron:hover::before, .bo-row button.button.chevron:hover::before, .bo-row button.maf-button.chevron:hover::before {
    background-color: #6ea9ad;
    right: 10px; }
  section a.button.chevron:hover::after, section div.button.chevron:hover::after, section button.button.chevron:hover::after, section button.maf-button.chevron:hover::after, .section a.button.chevron:hover::after, .section div.button.chevron:hover::after, .section button.button.chevron:hover::after, .section button.maf-button.chevron:hover::after, footer a.button.chevron:hover::after, footer div.button.chevron:hover::after, footer button.button.chevron:hover::after, footer button.maf-button.chevron:hover::after, .bo-row a.button.chevron:hover::after, .bo-row div.button.chevron:hover::after, .bo-row button.button.chevron:hover::after, .bo-row button.maf-button.chevron:hover::after {
    background-color: #6ea9ad;
    right: 10px; }
section a.button.white, section div.button.white, section button.button.white, section button.maf-button.white, .section a.button.white, .section div.button.white, .section button.button.white, .section button.maf-button.white, footer a.button.white, footer div.button.white, footer button.button.white, footer button.maf-button.white, .bo-row a.button.white, .bo-row div.button.white, .bo-row button.button.white, .bo-row button.maf-button.white {
  border-color: white;
  background-color: white;
  color: #707070; }
  section a.button.white:hover, section div.button.white:hover, section button.button.white:hover, section button.maf-button.white:hover, .section a.button.white:hover, .section div.button.white:hover, .section button.button.white:hover, .section button.maf-button.white:hover, footer a.button.white:hover, footer div.button.white:hover, footer button.button.white:hover, footer button.maf-button.white:hover, .bo-row a.button.white:hover, .bo-row div.button.white:hover, .bo-row button.button.white:hover, .bo-row button.maf-button.white:hover {
    background-color: transparent;
    color: white; }
section a.button.circle, section div.button.circle, section button.button.circle, section button.maf-button.circle, .section a.button.circle, .section div.button.circle, .section button.button.circle, .section button.maf-button.circle, footer a.button.circle, footer div.button.circle, footer button.button.circle, footer button.maf-button.circle, .bo-row a.button.circle, .bo-row div.button.circle, .bo-row button.button.circle, .bo-row button.maf-button.circle {
  background-color: #b01e59;
  border: 0;
  border-radius: 50%;
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  min-width: 0;
  padding: 25px;
  position: relative; }
  section a.button.circle:after, section div.button.circle:after, section button.button.circle:after, section button.maf-button.circle:after, .section a.button.circle:after, .section div.button.circle:after, .section button.button.circle:after, .section button.maf-button.circle:after, footer a.button.circle:after, footer div.button.circle:after, footer button.button.circle:after, footer button.maf-button.circle:after, .bo-row a.button.circle:after, .bo-row div.button.circle:after, .bo-row button.button.circle:after, .bo-row button.maf-button.circle:after {
    content: '';
    padding-top: 100%;
    display: table; }
section.animate .maf-content, section.animate .insta-feed, section.animate .cardbox .card, section.animate .column, section.animate .row::after, .section.animate .maf-content, .section.animate .insta-feed, .section.animate .cardbox .card, .section.animate .column, .section.animate .row::after, footer.animate .maf-content, footer.animate .insta-feed, footer.animate .cardbox .card, footer.animate .column, footer.animate .row::after, .bo-row.animate .maf-content, .bo-row.animate .insta-feed, .bo-row.animate .cardbox .card, .bo-row.animate .column, .bo-row.animate .row::after {
  filter: grayscale(100%);
  opacity: 0;
  transform: translateY(60px);
  transition: all 1200ms ease-out; }
section.animate .footer, .section.animate .footer, footer.animate .footer, .bo-row.animate .footer {
  filter: grayscale(100%);
  opacity: 0;
  transform: translateY(60px);
  transition: all 1200ms ease-out; }
section.animate .cardbox .card:nth-child(1), .section.animate .cardbox .card:nth-child(1), footer.animate .cardbox .card:nth-child(1), .bo-row.animate .cardbox .card:nth-child(1) {
  transition-delay: 350ms; }
section.animate .cardbox .card:nth-child(2), .section.animate .cardbox .card:nth-child(2), footer.animate .cardbox .card:nth-child(2), .bo-row.animate .cardbox .card:nth-child(2) {
  transition-delay: 700ms; }
section.animate .cardbox .card:nth-child(3), .section.animate .cardbox .card:nth-child(3), footer.animate .cardbox .card:nth-child(3), .bo-row.animate .cardbox .card:nth-child(3) {
  transition-delay: 1050ms; }
section.animate .cardbox .card:nth-child(4), .section.animate .cardbox .card:nth-child(4), footer.animate .cardbox .card:nth-child(4), .bo-row.animate .cardbox .card:nth-child(4) {
  transition-delay: 1400ms; }
section.animate .cardbox .card:nth-child(5), .section.animate .cardbox .card:nth-child(5), footer.animate .cardbox .card:nth-child(5), .bo-row.animate .cardbox .card:nth-child(5) {
  transition-delay: 1750ms; }
section.animate .cardbox .card:nth-child(6), .section.animate .cardbox .card:nth-child(6), footer.animate .cardbox .card:nth-child(6), .bo-row.animate .cardbox .card:nth-child(6) {
  transition-delay: 2100ms; }
section.animate .cardbox .card:nth-child(7), .section.animate .cardbox .card:nth-child(7), footer.animate .cardbox .card:nth-child(7), .bo-row.animate .cardbox .card:nth-child(7) {
  transition-delay: 2450ms; }
section.animate .cardbox .card:nth-child(8), .section.animate .cardbox .card:nth-child(8), footer.animate .cardbox .card:nth-child(8), .bo-row.animate .cardbox .card:nth-child(8) {
  transition-delay: 2800ms; }
section.animate .cardbox .card:nth-child(9), .section.animate .cardbox .card:nth-child(9), footer.animate .cardbox .card:nth-child(9), .bo-row.animate .cardbox .card:nth-child(9) {
  transition-delay: 3150ms; }
section.animate .cardbox .card:nth-child(10), .section.animate .cardbox .card:nth-child(10), footer.animate .cardbox .card:nth-child(10), .bo-row.animate .cardbox .card:nth-child(10) {
  transition-delay: 3500ms; }
section.animate .cardbox .card:nth-child(11), .section.animate .cardbox .card:nth-child(11), footer.animate .cardbox .card:nth-child(11), .bo-row.animate .cardbox .card:nth-child(11) {
  transition-delay: 3850ms; }
section.animate .cardbox .card:nth-child(12), .section.animate .cardbox .card:nth-child(12), footer.animate .cardbox .card:nth-child(12), .bo-row.animate .cardbox .card:nth-child(12) {
  transition-delay: 4200ms; }
section.animate .cardbox .card:nth-child(13), .section.animate .cardbox .card:nth-child(13), footer.animate .cardbox .card:nth-child(13), .bo-row.animate .cardbox .card:nth-child(13) {
  transition-delay: 4550ms; }
section.animate .cardbox .card:nth-child(14), .section.animate .cardbox .card:nth-child(14), footer.animate .cardbox .card:nth-child(14), .bo-row.animate .cardbox .card:nth-child(14) {
  transition-delay: 4900ms; }
section.animate .cardbox .card:nth-child(15), .section.animate .cardbox .card:nth-child(15), footer.animate .cardbox .card:nth-child(15), .bo-row.animate .cardbox .card:nth-child(15) {
  transition-delay: 5250ms; }
section.animate .cardbox .card:nth-child(16), .section.animate .cardbox .card:nth-child(16), footer.animate .cardbox .card:nth-child(16), .bo-row.animate .cardbox .card:nth-child(16) {
  transition-delay: 5600ms; }
section.animate .cardbox .card:nth-child(17), .section.animate .cardbox .card:nth-child(17), footer.animate .cardbox .card:nth-child(17), .bo-row.animate .cardbox .card:nth-child(17) {
  transition-delay: 5950ms; }
section.animate .cardbox .card:nth-child(18), .section.animate .cardbox .card:nth-child(18), footer.animate .cardbox .card:nth-child(18), .bo-row.animate .cardbox .card:nth-child(18) {
  transition-delay: 6300ms; }
section.animate .cardbox .card:nth-child(19), .section.animate .cardbox .card:nth-child(19), footer.animate .cardbox .card:nth-child(19), .bo-row.animate .cardbox .card:nth-child(19) {
  transition-delay: 6650ms; }
section.animate .cardbox .card:nth-child(20), .section.animate .cardbox .card:nth-child(20), footer.animate .cardbox .card:nth-child(20), .bo-row.animate .cardbox .card:nth-child(20) {
  transition-delay: 7000ms; }
section.animate .cardbox .card:nth-child(21), .section.animate .cardbox .card:nth-child(21), footer.animate .cardbox .card:nth-child(21), .bo-row.animate .cardbox .card:nth-child(21) {
  transition-delay: 7350ms; }
section.animate .cardbox .card:nth-child(22), .section.animate .cardbox .card:nth-child(22), footer.animate .cardbox .card:nth-child(22), .bo-row.animate .cardbox .card:nth-child(22) {
  transition-delay: 7700ms; }
section.animate .cardbox .card:nth-child(23), .section.animate .cardbox .card:nth-child(23), footer.animate .cardbox .card:nth-child(23), .bo-row.animate .cardbox .card:nth-child(23) {
  transition-delay: 8050ms; }
section.animate.anim-1 .maf-content, section.animate.anim-1 .column, section.animate.anim-1 .row::after, .section.animate.anim-1 .maf-content, .section.animate.anim-1 .column, .section.animate.anim-1 .row::after, footer.animate.anim-1 .maf-content, footer.animate.anim-1 .column, footer.animate.anim-1 .row::after, .bo-row.animate.anim-1 .maf-content, .bo-row.animate.anim-1 .column, .bo-row.animate.anim-1 .row::after {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0); }
section.animate.anim-2 .insta-feed, section.animate.anim-2 .cardbox .card, .section.animate.anim-2 .insta-feed, .section.animate.anim-2 .cardbox .card, footer.animate.anim-2 .insta-feed, footer.animate.anim-2 .cardbox .card, .bo-row.animate.anim-2 .insta-feed, .bo-row.animate.anim-2 .cardbox .card {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0); }
section.animate.anim-3 .footer, .section.animate.anim-3 .footer, footer.animate.anim-3 .footer, .bo-row.animate.anim-3 .footer {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0); }

@keyframes bgcolourfade {
  0% {
    background: #707070; }
  20% {
    background: #295e81; }
  40% {
    background: #b01e59; }
  60% {
    background: #707070; }
  80% {
    background: #e1e1e1; }
  100% {
    background: #707070; } }
.bg-1 > .maf-background {
  background-color: #295e81 !important; }

.bg-2 > .maf-background {
  background-color: #707070 !important; }

.bg-3 > .maf-background {
  background-color: #e4e4e4 !important; }

.bg-4 {
  color: white; }
  .bg-4 > .maf-background {
    background-color: #b01e59 !important; }
  .bg-4 .maf-content * {
    color: white; }
  .bg-4 .maf-content h1::after, .bg-4 .maf-content .h1-style::after, .bg-4 .maf-content h2::after, .bg-4 .maf-content .h2-style::after, .bg-4 .maf-content h3::after, .bg-4 .maf-content .h3-style::after, .bg-4 .maf-content h4::after, .bg-4 .maf-content .h4-style::after, .bg-4 .maf-content h5::after, .bg-4 .maf-content .h5-style::after, .bg-4 .maf-content h6.h6-style::after {
    background-color: white; }
  .bg-4 .maf-content hr {
    border-color: white; }
  .bg-4 .maf-content a.button {
    border-color: white;
    color: white; }
    .bg-4 .maf-content a.button:hover, .bg-4 .maf-content a.button:focus, .bg-4 .maf-content a.button:active {
      background-color: white;
      color: #b01e59; }

.bg-5 {
  background-color: black !important;
  color: white; }
  .bg-5 .maf-content *:not(.button) {
    color: white; }
  .bg-5 .maf-content hr {
    border-color: white; }

.bg-6 {
  animation: bgcolourfade 90s infinite;
  color: #e4e4e4; }
  .bg-6 .maf-content * {
    color: #e4e4e4; }
  .bg-6 .maf-content hr {
    border-color: #e4e4e4; }
  .bg-6 .maf-content a.button {
    background-color: transparent;
    border-color: #e4e4e4;
    color: #e4e4e4; }
    .bg-6 .maf-content a.button:hover {
      background-color: #e4e4e4;
      color: white; }

.is-main-header {
  background-color: white;
  color: #707070;
  display: inline-block;
  height: 120px;
  padding: 0 0;
  transition: all 350ms ease-out;
  width: 100%;
  z-index: 666; }
  .is-main-header.is-fixed {
    left: 0;
    position: fixed;
    top: 0;
    transform: translateZ(0); }
  @media only screen and (min-width: 768px) {
    .is-main-header {
      height: 200px; } }
  .is-main-header > div.h-con {
    align-items: center;
    align-content: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    transition: all 350ms ease-out;
    width: 100%; }
    .is-main-header > div.h-con .ui-con {
      display: flex;
      flex: 0 1 auto;
      height: auto;
      justify-content: space-between;
      line-height: 0;
      margin: auto;
      max-height: 100%;
      max-width: 1480px;
      min-height: 60px;
      padding: 10px;
      position: relative;
      text-align: center;
      transition: all 350ms ease-out;
      width: 100%;
      z-index: 100; }
      @media only screen and (min-width: 576px) {
        .is-main-header > div.h-con .ui-con {
          padding: 10px 15px; } }
      @media only screen and (min-width: 1280px) {
        .is-main-header > div.h-con .ui-con {
          padding: 10px 30px; } }
      .is-main-header > div.h-con .ui-con .company-brand {
        align-items: center;
        align-content: center;
        cursor: pointer;
        display: inline-flex;
        flex: 0 0 auto;
        font-family: "Roboto", sans-serif;
        font-size: 1.5rem;
        line-height: 0;
        max-width: 80%;
        opacity: 1;
        position: relative;
        text-align: left;
        transition: height 350ms linear;
        width: auto;
        z-index: 102; }
        .is-main-header > div.h-con .ui-con .company-brand #logo, .is-main-header > div.h-con .ui-con .company-brand svg {
          display: inline-block;
          flex: 0 0 0;
          height: auto;
          max-height: 100%;
          max-width: 70%;
          opacity: 1;
          transform: scale(1);
          transition: opacity 700ms ease-out 700ms, height 350ms linear;
          width: auto; }
          @media only screen and (min-width: 1024px) {
            .is-main-header > div.h-con .ui-con .company-brand #logo, .is-main-header > div.h-con .ui-con .company-brand svg {
              max-width: 100%; } }
        .is-main-header > div.h-con .ui-con .company-brand #maf-strap {
          color: #707070;
          display: inline-block;
          font-family: "Roboto", sans-serif;
          font-size: 2rem;
          font-weight: 600;
          line-height: 1;
          text-transform: uppercase;
          white-space: nowrap; }
          @media only screen and (min-width: 576px) {
            .is-main-header > div.h-con .ui-con .company-brand #maf-strap {
              font-size: 3rem; } }
    .is-main-header > div.h-con .n-con {
      align-items: flex-end;
      background-color: transparent;
      display: flex;
      height: auto;
      flex: 0 0 auto;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: center;
      padding: 0 0;
      transition: opacity 350ms ease-out 500ms;
      width: 100%;
      z-index: 101; }
      @media only screen and (min-width: 576px) {
        .is-main-header > div.h-con .n-con {
          padding: 0 0; } }
      @media only screen and (min-width: 1280px) {
        .is-main-header > div.h-con .n-con {
          padding: 0 0; } }
    .is-main-header > div.h-con #header-ui {
      align-items: flex-end;
      color: #707070;
      display: flex;
      flex-direction: column;
      font-family: "Roboto", sans-serif;
      font-size: 1.8rem;
      justify-content: flex-end;
      line-height: 0;
      margin: auto 0;
      max-width: 1400px;
      opacity: 1;
      padding: 0 10px 0 0;
      position: relative;
      transition: top 350ms ease-out, opacity 700ms ease-out;
      width: auto;
      z-index: 777; }
      .is-main-header > div.h-con #header-ui a {
        text-decoration: none; }
      .is-main-header > div.h-con #header-ui .button {
        min-width: 0;
        text-align: center;
        padding: 12px 60px;
        display: none;
        margin-top: 10px;
        margin-bottom: 20px; }
        .is-main-header > div.h-con #header-ui .button::after {
          display: none; }
        @media only screen and (min-width: 576px) {
          .is-main-header > div.h-con #header-ui .button {
            display: inline-block; } }
      .is-main-header > div.h-con #header-ui .phone {
        color: white;
        line-height: 1;
        white-space: nowrap; }
        .is-main-header > div.h-con #header-ui .phone i {
          vertical-align: middle; }
        .is-main-header > div.h-con #header-ui .phone span {
          display: inline-block;
          margin-left: 5px;
          vertical-align: middle; }
          .is-main-header > div.h-con #header-ui .phone span:first-child {
            margin-left: 0; }
      .is-main-header > div.h-con #header-ui .icons {
        text-align: right; }
        .is-main-header > div.h-con #header-ui .icons hr.show-mobile {
          border: 0;
          height: 0;
          margin: 0;
          max-width: none; }
          @media only screen and (min-width: 768px) {
            .is-main-header > div.h-con #header-ui .icons hr.show-mobile {
              display: none; } }
    .is-main-header > div.h-con #header-ui-alt {
      left: 0;
      opacity: 1;
      position: absolute;
      text-align: left;
      top: -200px;
      transition: all 350ms ease-out; }
      @media only screen and (min-width: 576px) {
        .is-main-header > div.h-con #header-ui-alt {
          left: 30px; } }
    .is-main-header > div.h-con #site-nav {
      flex: 0 0 auto;
      flex-direction: row;
      margin: 0;
      max-width: 1486px;
      padding: 0;
      width: 100%; }
    .is-main-header > div.h-con #mobile-burger {
      margin: 0 10px auto 0; }
    .is-main-header > div.h-con #dash-links {
      display: inline-block;
      flex: 0 0 auto;
      padding: 6px 6px 0;
      position: relative; }
      @media only screen and (min-width: 576px) {
        .is-main-header > div.h-con #dash-links {
          padding: 12px 12px 0; } }
      .is-main-header > div.h-con #dash-links .button {
        background-color: white;
        border: 4px solid #295e81;
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0;
        padding: 10px;
        position: relative;
        text-transform: none;
        z-index: 2; }
        @media only screen and (min-width: 576px) {
          .is-main-header > div.h-con #dash-links .button {
            font-size: 2.4rem; } }
        .is-main-header > div.h-con #dash-links .button::after {
          display: none; }
        .is-main-header > div.h-con #dash-links .button:hover, .is-main-header > div.h-con #dash-links .button:focus {
          background-color: #295e81;
          color: white; }
      .is-main-header > div.h-con #dash-links #dash-links-drop {
        background-color: #e4e4e4;
        border-radius: 8px;
        box-shadow: 0 13px 27px rgba(0, 0, 0, 0.31);
        display: none;
        font-size: 1.4rem;
        left: 0;
        line-height: 1;
        padding: 56px 12px 12px 12px;
        position: absolute;
        text-align: right;
        top: 0;
        width: 100%;
        z-index: 1; }
        @media only screen and (min-width: 576px) {
          .is-main-header > div.h-con #dash-links #dash-links-drop {
            font-size: 2.2rem;
            padding: 76px 12px 12px 12px; } }
        .is-main-header > div.h-con #dash-links #dash-links-drop a {
          color: #707070;
          display: inline-block;
          font-weight: 500;
          outline: none;
          padding: 4px 0;
          text-decoration: none; }
          .is-main-header > div.h-con #dash-links #dash-links-drop a:hover, .is-main-header > div.h-con #dash-links #dash-links-drop a:focus {
            color: #295e81; }
  @media only screen and (min-width: 1024px) {
    .is-main-header.menu-split > div.h-con .ui-con .company-brand {
      display: none; } }
  .is-main-header.menu-split > div.h-con .n-con {
    justify-content: center; }
    .is-main-header.menu-split > div.h-con .n-con .maf-acc-menu #menu-con ul.nav > li.home-link {
      display: none;
      line-height: 1; }
      @media only screen and (min-width: 1024px) {
        .is-main-header.menu-split > div.h-con .n-con .maf-acc-menu #menu-con ul.nav > li.home-link {
          display: inline-block; } }
      .is-main-header.menu-split > div.h-con .n-con .maf-acc-menu #menu-con ul.nav > li.home-link a svg {
        display: inline-block; }
        .is-main-header.menu-split > div.h-con .n-con .maf-acc-menu #menu-con ul.nav > li.home-link a svg path {
          fill: #fff;
          transition: fill 350ms ease-out; }
    @media only screen and (min-width: 1024px) {
      .is-main-header.menu-split > div.h-con .n-con .maf-acc-menu #menu-con ul.nav > li.home-link-mob {
        display: none; } }
    @media only screen and (min-width: 1280px) {
      .is-main-header.menu-split > div.h-con .n-con .maf-acc-menu.dtop-view .nav > li {
        min-width: 140px; } }
    .is-main-header.menu-split > div.h-con .n-con .maf-acc-menu.dtop-view .nav > li:nth-child(2) {
      margin-left: auto; }
    .is-main-header.menu-split > div.h-con .n-con .maf-acc-menu.dtop-view .nav > li.home-link {
      margin: 0 auto; }
    .is-main-header.menu-split > div.h-con .n-con .maf-acc-menu.dtop-view .nav > li:last-child {
      margin-right: auto; }
  .is-main-header.squish {
    height: 120px;
    top: 0; }
    .is-main-header.squish > div.h-con .n-con {
      /*.maf-acc-menu {
        .mobile-burger {
          .lines {
            [class*="line"] {}
          }
        }
        &.dtop-view {
          #menu-con {
            ul.nav {
              > li {
                &.home-link {
                  a {
                    svg {
                      path {}
                    }
                  }
                }
                > a {
                  &:hover,&:focus {
                    > span {}
                  }
                }
              }
            }
          }
        }
      }*/ }

.hero-header {
  background-color: #707070;
  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/Layout/texture-bmp/vignette.png");
    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 ease-out;
    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: 1400px;
      padding: 0 15px;
      position: relative; }
      @media only screen and (min-width: 576px) {
        .hero-header .u-con .u-con-i {
          padding: 0 30px; } }
      .hero-header .u-con .u-con-i #con-left, .hero-header .u-con .u-con-i #con-right {
        bottom: 10px;
        color: #707070;
        display: inline-block;
        font-family: "Roboto", sans-serif;
        left: 15px;
        opacity: 0;
        position: absolute;
        transition: opacity 350ms ease-out; }
        @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: 30px; } }
        @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: 15px;
        text-align: right; }
        @media only screen and (min-width: 576px) {
          .hero-header .u-con .u-con-i #con-right {
            right: 30px; } }
      .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;
        transform: translate(-50%, -50%);
        transition: top 350ms ease-out, height 350ms ease-out; }
        .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 .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 #707070;
        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 #707070;
      border-bottom: 1px solid #707070;
      display: inline-block;
      height: 100px;
      position: relative;
      transition: all 350ms ease-out;
      width: 100%;
      z-index: 100; }
      .hero-header .n-con .n-con-stky .is-tvw-menu.is-web {
        height: 100%;
        left: 50%;
        position: absolute;
        right: auto;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: all 350ms ease-out;
        width: 100%; }
        .hero-header .n-con .n-con-stky .is-tvw-menu.is-web .nav-content {
          height: 100%;
          max-width: 1400px;
          padding: 0 30px;
          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 #707070;
              border-right: 1px solid #707070;
              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 #707070;
                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: #707070; }
                  .hero-header .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li.active > a {
                    background-color: #707070; }
      .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: 1340px;
          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: #707070;
            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: #707070 !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: 30px;
          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: #707070;
      font-family: "Roboto", sans-serif;
      font-size: 1.4rem;
      height: 100%;
      line-height: 1.3;
      margin: auto 0;
      min-width: 0;
      outline-color: #707070;
      padding: 10px 20px;
      text-transform: none;
      transition: all 700ms ease-out;
      width: 100%; }
      .hero-header.magazine .n-con .n-con-stky .is-tvw-menu.is-web .nav-content .links ul > li > form input::placeholder {
        font-family: "Roboto", 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: #707070;
        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%;
      top: 10px; }
      @media only screen and (min-width: 1152px) {
        .hero-header.magazine.squish .u-con .u-con-i #maf-brand-m {
          transform: translate(-50%, -50%); } }
      @media only screen and (min-width: 1152px) {
        .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: #707070 !important; }
      body.maf-pl-1 .hero-header.magazine.squish .u-con .u-con-i #maf-brand-m svg #maf-logo-lines {
        stroke: #707070 !important; }
  .hero-header.magazine.article .c-con .row .column .maf-content {
    align-items: center;
    border: 1px solid #707070;
    border-bottom: 0;
    flex-direction: column;
    max-width: 1160px;
    padding: 30px 15px 15px 15px; }
    .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: "Roboto", 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 #707070; } }
  .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: "Roboto", 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 .header .maf-content.filters, .section .header .maf-content.filters {
  background-color: #295e81;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  max-width: none;
  padding: 40px 20px;
  position: relative; }
  section .header .maf-content.filters::before, section .header .maf-content.filters::after, .section .header .maf-content.filters::before, .section .header .maf-content.filters::after {
    background-color: #295e81;
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    width: 100vw; }
  section .header .maf-content.filters::before, .section .header .maf-content.filters::before {
    right: 100%; }
  section .header .maf-content.filters::after, .section .header .maf-content.filters::after {
    left: 100%; }
  section .header .maf-content.filters h2, section .header .maf-content.filters .h2-style, .section .header .maf-content.filters h2, .section .header .maf-content.filters .h2-style {
    color: #707070;
    margin-bottom: 0.3em; }
  section .header .maf-content.filters .button, .section .header .maf-content.filters .button {
    background-color: transparent;
    border: 1px solid #6ea9ad;
    color: #6ea9ad;
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 8px;
    min-width: 0;
    padding: 12px 35px; }
    section .header .maf-content.filters .button:hover, section .header .maf-content.filters .button:focus, section .header .maf-content.filters .button.active, .section .header .maf-content.filters .button:hover, .section .header .maf-content.filters .button:focus, .section .header .maf-content.filters .button.active {
      background-color: #6ea9ad;
      color: white; }
  section .header .maf-content.filters .item, .section .header .maf-content.filters .item {
    margin: 8px; }
    section .header .maf-content.filters .item .select select, .section .header .maf-content.filters .item .select select {
      margin: 0; }
    section .header .maf-content.filters .item .select.active, .section .header .maf-content.filters .item .select.active {
      background-color: #d8e96f; }
section.is-hero, .section.is-hero {
  max-width: 1400px;
  border: 0;
  color: white;
  position: relative;
  transition: min-height 350ms ease-out, opacity 350ms ease-out 300ms; }
  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 {
    align-self: flex-start;
    color: #295e81;
    line-height: 1; }
    section.is-hero h1::after, section.is-hero .h1-style::after, section.is-hero h2::after, section.is-hero .h2-style::after, section.is-hero h3::after, section.is-hero .h3-style::after, section.is-hero h4::after, section.is-hero .h4-style::after, section.is-hero h5::after, section.is-hero .h5-style::after, section.is-hero h6.h6-style::after, .section.is-hero h1::after, .section.is-hero .h1-style::after, .section.is-hero h2::after, .section.is-hero .h2-style::after, .section.is-hero h3::after, .section.is-hero .h3-style::after, .section.is-hero h4::after, .section.is-hero .h4-style::after, .section.is-hero h5::after, .section.is-hero .h5-style::after, .section.is-hero h6.h6-style::after {
      background-color: #6ea9ad;
      bottom: 0;
      border-radius: 1px;
      box-shadow: 3px 3px 6px black;
      content: '';
      height: 5px;
      left: 50%;
      position: absolute;
      transform: translateX(-50%);
      width: 85%;
      display: none; }
  section.is-hero p, .section.is-hero p {
    color: #295e81; }
  section.is-hero a.button, .section.is-hero a.button {
    background-color: #6ea9ad;
    border: 2px solid #6ea9ad; }
    section.is-hero a.button:hover, .section.is-hero a.button:hover {
      background-color: #295e81;
      border: 2px solid #295e81; }
  section.is-hero #hero-logo, .section.is-hero #hero-logo {
    display: none;
    margin: auto;
    transition: all 350ms ease-out; }
    section.is-hero #hero-logo p, .section.is-hero #hero-logo p {
      display: inline-block; }
  section.is-hero > .maf-background, .section.is-hero > .maf-background {
    transition: all 350ms ease-out; }
  section.is-hero .row, .section.is-hero .row {
    flex-direction: column;
    max-width: none;
    padding: 0;
    transition: opacity 350ms ease-out; }
    @media only screen and (min-width: 960px) {
      section.is-hero .row, .section.is-hero .row {
        flex-direction: row; } }
    section.is-hero .row .column, .section.is-hero .row .column {
      justify-content: center;
      text-align: center;
      width: 100%; }
      section.is-hero .row .column .maf-content, .section.is-hero .row .column .maf-content {
        align-self: flex-start;
        padding-bottom: 40px;
        padding: 20px 20px 20px 15px;
        text-align: left;
        background-color: rgba(255, 255, 255, 0.5); }
        @media only screen and (min-width: 960px) {
          section.is-hero .row .column .maf-content, .section.is-hero .row .column .maf-content {
            background-color: rgba(255, 255, 255, 0);
            padding: 0; } }
  body.is-home section.is-hero, body.is-home .section.is-hero {
    max-width: 1400px; }
    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 h3, body.is-home section.is-hero .h3-style, body.is-home section.is-hero h4, body.is-home section.is-hero .h4-style, body.is-home section.is-hero h5, body.is-home section.is-hero .h5-style, body.is-home section.is-hero h6.h6-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, body.is-home .section.is-hero h3, body.is-home .section.is-hero .h3-style, body.is-home .section.is-hero h4, body.is-home .section.is-hero .h4-style, body.is-home .section.is-hero h5, body.is-home .section.is-hero .h5-style, body.is-home .section.is-hero h6.h6-style {
      padding: 0;
      width: 100%; }
      body.is-home section.is-hero h1::after, body.is-home section.is-hero .h1-style::after, body.is-home section.is-hero h2::after, body.is-home section.is-hero .h2-style::after, body.is-home section.is-hero h3::after, body.is-home section.is-hero .h3-style::after, body.is-home section.is-hero h4::after, body.is-home section.is-hero .h4-style::after, body.is-home section.is-hero h5::after, body.is-home section.is-hero .h5-style::after, body.is-home section.is-hero h6.h6-style::after, body.is-home .section.is-hero h1::after, body.is-home .section.is-hero .h1-style::after, body.is-home .section.is-hero h2::after, body.is-home .section.is-hero .h2-style::after, body.is-home .section.is-hero h3::after, body.is-home .section.is-hero .h3-style::after, body.is-home .section.is-hero h4::after, body.is-home .section.is-hero .h4-style::after, body.is-home .section.is-hero h5::after, body.is-home .section.is-hero .h5-style::after, body.is-home .section.is-hero h6.h6-style::after {
        display: none; }
    body.is-home section.is-hero .row .column, body.is-home .section.is-hero .row .column {
      padding: 0 !important; }
      body.is-home section.is-hero .row .column.maf-col-1, body.is-home .section.is-hero .row .column.maf-col-1 {
        justify-content: center; }
        body.is-home section.is-hero .row .column.maf-col-1 .maf-content, body.is-home .section.is-hero .row .column.maf-col-1 .maf-content {
          align-self: flex-start;
          padding-bottom: 40px;
          padding: 0 !important;
          text-align: left; }
          @media only screen and (min-width: 960px) {
            body.is-home section.is-hero .row .column.maf-col-1 .maf-content, body.is-home .section.is-hero .row .column.maf-col-1 .maf-content {
              background-color: rgba(255, 255, 255, 0);
              padding: 0; } }
          body.is-home section.is-hero .row .column.maf-col-1 .maf-content h1:first-child, body.is-home section.is-hero .row .column.maf-col-1 .maf-content .h1-style:first-child, body.is-home section.is-hero .row .column.maf-col-1 .maf-content h2:first-child, body.is-home section.is-hero .row .column.maf-col-1 .maf-content .h2-style:first-child, body.is-home section.is-hero .row .column.maf-col-1 .maf-content h3:first-child, body.is-home section.is-hero .row .column.maf-col-1 .maf-content .h3-style:first-child, body.is-home section.is-hero .row .column.maf-col-1 .maf-content h4:first-child, body.is-home section.is-hero .row .column.maf-col-1 .maf-content .h4-style:first-child, body.is-home section.is-hero .row .column.maf-col-1 .maf-content h5:first-child, body.is-home section.is-hero .row .column.maf-col-1 .maf-content .h5-style:first-child, body.is-home section.is-hero .row .column.maf-col-1 .maf-content h6.h6-style:first-child, body.is-home .section.is-hero .row .column.maf-col-1 .maf-content h1:first-child, body.is-home .section.is-hero .row .column.maf-col-1 .maf-content .h1-style:first-child, body.is-home .section.is-hero .row .column.maf-col-1 .maf-content h2:first-child, body.is-home .section.is-hero .row .column.maf-col-1 .maf-content .h2-style:first-child, body.is-home .section.is-hero .row .column.maf-col-1 .maf-content h3:first-child, body.is-home .section.is-hero .row .column.maf-col-1 .maf-content .h3-style:first-child, body.is-home .section.is-hero .row .column.maf-col-1 .maf-content h4:first-child, body.is-home .section.is-hero .row .column.maf-col-1 .maf-content .h4-style:first-child, body.is-home .section.is-hero .row .column.maf-col-1 .maf-content h5:first-child, body.is-home .section.is-hero .row .column.maf-col-1 .maf-content .h5-style:first-child, body.is-home .section.is-hero .row .column.maf-col-1 .maf-content h6.h6-style:first-child {
            margin-bottom: 60px; }
    body.is-home section.is-hero.animate .row .column.maf-col-1, body.is-home .section.is-hero.animate .row .column.maf-col-1 {
      filter: grayscale(0%);
      opacity: 1;
      transform: translateY(0); }
  body.is-home section.is-hero.below-nav.squish, body.is-home .section.is-hero.below-nav.squish {
    min-height: calc( 100vh - 120px ); }
  body.manageable-bo section.is-hero > .maf-background, body.manageable-bo .section.is-hero > .maf-background {
    margin: 0; }
  body.manageable-bo section.is-hero .row, body.manageable-bo .section.is-hero .row {
    padding-top: 0; }
  section.is-hero.slideshow > .maf-background, .section.is-hero.slideshow > .maf-background {
    background-image: none; }
  section.is-hero.slideshow .flickity-slideshow, section.is-hero.slideshow .flickity-slideshow-edit, .section.is-hero.slideshow .flickity-slideshow, .section.is-hero.slideshow .flickity-slideshow-edit {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10; }
    section.is-hero.slideshow .flickity-slideshow .ss-slide, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide, .section.is-hero.slideshow .flickity-slideshow .ss-slide, .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide {
      align-items: center;
      display: flex;
      height: 100%;
      justify-content: center;
      overflow: hidden;
      width: 100%; }
      section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-background, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-background, .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-background, .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-background {
        opacity: 0.5; }
      section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content, .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content, .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content {
        align-content: center;
        align-items: center;
        max-width: 1400px;
        padding: 30px 15px;
        position: relative;
        text-align: center; }
        @media only screen and (min-width: 576px) {
          section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content, .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content, .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content {
            padding: 30px; } }
        section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *, .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *, .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > * {
          opacity: 0;
          transform: translateX(50px);
          transition: all 700ms ease-out; }
          section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(1), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(1), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(1), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(1) {
            transition-delay: 250ms; }
          section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(2), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(2), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(2), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(2) {
            transition-delay: 500ms; }
          section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(3), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(3), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(3), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(3) {
            transition-delay: 750ms; }
          section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(4), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(4), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(4), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(4) {
            transition-delay: 1000ms; }
          section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(5), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(5), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(5), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(5) {
            transition-delay: 1250ms; }
          section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(6), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(6), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(6), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(6) {
            transition-delay: 1500ms; }
          section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(7), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(7), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(7), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(7) {
            transition-delay: 1750ms; }
          section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(8), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(8), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(8), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(8) {
            transition-delay: 2000ms; }
          section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(9), section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(9), .section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *:nth-child(9), .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > *:nth-child(9) {
            transition-delay: 2250ms; }
      section.is-hero.slideshow .flickity-slideshow .ss-slide.is-selected .maf-content > *, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide.is-selected .maf-content > *, .section.is-hero.slideshow .flickity-slideshow .ss-slide.is-selected .maf-content > *, .section.is-hero.slideshow .flickity-slideshow-edit .ss-slide.is-selected .maf-content > * {
        opacity: 1;
        transform: translateX(0); }
    section.is-hero.slideshow .flickity-slideshow .flickity-page-dots, section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots, .section.is-hero.slideshow .flickity-slideshow .flickity-page-dots, .section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots {
      bottom: 5px; }
      @media only screen and (min-width: 576px) {
        section.is-hero.slideshow .flickity-slideshow .flickity-page-dots, section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots, .section.is-hero.slideshow .flickity-slideshow .flickity-page-dots, .section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots {
          bottom: 10%; } }
      section.is-hero.slideshow .flickity-slideshow .flickity-page-dots .dot, section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots .dot, .section.is-hero.slideshow .flickity-slideshow .flickity-page-dots .dot, .section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots .dot {
        background: rgba(255, 255, 255, 0.4); }
        section.is-hero.slideshow .flickity-slideshow .flickity-page-dots .dot::before, section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots .dot::before, .section.is-hero.slideshow .flickity-slideshow .flickity-page-dots .dot::before, .section.is-hero.slideshow .flickity-slideshow-edit .flickity-page-dots .dot::before {
          background-color: white; }
section.one-column .row .column, .section.one-column .row .column {
  justify-content: center;
  text-align: center; }
  section.one-column .row .column .maf-content, .section.one-column .row .column .maf-content {
    align-items: center;
    max-width: 900px; }
section.one-column.brands hr, .section.one-column.brands hr {
  border-color: #295e81;
  max-width: 126px; }
section.one-column.brands .row .column, .section.one-column.brands .row .column {
  padding-top: 1em; }
  section.one-column.brands .row .column .maf-content, .section.one-column.brands .row .column .maf-content {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center; }
    section.one-column.brands .row .column .maf-content p, .section.one-column.brands .row .column .maf-content p {
      margin: 20px 30px;
      width: auto; }
section.one-column.bg-right .maf-background, .section.one-column.bg-right .maf-background {
  background-position: right; }
section.one-column.bg-right .row .column, .section.one-column.bg-right .row .column {
  align-items: center;
  justify-content: flex-start;
  text-align: left; }
  section.one-column.bg-right .row .column .maf-content, .section.one-column.bg-right .row .column .maf-content {
    align-items: flex-start;
    max-width: 505px; }
section.one-column.bg-left, .section.one-column.bg-left {
  min-height: 666px; }
  section.one-column.bg-left .maf-background, .section.one-column.bg-left .maf-background {
    background-position: right; }
  section.one-column.bg-left .row .column, .section.one-column.bg-left .row .column {
    justify-content: center;
    text-align: left; }
    @media only screen and (min-width: 1024px) {
      section.one-column.bg-left .row .column, .section.one-column.bg-left .row .column {
        align-items: flex-end; } }
    section.one-column.bg-left .row .column .maf-content, .section.one-column.bg-left .row .column .maf-content {
      align-items: flex-start;
      max-width: 600px; }
section.one-column.video .row, .section.one-column.video .row {
  max-width: none;
  padding: 0; }
  section.one-column.video .row .column, .section.one-column.video .row .column {
    padding: 0; }
    section.one-column.video .row .column .maf-content, .section.one-column.video .row .column .maf-content {
      max-width: none; }
section.two-column .row .column, .section.two-column .row .column {
  justify-content: flex-start; }
  section.two-column .row .column .maf-content, .section.two-column .row .column .maf-content {
    align-items: flex-start;
    justify-content: center; }
section.two-column.full-width .row, .section.two-column.full-width .row {
  max-width: none;
  padding: 0; }
  section.two-column.full-width .row .column, .section.two-column.full-width .row .column {
    padding: 50px 15px; }
    @media only screen and (min-width: 960px) {
      section.two-column.full-width .row .column, .section.two-column.full-width .row .column {
        padding: 50px 15px; } }
    section.two-column.full-width .row .column .maf-content, .section.two-column.full-width .row .column .maf-content {
      align-items: center;
      max-width: 655px; }
section.two-column.maf-col-bg-full, .section.two-column.maf-col-bg-full {
  padding: 0; }
  section.two-column.maf-col-bg-full .row, .section.two-column.maf-col-bg-full .row {
    max-width: none;
    padding: 0; }
    section.two-column.maf-col-bg-full .row .column .maf-col-i, .section.two-column.maf-col-bg-full .row .column .maf-col-i {
      align-items: center;
      display: flex;
      flex: 1 1 auto;
      flex-direction: column;
      justify-content: center;
      position: relative;
      width: 100%; }
      @media only screen and (min-width: 1024px) {
        section.two-column.maf-col-bg-full .row .column .maf-col-i, .section.two-column.maf-col-bg-full .row .column .maf-col-i {
          max-width: 640px; } }
      section.two-column.maf-col-bg-full .row .column .maf-col-i .maf-content, .section.two-column.maf-col-bg-full .row .column .maf-col-i .maf-content {
        max-width: 450px; }
    @media only screen and (min-width: 1024px) {
      section.two-column.maf-col-bg-full .row .column.maf-col-1, .section.two-column.maf-col-bg-full .row .column.maf-col-1 {
        align-items: flex-end; } }
    @media only screen and (min-width: 1024px) {
      section.two-column.maf-col-bg-full .row .column.maf-col-2, .section.two-column.maf-col-bg-full .row .column.maf-col-2 {
        align-items: flex-start; } }
    section.two-column.maf-col-bg-full .row .column.has-bg, .section.two-column.maf-col-bg-full .row .column.has-bg {
      min-height: 100vw; }
      @media only screen and (min-width: 1024px) {
        section.two-column.maf-col-bg-full .row .column.has-bg, .section.two-column.maf-col-bg-full .row .column.has-bg {
          min-height: 50vw; } }
  section.two-column.maf-col-bg-full.full-width .row .column .maf-col-i, .section.two-column.maf-col-bg-full.full-width .row .column .maf-col-i {
    max-width: none; }
section.two-column.bg-right > .maf-background, .section.two-column.bg-right > .maf-background {
  align-content: flex-end;
  align-items: flex-end;
  display: flex;
  justify-content: flex-end; }
  section.two-column.bg-right > .maf-background img, .section.two-column.bg-right > .maf-background img {
    max-height: 100%;
    max-width: 55%; }
section.two-column.bg-left .row, .section.two-column.bg-left .row {
  flex-direction: column-reverse; }
  @media only screen and (min-width: 1024px) {
    section.two-column.bg-left .row, .section.two-column.bg-left .row {
      flex-direction: row; } }
  section.two-column.bg-left .row .column, .section.two-column.bg-left .row .column {
    padding-bottom: 25px; }
    section.two-column.bg-left .row .column .maf-col-i, .section.two-column.bg-left .row .column .maf-col-i {
      justify-content: center; }
    section.two-column.bg-left .row .column.maf-col-1, .section.two-column.bg-left .row .column.maf-col-1 {
      padding-left: 0; }
      section.two-column.bg-left .row .column.maf-col-1 .maf-background, .section.two-column.bg-left .row .column.maf-col-1 .maf-background {
        height: auto;
        left: auto;
        position: static;
        text-align: left;
        top: auto;
        transform: none;
        width: 100%; }
        section.two-column.bg-left .row .column.maf-col-1 .maf-background img, .section.two-column.bg-left .row .column.maf-col-1 .maf-background img {
          height: auto;
          width: 100%; }
      section.two-column.bg-left .row .column.maf-col-1 .maf-col-i, .section.two-column.bg-left .row .column.maf-col-1 .maf-col-i {
        color: white;
        max-width: 584.75px;
        position: absolute;
        right: 50%;
        top: 50%;
        transform: translate(50%, -50%); }
        @media only screen and (min-width: 1024px) {
          section.two-column.bg-left .row .column.maf-col-1 .maf-col-i, .section.two-column.bg-left .row .column.maf-col-1 .maf-col-i {
            right: 0;
            transform: translate(0, -50%); } }
section.two-column.img-right h1, section.two-column.img-right .h1-style, section.two-column.img-right h2, section.two-column.img-right .h2-style, section.two-column.img-right h3, section.two-column.img-right .h3-style, section.two-column.img-right h4, section.two-column.img-right .h4-style, section.two-column.img-right h5, section.two-column.img-right .h5-style, section.two-column.img-right h6.h6-style, .section.two-column.img-right h1, .section.two-column.img-right .h1-style, .section.two-column.img-right h2, .section.two-column.img-right .h2-style, .section.two-column.img-right h3, .section.two-column.img-right .h3-style, .section.two-column.img-right h4, .section.two-column.img-right .h4-style, .section.two-column.img-right h5, .section.two-column.img-right .h5-style, .section.two-column.img-right h6.h6-style {
  max-width: 350px;
  padding-bottom: 0; }
  section.two-column.img-right h1::after, section.two-column.img-right .h1-style::after, section.two-column.img-right h2::after, section.two-column.img-right .h2-style::after, section.two-column.img-right h3::after, section.two-column.img-right .h3-style::after, section.two-column.img-right h4::after, section.two-column.img-right .h4-style::after, section.two-column.img-right h5::after, section.two-column.img-right .h5-style::after, section.two-column.img-right h6.h6-style::after, .section.two-column.img-right h1::after, .section.two-column.img-right .h1-style::after, .section.two-column.img-right h2::after, .section.two-column.img-right .h2-style::after, .section.two-column.img-right h3::after, .section.two-column.img-right .h3-style::after, .section.two-column.img-right h4::after, .section.two-column.img-right .h4-style::after, .section.two-column.img-right h5::after, .section.two-column.img-right .h5-style::after, .section.two-column.img-right h6.h6-style::after {
    display: none; }
section.two-column.img-right .button, .section.two-column.img-right .button {
  min-width: 200px; }
section.two-column.img-right .row, .section.two-column.img-right .row {
  padding: 0;
  padding-top: 50px;
  max-width: 1300px; }
  @media only screen and (min-width: 576px) {
    section.two-column.img-right .row, .section.two-column.img-right .row {
      padding: 0 15px;
      padding-top: 50px; } }
  section.two-column.img-right .row .column, .section.two-column.img-right .row .column {
    padding: 50px 15px;
    padding-top: 0; }
    @media only screen and (min-width: 960px) {
      section.two-column.img-right .row .column, .section.two-column.img-right .row .column {
        padding: 50px 15px;
        padding-top: 0; } }
    section.two-column.img-right .row .column.maf-col-1, .section.two-column.img-right .row .column.maf-col-1 {
      justify-content: center; }
      section.two-column.img-right .row .column.maf-col-1 .maf-content, .section.two-column.img-right .row .column.maf-col-1 .maf-content {
        max-width: 450px; }
    section.two-column.img-right .row .column.maf-col-2, .section.two-column.img-right .row .column.maf-col-2 {
      text-align: center; }
section.two-column.img-left h1, section.two-column.img-left .h1-style, section.two-column.img-left h2, section.two-column.img-left .h2-style, section.two-column.img-left h3, section.two-column.img-left .h3-style, section.two-column.img-left h4, section.two-column.img-left .h4-style, section.two-column.img-left h5, section.two-column.img-left .h5-style, section.two-column.img-left h6.h6-style, .section.two-column.img-left h1, .section.two-column.img-left .h1-style, .section.two-column.img-left h2, .section.two-column.img-left .h2-style, .section.two-column.img-left h3, .section.two-column.img-left .h3-style, .section.two-column.img-left h4, .section.two-column.img-left .h4-style, .section.two-column.img-left h5, .section.two-column.img-left .h5-style, .section.two-column.img-left h6.h6-style {
  max-width: 350px;
  padding-bottom: 0; }
  section.two-column.img-left h1::after, section.two-column.img-left .h1-style::after, section.two-column.img-left h2::after, section.two-column.img-left .h2-style::after, section.two-column.img-left h3::after, section.two-column.img-left .h3-style::after, section.two-column.img-left h4::after, section.two-column.img-left .h4-style::after, section.two-column.img-left h5::after, section.two-column.img-left .h5-style::after, section.two-column.img-left h6.h6-style::after, .section.two-column.img-left h1::after, .section.two-column.img-left .h1-style::after, .section.two-column.img-left h2::after, .section.two-column.img-left .h2-style::after, .section.two-column.img-left h3::after, .section.two-column.img-left .h3-style::after, .section.two-column.img-left h4::after, .section.two-column.img-left .h4-style::after, .section.two-column.img-left h5::after, .section.two-column.img-left .h5-style::after, .section.two-column.img-left h6.h6-style::after {
    display: none; }
section.two-column.img-left .button, .section.two-column.img-left .button {
  min-width: 200px; }
section.two-column.img-left .row, .section.two-column.img-left .row {
  margin-top: 50px;
  background-color: #e1e1e1;
  border-radius: 25px;
  padding: 25px; }
  section.two-column.img-left .row .column, .section.two-column.img-left .row .column {
    padding: inherit; }
    section.two-column.img-left .row .column.maf-col-1, .section.two-column.img-left .row .column.maf-col-1 {
      text-align: center;
      justify-content: center;
      border-radius: 25px; }
      section.two-column.img-left .row .column.maf-col-1 .maf-content, .section.two-column.img-left .row .column.maf-col-1 .maf-content {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        border: solid white 5px;
        margin: 25px 0; }
        section.two-column.img-left .row .column.maf-col-1 .maf-content .numbr-txt, .section.two-column.img-left .row .column.maf-col-1 .maf-content .numbr-txt {
          color: white;
          font-weight: 900;
          font-size: 8rem;
          line-height: 0.2; }
        section.two-column.img-left .row .column.maf-col-1 .maf-content .over-txt, .section.two-column.img-left .row .column.maf-col-1 .maf-content .over-txt {
          color: white;
          font-weight: 300;
          font-size: 3rem;
          line-height: 0.2; }
        section.two-column.img-left .row .column.maf-col-1 .maf-content .years-txt, .section.two-column.img-left .row .column.maf-col-1 .maf-content .years-txt {
          color: white;
          font-weight: 900;
          font-size: 5rem;
          line-height: 0.1; }
        section.two-column.img-left .row .column.maf-col-1 .maf-content .repre-txt, .section.two-column.img-left .row .column.maf-col-1 .maf-content .repre-txt {
          color: white;
          font-weight: 300;
          font-size: 2.3rem;
          line-height: 0.1; }
        @media only screen and (min-width: 768px) {
          section.two-column.img-left .row .column.maf-col-1 .maf-content, .section.two-column.img-left .row .column.maf-col-1 .maf-content {
            width: 450px;
            height: 450px;
            border: solid white 10px;
            margin: 50px 0; }
            section.two-column.img-left .row .column.maf-col-1 .maf-content .numbr-txt, .section.two-column.img-left .row .column.maf-col-1 .maf-content .numbr-txt {
              color: white;
              font-weight: 900;
              font-size: 13rem;
              line-height: 0.5; }
            section.two-column.img-left .row .column.maf-col-1 .maf-content .over-txt, .section.two-column.img-left .row .column.maf-col-1 .maf-content .over-txt {
              color: white;
              font-weight: 300;
              font-size: 4.8rem;
              line-height: 0.4; }
            section.two-column.img-left .row .column.maf-col-1 .maf-content .years-txt, .section.two-column.img-left .row .column.maf-col-1 .maf-content .years-txt {
              color: white;
              font-weight: 900;
              font-size: 8.3rem;
              line-height: 0.2; }
            section.two-column.img-left .row .column.maf-col-1 .maf-content .repre-txt, .section.two-column.img-left .row .column.maf-col-1 .maf-content .repre-txt {
              color: white;
              font-weight: 300;
              font-size: 3.8rem;
              line-height: 0.7; } }
        @media only screen and (min-width: 1024px) {
          section.two-column.img-left .row .column.maf-col-1 .maf-content, .section.two-column.img-left .row .column.maf-col-1 .maf-content {
            max-width: 100%; } }
    section.two-column.img-left .row .column.maf-col-2, .section.two-column.img-left .row .column.maf-col-2 {
      justify-content: center; }
      section.two-column.img-left .row .column.maf-col-2 .maf-content, .section.two-column.img-left .row .column.maf-col-2 .maf-content {
        padding-left: 25px;
        padding-right: 25px;
        padding: 0; }
section.two-column.two-box h1, section.two-column.two-box .h1-style, section.two-column.two-box h2, section.two-column.two-box .h2-style, section.two-column.two-box h3, section.two-column.two-box .h3-style, section.two-column.two-box h4, section.two-column.two-box .h4-style, section.two-column.two-box h5, section.two-column.two-box .h5-style, section.two-column.two-box h6.h6-style, .section.two-column.two-box h1, .section.two-column.two-box .h1-style, .section.two-column.two-box h2, .section.two-column.two-box .h2-style, .section.two-column.two-box h3, .section.two-column.two-box .h3-style, .section.two-column.two-box h4, .section.two-column.two-box .h4-style, .section.two-column.two-box h5, .section.two-column.two-box .h5-style, .section.two-column.two-box h6.h6-style {
  max-width: 100%;
  padding-bottom: 0; }
  @media only screen and (min-width: 1024px) {
    section.two-column.two-box h1, section.two-column.two-box .h1-style, section.two-column.two-box h2, section.two-column.two-box .h2-style, section.two-column.two-box h3, section.two-column.two-box .h3-style, section.two-column.two-box h4, section.two-column.two-box .h4-style, section.two-column.two-box h5, section.two-column.two-box .h5-style, section.two-column.two-box h6.h6-style, .section.two-column.two-box h1, .section.two-column.two-box .h1-style, .section.two-column.two-box h2, .section.two-column.two-box .h2-style, .section.two-column.two-box h3, .section.two-column.two-box .h3-style, .section.two-column.two-box h4, .section.two-column.two-box .h4-style, .section.two-column.two-box h5, .section.two-column.two-box .h5-style, .section.two-column.two-box h6.h6-style {
      max-width: 490px; } }
  section.two-column.two-box h1::after, section.two-column.two-box .h1-style::after, section.two-column.two-box h2::after, section.two-column.two-box .h2-style::after, section.two-column.two-box h3::after, section.two-column.two-box .h3-style::after, section.two-column.two-box h4::after, section.two-column.two-box .h4-style::after, section.two-column.two-box h5::after, section.two-column.two-box .h5-style::after, section.two-column.two-box h6.h6-style::after, .section.two-column.two-box h1::after, .section.two-column.two-box .h1-style::after, .section.two-column.two-box h2::after, .section.two-column.two-box .h2-style::after, .section.two-column.two-box h3::after, .section.two-column.two-box .h3-style::after, .section.two-column.two-box h4::after, .section.two-column.two-box .h4-style::after, .section.two-column.two-box h5::after, .section.two-column.two-box .h5-style::after, .section.two-column.two-box h6.h6-style::after {
    display: none; }
section.two-column.two-box .row, .section.two-column.two-box .row {
  min-height: 600px;
  padding: 30px 0 30px 0; }
  section.two-column.two-box .row .column, .section.two-column.two-box .row .column {
    width: 100%;
    padding: 0; }
    @media only screen and (min-width: 1024px) {
      section.two-column.two-box .row .column, .section.two-column.two-box .row .column {
        width: 48%;
        padding: 0; } }
    section.two-column.two-box .row .column .maf-background, .section.two-column.two-box .row .column .maf-background {
      border-radius: 25px;
      opacity: 0.4; }
      @media only screen and (min-width: 1024px) {
        section.two-column.two-box .row .column .maf-background, .section.two-column.two-box .row .column .maf-background {
          opacity: 1; } }
    section.two-column.two-box .row .column .maf-content, .section.two-column.two-box .row .column .maf-content {
      min-height: inherit; }
      @media only screen and (min-width: 1024px) {
        section.two-column.two-box .row .column .maf-content, .section.two-column.two-box .row .column .maf-content {
          min-height: 520px; } }
    section.two-column.two-box .row .column.maf-col-1, .section.two-column.two-box .row .column.maf-col-1 {
      border-radius: 25px;
      background-color: #e1e1e1;
      margin-right: 0;
      padding: 50px; }
      @media only screen and (min-width: 1024px) {
        section.two-column.two-box .row .column.maf-col-1, .section.two-column.two-box .row .column.maf-col-1 {
          margin-right: 15px; } }
      section.two-column.two-box .row .column.maf-col-1 .maf-content p, .section.two-column.two-box .row .column.maf-col-1 .maf-content p {
        max-width: 85%; }
    section.two-column.two-box .row .column.maf-col-2, .section.two-column.two-box .row .column.maf-col-2 {
      border-radius: 25px;
      background-color: #b01e59;
      border: solid 5px #b01e59;
      margin-left: 0;
      padding: 50px;
      margin-top: 30px; }
      @media only screen and (min-width: 1024px) {
        section.two-column.two-box .row .column.maf-col-2, .section.two-column.two-box .row .column.maf-col-2 {
          margin-left: 15px;
          margin-top: 0; } }
      section.two-column.two-box .row .column.maf-col-2 .maf-content h2, .section.two-column.two-box .row .column.maf-col-2 .maf-content h2 {
        color: white; }
      section.two-column.two-box .row .column.maf-col-2 .maf-content p, .section.two-column.two-box .row .column.maf-col-2 .maf-content p {
        color: white; }
section.two-column.maf-rep-pad .row, .section.two-column.maf-rep-pad .row {
  padding: 0;
  padding-top: 50px; }
  @media only screen and (min-width: 576px) {
    section.two-column.maf-rep-pad .row, .section.two-column.maf-rep-pad .row {
      padding: 0 15px;
      padding-top: 50px; } }
  section.two-column.maf-rep-pad .row .column, .section.two-column.maf-rep-pad .row .column {
    padding: 50px 15px;
    padding-top: 0; }
    @media only screen and (min-width: 960px) {
      section.two-column.maf-rep-pad .row .column, .section.two-column.maf-rep-pad .row .column {
        padding: 50px 15px;
        padding-top: 0; } }
section.two-column.narrow .header .maf-content, .section.two-column.narrow .header .maf-content {
  padding: 0 15px 50px 15px;
  text-align: center; }
  @media only screen and (min-width: 576px) {
    section.two-column.narrow .header .maf-content, .section.two-column.narrow .header .maf-content {
      padding: 0 15px 50px 15px; } }
section.two-column.narrow .row, .section.two-column.narrow .row {
  padding: 0;
  padding-top: 50px;
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 1130px; }
  @media only screen and (min-width: 576px) {
    section.two-column.narrow .row, .section.two-column.narrow .row {
      padding: 0 15px;
      padding-top: 50px; } }
  section.two-column.narrow .row .column, .section.two-column.narrow .row .column {
    padding: 50px 15px;
    padding-top: 0; }
    @media only screen and (min-width: 960px) {
      section.two-column.narrow .row .column, .section.two-column.narrow .row .column {
        padding: 50px 15px;
        padding-top: 0; } }
section.two-column.narrow.maf-h-h .header .maf-content, .section.two-column.narrow.maf-h-h .header .maf-content {
  padding-bottom: 1.5em; }
section.two-column.narrow.maf-h-f .row .column, .section.two-column.narrow.maf-h-f .row .column {
  padding-bottom: 1.5em; }
section.two-column.two-img-right .row .column.maf-col-2 .maf-content, .section.two-column.two-img-right .row .column.maf-col-2 .maf-content {
  flex-direction: row; }
section.two-column.two-img-right.maf-h-h .header .maf-content, .section.two-column.two-img-right.maf-h-h .header .maf-content {
  padding-bottom: 1.5em; }
section.two-column.two-img-right.maf-h-f .row .column, .section.two-column.two-img-right.maf-h-f .row .column {
  padding-bottom: 1.5em; }
section.two-column.history-left .header .maf-content, .section.two-column.history-left .header .maf-content {
  align-items: center;
  text-align: center; }
section.two-column.history-left .row, .section.two-column.history-left .row {
  padding: 15px 15px;
  flex-direction: column; }
  @media only screen and (min-width: 768px) {
    section.two-column.history-left .row, .section.two-column.history-left .row {
      flex-direction: row; } }
  @media only screen and (min-width: 960px) {
    section.two-column.history-left .row, .section.two-column.history-left .row {
      margin-left: inherit;
      flex-direction: row; } }
  section.two-column.history-left .row .column.maf-col-1, .section.two-column.history-left .row .column.maf-col-1 {
    border-radius: 50%;
    background-color: #6ea9ad;
    display: flex;
    height: 168px;
    flex: 0 0 auto;
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
    width: 168px;
    justify-content: center;
    z-index: 2;
    align-self: center; }
    @media only screen and (min-width: 1024px) {
      section.two-column.history-left .row .column.maf-col-1, .section.two-column.history-left .row .column.maf-col-1 {
        align-self: flex-start; } }
    section.two-column.history-left .row .column.maf-col-1::before, .section.two-column.history-left .row .column.maf-col-1::before {
      border-left: #6ea9ad solid 5px;
      content: '';
      height: 100%;
      position: absolute;
      top: -50%;
      left: 84px;
      width: 100%;
      display: none;
      /*@media only screen and (min-width: 768px) {
        display: none;
      }*/ }
      @media only screen and (min-width: 768px) {
        section.two-column.history-left .row .column.maf-col-1::before, .section.two-column.history-left .row .column.maf-col-1::before {
          display: block; } }
    section.two-column.history-left .row .column.maf-col-1::after, .section.two-column.history-left .row .column.maf-col-1::after {
      border-left: #6ea9ad solid 10px;
      content: '';
      height: 25%;
      position: absolute;
      bottom: -20%;
      left: 84px;
      width: 100%;
      display: none;
      /*@media only screen and (min-width: 768px) {
        display: none;
      }*/ }
      @media only screen and (min-width: 768px) {
        section.two-column.history-left .row .column.maf-col-1::after, .section.two-column.history-left .row .column.maf-col-1::after {
          border-left: #6ea9ad solid 5px;
          content: '';
          display: block;
          height: 55%;
          position: absolute;
          bottom: -55%;
          left: 84px;
          width: 100%; } }
    section.two-column.history-left .row .column.maf-col-1 .maf-content, .section.two-column.history-left .row .column.maf-col-1 .maf-content {
      padding: 10px 10px;
      position: relative;
      vertical-align: middle; }
      section.two-column.history-left .row .column.maf-col-1 .maf-content h2, .section.two-column.history-left .row .column.maf-col-1 .maf-content h2 {
        font-size: 4.3rem;
        color: white;
        text-align: center; }
      section.two-column.history-left .row .column.maf-col-1 .maf-content::before, .section.two-column.history-left .row .column.maf-col-1 .maf-content::before {
        border-radius: 50%;
        border: white solid 3px;
        content: '';
        height: 142px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 142px; }
  section.two-column.history-left .row .column.maf-col-2 .maf-content, .section.two-column.history-left .row .column.maf-col-2 .maf-content {
    max-width: 700px;
    align-self: flex-start;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      section.two-column.history-left .row .column.maf-col-2 .maf-content, .section.two-column.history-left .row .column.maf-col-2 .maf-content {
        text-align: left; } }
section.two-column.history-left.maf-f-c .footer, .section.two-column.history-left.maf-f-c .footer {
  padding-top: 0; }
section.two-column.history-right .header .maf-content, .section.two-column.history-right .header .maf-content {
  align-items: center;
  text-align: center; }
section.two-column.history-right .row, .section.two-column.history-right .row {
  flex-direction: column; }
  @media only screen and (min-width: 576px) {
    section.two-column.history-right .row, .section.two-column.history-right .row {
      margin-left: 0; } }
  @media only screen and (min-width: 768px) {
    section.two-column.history-right .row, .section.two-column.history-right .row {
      margin-left: 0;
      flex-direction: row; } }
  @media only screen and (min-width: 960px) {
    section.two-column.history-right .row, .section.two-column.history-right .row {
      margin-left: inherit;
      flex-direction: row; } }
  section.two-column.history-right .row .column.maf-col-1, .section.two-column.history-right .row .column.maf-col-1 {
    align-self: center;
    height: 168px;
    max-width: 168px;
    border-radius: 50%;
    background-color: #6ea9ad;
    display: flex;
    flex: 0 0 auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0; }
    @media only screen and (min-width: 768px) {
      section.two-column.history-right .row .column.maf-col-1, .section.two-column.history-right .row .column.maf-col-1 {
        align-self: flex-start; } }
    @media only screen and (min-width: 1024px) {
      section.two-column.history-right .row .column.maf-col-1, .section.two-column.history-right .row .column.maf-col-1 {
        margin-left: 250px; } }
    @media only screen and (min-width: 1215px) {
      section.two-column.history-right .row .column.maf-col-1, .section.two-column.history-right .row .column.maf-col-1 {
        margin-left: 400px; } }
    section.two-column.history-right .row .column.maf-col-1::before, .section.two-column.history-right .row .column.maf-col-1::before {
      border-bottom: #6ea9ad solid 0px;
      border-left: #6ea9ad solid 5px;
      content: '';
      height: 100%;
      position: absolute;
      top: -54%;
      left: 84px;
      width: 150%;
      display: none; }
      @media only screen and (min-width: 768px) {
        section.two-column.history-right .row .column.maf-col-1::before, .section.two-column.history-right .row .column.maf-col-1::before {
          border-bottom: #6ea9ad solid 0px;
          left: 84px;
          width: 150%;
          display: inline; } }
      @media only screen and (min-width: 1024px) {
        section.two-column.history-right .row .column.maf-col-1::before, .section.two-column.history-right .row .column.maf-col-1::before {
          border-bottom: #6ea9ad solid 5px;
          left: -166px;
          width: 150%;
          display: inline; } }
      @media only screen and (min-width: 1215px) {
        section.two-column.history-right .row .column.maf-col-1::before, .section.two-column.history-right .row .column.maf-col-1::before {
          left: -316px;
          width: 200%; } }
    section.two-column.history-right .row .column.maf-col-1::after, .section.two-column.history-right .row .column.maf-col-1::after {
      border-top: 0;
      border-left: #6ea9ad solid 10px;
      content: '';
      height: 100px;
      position: absolute;
      top: 100px;
      left: 84px;
      width: 100%;
      display: none; }
      @media only screen and (min-width: 768px) {
        section.two-column.history-right .row .column.maf-col-1::after, .section.two-column.history-right .row .column.maf-col-1::after {
          border-top: #6ea9ad solid 0px;
          border-left: #6ea9ad solid 5px;
          content: '';
          display: inline;
          height: 150%;
          position: absolute;
          top: 53%;
          left: 84px;
          width: 200%; } }
      @media only screen and (min-width: 1024px) {
        section.two-column.history-right .row .column.maf-col-1::after, .section.two-column.history-right .row .column.maf-col-1::after {
          border-top: #6ea9ad solid 5px;
          left: -166px;
          width: 150%; } }
      @media only screen and (min-width: 1215px) {
        section.two-column.history-right .row .column.maf-col-1::after, .section.two-column.history-right .row .column.maf-col-1::after {
          left: -316px;
          width: 200%; } }
    section.two-column.history-right .row .column.maf-col-1 .maf-content, .section.two-column.history-right .row .column.maf-col-1 .maf-content {
      padding: 10px 10px; }
      section.two-column.history-right .row .column.maf-col-1 .maf-content h2, .section.two-column.history-right .row .column.maf-col-1 .maf-content h2 {
        font-size: 4.3rem;
        color: white;
        text-align: center; }
      section.two-column.history-right .row .column.maf-col-1 .maf-content::before, .section.two-column.history-right .row .column.maf-col-1 .maf-content::before {
        border-radius: 50%;
        border: white solid 3px;
        content: '';
        height: 142px;
        position: absolute;
        top: -62%;
        left: -5%;
        width: 142px; }
  section.two-column.history-right .row .column.maf-col-2 .maf-content, .section.two-column.history-right .row .column.maf-col-2 .maf-content {
    max-width: 700px;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      section.two-column.history-right .row .column.maf-col-2 .maf-content, .section.two-column.history-right .row .column.maf-col-2 .maf-content {
        text-align: left;
        border-bottom: 0; } }
section.two-column.history-right .footer, .section.two-column.history-right .footer {
  padding-top: 25px;
  padding-bottom: 0; }
section.two-column.history-right.maf-f-c .footer, .section.two-column.history-right.maf-f-c .footer {
  padding-top: 0; }
section.two-column.historyFirst .maf-col-1::before, .section.two-column.historyFirst .maf-col-1::before {
  margin-top: 100px;
  border-left: white solid 0px;
  display: none; }
section.two-column.historyLast .maf-col-1::after, .section.two-column.historyLast .maf-col-1::after {
  border-left: white solid 0px;
  display: none;
  margin-bottom: 100px; }
section.third-twothirds p.phone, .section.third-twothirds p.phone {
  margin-bottom: 5px; }
  section.third-twothirds p.phone a, .section.third-twothirds p.phone a {
    color: #707070;
    text-decoration: none; }
    section.third-twothirds p.phone a:hover, .section.third-twothirds p.phone a:hover {
      opacity: 0.7; }
  section.third-twothirds p.phone .img, .section.third-twothirds p.phone .img {
    display: inline-block;
    margin-right: 10px;
    width: 20px; }
    section.third-twothirds p.phone .img img, .section.third-twothirds p.phone .img img {
      vertical-align: middle; }
section.third-twothirds .row .header, .section.third-twothirds .row .header {
  align-items: flex-start; }
  section.third-twothirds .row .header .maf-content, .section.third-twothirds .row .header .maf-content {
    max-width: none;
    text-align: left; }
    section.third-twothirds .row .header .maf-content h1, section.third-twothirds .row .header .maf-content .h1-style, section.third-twothirds .row .header .maf-content h2, section.third-twothirds .row .header .maf-content .h2-style, section.third-twothirds .row .header .maf-content h3, section.third-twothirds .row .header .maf-content .h3-style, section.third-twothirds .row .header .maf-content h4, section.third-twothirds .row .header .maf-content .h4-style, section.third-twothirds .row .header .maf-content h5, section.third-twothirds .row .header .maf-content .h5-style, section.third-twothirds .row .header .maf-content h6.h6-style, .section.third-twothirds .row .header .maf-content h1, .section.third-twothirds .row .header .maf-content .h1-style, .section.third-twothirds .row .header .maf-content h2, .section.third-twothirds .row .header .maf-content .h2-style, .section.third-twothirds .row .header .maf-content h3, .section.third-twothirds .row .header .maf-content .h3-style, .section.third-twothirds .row .header .maf-content h4, .section.third-twothirds .row .header .maf-content .h4-style, .section.third-twothirds .row .header .maf-content h5, .section.third-twothirds .row .header .maf-content .h5-style, .section.third-twothirds .row .header .maf-content h6.h6-style {
      margin-bottom: 5px; }
    section.third-twothirds .row .header .maf-content p.page-lead, .section.third-twothirds .row .header .maf-content p.page-lead {
      color: #6ea9ad; }
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 .maf-content, .section.twothirds-third .row .column .maf-content {
    max-width: 700px;
    text-align: center; }
    @media only screen and (min-width: 1024px) {
      section.twothirds-third .row .column .maf-content, .section.twothirds-third .row .column .maf-content {
        text-align: left; } }
  @media only screen and (min-width: 1024px) {
    section.twothirds-third .row .column.maf-col-1, .section.twothirds-third .row .column.maf-col-1 {
      align-items: flex-start; } }
  section.twothirds-third .row .column.maf-col-2, .section.twothirds-third .row .column.maf-col-2 {
    padding-bottom: 0; }
    @media only screen and (min-width: 1024px) {
      section.twothirds-third .row .column.maf-col-2, .section.twothirds-third .row .column.maf-col-2 {
        padding-bottom: 50px;
        padding-left: 0;
        text-align: right; }
        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 .row .column.maf-col-1, .section.three-column .row .column.maf-col-1 {
  width: 100%; }
  @media only screen and (min-width: 1024px) {
    section.three-column .row .column.maf-col-1, .section.three-column .row .column.maf-col-1 {
      width: 50%; } }
  section.three-column .row .column.maf-col-1 .maf-content, .section.three-column .row .column.maf-col-1 .maf-content {
    padding-right: 50px; }
section.three-column .row .column.maf-col-2, .section.three-column .row .column.maf-col-2 {
  width: 50%; }
  @media only screen and (min-width: 1024px) {
    section.three-column .row .column.maf-col-2, .section.three-column .row .column.maf-col-2 {
      width: 25%; } }
  section.three-column .row .column.maf-col-2 h4, .section.three-column .row .column.maf-col-2 h4 {
    max-width: 320px; }
section.three-column .row .column.maf-col-3, .section.three-column .row .column.maf-col-3 {
  width: 50%; }
  @media only screen and (min-width: 1024px) {
    section.three-column .row .column.maf-col-3, .section.three-column .row .column.maf-col-3 {
      width: 25%; } }
  section.three-column .row .column.maf-col-3 h4, .section.three-column .row .column.maf-col-3 h4 {
    max-width: 320px; }
section.three-column.our-aims, .section.three-column.our-aims {
  font-size: 1.6rem; }
  section.three-column.our-aims h1, section.three-column.our-aims .h1-style, section.three-column.our-aims h2, section.three-column.our-aims .h2-style, section.three-column.our-aims h3, section.three-column.our-aims .h3-style, section.three-column.our-aims h4, section.three-column.our-aims .h4-style, section.three-column.our-aims h5, section.three-column.our-aims .h5-style, section.three-column.our-aims h6.h6-style, .section.three-column.our-aims h1, .section.three-column.our-aims .h1-style, .section.three-column.our-aims h2, .section.three-column.our-aims .h2-style, .section.three-column.our-aims h3, .section.three-column.our-aims .h3-style, .section.three-column.our-aims h4, .section.three-column.our-aims .h4-style, .section.three-column.our-aims h5, .section.three-column.our-aims .h5-style, .section.three-column.our-aims h6.h6-style {
    font-weight: 600; }
  section.three-column.our-aims p, .section.three-column.our-aims p {
    line-height: 1.4; }
    section.three-column.our-aims p.page-lead, .section.three-column.our-aims p.page-lead {
      color: #6ea9ad;
      font-weight: 300; }
  section.three-column.our-aims > .maf-sprite-layer #quote-spr1, .section.three-column.our-aims > .maf-sprite-layer #quote-spr1 {
    bottom: 0;
    max-width: 414px;
    position: absolute;
    right: 0;
    width: 25.875vw; }
  section.three-column.our-aims .row, .section.three-column.our-aims .row {
    padding: 0 15px 100px 15px; }
    @media only screen and (min-width: 960px) {
      section.three-column.our-aims .row, .section.three-column.our-aims .row {
        padding: 0 45px 300px 45px; } }
    section.three-column.our-aims .row .column, .section.three-column.our-aims .row .column {
      padding: 25px 0 0 0; }
      @media only screen and (min-width: 576px) {
        section.three-column.our-aims .row .column, .section.three-column.our-aims .row .column {
          padding: 25px 15px 0 15px; } }
      section.three-column.our-aims .row .column .maf-content, .section.three-column.our-aims .row .column .maf-content {
        background-color: rgba(255, 255, 255, 0.3);
        border: 1px solid #22aae2;
        height: 100%;
        padding: 20px; }
        section.three-column.our-aims .row .column .maf-content > *:last-child:not(:first-child), .section.three-column.our-aims .row .column .maf-content > *:last-child:not(:first-child) {
          margin-top: auto; }
section.three-column.welcome .header .maf-content, .section.three-column.welcome .header .maf-content {
  align-items: center;
  text-align: center; }
section.three-column.welcome .row, .section.three-column.welcome .row {
  padding: 0 15px 50px 15px; }
  @media only screen and (min-width: 960px) {
    section.three-column.welcome .row, .section.three-column.welcome .row {
      padding: 0 45px 50px 45px; } }
  section.three-column.welcome .row .column, .section.three-column.welcome .row .column {
    padding: 25px 0 0 0; }
    @media only screen and (min-width: 576px) {
      section.three-column.welcome .row .column, .section.three-column.welcome .row .column {
        padding: 25px 15px 0 15px; } }
    section.three-column.welcome .row .column .maf-content, .section.three-column.welcome .row .column .maf-content {
      background-color: rgba(255, 255, 255, 0.3);
      border: 1px solid #22aae2;
      height: 100%;
      justify-content: center;
      max-width: 500px;
      padding: 30px; }
section.three-column.welcome .footer, .section.three-column.welcome .footer {
  padding-top: 25px;
  padding-bottom: 0; }
section.three-column.welcome.maf-f-c .footer, .section.three-column.welcome.maf-f-c .footer {
  padding-top: 0; }
section.three-column.history-left .header .maf-content, .section.three-column.history-left .header .maf-content {
  align-items: center;
  text-align: center; }
section.three-column.history-left .row, .section.three-column.history-left .row {
  margin-left: 15px;
  flex-direction: column; }
  @media only screen and (min-width: 960px) {
    section.three-column.history-left .row, .section.three-column.history-left .row {
      margin-left: inherit;
      flex-direction: row; } }
  section.three-column.history-left .row .column.maf-col-1, .section.three-column.history-left .row .column.maf-col-1 {
    border-radius: 50%;
    background-color: #6ea9ad;
    display: flex;
    height: 168px;
    flex: 0 0 auto;
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
    width: 168px;
    z-index: 2; }
    section.three-column.history-left .row .column.maf-col-1::before, .section.three-column.history-left .row .column.maf-col-1::before {
      border-left: #6ea9ad solid 5px;
      content: '';
      height: 100%;
      position: absolute;
      top: -50%;
      left: 84px;
      width: 100%; }
    section.three-column.history-left .row .column.maf-col-1::after, .section.three-column.history-left .row .column.maf-col-1::after {
      border-left: #6ea9ad solid 10px;
      content: '';
      height: 25%;
      position: absolute;
      bottom: -20%;
      left: 84px;
      width: 100%; }
      @media only screen and (min-width: 960px) {
        section.three-column.history-left .row .column.maf-col-1::after, .section.three-column.history-left .row .column.maf-col-1::after {
          border-left: #6ea9ad solid 5px;
          content: '';
          height: 55%;
          position: absolute;
          bottom: -55%;
          left: 84px;
          width: 100%; } }
    section.three-column.history-left .row .column.maf-col-1 .maf-content, .section.three-column.history-left .row .column.maf-col-1 .maf-content {
      padding: 10px 10px;
      position: relative;
      vertical-align: middle; }
      section.three-column.history-left .row .column.maf-col-1 .maf-content h2, .section.three-column.history-left .row .column.maf-col-1 .maf-content h2 {
        font-size: 4.3rem;
        color: white;
        text-align: center; }
      section.three-column.history-left .row .column.maf-col-1 .maf-content::before, .section.three-column.history-left .row .column.maf-col-1 .maf-content::before {
        border-radius: 50%;
        border: white solid 3px;
        content: '';
        height: 142px;
        position: absolute;
        top: -62%;
        left: -5%;
        width: 142px; }
  section.three-column.history-left .row .column.maf-col-2, .section.three-column.history-left .row .column.maf-col-2 {
    width: 100%; }
    @media only screen and (min-width: 960px) {
      section.three-column.history-left .row .column.maf-col-2, .section.three-column.history-left .row .column.maf-col-2 {
        width: 38%; } }
    @media only screen and (min-width: 1024px) {
      section.three-column.history-left .row .column.maf-col-2, .section.three-column.history-left .row .column.maf-col-2 {
        width: 38%; } }
  section.three-column.history-left .row .column.maf-col-3, .section.three-column.history-left .row .column.maf-col-3 {
    width: 100%;
    padding: 0;
    margin: 0; }
    @media only screen and (min-width: 1024px) {
      section.three-column.history-left .row .column.maf-col-3, .section.three-column.history-left .row .column.maf-col-3 {
        width: 50%; } }
section.three-column.history-left.maf-f-c .footer, .section.three-column.history-left.maf-f-c .footer {
  padding-top: 0; }
section.three-column.history-right .header .maf-content, .section.three-column.history-right .header .maf-content {
  align-items: center;
  text-align: center; }
section.three-column.history-right .row, .section.three-column.history-right .row {
  flex-direction: column;
  margin-left: 15px; }
  @media only screen and (min-width: 960px) {
    section.three-column.history-right .row, .section.three-column.history-right .row {
      margin-left: inherit;
      flex-direction: row; } }
  section.three-column.history-right .row .column.maf-col-1, .section.three-column.history-right .row .column.maf-col-1 {
    position: relative;
    padding: 0;
    margin: 0; }
    @media only screen and (min-width: 960px) {
      section.three-column.history-right .row .column.maf-col-1, .section.three-column.history-right .row .column.maf-col-1 {
        padding: inherit;
        margin: inherit; } }
    section.three-column.history-right .row .column.maf-col-1::before, .section.three-column.history-right .row .column.maf-col-1::before {
      border-bottom: #6ea9ad solid 0px;
      border-left: #6ea9ad solid 5px;
      content: '';
      height: 100%;
      position: absolute;
      top: 0;
      left: 84px;
      width: 100%;
      display: none; }
      @media only screen and (min-width: 960px) {
        section.three-column.history-right .row .column.maf-col-1::before, .section.three-column.history-right .row .column.maf-col-1::before {
          border-bottom: #6ea9ad solid 5px;
          border-left: #6ea9ad solid 5px;
          content: '';
          height: 100%;
          position: absolute;
          top: -53%;
          left: 84px;
          width: 100%;
          display: inline; } }
    section.three-column.history-right .row .column.maf-col-1::after, .section.three-column.history-right .row .column.maf-col-1::after {
      border-top: 0;
      border-left: #6ea9ad solid 10px;
      content: '';
      height: 100px;
      position: absolute;
      top: 100px;
      left: 84px;
      width: 100%; }
      @media only screen and (min-width: 960px) {
        section.three-column.history-right .row .column.maf-col-1::after, .section.three-column.history-right .row .column.maf-col-1::after {
          border-top: #6ea9ad solid 5px;
          border-left: #6ea9ad solid 5px;
          content: '';
          height: 150%;
          position: absolute;
          top: 53%;
          left: 84px;
          width: 100%; } }
  section.three-column.history-right .row .column.maf-col-2, .section.three-column.history-right .row .column.maf-col-2 {
    height: 168px;
    max-width: 168px;
    border-radius: 50%;
    background-color: #6ea9ad;
    display: flex;
    flex: 0 0 auto;
    margin-top: auto;
    margin-bottom: auto; }
    @media only screen and (min-width: 1366px) {
      section.three-column.history-right .row .column.maf-col-2, .section.three-column.history-right .row .column.maf-col-2 {
        width: 12%;
        height: 168px; } }
    section.three-column.history-right .row .column.maf-col-2 .maf-content, .section.three-column.history-right .row .column.maf-col-2 .maf-content {
      padding: 10px 10px; }
      section.three-column.history-right .row .column.maf-col-2 .maf-content h2, .section.three-column.history-right .row .column.maf-col-2 .maf-content h2 {
        font-size: 4.3rem;
        color: white;
        text-align: center; }
      section.three-column.history-right .row .column.maf-col-2 .maf-content::before, .section.three-column.history-right .row .column.maf-col-2 .maf-content::before {
        border-radius: 50%;
        border: white solid 3px;
        content: '';
        height: 142px;
        position: absolute;
        top: -62%;
        left: -5%;
        width: 142px; }
  section.three-column.history-right .row .column.maf-col-3, .section.three-column.history-right .row .column.maf-col-3 {
    width: 100%; }
    @media only screen and (min-width: 960px) {
      section.three-column.history-right .row .column.maf-col-3, .section.three-column.history-right .row .column.maf-col-3 {
        width: 38%; } }
    @media only screen and (min-width: 1024px) {
      section.three-column.history-right .row .column.maf-col-3, .section.three-column.history-right .row .column.maf-col-3 {
        width: 38%; } }
section.three-column.history-right .footer, .section.three-column.history-right .footer {
  padding-top: 25px;
  padding-bottom: 0; }
section.three-column.history-right.maf-f-c .footer, .section.three-column.history-right.maf-f-c .footer {
  padding-top: 0; }
section.four-column h3, section.four-column .h3-style, .section.four-column h3, .section.four-column .h3-style {
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  margin: 0; }
section.four-column .header, .section.four-column .header {
  min-height: 25vw;
  justify-content: center; }
section.four-column .row, .section.four-column .row {
  padding: 0; }
  section.four-column .row .column, .section.four-column .row .column {
    text-align: center; }
    section.four-column .row .column .maf-content, .section.four-column .row .column .maf-content {
      padding: 0; }
section.four-column.bg-2, .section.four-column.bg-2 {
  color: #22aae2; }
  section.four-column.bg-2 .maf-content *, .section.four-column.bg-2 .maf-content * {
    color: #22aae2; }
  section.four-column.bg-2 .maf-content hr, .section.four-column.bg-2 .maf-content hr {
    border-color: #22aae2; }
  section.four-column.bg-2 .maf-content a.button, .section.four-column.bg-2 .maf-content a.button {
    background-color: transparent;
    border-color: #22aae2;
    color: #22aae2; }
    section.four-column.bg-2 .maf-content a.button:hover, .section.four-column.bg-2 .maf-content a.button:hover {
      background-color: #22aae2;
      color: white; }
section.divider .row, .section.divider .row {
  max-width: 1400px; }
section.page-content-section .is-simple-gallery, .section.page-content-section .is-simple-gallery {
  margin-bottom: 20px; }
  section.page-content-section .is-simple-gallery figure figcaption, .section.page-content-section .is-simple-gallery figure figcaption {
    display: none; }
section.page-content-section .row .column, .section.page-content-section .row .column {
  text-align: left; }
  section.page-content-section .row .column .maf-content, .section.page-content-section .row .column .maf-content {
    align-items: center;
    max-width: 832px; }
    section.page-content-section .row .column .maf-content p.page-lead, section.page-content-section .row .column .maf-content ul.page-lead, section.page-content-section .row .column .maf-content ol.page-lead, .section.page-content-section .row .column .maf-content p.page-lead, .section.page-content-section .row .column .maf-content ul.page-lead, .section.page-content-section .row .column .maf-content ol.page-lead {
      font-family: "Roboto", sans-serif;
      font-size: 2.2rem; }
    section.page-content-section .row .column .maf-content ul.big-list, .section.page-content-section .row .column .maf-content ul.big-list {
      margin-top: 20px; }
      section.page-content-section .row .column .maf-content ul.big-list li, .section.page-content-section .row .column .maf-content ul.big-list li {
        font-size: 2.4rem;
        margin-bottom: 30px; }
        section.page-content-section .row .column .maf-content ul.big-list li::before, .section.page-content-section .row .column .maf-content ul.big-list li::before {
          top: 10px; }
section.page-content-section.maf-h-h .row .column, .section.page-content-section.maf-h-h .row .column {
  padding-top: 1em; }
section.blog-section div.cardbox article.card.cat-1, .section.blog-section div.cardbox article.card.cat-1 {
  --card-colour: #6ea9ad; }
section.blog-section div.cardbox article.card.cat-2, .section.blog-section div.cardbox article.card.cat-2 {
  --card-colour: #6ea9ad; }
section.blog-section div.cardbox article.card.cat-3, .section.blog-section div.cardbox article.card.cat-3 {
  --card-colour: #6ea9ad; }
section.blog-section div.cardbox article.card.cat-4, .section.blog-section div.cardbox article.card.cat-4 {
  --card-colour: #6ea9ad; }
section.blog-section.is-hero .row .column, .section.blog-section.is-hero .row .column {
  text-align: center; }
  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.blog-top-level .row .column .maf-content.search, .section.blog-section.blog-top-level .row .column .maf-content.search {
  background-color: #707070;
  margin-bottom: 30px;
  padding: 15px; }
section.blog-section.blog-top-level .row .column.maf-col-1, .section.blog-section.blog-top-level .row .column.maf-col-1 {
  padding-top: 70px; }
@media only screen and (min-width: 1024px) {
  section.blog-section.blog-highlight .row, .section.blog-section.blog-highlight .row {
    margin-bottom: 60px; } }
section.blog-section.blog-highlight .row .column .maf-content.sub-title, section.blog-section.blog-highlight .row .column .maf-content.lead-article, .section.blog-section.blog-highlight .row .column .maf-content.sub-title, .section.blog-section.blog-highlight .row .column .maf-content.lead-article {
  padding: 45px 0; }
  section.blog-section.blog-highlight .row .column .maf-content.sub-title h1::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title .h1-style::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title h2::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title .h2-style::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title h3::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title .h3-style::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title h4::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title .h4-style::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title h5::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title .h5-style::after, section.blog-section.blog-highlight .row .column .maf-content.sub-title h6.h6-style::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article h1::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article .h1-style::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article h2::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article .h2-style::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article h3::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article .h3-style::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article h4::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article .h4-style::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article h5::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article .h5-style::after, section.blog-section.blog-highlight .row .column .maf-content.lead-article h6.h6-style::after, .section.blog-section.blog-highlight .row .column .maf-content.sub-title h1::after, .section.blog-section.blog-highlight .row .column .maf-content.sub-title .h1-style::after, .section.blog-section.blog-highlight .row .column .maf-content.sub-title h2::after, .section.blog-section.blog-highlight .row .column .maf-content.sub-title .h2-style::after, .section.blog-section.blog-highlight .row .column .maf-content.sub-title h3::after, .section.blog-section.blog-highlight .row .column .maf-content.sub-title .h3-style::after, .section.blog-section.blog-highlight .row .column .maf-content.sub-title h4::after, .section.blog-section.blog-highlight .row .column .maf-content.sub-title .h4-style::after, .section.blog-section.blog-highlight .row .column .maf-content.sub-title h5::after, .section.blog-section.blog-highlight .row .column .maf-content.sub-title .h5-style::after, .section.blog-section.blog-highlight .row .column .maf-content.sub-title h6.h6-style::after, .section.blog-section.blog-highlight .row .column .maf-content.lead-article h1::after, .section.blog-section.blog-highlight .row .column .maf-content.lead-article .h1-style::after, .section.blog-section.blog-highlight .row .column .maf-content.lead-article h2::after, .section.blog-section.blog-highlight .row .column .maf-content.lead-article .h2-style::after, .section.blog-section.blog-highlight .row .column .maf-content.lead-article h3::after, .section.blog-section.blog-highlight .row .column .maf-content.lead-article .h3-style::after, .section.blog-section.blog-highlight .row .column .maf-content.lead-article h4::after, .section.blog-section.blog-highlight .row .column .maf-content.lead-article .h4-style::after, .section.blog-section.blog-highlight .row .column .maf-content.lead-article h5::after, .section.blog-section.blog-highlight .row .column .maf-content.lead-article .h5-style::after, .section.blog-section.blog-highlight .row .column .maf-content.lead-article h6.h6-style::after {
    background-color: white; }
  section.blog-section.blog-highlight .row .column .maf-content.sub-title p, section.blog-section.blog-highlight .row .column .maf-content.lead-article p, .section.blog-section.blog-highlight .row .column .maf-content.sub-title p, .section.blog-section.blog-highlight .row .column .maf-content.lead-article p {
    max-width: 510px; }
section.blog-section.blog-highlight .row .column .maf-content.lead-article, .section.blog-section.blog-highlight .row .column .maf-content.lead-article {
  align-items: stretch;
  align-content: stretch;
  flex-direction: row; }
  section.blog-section.blog-highlight .row .column .maf-content.lead-article .col, .section.blog-section.blog-highlight .row .column .maf-content.lead-article .col {
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    width: 50%; }
    section.blog-section.blog-highlight .row .column .maf-content.lead-article .col > div, .section.blog-section.blog-highlight .row .column .maf-content.lead-article .col > div {
      align-items: center;
      display: flex;
      flex-direction: column; }
    section.blog-section.blog-highlight .row .column .maf-content.lead-article .col.col1, .section.blog-section.blog-highlight .row .column .maf-content.lead-article .col.col1 {
      padding: 0 15px; }
      section.blog-section.blog-highlight .row .column .maf-content.lead-article .col.col1 > div, .section.blog-section.blog-highlight .row .column .maf-content.lead-article .col.col1 > div {
        align-items: flex-end;
        max-width: 450px;
        text-align: right; }
        section.blog-section.blog-highlight .row .column .maf-content.lead-article .col.col1 > div h2::after, .section.blog-section.blog-highlight .row .column .maf-content.lead-article .col.col1 > div h2::after {
          width: 100%; }
    section.blog-section.blog-highlight .row .column .maf-content.lead-article .col.col2 img, .section.blog-section.blog-highlight .row .column .maf-content.lead-article .col.col2 img {
      border: clamp(10px, 0.8125vw, 30px) white solid; }
section.blog-section.blog-highlight.maf-h-h .row .column.maf-col-1, .section.blog-section.blog-highlight.maf-h-h .row .column.maf-col-1 {
  padding-top: 40px; }
section.blog-section.blog-highlight.maf-h-f .row .column.maf-col-1, .section.blog-section.blog-highlight.maf-h-f .row .column.maf-col-1 {
  padding-bottom: 0; }
section.blog-section.blog-detail .blog-title, .section.blog-section.blog-detail .blog-title {
  font-family: "Roboto", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #6ea9ad; }
  @media only screen and (min-width: 576px) {
    section.blog-section.blog-detail .blog-title, .section.blog-section.blog-detail .blog-title {
      font-size: 6rem; } }
section.blog-section.blog-detail .pub-date, .section.blog-section.blog-detail .pub-date {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 30px; }
  section.blog-section.blog-detail .pub-date + hr, .section.blog-section.blog-detail .pub-date + hr {
    margin-bottom: 40px; }
section.blog-section.blog-detail .blog-bar, .section.blog-section.blog-detail .blog-bar {
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  margin: 20px 0;
  padding: 20px 0;
  text-align: left;
  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 {
      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: 1%; }
      section.blog-section.blog-detail .blog-bar > div p strong, .section.blog-section.blog-detail .blog-bar > div p strong {
        color: #6ea9ad; }
      section.blog-section.blog-detail .blog-bar > div p a:hover, .section.blog-section.blog-detail .blog-bar > div p a:hover {
        color: #6ea9ad; }
    section.blog-section.blog-detail .blog-bar > div.date, .section.blog-section.blog-detail .blog-bar > div.date {
      font-family: "Roboto", sans-serif;
      opacity: 0.8; }
    section.blog-section.blog-detail .blog-bar > div.share, .section.blog-section.blog-detail .blog-bar > div.share {
      text-align: right; }
      section.blog-section.blog-detail .blog-bar > div.share p > *:last-child, .section.blog-section.blog-detail .blog-bar > div.share p > *:last-child {
        margin-right: 0; }
section.blog-section.blog-detail .cat-bar, .section.blog-section.blog-detail .cat-bar {
  color: #707070;
  font-weight: bold;
  margin-bottom: 18px;
  text-align: left;
  width: 100%; }
  section.blog-section.blog-detail .cat-bar span, .section.blog-section.blog-detail .cat-bar span {
    margin: 0 5px; }
    section.blog-section.blog-detail .cat-bar span:first-child, .section.blog-section.blog-detail .cat-bar span:first-child {
      margin-left: 0; }
section.blog-section.blog-detail .blog-body, .section.blog-section.blog-detail .blog-body {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left; }
  section.blog-section.blog-detail .blog-body > p.page-lead, .section.blog-section.blog-detail .blog-body > p.page-lead {
    font-family: "Roboto", sans-serif;
    font-size: 2.2rem; }
  section.blog-section.blog-detail .blog-body .instagram, .section.blog-section.blog-detail .blog-body .instagram {
    margin: 30px 0 50px 0; }
section.blog-section.blog-detail .main-img, .section.blog-section.blog-detail .main-img {
  margin-bottom: 40px; }
section.blog-section.blog-detail .button.back, .section.blog-section.blog-detail .button.back {
  margin-top: 30px; }
  section.blog-section.blog-detail .button.back::after, .section.blog-section.blog-detail .button.back::after {
    left: 0;
    right: auto; }
section.blog-section.blog-detail .row .header .maf-content .head-img, .section.blog-section.blog-detail .row .header .maf-content .head-img {
  margin-bottom: 25px;
  width: 100%; }
  section.blog-section.blog-detail .row .header .maf-content .head-img img, .section.blog-section.blog-detail .row .header .maf-content .head-img img {
    width: 100%; }
section.blog-section.blog-detail .row .header .maf-content p.attr time, section.blog-section.blog-detail .row .header .maf-content p.attr span, .section.blog-section.blog-detail .row .header .maf-content p.attr time, .section.blog-section.blog-detail .row .header .maf-content p.attr span {
  border-right: 1px solid #707070;
  line-height: 1;
  padding-right: 20px;
  margin-right: 20px; }
  section.blog-section.blog-detail .row .header .maf-content p.attr time:last-child, section.blog-section.blog-detail .row .header .maf-content p.attr span:last-child, .section.blog-section.blog-detail .row .header .maf-content p.attr time:last-child, .section.blog-section.blog-detail .row .header .maf-content p.attr span:last-child {
    border: 0;
    padding-right: 0;
    margin-right: 0; }
section.blog-section.blog-detail .row .column, .section.blog-section.blog-detail .row .column {
  text-align: left; }
  @media only screen and (min-width: 1024px) {
    section.blog-section.blog-detail .row .column.maf-col-2, .section.blog-section.blog-detail .row .column.maf-col-2 {
      align-items: flex-end; }
      section.blog-section.blog-detail .row .column.maf-col-2 .maf-content, section.blog-section.blog-detail .row .column.maf-col-2 .blog-nav, .section.blog-section.blog-detail .row .column.maf-col-2 .maf-content, .section.blog-section.blog-detail .row .column.maf-col-2 .blog-nav {
        max-width: 328px; } }
section.blog-section.assoc, .section.blog-section.assoc {
  background-color: #e1e1e1;
  color: white;
  overflow: visible; }
  section.blog-section.assoc div.cardbox article.card.ev-card.cat-1, .section.blog-section.assoc div.cardbox article.card.ev-card.cat-1 {
    --card-colour: #707070; }
  section.blog-section.assoc div.cardbox article.card.ev-card.cat-2, .section.blog-section.assoc div.cardbox article.card.ev-card.cat-2 {
    --card-colour: #6ea9ad; }
  section.blog-section.assoc div.cardbox article.card.ev-card.cat-3, .section.blog-section.assoc div.cardbox article.card.ev-card.cat-3 {
    --card-colour: #e37541; }
  section.blog-section.assoc div.cardbox article.card.ev-card.cat-4, .section.blog-section.assoc div.cardbox article.card.ev-card.cat-4 {
    --card-colour: #e65279; }
  section.blog-section.assoc div.cardbox article.card.list-card.cat-3, .section.blog-section.assoc div.cardbox article.card.list-card.cat-3 {
    --card-colour: #6ea9ad; }
  section.blog-section.assoc div.cardbox article.card.list-card.cat-4, .section.blog-section.assoc div.cardbox article.card.list-card.cat-4 {
    --card-colour: #707070; }
  section.blog-section.assoc div.cardbox article.card.list-card.cat-5, .section.blog-section.assoc div.cardbox article.card.list-card.cat-5 {
    --card-colour: #e37541; }
  section.blog-section.assoc #spr1, .section.blog-section.assoc #spr1 {
    display: inline-block;
    left: -1px;
    max-width: 222px;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    width: 13.875vw; }
  section.blog-section.assoc .header h2::after, .section.blog-section.assoc .header h2::after {
    background-color: white;
    max-width: 300px; }
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.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: #6ea9ad; }
section.job-section.job-top-level #filters .filter-content .filter-set, .section.job-section.job-top-level #filters .filter-content .filter-set {
  padding: 30px;
  border: 1px solid #707070; }
  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: 25px 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 #707070;
      box-shadow: none;
      overflow: visible;
      padding: 10px 0 15px 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: #707070; }
      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: #707070;
        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: 15px;
          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: 15px;
        padding-left: 15px; }
        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(-15px); }
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: 60px; }
section.job-section.job-top-level .row .column, .section.job-section.job-top-level .row .column {
  padding-top: 30px; }
section.job-section.job-highlight .row .column, .section.job-section.job-highlight .row .column {
  padding-top: 25px;
  padding-bottom: 25px; }
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 30px;
    margin-bottom: 30px; }
    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: #6ea9ad;
        color: white;
        font-size: 1.2rem;
        margin: 0;
        padding: 30px 30px 15px 30px;
        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: "Roboto", 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: #6ea9ad;
        color: white;
        font-family: "Roboto", sans-serif;
        font-size: 1.8rem;
        font-weight: 600;
        margin: 0;
        padding: 0 30px 30px 30px; }
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: #295e81; }
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;
  width: 100%; }
section.job-section.job-detail .main-img, .section.job-section.job-detail .main-img {
  margin-bottom: 1em; }
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: #295e81;
  border-color: #295e81; }
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: 1em; }
  @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: 15px;
    width: 100%; }
    section.job-section .job-nav .job-aside-content .nav-title, .section.job-section .job-nav .job-aside-content .nav-title {
      color: #707070;
      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: #295e81;
      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: #707070;
        display: inline-block;
        padding: 5px 0;
        transition: all 350ms ease-out;
        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: #295e81;
        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: #707070;
      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: #295e81;
        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 #295e81;
      color: #707070;
      font-size: 1.8rem;
      padding: 7.5px; }
      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: #295e81;
        border-bottom: 1px solid #707070; }
    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 #295e81;
      color: #707070;
      font-size: 1.6rem;
      font-weight: 300;
      padding-left: 15px; }
      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: #295e81;
        border-bottom: 1px solid #707070; }
    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 article.card .portal-item .portal-content .info .attr, .section.portfolio-section div.portfolio-feed article.card .portal-item .portal-content .info .attr {
  display: none; }
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 .header .maf-content:last-child, .section.portfolio-section.portfolio-top-level .header .maf-content:last-child {
  padding-top: 75px; }
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 .portal-item .portal-content .info .title, .section.portfolio-section.portfolio-highlight div.portfolio-feed article.card .portal-item .portal-content .info .title {
    display: none; }
  section.portfolio-section.portfolio-highlight div.portfolio-feed article.card .portal-item .portal-content .info .attr, .section.portfolio-section.portfolio-highlight div.portfolio-feed article.card .portal-item .portal-content .info .attr {
    display: none; }
  section.portfolio-section.portfolio-highlight div.portfolio-feed article.card .portal-item .portal-content .info .button, .section.portfolio-section.portfolio-highlight div.portfolio-feed article.card .portal-item .portal-content .info .button {
    border-color: white;
    color: white; }
  section.portfolio-section.portfolio-highlight div.portfolio-feed article.card .portal-item:hover .portal-content .button, .section.portfolio-section.portfolio-highlight div.portfolio-feed article.card .portal-item:hover .portal-content .button {
    background-color: white;
    color: #707070; }
section.portfolio-section.portfolio-highlight .row .column .flickity-slideshow, .section.portfolio-section.portfolio-highlight .row .column .flickity-slideshow {
  border: 1px solid #6ea9ad;
  margin-top: 72px;
  width: 100%; }
  section.portfolio-section.portfolio-highlight .row .column .flickity-slideshow .ss-slide, .section.portfolio-section.portfolio-highlight .row .column .flickity-slideshow .ss-slide {
    width: 100%; }
    section.portfolio-section.portfolio-highlight .row .column .flickity-slideshow .ss-slide::after, .section.portfolio-section.portfolio-highlight .row .column .flickity-slideshow .ss-slide::after {
      content: '';
      display: table;
      padding-bottom: 81.89%; }
section.portfolio-section.portfolio-highlight .row .column.maf-col-1, .section.portfolio-section.portfolio-highlight .row .column.maf-col-1 {
  padding-bottom: 70px; }
section.portfolio-section.portfolio-highlight .footer .maf-content .button, .section.portfolio-section.portfolio-highlight .footer .maf-content .button {
  margin: 0; }
section.portfolio-section.portfolio-detail, .section.portfolio-section.portfolio-detail {
  font-size: 1.4rem; }
  section.portfolio-section.portfolio-detail h1.portfolio-title, .section.portfolio-section.portfolio-detail h1.portfolio-title {
    font-family: "Roboto", sans-serif;
    font-size: 5rem;
    font-weight: 700; }
    @media only screen and (min-width: 576px) {
      section.portfolio-section.portfolio-detail h1.portfolio-title, .section.portfolio-section.portfolio-detail h1.portfolio-title {
        font-size: 6rem; } }
  section.portfolio-section.portfolio-detail .portfolio-body p.attr, .section.portfolio-section.portfolio-detail .portfolio-body p.attr {
    color: #6ea9ad;
    font-size: 1.8rem;
    margin-bottom: 15px; }
    section.portfolio-section.portfolio-detail .portfolio-body p.attr span, .section.portfolio-section.portfolio-detail .portfolio-body p.attr span {
      color: #707070;
      font-weight: 700; }
  section.portfolio-section.portfolio-detail .portfolio-body p.label, .section.portfolio-section.portfolio-detail .portfolio-body p.label {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0; }
    section.portfolio-section.portfolio-detail .portfolio-body p.label.desc, .section.portfolio-section.portfolio-detail .portfolio-body p.label.desc {
      margin-top: 30px; }
  section.portfolio-section.portfolio-detail .main-img, .section.portfolio-section.portfolio-detail .main-img {
    margin-bottom: 1em; }
  section.portfolio-section.portfolio-detail .navigation-bar, .section.portfolio-section.portfolio-detail .navigation-bar {
    display: flex;
    justify-content: center;
    margin: 50px auto 0 auto;
    max-width: 1400px;
    padding: 0 15px;
    width: 100%; }
    @media only screen and (min-width: 768px) {
      section.portfolio-section.portfolio-detail .navigation-bar, .section.portfolio-section.portfolio-detail .navigation-bar {
        left: 50%;
        margin: 0 auto;
        position: absolute;
        top: 50px;
        transform: translateX(-50%); } }
    section.portfolio-section.portfolio-detail .navigation-bar .item-nav, .section.portfolio-section.portfolio-detail .navigation-bar .item-nav {
      background-image: url("/images/Layout/orpen-ss-button.png");
      background-size: 100% 100%;
      display: inline-block;
      height: 50px;
      line-height: 1;
      opacity: 1;
      position: relative;
      width: 50px; }
      section.portfolio-section.portfolio-detail .navigation-bar .item-nav::after, .section.portfolio-section.portfolio-detail .navigation-bar .item-nav::after {
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 12px solid #6ea9ad;
        content: '';
        display: inline-block;
        height: 0;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-62%, -50%);
        transform-origin: center;
        transition: transform 350ms ease-out;
        width: 0;
        z-index: 2; }
      section.portfolio-section.portfolio-detail .navigation-bar .item-nav.next, .section.portfolio-section.portfolio-detail .navigation-bar .item-nav.next {
        margin-left: auto;
        transform: rotate(180deg); }
      section.portfolio-section.portfolio-detail .navigation-bar .item-nav.previous, .section.portfolio-section.portfolio-detail .navigation-bar .item-nav.previous {
        margin-right: auto; }
      section.portfolio-section.portfolio-detail .navigation-bar .item-nav:hover::after, .section.portfolio-section.portfolio-detail .navigation-bar .item-nav:hover::after {
        transform: translate(-110%, -50%); }
  section.portfolio-section.portfolio-detail .header, .section.portfolio-section.portfolio-detail .header {
    max-width: 1268px; }
    @media only screen and (min-width: 768px) {
      section.portfolio-section.portfolio-detail .header h1, section.portfolio-section.portfolio-detail .header p, .section.portfolio-section.portfolio-detail .header h1, .section.portfolio-section.portfolio-detail .header p {
        max-width: calc( 100% - 80px ); } }
    section.portfolio-section.portfolio-detail .header p, .section.portfolio-section.portfolio-detail .header p {
      color: #6ea9ad;
      font-size: 2.4rem;
      text-transform: uppercase; }
    section.portfolio-section.portfolio-detail .header .maf-content, .section.portfolio-section.portfolio-detail .header .maf-content {
      padding-top: 1em; }
      @media only screen and (min-width: 768px) {
        section.portfolio-section.portfolio-detail .header .maf-content, .section.portfolio-section.portfolio-detail .header .maf-content {
          padding-top: 50px; } }
  section.portfolio-section.portfolio-detail .row, .section.portfolio-section.portfolio-detail .row {
    max-width: 1300px;
    padding: 0;
    padding-top: 50px; }
    @media only screen and (min-width: 576px) {
      section.portfolio-section.portfolio-detail .row, .section.portfolio-section.portfolio-detail .row {
        padding: 0 15px;
        padding-top: 50px; } }
    section.portfolio-section.portfolio-detail .row .column, .section.portfolio-section.portfolio-detail .row .column {
      padding: 50px 15px;
      padding-top: 0; }
      @media only screen and (min-width: 960px) {
        section.portfolio-section.portfolio-detail .row .column, .section.portfolio-section.portfolio-detail .row .column {
          padding: 50px 15px;
          padding-top: 0; } }
      section.portfolio-section.portfolio-detail .row .column.maf-col-1 .maf-content .image, .section.portfolio-section.portfolio-detail .row .column.maf-col-1 .maf-content .image {
        display: inline-block;
        line-height: 1;
        width: 100%; }
        section.portfolio-section.portfolio-detail .row .column.maf-col-1 .maf-content .image > a, .section.portfolio-section.portfolio-detail .row .column.maf-col-1 .maf-content .image > a {
          display: inline-block;
          opacity: 1;
          width: auto; }
          @media only screen and (min-width: 1024px) {
            section.portfolio-section.portfolio-detail .row .column.maf-col-1 .maf-content .image > a, .section.portfolio-section.portfolio-detail .row .column.maf-col-1 .maf-content .image > a {
              width: 100%; } }
          section.portfolio-section.portfolio-detail .row .column.maf-col-1 .maf-content .image > a figure, .section.portfolio-section.portfolio-detail .row .column.maf-col-1 .maf-content .image > a figure {
            width: 100%; }
  section.portfolio-section.portfolio-detail.image-set .row, .section.portfolio-section.portfolio-detail.image-set .row {
    padding-bottom: 20px; }
    @media only screen and (min-width: 960px) {
      section.portfolio-section.portfolio-detail.image-set .row, .section.portfolio-section.portfolio-detail.image-set .row {
        padding-bottom: 20px; } }
    section.portfolio-section.portfolio-detail.image-set .row::before, .section.portfolio-section.portfolio-detail.image-set .row::before {
      background-color: #707070;
      content: '';
      display: inline-block;
      height: 1px;
      left: 50%;
      position: absolute;
      top: 0;
      transform: translateX(-50%);
      width: calc(100% - 30px); }
      @media only screen and (min-width: 576px) {
        section.portfolio-section.portfolio-detail.image-set .row::before, .section.portfolio-section.portfolio-detail.image-set .row::before {
          width: calc(100% - 60px); } }
      @media only screen and (min-width: 1024px) {
        section.portfolio-section.portfolio-detail.image-set .row::before, .section.portfolio-section.portfolio-detail.image-set .row::before {
          width: calc(100% - 120px); } }
    section.portfolio-section.portfolio-detail.image-set .row .column, .section.portfolio-section.portfolio-detail.image-set .row .column {
      padding-right: 0;
      padding-left: 0; }
      section.portfolio-section.portfolio-detail.image-set .row .column .maf-content, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content {
        padding: 0 7.5px; }
        @media only screen and (min-width: 576px) {
          section.portfolio-section.portfolio-detail.image-set .row .column .maf-content, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content {
            padding: 0; } }
        section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images {
          align-items: flex-start;
          align-content: flex-start;
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
          justify-content: flex-start;
          width: 100%; }
          section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div {
            display: inline-block;
            flex: 0 0 auto;
            line-height: 1;
            padding: 0 7.5px 30px 7.5px;
            width: 100%; }
            @media only screen and (min-width: 576px) {
              section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div {
                padding: 0 15px 30px 15px; } }
            @media only screen and (min-width: 960px) {
              section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div {
                padding: 0 30px 30px 30px; } }
            section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a {
              display: inline-block;
              opacity: 1;
              width: 100%; }
              section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a figure, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a figure {
                width: 100%; }
              section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a.video-item div, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a.video-item div {
                background-color: #707070;
                position: relative; }
                section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a.video-item div img, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a.video-item div img {
                  display: inline-block;
                  transition: opacity 350ms ease-out; }
                section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a.video-item div .maf-vp, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a.video-item div .maf-vp {
                  align-items: center;
                  align-content: center;
                  display: flex;
                  height: 200px;
                  justify-content: center;
                  left: 50%;
                  max-height: 70%;
                  max-width: 70%;
                  position: absolute;
                  top: 50%;
                  transform: translate(-50%, -50%);
                  width: 200px; }
                  section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a.video-item div .maf-vp img, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a.video-item div .maf-vp img {
                    display: inline-block;
                    flex: 0 1 auto;
                    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.6));
                    max-height: 100%;
                    transition: filter 350ms ease-out; }
                section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a.video-item div:hover img, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a.video-item div:hover img {
                  opacity: 0.7; }
                section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a.video-item div:hover .maf-vp, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div > a.video-item div:hover .maf-vp {
                  filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.9)); }
            section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div.portrait, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div.portrait {
              width: 50%; }
            section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div.video, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images > div.video {
              max-width: 800px; }
          section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images.videos, .section.portfolio-section.portfolio-detail.image-set .row .column .maf-content.images.videos {
            justify-content: center; }
section.portfolio-section.cat-list .row, .section.portfolio-section.cat-list .row {
  padding: 0; }
  section.portfolio-section.cat-list .row .column, .section.portfolio-section.cat-list .row .column {
    padding: 30px 0; }
section.portfolio-section.cat-list.pview .row .header .maf-content, .section.portfolio-section.cat-list.pview .row .header .maf-content {
  padding-top: 50px; }
section.portfolio-section.cat-list.pview .row .column, .section.portfolio-section.cat-list.pview .row .column {
  padding-bottom: 0; }
section.portfolio-section.port-list .catbox article.card, .section.portfolio-section.port-list .catbox article.card {
  width: 100%; }
  @media only screen and (min-width: 576px) {
    section.portfolio-section.port-list .catbox article.card, .section.portfolio-section.port-list .catbox article.card {
      width: 50%; } }
  @media only screen and (min-width: 768px) {
    section.portfolio-section.port-list .catbox article.card, .section.portfolio-section.port-list .catbox article.card {
      width: 33.333%; } }
  @media only screen and (min-width: 960px) {
    section.portfolio-section.port-list .catbox article.card, .section.portfolio-section.port-list .catbox article.card {
      width: 25%; } }
  section.portfolio-section.port-list .catbox article.card .portal-item .portal-content .info, .section.portfolio-section.port-list .catbox article.card .portal-item .portal-content .info {
    z-index: 1; }
    section.portfolio-section.port-list .catbox article.card .portal-item .portal-content .info::after, .section.portfolio-section.port-list .catbox article.card .portal-item .portal-content .info::after {
      background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0));
      bottom: 0;
      content: '';
      display: inline-block;
      height: 33%;
      left: 0;
      position: absolute;
      transition: height 350ms ease-out;
      width: 100%;
      z-index: -1; }
  section.portfolio-section.port-list .catbox article.card .portal-item:hover .portal-content .info::after, .section.portfolio-section.port-list .catbox article.card .portal-item:hover .portal-content .info::after {
    height: 50%; }
section.portfolio-section.port-list .row, .section.portfolio-section.port-list .row {
  padding: 0; }
  section.portfolio-section.port-list .row .column, .section.portfolio-section.port-list .row .column {
    padding: 30px 0; }
section.event-section div.cardbox article.card.cat-1, section.event-section aside.cardbox article.card.cat-1, .section.event-section div.cardbox article.card.cat-1, .section.event-section aside.cardbox article.card.cat-1 {
  --card-colour: #707070; }
section.event-section div.cardbox article.card.cat-2, section.event-section aside.cardbox article.card.cat-2, .section.event-section div.cardbox article.card.cat-2, .section.event-section aside.cardbox article.card.cat-2 {
  --card-colour: #6ea9ad; }
section.event-section div.cardbox article.card.cat-3, section.event-section aside.cardbox article.card.cat-3, .section.event-section div.cardbox article.card.cat-3, .section.event-section aside.cardbox article.card.cat-3 {
  --card-colour: #e37541; }
section.event-section div.cardbox article.card.cat-4, section.event-section aside.cardbox article.card.cat-4, .section.event-section div.cardbox article.card.cat-4, .section.event-section aside.cardbox article.card.cat-4 {
  --card-colour: #e65279; }
section.event-section.is-hero .row .column, .section.event-section.is-hero .row .column {
  text-align: center; }
  section.event-section.is-hero .row .column .maf-content .pub-date, .section.event-section.is-hero .row .column .maf-content .pub-date {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 600;
    margin: 5px;
    opacity: 0.5; }
section.event-section.event-highlight .card-box-slider, .section.event-section.event-highlight .card-box-slider {
  width: 100%; }
  section.event-section.event-highlight .card-box-slider article.card, .section.event-section.event-highlight .card-box-slider article.card {
    line-height: 0;
    padding: 15px;
    width: 100%; }
    @media only screen and (min-width: 576px) {
      section.event-section.event-highlight .card-box-slider article.card, .section.event-section.event-highlight .card-box-slider article.card {
        padding: 30px; } }
    section.event-section.event-highlight .card-box-slider article.card .portal-item, .section.event-section.event-highlight .card-box-slider article.card .portal-item {
      background-color: white;
      box-shadow: 8px 8px 27px 1px rgba(7, 7, 7, 0.31);
      color: #707070;
      cursor: pointer;
      display: inline-block;
      line-height: 0;
      opacity: 1;
      width: 100%; }
      section.event-section.event-highlight .card-box-slider article.card .portal-item *, .section.event-section.event-highlight .card-box-slider article.card .portal-item * {
        color: #707070; }
      section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content {
        align-content: stretch;
        align-items: stretch;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        transition: all 350ms ease-out; }
        @media only screen and (min-width: 768px) {
          section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content {
            flex-direction: row; } }
        section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .card-cats, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .card-cats {
          display: none;
          font-size: 1.4rem;
          font-weight: 400;
          min-height: 20px; }
        section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn {
          flex: 0 0 auto;
          overflow: hidden;
          position: relative;
          width: 100%; }
          @media only screen and (min-width: 768px) {
            section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn {
              width: 50%; } }
          section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.no-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.no-img {
            display: none; }
          section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn .tn-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn .tn-img {
            height: 100%;
            margin: 0 auto;
            object-fit: cover;
            transform: scale(1);
            transform-origin: center;
            transition: all 700ms ease-out;
            width: 100%; }
          section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.square::after, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree::after, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.square::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after {
            content: '';
            display: table;
            padding-bottom: 100%; }
          section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.square .tn-img, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree .tn-img, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom .tn-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.square .tn-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree .tn-img, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom .tn-img {
            left: 0;
            position: absolute;
            top: 0;
            transform: scale(1);
            min-width: 100%; }
          section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.fourthree::after {
            padding-bottom: 75%; }
          section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after {
            padding-bottom: 60%;
            width: 100%; }
            @media only screen and (min-width: 768px) {
              section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .tn.custom::after {
                padding-bottom: 82.4%; } }
        section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .info, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .info {
          align-items: flex-start;
          color: #707070;
          display: flex;
          flex: 0 0 auto;
          flex-direction: column;
          justify-content: center;
          padding: 20px 5%;
          text-align: left;
          width: 100%; }
          @media only screen and (min-width: 768px) {
            section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .info, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .info {
              width: 50%; } }
        section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .title, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .title {
          align-items: center;
          color: #707070;
          display: inline-flex;
          font-size: 3.8rem;
          font-weight: 700;
          justify-content: flex-start;
          line-height: 1.2;
          margin: 0 0 25px 0;
          width: 100%; }
        section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .date, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .date {
          display: inline-block;
          font-size: 2.4rem;
          font-weight: 600;
          line-height: 1;
          margin: 0 0 25px 0;
          width: 100%; }
          section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .date i, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .date i {
            display: none; }
          section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .date time, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .date time {
            color: #707070; }
        section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .desc, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .desc {
          color: #707070;
          justify-content: center;
          line-height: 1.4;
          margin: 0 0 25px 0;
          width: 100%; }
        section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr {
          display: none;
          width: 100%; }
          section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr div, section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr time, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr div, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .attr time {
            display: block;
            width: auto; }
        section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .card-button, .section.event-section.event-highlight .card-box-slider article.card .portal-item .portal-content .card-button {
          background-color: transparent;
          border-color: #707070;
          box-shadow: none;
          color: #707070;
          display: inline-block;
          font-family: "Roboto", sans-serif;
          font-size: 2rem;
          margin: 0;
          min-width: 0;
          padding: 10px 20px;
          text-transform: none; }
      section.event-section.event-highlight .card-box-slider article.card .portal-item.no-link, .section.event-section.event-highlight .card-box-slider article.card .portal-item.no-link {
        cursor: default; }
        section.event-section.event-highlight .card-box-slider article.card .portal-item.no-link .portal-content .info .card-button, .section.event-section.event-highlight .card-box-slider article.card .portal-item.no-link .portal-content .info .card-button {
          display: none; }
      section.event-section.event-highlight .card-box-slider article.card .portal-item:hover .portal-content .button, .section.event-section.event-highlight .card-box-slider article.card .portal-item:hover .portal-content .button {
        background-color: #707070;
        color: white; }
  section.event-section.event-highlight .card-box-slider .flickity-page-dots, .section.event-section.event-highlight .card-box-slider .flickity-page-dots {
    bottom: -10px;
    display: block;
    margin: 0;
    padding: 0; }
    section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot, .section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot {
      background: rgba(255, 255, 255, 0.4);
      border: 0;
      border-radius: 0;
      height: 16px;
      margin: 0 5px;
      opacity: 1;
      position: relative;
      width: 17px; }
      section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot::before, .section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot::before {
        background-color: white;
        border-radius: 0;
        content: '';
        display: inline-block;
        height: 0;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: all 350ms ease-out;
        width: 0; }
      section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot.is-selected::before, .section.event-section.event-highlight .card-box-slider .flickity-page-dots .dot.is-selected::before {
        height: 100%;
        width: 100%; }
section.event-section.event-highlight div.cardbox article.card .portal-item .portal-content .date, section.event-section.event-highlight aside.cardbox article.card .portal-item .portal-content .date, .section.event-section.event-highlight div.cardbox article.card .portal-item .portal-content .date, .section.event-section.event-highlight aside.cardbox article.card .portal-item .portal-content .date {
  color: #6ea9ad; }
section.event-section.event-highlight div.cardbox article.card .portal-item .portal-content .button, section.event-section.event-highlight aside.cardbox article.card .portal-item .portal-content .button, .section.event-section.event-highlight div.cardbox article.card .portal-item .portal-content .button, .section.event-section.event-highlight aside.cardbox article.card .portal-item .portal-content .button {
  background-color: #6ea9ad;
  border-color: #6ea9ad; }
section.event-section.event-highlight div.cardbox article.card .portal-item:hover .portal-content .button, section.event-section.event-highlight div.cardbox article.card .portal-item:focus .portal-content .button, section.event-section.event-highlight aside.cardbox article.card .portal-item:hover .portal-content .button, section.event-section.event-highlight aside.cardbox article.card .portal-item:focus .portal-content .button, .section.event-section.event-highlight div.cardbox article.card .portal-item:hover .portal-content .button, .section.event-section.event-highlight div.cardbox article.card .portal-item:focus .portal-content .button, .section.event-section.event-highlight aside.cardbox article.card .portal-item:hover .portal-content .button, .section.event-section.event-highlight aside.cardbox article.card .portal-item:focus .portal-content .button {
  background-color: transparent;
  color: #6ea9ad; }
section.event-section.event-highlight .row .header .maf-content, .section.event-section.event-highlight .row .header .maf-content {
  max-width: 850px; }
section.event-section.event-highlight.maf-h-f .row .column, .section.event-section.event-highlight.maf-h-f .row .column {
  padding-bottom: 0; }
section.event-section.event-portal .header .maf-content p, .section.event-section.event-portal .header .maf-content p {
  max-width: 510px; }
section.event-section.event-portal .header .cats, .section.event-section.event-portal .header .cats {
  margin-top: 24px;
  max-width: 1035px;
  text-align: center; }
  section.event-section.event-portal .header .cats a, .section.event-section.event-portal .header .cats a {
    background-color: transparent;
    border: 6px solid #295e81;
    color: #6ea9ad;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 6px;
    min-width: 80px;
    opacity: 1;
    padding: 5px;
    text-align: center;
    text-decoration: none; }
    section.event-section.event-portal .header .cats a:hover, section.event-section.event-portal .header .cats a:focus, .section.event-section.event-portal .header .cats a:hover, .section.event-section.event-portal .header .cats a:focus {
      background-color: #295e81;
      color: white; }
    section.event-section.event-portal .header .cats a.active, .section.event-section.event-portal .header .cats a.active {
      background-color: #295e81;
      color: white; }
      section.event-section.event-portal .header .cats a.active:hover, section.event-section.event-portal .header .cats a.active:focus, .section.event-section.event-portal .header .cats a.active:hover, .section.event-section.event-portal .header .cats a.active:focus {
        background-color: transparent;
        color: #6ea9ad; }
section.event-section.event-portal .row, .section.event-section.event-portal .row {
  max-width: 1300px; }
  section.event-section.event-portal .row .column, .section.event-section.event-portal .row .column {
    padding-top: 40px; }
section.event-section.event-detail .event-thumb img, .section.event-section.event-detail .event-thumb img {
  width: 100%; }
section.event-section.event-detail h1::after, section.event-section.event-detail .h1-style::after, section.event-section.event-detail h2::after, section.event-section.event-detail .h2-style::after, section.event-section.event-detail h3::after, section.event-section.event-detail .h3-style::after, section.event-section.event-detail h4::after, section.event-section.event-detail .h4-style::after, section.event-section.event-detail h5::after, section.event-section.event-detail .h5-style::after, section.event-section.event-detail h6.h6-style::after, .section.event-section.event-detail h1::after, .section.event-section.event-detail .h1-style::after, .section.event-section.event-detail h2::after, .section.event-section.event-detail .h2-style::after, .section.event-section.event-detail h3::after, .section.event-section.event-detail .h3-style::after, .section.event-section.event-detail h4::after, .section.event-section.event-detail .h4-style::after, .section.event-section.event-detail h5::after, .section.event-section.event-detail .h5-style::after, .section.event-section.event-detail h6.h6-style::after {
  width: 100%; }
section.event-section.event-detail .title, .section.event-section.event-detail .title {
  margin-bottom: 15px; }
section.event-section.event-detail .main-img, .section.event-section.event-detail .main-img {
  margin-bottom: 1em; }
section.event-section.event-detail p.date, .section.event-section.event-detail p.date {
  font-family: "Roboto", sans-serif;
  font-size: 2.0rem;
  line-height: 1.4;
  font-weight: 700; }
  @media only screen and (min-width: 576px) {
    section.event-section.event-detail p.date, .section.event-section.event-detail p.date {
      font-size: 2.4rem; } }
  section.event-section.event-detail p.date time span, .section.event-section.event-detail p.date time span {
    font-weight: 500; }
  section.event-section.event-detail p.date + hr, .section.event-section.event-detail p.date + hr {
    margin: 0 0 40px 0; }
section.event-section.event-detail p.venue-details > span, .section.event-section.event-detail p.venue-details > span {
  display: inline-block;
  width: 100%; }
  section.event-section.event-detail p.venue-details > span span, .section.event-section.event-detail p.venue-details > span span {
    font-weight: 500;
    margin-right: 10px; }
section.event-section.event-detail p.tour-full-date, .section.event-section.event-detail p.tour-full-date {
  font-weight: 600; }
  section.event-section.event-detail p.tour-full-date a, .section.event-section.event-detail p.tour-full-date a {
    display: inline-block;
    padding-right: 20px;
    position: relative; }
    section.event-section.event-detail p.tour-full-date a::after, .section.event-section.event-detail p.tour-full-date a::after {
      border: 2px solid #707070;
      border-top: 0;
      border-right: 0;
      content: '';
      display: inline-block;
      height: 8px;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translate(0, -75%) rotate(-45deg);
      transition: transform 350ms ease-out;
      width: 8px; }
section.event-section.event-detail .desc-l, .section.event-section.event-detail .desc-l {
  width: 100%; }
section.event-section.event-detail .site-link, .section.event-section.event-detail .site-link {
  font-size: 1.5rem;
  font-weight: 600; }
  @media only screen and (min-width: 576px) {
    section.event-section.event-detail .site-link, .section.event-section.event-detail .site-link {
      font-size: 1.6rem; } }
  @media only screen and (min-width: 768px) {
    section.event-section.event-detail .site-link, .section.event-section.event-detail .site-link {
      font-size: 1.8rem; } }
section.event-section.event-detail .price-details, .section.event-section.event-detail .price-details {
  margin-bottom: 20px; }
section.event-section.event-detail .is-map, .section.event-section.event-detail .is-map {
  margin-bottom: 1em;
  min-height: 300px; }
section.event-section.event-detail .tickets, .section.event-section.event-detail .tickets {
  background-color: white;
  padding: 0 10px 10px 10px;
  width: 100%; }
  section.event-section.event-detail .tickets .ticket, .section.event-section.event-detail .tickets .ticket {
    padding-top: 10px; }
    section.event-section.event-detail .tickets .ticket .ticket-name, .section.event-section.event-detail .tickets .ticket .ticket-name {
      background-color: #707070;
      color: white;
      cursor: pointer;
      font-size: 1.8rem;
      font-weight: 600;
      outline: none;
      padding: 5px 25px 5px 10px;
      position: relative; }
      section.event-section.event-detail .tickets .ticket .ticket-name::after, .section.event-section.event-detail .tickets .ticket .ticket-name::after {
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 7px solid white;
        content: '';
        height: 0;
        right: 10px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 350ms ease-out;
        width: 0; }
      section.event-section.event-detail .tickets .ticket .ticket-name:hover, section.event-section.event-detail .tickets .ticket .ticket-name:focus, .section.event-section.event-detail .tickets .ticket .ticket-name:hover, .section.event-section.event-detail .tickets .ticket .ticket-name:focus {
        background-color: #e1e1e1; }
      section.event-section.event-detail .tickets .ticket .ticket-name.open::after, .section.event-section.event-detail .tickets .ticket .ticket-name.open::after {
        transform: translateY(-50%) rotate(90deg); }
    section.event-section.event-detail .tickets .ticket .ticket-options, .section.event-section.event-detail .tickets .ticket .ticket-options {
      display: none;
      padding: 5px 0 10px 0; }
      section.event-section.event-detail .tickets .ticket .ticket-options .option, .section.event-section.event-detail .tickets .ticket .ticket-options .option {
        align-items: flex-start;
        border-top: 1px solid #b01e59;
        display: flex;
        flex-wrap: wrap;
        margin: 0 10px;
        padding: 15px 0 25px 0; }
        section.event-section.event-detail .tickets .ticket .ticket-options .option:first-child, .section.event-section.event-detail .tickets .ticket .ticket-options .option:first-child {
          border-top: 0; }
        section.event-section.event-detail .tickets .ticket .ticket-options .option .description, .section.event-section.event-detail .tickets .ticket .ticket-options .option .description {
          flex: 0 0 auto;
          padding-top: 5px;
          width: calc(100% - 100px); }
          section.event-section.event-detail .tickets .ticket .ticket-options .option .description .name, .section.event-section.event-detail .tickets .ticket .ticket-options .option .description .name {
            font-size: 1.8rem; }
          section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price, .section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price {
            display: flex;
            font-size: 1.8rem;
            padding: 5px 0; }
            section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price > div, .section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price > div {
              padding-right: 15px; }
              section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price > div.original, .section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price > div.original {
                text-decoration: line-through; }
              section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price > div.actual, .section.event-section.event-detail .tickets .ticket .ticket-options .option .description .price > div.actual {
                color: #6ea9ad;
                font-weight: 700; }
        section.event-section.event-detail .tickets .ticket .ticket-options .option .control, .section.event-section.event-detail .tickets .ticket .ticket-options .option .control {
          flex: 0 0 auto;
          padding-top: 5px;
          width: 100px; }
        section.event-section.event-detail .tickets .ticket .ticket-options .option .more, .section.event-section.event-detail .tickets .ticket .ticket-options .option .more {
          display: inline-block;
          flex: 0 0 auto;
          padding-top: 5px;
          width: 100%; }
          section.event-section.event-detail .tickets .ticket .ticket-options .option .more p, .section.event-section.event-detail .tickets .ticket .ticket-options .option .more p {
            margin-bottom: 10px; }
          section.event-section.event-detail .tickets .ticket .ticket-options .option .more .discount, .section.event-section.event-detail .tickets .ticket .ticket-options .option .more .discount {
            background-color: #e1e1e1;
            color: white;
            display: inline-block;
            margin-top: 5px;
            padding: 5px 15px;
            text-transform: uppercase;
            width: auto; }
      section.event-section.event-detail .tickets .ticket .ticket-options .extras, .section.event-section.event-detail .tickets .ticket .ticket-options .extras {
        background-color: #b01e59;
        padding: 10px 0 0 0; }
        section.event-section.event-detail .tickets .ticket .ticket-options .extras .etitle, .section.event-section.event-detail .tickets .ticket .ticket-options .extras .etitle {
          border-bottom: 2px solid #707070;
          color: #707070;
          font-size: 1.8rem;
          font-weight: 700;
          margin: 0 10px;
          padding: 5px 0;
          text-transform: uppercase; }
        section.event-section.event-detail .tickets .ticket .ticket-options .extras .option, .section.event-section.event-detail .tickets .ticket .ticket-options .extras .option {
          border-color: white; }
          section.event-section.event-detail .tickets .ticket .ticket-options .extras .option:nth-child(2), .section.event-section.event-detail .tickets .ticket .ticket-options .extras .option:nth-child(2) {
            border-top: 0; }
section.event-section.event-detail .ticket-actions, .section.event-section.event-detail .ticket-actions {
  background-color: white;
  display: flex;
  width: 100%; }
  section.event-section.event-detail .ticket-actions .button, .section.event-section.event-detail .ticket-actions .button {
    border: 0;
    margin: 0;
    padding: 20px;
    text-transform: none;
    width: 50%; }
    section.event-section.event-detail .ticket-actions .button.clear, .section.event-section.event-detail .ticket-actions .button.clear {
      color: #707070;
      justify-content: flex-start; }
      section.event-section.event-detail .ticket-actions .button.clear span, .section.event-section.event-detail .ticket-actions .button.clear span {
        padding-right: 22px;
        position: relative; }
        section.event-section.event-detail .ticket-actions .button.clear span::before, section.event-section.event-detail .ticket-actions .button.clear span::after, .section.event-section.event-detail .ticket-actions .button.clear span::before, .section.event-section.event-detail .ticket-actions .button.clear span::after {
          background-color: #707070;
          content: '';
          height: 3px;
          right: 0;
          position: absolute;
          top: 54%;
          transform: translateY(-50%) rotate(45deg);
          transition: background-color 350ms ease-out;
          width: 13px; }
        section.event-section.event-detail .ticket-actions .button.clear span::after, .section.event-section.event-detail .ticket-actions .button.clear span::after {
          transform: translateY(-50%) rotate(-45deg); }
      section.event-section.event-detail .ticket-actions .button.clear:hover, section.event-section.event-detail .ticket-actions .button.clear:focus, .section.event-section.event-detail .ticket-actions .button.clear:hover, .section.event-section.event-detail .ticket-actions .button.clear:focus {
        background-color: #707070;
        color: white; }
        section.event-section.event-detail .ticket-actions .button.clear:hover span::before, section.event-section.event-detail .ticket-actions .button.clear:hover span::after, section.event-section.event-detail .ticket-actions .button.clear:focus span::before, section.event-section.event-detail .ticket-actions .button.clear:focus span::after, .section.event-section.event-detail .ticket-actions .button.clear:hover span::before, .section.event-section.event-detail .ticket-actions .button.clear:hover span::after, .section.event-section.event-detail .ticket-actions .button.clear:focus span::before, .section.event-section.event-detail .ticket-actions .button.clear:focus span::after {
          background-color: white; }
    section.event-section.event-detail .ticket-actions .button.buy, .section.event-section.event-detail .ticket-actions .button.buy {
      background-color: #295e81;
      color: white; }
      section.event-section.event-detail .ticket-actions .button.buy span, .section.event-section.event-detail .ticket-actions .button.buy span {
        padding-right: 25px;
        position: relative; }
        section.event-section.event-detail .ticket-actions .button.buy span::after, .section.event-section.event-detail .ticket-actions .button.buy span::after {
          border-top: 6px solid transparent;
          border-bottom: 6px solid transparent;
          border-left: 9px solid white;
          content: '';
          height: 0;
          right: 0;
          position: absolute;
          top: 53%;
          transform: translateY(-50%);
          transition: right 350ms ease-out;
          width: 0; }
      section.event-section.event-detail .ticket-actions .button.buy:hover, section.event-section.event-detail .ticket-actions .button.buy:focus, .section.event-section.event-detail .ticket-actions .button.buy:hover, .section.event-section.event-detail .ticket-actions .button.buy:focus {
        background-color: #707070;
        color: white; }
        section.event-section.event-detail .ticket-actions .button.buy:hover span::after, section.event-section.event-detail .ticket-actions .button.buy:focus span::after, .section.event-section.event-detail .ticket-actions .button.buy:hover span::after, .section.event-section.event-detail .ticket-actions .button.buy:focus span::after {
          right: -3px; }
section.event-section.event-detail .header .maf-content .info, .section.event-section.event-detail .header .maf-content .info {
  border: 1px solid #6ea9ad;
  border-right: 0;
  border-left: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 9px 0;
  width: 100%; }
  section.event-section.event-detail .header .maf-content .info > span, .section.event-section.event-detail .header .maf-content .info > span {
    border-left: 1px solid #6ea9ad;
    display: inline-block;
    flex: 0 0 auto;
    font-feature-settings: 'lnum' 1;
    max-width: 100%;
    padding: 3px 15px;
    text-transform: uppercase; }
section.event-section.event-detail .row, .section.event-section.event-detail .row {
  padding: 0;
  padding-top: 50px;
  max-width: 1300px; }
  @media only screen and (min-width: 576px) {
    section.event-section.event-detail .row, .section.event-section.event-detail .row {
      padding: 0 15px;
      padding-top: 50px; } }
  section.event-section.event-detail .row .column, .section.event-section.event-detail .row .column {
    padding: 50px 15px;
    padding-top: 0; }
    @media only screen and (min-width: 960px) {
      section.event-section.event-detail .row .column, .section.event-section.event-detail .row .column {
        padding: 50px 15px;
        padding-top: 0; } }
    section.event-section.event-detail .row .column .maf-content, .section.event-section.event-detail .row .column .maf-content {
      align-items: flex-start;
      text-align: left; }
    section.event-section.event-detail .row .column.maf-col-2 .maf-content .event-s-link i, .section.event-section.event-detail .row .column.maf-col-2 .maf-content .event-s-link i {
      color: inherit;
      font-size: 2rem;
      vertical-align: middle; }
    section.event-section.event-detail .row .column.maf-col-2 .maf-content .event-s-link a, .section.event-section.event-detail .row .column.maf-col-2 .maf-content .event-s-link a {
      color: inherit; }
      section.event-section.event-detail .row .column.maf-col-2 .maf-content .event-s-link a:hover, .section.event-section.event-detail .row .column.maf-col-2 .maf-content .event-s-link a:hover {
        color: #6ea9ad; }
    section.event-section.event-detail .row .column.maf-col-2 .maf-content .embed-map, .section.event-section.event-detail .row .column.maf-col-2 .maf-content .embed-map {
      display: inline-block;
      padding-bottom: 75%;
      position: relative;
      width: 100%; }
      section.event-section.event-detail .row .column.maf-col-2 .maf-content .embed-map iframe, .section.event-section.event-detail .row .column.maf-col-2 .maf-content .embed-map iframe {
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%; }
    section.event-section.event-detail .row .column.maf-dates, .section.event-section.event-detail .row .column.maf-dates {
      padding-top: 60px;
      text-align: left; }
      section.event-section.event-detail .row .column.maf-dates .maf-content, .section.event-section.event-detail .row .column.maf-dates .maf-content {
        align-items: flex-start; }
        section.event-section.event-detail .row .column.maf-dates .maf-content p, .section.event-section.event-detail .row .column.maf-dates .maf-content p {
          max-width: 850px; }
        section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates {
          border-bottom: 1px solid #6ea9ad;
          display: flex;
          flex-wrap: wrap;
          width: 100%; }
          section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div {
            align-items: center;
            align-content: center;
            border-top: 1px solid #6ea9ad;
            display: flex;
            flex: 0 0 auto;
            justify-content: flex-start;
            padding: 8px 0;
            width: 100%; }
            @media only screen and (min-width: 960px) {
              section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div {
                width: 50%; } }
            section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span {
              display: inline-block;
              flex: 0 0 auto;
              padding: 10px 15px; }
              section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span:first-child, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span:first-child {
                border-left: 1px solid #6ea9ad;
                font-feature-settings: 'lnum' 1;
                font-size: 1.6rem;
                min-width: 160px;
                text-transform: uppercase; }
                @media only screen and (min-width: 576px) {
                  section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span:first-child, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span:first-child {
                    font-size: 1.8rem;
                    min-width: 200px; } }
              section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span:last-child .button, .section.event-section.event-detail .row .column.maf-dates .maf-content .course-dates > div > span:last-child .button {
                margin: 0; }
        section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates {
          display: flex;
          flex-wrap: wrap;
          margin: 0 -25px;
          width: calc(100% + 50px); }
          section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date {
            display: inline-block;
            flex: 0 0 auto;
            padding: 25px;
            text-align: left;
            width: 100%; }
            @media only screen and (min-width: 576px) {
              section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date {
                width: 50%; } }
            @media only screen and (min-width: 1280px) {
              section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date {
                width: 33.333%; } }
            section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content {
              background-color: #6ea9ad;
              display: flex;
              flex-direction: column;
              height: 100%;
              justify-content: center;
              padding: 18px 20px; }
              section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content .date, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content .date {
                font-size: 1.4rem; }
              section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content .venue .venue-name, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content .venue .venue-name {
                font-weight: 700;
                margin-right: 20px; }
              section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content .link a, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date .td-content .link a {
                color: #707070;
                font-size: 1.4rem;
                font-weight: 700; }
            section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date.ended, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date.ended {
              opacity: 0.7; }
            section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date.hide, .section.event-section.event-detail .row .column.maf-dates .maf-content .show-tour-dates .tour-date.hide {
              display: none; }
section.event-section.event-detail.event-dates .row .column, .section.event-section.event-detail.event-dates .row .column {
  padding-bottom: 0; }
section.event-section.event-gallery, .section.event-section.event-gallery {
  text-align: center; }
  section.event-section.event-gallery .row .column.maf-col-1, .section.event-section.event-gallery .row .column.maf-col-1 {
    padding-top: 15px; }
section.event-section.assoc div.cardbox article.card .portal-item .portal-content .date, .section.event-section.assoc div.cardbox article.card .portal-item .portal-content .date {
  background-color: #6ea9ad;
  height: 1px;
  margin: 10px 0 15px 0;
  padding: 0; }
section.event-section.assoc .header .maf-content, .section.event-section.assoc .header .maf-content {
  padding-top: 20px; }
  section.event-section.assoc .header .maf-content h2, .section.event-section.assoc .header .maf-content h2 {
    color: #6ea9ad;
    font-family: "Roboto", sans-serif;
    font-weight: 400; }
section.event-section.assoc .row .column, .section.event-section.assoc .row .column {
  padding-top: 70px;
  padding-bottom: 120px; }
section.event-section.festival-overview > .row .column, .section.event-section.festival-overview > .row .column {
  overflow: visible; }
section.event-section.festival-overview div.cardbox article.card, section.event-section.festival-overview aside.cardbox article.card, .section.event-section.festival-overview div.cardbox article.card, .section.event-section.festival-overview aside.cardbox article.card {
  width: 100%; }
  @media only screen and (min-width: 768px) {
    section.event-section.festival-overview div.cardbox article.card, section.event-section.festival-overview aside.cardbox article.card, .section.event-section.festival-overview div.cardbox article.card, .section.event-section.festival-overview aside.cardbox article.card {
      width: 33.333%; } }
  section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content {
    color: #707070;
    text-align: center; }
    section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .tn, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .tn, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .tn, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .tn {
      margin-bottom: 10px;
      overflow: visible; }
    section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .info, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .info, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .info, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .info {
      align-items: center; }
    section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title {
      margin-bottom: auto; }
      section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.next, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.next, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.next, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.next {
        background-image: url("/images/Layout/header-flag.png");
        background-size: 100% 100%;
        color: white;
        font-size: 2rem;
        padding: 1.8% 6.2% 5.5% 6.2%;
        text-transform: uppercase;
        width: auto; }
        @media only screen and (min-width: 1152px) {
          section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.next, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.next, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.next, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.next {
            font-size: 3.3rem; } }
      section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.pending, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.pending, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.pending, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.pending {
        background-color: #707070;
        border-radius: 1rem;
        margin-top: auto;
        max-width: 70%;
        padding: 5px; }
        section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.pending.pink, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.pending.pink, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .title.pending.pink, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .title.pending.pink {
          background-color: #e1e1e1; }
    section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .desc, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .desc, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .desc, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .desc {
      padding: 20px 0 40px 0; }
      section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .desc p, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .desc p, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .desc p, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .desc p {
        margin-bottom: 0;
        text-transform: uppercase; }
        section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .desc p.dates, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .desc p.dates, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .desc p.dates, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .desc p.dates {
          font-family: "Roboto", sans-serif;
          font-size: 3rem;
          line-height: 1.1; }
    section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .button, section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .button, .section.event-section.festival-overview div.cardbox article.card .portal-item .portal-content .button, .section.event-section.festival-overview aside.cardbox article.card .portal-item .portal-content .button {
      align-self: center; }
section.event-section.festival-overview .section.two-column p.event, .section.event-section.festival-overview .section.two-column p.event {
  font-size: 2.2rem;
  text-transform: uppercase; }
section.event-section.festival-overview .section.two-column .body, .section.event-section.festival-overview .section.two-column .body {
  margin-bottom: 1em; }
  section.event-section.festival-overview .section.two-column .body p:first-child, .section.event-section.festival-overview .section.two-column .body p:first-child {
    font-family: "Roboto", sans-serif;
    font-size: 2.0rem;
    line-height: 1.4;
    font-weight: 700; }
    @media only screen and (min-width: 576px) {
      section.event-section.festival-overview .section.two-column .body p:first-child, .section.event-section.festival-overview .section.two-column .body p:first-child {
        font-size: 2.4rem; } }
section.event-section.festival-overview .section.two-column .row .column .maf-bg-overlay, .section.event-section.festival-overview .section.two-column .row .column .maf-bg-overlay {
  background-size: 100% auto;
  background-position: bottom; }
section.event-section.festival-overview .section.two-column .row .column .maf-col-i > .maf-content, .section.event-section.festival-overview .section.two-column .row .column .maf-col-i > .maf-content {
  padding-bottom: 3vw; }
  section.event-section.festival-overview .section.two-column .row .column .maf-col-i > .maf-content img, .section.event-section.festival-overview .section.two-column .row .column .maf-col-i > .maf-content img {
    border: 0;
    box-shadow: none; }
section.event-section.festival-overview .section.two-column.next, .section.event-section.festival-overview .section.two-column.next {
  border-top: 1px solid #295e81; }
  section.event-section.festival-overview .section.two-column.next .row .column.maf-col-2, .section.event-section.festival-overview .section.two-column.next .row .column.maf-col-2 {
    min-height: 66vw; }
    @media only screen and (min-width: 1024px) {
      section.event-section.festival-overview .section.two-column.next .row .column.maf-col-2, .section.event-section.festival-overview .section.two-column.next .row .column.maf-col-2 {
        min-height: 0; } }
section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-1 .maf-background, .section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-1 .maf-background {
  background-position: right center; }
section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-1 .maf-content, .section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-1 .maf-content {
  padding-top: 60px; }
section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-2 .maf-background, .section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-2 .maf-background {
  background-position: left center; }
@media only screen and (min-width: 1024px) {
  section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-2 .maf-content, .section.event-section.festival-overview .section.two-column.pending .row .column.maf-col-2 .maf-content {
    padding-top: 60px; } }
section.event-section.festival-overview .section.pending .abs-head, .section.event-section.festival-overview .section.pending .abs-head {
  background-color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(110, 169, 173, 0.7);
  font-family: "Roboto", sans-serif;
  left: 0;
  padding: 20px 30px 10px 30px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  width: 100%;
  z-index: 2; }
section.event-section.festival-overview .section.single .row .column .maf-content, .section.event-section.festival-overview .section.single .row .column .maf-content {
  max-width: 550px;
  padding-top: 60px; }
section.event-section.exhibitor-portal .row, .section.event-section.exhibitor-portal .row {
  max-width: none;
  padding: 0; }
  section.event-section.exhibitor-portal .row .column, .section.event-section.exhibitor-portal .row .column {
    padding-top: 25px;
    padding-right: 0;
    padding-left: 0; }
section.faq-section .header, .section.faq-section .header {
  align-items: center; }
  section.faq-section .header .maf-content, .section.faq-section .header .maf-content {
    max-width: 900px; }
section.faq-section .row .column, .section.faq-section .row .column {
  padding-bottom: 135px; }
  section.faq-section .row .column .maf-content, .section.faq-section .row .column .maf-content {
    max-width: 800px; }
section.faq-section .row .footer .maf-content, .section.faq-section .row .footer .maf-content {
  max-width: 800px; }
section.faq-section.maf-h-h .row .column, .section.faq-section.maf-h-h .row .column {
  padding-top: 50px; }
section.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: #6ea9ad; }
section.concertina-section .row, .section.concertina-section .row {
  max-width: 1100px; }
  section.concertina-section .row .column, .section.concertina-section .row .column {
    padding-top: 40px;
    padding-bottom: 40px; }
    section.concertina-section .row .column .concertina .conc-con, .section.concertina-section .row .column .concertina .conc-con {
      display: none;
      width: 100%; }
    section.concertina-section .row .column .concertina .conc-action, .section.concertina-section .row .column .concertina .conc-action {
      border-bottom: 1px solid #e1e1e1;
      text-align: right;
      width: 100%; }
      section.concertina-section .row .column .concertina .conc-action button, .section.concertina-section .row .column .concertina .conc-action button {
        background: none;
        border: 0;
        border-radius: 0;
        color: #707070;
        cursor: pointer;
        font-family: "Roboto", sans-serif;
        font-size: 1.6rem;
        font-style: italic;
        font-weight: 700;
        margin: 0 10px 10px 0;
        outline: none;
        padding: 5px 20px 5px 0;
        position: relative;
        text-transform: uppercase;
        transition: all 350ms ease-out; }
        section.concertina-section .row .column .concertina .conc-action button::after, .section.concertina-section .row .column .concertina .conc-action button::after {
          border: 2px solid #707070;
          border-left: 0;
          border-bottom: 0;
          content: '';
          display: inline-block;
          height: 14px;
          position: absolute;
          right: 4px;
          top: 50%;
          transform: translateY(-50%) rotate(45deg);
          transition: all 350ms ease-out;
          width: 14px; }
        section.concertina-section .row .column .concertina .conc-action button:hover, section.concertina-section .row .column .concertina .conc-action button:focus, .section.concertina-section .row .column .concertina .conc-action button:hover, .section.concertina-section .row .column .concertina .conc-action button:focus {
          color: #6ea9ad; }
          section.concertina-section .row .column .concertina .conc-action button:hover::after, section.concertina-section .row .column .concertina .conc-action button:focus::after, .section.concertina-section .row .column .concertina .conc-action button:hover::after, .section.concertina-section .row .column .concertina .conc-action button:focus::after {
            border-color: #6ea9ad;
            right: 0; }
        section.concertina-section .row .column .concertina .conc-action button.open, .section.concertina-section .row .column .concertina .conc-action button.open {
          margin: 0 0 10px 10px;
          padding: 5px 0 5px 20px; }
          section.concertina-section .row .column .concertina .conc-action button.open::after, .section.concertina-section .row .column .concertina .conc-action button.open::after {
            left: 4px;
            right: auto;
            transform: translateY(-50%) rotate(-135deg); }
          section.concertina-section .row .column .concertina .conc-action button.open:hover::after, section.concertina-section .row .column .concertina .conc-action button.open:focus::after, .section.concertina-section .row .column .concertina .conc-action button.open:hover::after, .section.concertina-section .row .column .concertina .conc-action button.open:focus::after {
            left: 0; }
section.concertina-section.maf-h-h .row .column, .section.concertina-section.maf-h-h .row .column {
  padding-top: 50px; }
  @media only screen and (min-width: 960px) {
    section.concertina-section.maf-h-h .row .column, .section.concertina-section.maf-h-h .row .column {
      padding-top: 50px; } }
section.concertina-section:last-child, .section.concertina-section:last-child {
  margin-bottom: 40px; }
  @media only screen and (min-width: 960px) {
    section.concertina-section:last-child, .section.concertina-section:last-child {
      margin-bottom: 130px; } }
section.shop-section div.cardbox article.card .portal-item .portal-content .title, .section.shop-section div.cardbox article.card .portal-item .portal-content .title {
  margin-bottom: 5px; }
section.shop-section div.cardbox article.card .portal-item .portal-content .price, .section.shop-section div.cardbox article.card .portal-item .portal-content .price {
  color: #6ea9ad;
  font-size: 3rem;
  margin-bottom: 15px; }
  section.shop-section div.cardbox article.card .portal-item .portal-content .price .vat, .section.shop-section div.cardbox article.card .portal-item .portal-content .price .vat {
    font-size: 0.48em; }
section.shop-section div.cardbox article.card .portal-item .portal-content .attr, .section.shop-section div.cardbox article.card .portal-item .portal-content .attr {
  color: #7c7c7c; }
section.shop-section div.cardbox article.card .portal-item .portal-content .actions, .section.shop-section div.cardbox article.card .portal-item .portal-content .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: auto;
  max-width: 270px;
  padding-top: 10px;
  width: 100%; }
section.shop-section div.cardbox article.card .portal-item .portal-content .button, .section.shop-section div.cardbox article.card .portal-item .portal-content .button {
  margin: 10px 10px 0 10px;
  min-width: 111px; }
  section.shop-section div.cardbox article.card .portal-item .portal-content .button.con-link, .section.shop-section div.cardbox article.card .portal-item .portal-content .button.con-link {
    border-color: #707070;
    background-color: #707070;
    color: white; }
    section.shop-section div.cardbox article.card .portal-item .portal-content .button.con-link:hover, .section.shop-section div.cardbox article.card .portal-item .portal-content .button.con-link:hover {
      background-color: transparent;
      color: #707070; }
  section.shop-section div.cardbox article.card .portal-item .portal-content .button:first-child, .section.shop-section div.cardbox article.card .portal-item .portal-content .button:first-child {
    margin-left: 0; }
  section.shop-section div.cardbox article.card .portal-item .portal-content .button:last-child, .section.shop-section div.cardbox article.card .portal-item .portal-content .button:last-child {
    margin-right: 0; }
section.shop-section div.cardbox article.card.is-book .portal-item .portal-content .tn.custom::before, .section.shop-section div.cardbox article.card.is-book .portal-item .portal-content .tn.custom::before {
  display: none; }
section.shop-section div.cardbox article.card.is-book .portal-item .portal-content .tn.custom .tn-img, .section.shop-section div.cardbox article.card.is-book .portal-item .portal-content .tn.custom .tn-img {
  border-radius: 0;
  height: 75.86%;
  width: 50%; }
section.shop-section div.cardbox article.card.is-book .portal-item .portal-content .button, .section.shop-section div.cardbox article.card.is-book .portal-item .portal-content .button {
  padding-top: 34px; }
section.shop-section div.cardbox > div.list-view, .section.shop-section div.cardbox > div.list-view {
  border-top: 1px solid #e1e1e1;
  display: table;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    section.shop-section div.cardbox > div.list-view, .section.shop-section div.cardbox > div.list-view {
      border-top: 0; } }
  section.shop-section div.cardbox > div.list-view .list-row, .section.shop-section div.cardbox > div.list-view .list-row {
    border: 1px solid #e1e1e1;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    width: 100%; }
    @media only screen and (min-width: 768px) {
      section.shop-section div.cardbox > div.list-view .list-row, .section.shop-section div.cardbox > div.list-view .list-row {
        border: 0;
        display: table-row;
        margin-bottom: 0; } }
    section.shop-section div.cardbox > div.list-view .list-row > div, .section.shop-section div.cardbox > div.list-view .list-row > div {
      display: table-cell;
      padding: 15px 10px; }
      @media only screen and (min-width: 768px) {
        section.shop-section div.cardbox > div.list-view .list-row > div, .section.shop-section div.cardbox > div.list-view .list-row > div {
          border-right: 1px solid #e1e1e1;
          border-bottom: 1px solid #e1e1e1; } }
      section.shop-section div.cardbox > div.list-view .list-row > div:first-child, .section.shop-section div.cardbox > div.list-view .list-row > div:first-child {
        border-left: 1px solid #e1e1e1; }
      section.shop-section div.cardbox > div.list-view .list-row > div.lv-image, .section.shop-section div.cardbox > div.list-view .list-row > div.lv-image {
        padding: 3px; }
        section.shop-section div.cardbox > div.list-view .list-row > div.lv-image img, .section.shop-section div.cardbox > div.list-view .list-row > div.lv-image img {
          max-height: 60px;
          min-width: 60px; }
      section.shop-section div.cardbox > div.list-view .list-row > div .label, .section.shop-section div.cardbox > div.list-view .list-row > div .label {
        color: #6ea9ad;
        padding-right: 5px; }
        @media only screen and (min-width: 768px) {
          section.shop-section div.cardbox > div.list-view .list-row > div .label, .section.shop-section div.cardbox > div.list-view .list-row > div .label {
            display: none; } }
      section.shop-section div.cardbox > div.list-view .list-row > div .button, .section.shop-section div.cardbox > div.list-view .list-row > div .button {
        font-size: 1.2rem;
        margin: 0;
        min-width: 110px;
        padding: 10px 15px; }
    section.shop-section div.cardbox > div.list-view .list-row:first-child, .section.shop-section div.cardbox > div.list-view .list-row:first-child {
      background-color: #6ea9ad;
      color: white;
      display: none;
      text-transform: uppercase; }
      @media only screen and (min-width: 768px) {
        section.shop-section div.cardbox > div.list-view .list-row:first-child, .section.shop-section div.cardbox > div.list-view .list-row:first-child {
          display: table-row; } }
      section.shop-section div.cardbox > div.list-view .list-row:first-child > div, .section.shop-section div.cardbox > div.list-view .list-row:first-child > div {
        border: 0; }
section.shop-section > .filter, .section.shop-section > .filter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px;
  max-width: 950px; }
  section.shop-section > .filter .filter-button, .section.shop-section > .filter .filter-button {
    background-color: #22aae2;
    border: 4px solid #22aae2;
    color: white;
    display: inline-block;
    flex: 0 0 auto;
    font-size: 1.6rem;
    font-weight: 500;
    opacity: 1;
    margin: 6px;
    padding: 6px 11px;
    text-decoration: none; }
    section.shop-section > .filter .filter-button:hover, section.shop-section > .filter .filter-button:focus, section.shop-section > .filter .filter-button.active, .section.shop-section > .filter .filter-button:hover, .section.shop-section > .filter .filter-button:focus, .section.shop-section > .filter .filter-button.active {
      background-color: transparent;
      color: #22aae2; }
section.shop-section.category-list, .section.shop-section.category-list {
  background-color: #707070; }
  section.shop-section.category-list .row .column.maf-col-1, .section.shop-section.category-list .row .column.maf-col-1 {
    padding-top: 20px; }
section.shop-section.category-list-highlight, .section.shop-section.category-list-highlight {
  background-color: #707070; }
  section.shop-section.category-list-highlight.maf-h-h .row .column, .section.shop-section.category-list-highlight.maf-h-h .row .column {
    padding-top: 50px; }
  section.shop-section.category-list-highlight.maf-h-f .row .column, .section.shop-section.category-list-highlight.maf-h-f .row .column {
    padding-bottom: 0; }
section.shop-section.product-list, .section.shop-section.product-list {
  background-color: #707070; }
  section.shop-section.product-list .header .maf-content, .section.shop-section.product-list .header .maf-content {
    max-width: none;
    padding-top: 40px; }
  section.shop-section.product-list .row .column.maf-col-1, .section.shop-section.product-list .row .column.maf-col-1 {
    padding-top: 30px; }
  section.shop-section.product-list .filter-bar, .section.shop-section.product-list .filter-bar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1500px;
    padding: 30px 15px;
    width: 100%; }
    @media only screen and (min-width: 576px) {
      section.shop-section.product-list .filter-bar, .section.shop-section.product-list .filter-bar {
        padding: 30px 30px; } }
    section.shop-section.product-list .filter-bar > div, .section.shop-section.product-list .filter-bar > div {
      display: inline-block; }
      section.shop-section.product-list .filter-bar > div.label, .section.shop-section.product-list .filter-bar > div.label {
        min-width: 60px; }
        @media only screen and (min-width: 768px) {
          section.shop-section.product-list .filter-bar > div.label, .section.shop-section.product-list .filter-bar > div.label {
            min-width: 0; } }
      section.shop-section.product-list .filter-bar > div.filter, .section.shop-section.product-list .filter-bar > div.filter {
        margin: 10px;
        min-width: 250px;
        text-align: center; }
        section.shop-section.product-list .filter-bar > div.filter .select, .section.shop-section.product-list .filter-bar > div.filter .select {
          width: 250px; }
  section.shop-section.product-list .sort-bar, .section.shop-section.product-list .sort-bar {
    background-color: white;
    border-top: 1px solid #9e9e9e;
    border-bottom: 1px solid #9e9e9e;
    width: 100%; }
    section.shop-section.product-list .sort-bar > div, .section.shop-section.product-list .sort-bar > div {
      align-items: center;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      margin: 0 auto;
      max-width: 1500px;
      padding: 15px 15px; }
      @media only screen and (min-width: 576px) {
        section.shop-section.product-list .sort-bar > div, .section.shop-section.product-list .sort-bar > div {
          padding: 15px 30px; } }
      section.shop-section.product-list .sort-bar > div > div, .section.shop-section.product-list .sort-bar > div > div {
        align-items: center;
        display: flex;
        justify-content: flex-start;
        padding: 5px 20px; }
        section.shop-section.product-list .sort-bar > div > div > *, .section.shop-section.product-list .sort-bar > div > div > * {
          padding: 0 5px; }
          section.shop-section.product-list .sort-bar > div > div > *:first-child, .section.shop-section.product-list .sort-bar > div > div > *:first-child {
            padding-left: 0; }
        section.shop-section.product-list .sort-bar > div > div .label, .section.shop-section.product-list .sort-bar > div > div .label {
          font-size: 1.4rem;
          font-weight: 700;
          white-space: nowrap; }
        section.shop-section.product-list .sort-bar > div > div a, .section.shop-section.product-list .sort-bar > div > div a {
          line-height: 1;
          margin-top: 2px;
          opacity: 1;
          outline: none;
          text-decoration: none; }
          section.shop-section.product-list .sort-bar > div > div a:hover, section.shop-section.product-list .sort-bar > div > div a:focus, section.shop-section.product-list .sort-bar > div > div a.active, .section.shop-section.product-list .sort-bar > div > div a:hover, .section.shop-section.product-list .sort-bar > div > div a:focus, .section.shop-section.product-list .sort-bar > div > div a.active {
            color: #707070; }
          section.shop-section.product-list .sort-bar > div > div a i, .section.shop-section.product-list .sort-bar > div > div a i {
            font-size: 3rem; }
        section.shop-section.product-list .sort-bar > div > div .select, .section.shop-section.product-list .sort-bar > div > div .select {
          border: 1px solid #9e9e9e;
          border-radius: 0;
          height: 42px;
          margin: 0 5px;
          min-width: 60px;
          padding: 0 10px 0 0; }
          section.shop-section.product-list .sort-bar > div > div .select select, .section.shop-section.product-list .sort-bar > div > div .select select {
            color: #6ea9ad;
            font-size: 1.4rem;
            font-weight: 700;
            padding: 10px 8px; }
          section.shop-section.product-list .sort-bar > div > div .select::before, .section.shop-section.product-list .sort-bar > div > div .select::before {
            width: 30px; }
          section.shop-section.product-list .sort-bar > div > div .select::after, .section.shop-section.product-list .sort-bar > div > div .select::after {
            height: 8px;
            right: 6px;
            top: 48%;
            width: 8px; }
          section.shop-section.product-list .sort-bar > div > div .select:hover, section.shop-section.product-list .sort-bar > div > div .select:focus-within, .section.shop-section.product-list .sort-bar > div > div .select:hover, .section.shop-section.product-list .sort-bar > div > div .select:focus-within {
            border-color: #707070; }
            section.shop-section.product-list .sort-bar > div > div .select:hover::after, section.shop-section.product-list .sort-bar > div > div .select:focus-within::after, .section.shop-section.product-list .sort-bar > div > div .select:hover::after, .section.shop-section.product-list .sort-bar > div > div .select:focus-within::after {
              border-color: #707070;
              top: 53%; }
  section.shop-section.product-list .featured, .section.shop-section.product-list .featured {
    align-items: flex-start;
    border: 1px solid #707070;
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: left; }
    section.shop-section.product-list .featured h2, .section.shop-section.product-list .featured h2 {
      background-color: #707070;
      border-bottom: 1px solid #707070;
      margin: 0; }
    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-family: "Roboto", sans-serif;
      font-size: 5rem;
      font-weight: 700;
      font-family: "Roboto", sans-serif; }
      @media only screen and (min-width: 576px) {
        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: 6rem; } }
    section.shop-section.product-list .featured .price, .section.shop-section.product-list .featured .price {
      color: #295e81; }
      section.shop-section.product-list .featured .price .sold, .section.shop-section.product-list .featured .price .sold {
        color: #707070; }
    section.shop-section.product-list .featured .row, .section.shop-section.product-list .featured .row {
      padding: 7.5px; }
      @media only screen and (min-width: 576px) {
        section.shop-section.product-list .featured .row, .section.shop-section.product-list .featured .row {
          padding: 15px; } }
      section.shop-section.product-list .featured .row .column, .section.shop-section.product-list .featured .row .column {
        padding: 7.5px;
        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: 15px; } }
  section.shop-section.product-list div.cardbox article.card, .section.shop-section.product-list div.cardbox article.card {
    width: 100%; }
    @media only screen and (min-width: 576px) {
      section.shop-section.product-list div.cardbox article.card, .section.shop-section.product-list div.cardbox article.card {
        width: 50%; } }
    @media only screen and (min-width: 768px) {
      section.shop-section.product-list div.cardbox article.card, .section.shop-section.product-list div.cardbox article.card {
        width: 33.333%; } }
    @media only screen and (min-width: 960px) {
      section.shop-section.product-list div.cardbox article.card, .section.shop-section.product-list div.cardbox article.card {
        width: 25%; } }
    section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .tn, .section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .tn {
      border: 10px solid white; }
      section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .tn.custom::after, .section.shop-section.product-list div.cardbox article.card .portal-item .portal-content .tn.custom::after {
        padding-bottom: 86.014%; }
  section.shop-section.product-list div.cardbox.list-view, .section.shop-section.product-list div.cardbox.list-view {
    width: 100%; }
  section.shop-section.product-list.associated .row .column, .section.shop-section.product-list.associated .row .column {
    padding-top: 40px; }
section.shop-section.product-list-new, .section.shop-section.product-list-new {
  background-color: #e1e1e1; }
  section.shop-section.product-list-new h1, section.shop-section.product-list-new .h1-style, section.shop-section.product-list-new h2, section.shop-section.product-list-new .h2-style, section.shop-section.product-list-new h3, section.shop-section.product-list-new .h3-style, section.shop-section.product-list-new h4, section.shop-section.product-list-new .h4-style, section.shop-section.product-list-new h5, section.shop-section.product-list-new .h5-style, section.shop-section.product-list-new h6.h6-style, .section.shop-section.product-list-new h1, .section.shop-section.product-list-new .h1-style, .section.shop-section.product-list-new h2, .section.shop-section.product-list-new .h2-style, .section.shop-section.product-list-new h3, .section.shop-section.product-list-new .h3-style, .section.shop-section.product-list-new h4, .section.shop-section.product-list-new .h4-style, .section.shop-section.product-list-new h5, .section.shop-section.product-list-new .h5-style, .section.shop-section.product-list-new h6.h6-style {
    color: #6ea9ad; }
  section.shop-section.product-list-new div.cardbox article.card .portal-item, .section.shop-section.product-list-new div.cardbox article.card .portal-item {
    background-color: white;
    border-color: white; }
section.shop-section.product-detail h1, section.shop-section.product-detail .h1-style, section.shop-section.product-detail h2, section.shop-section.product-detail .h2-style, section.shop-section.product-detail h3, section.shop-section.product-detail .h3-style, section.shop-section.product-detail h4, section.shop-section.product-detail .h4-style, section.shop-section.product-detail h5, section.shop-section.product-detail .h5-style, section.shop-section.product-detail h6.h6-style, .section.shop-section.product-detail h1, .section.shop-section.product-detail .h1-style, .section.shop-section.product-detail h2, .section.shop-section.product-detail .h2-style, .section.shop-section.product-detail h3, .section.shop-section.product-detail .h3-style, .section.shop-section.product-detail h4, .section.shop-section.product-detail .h4-style, .section.shop-section.product-detail h5, .section.shop-section.product-detail .h5-style, .section.shop-section.product-detail h6.h6-style {
  color: #6ea9ad; }
section.shop-section.product-detail h1, section.shop-section.product-detail .h1-style, .section.shop-section.product-detail h1, .section.shop-section.product-detail .h1-style {
  font-size: 3.6rem; }
section.shop-section.product-detail h2, section.shop-section.product-detail .h2-style, .section.shop-section.product-detail h2, .section.shop-section.product-detail .h2-style {
  font-size: 1.8rem; }
section.shop-section.product-detail .product-name, .section.shop-section.product-detail .product-name {
  margin-bottom: 0;
  padding-bottom: 0; }
  section.shop-section.product-detail .product-name::after, .section.shop-section.product-detail .product-name::after {
    display: none; }
section.shop-section.product-detail .image-placeholder, .section.shop-section.product-detail .image-placeholder {
  background-color: #707070;
  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: 30px;
    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: "Roboto", 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 {
      border: 2px solid transparent;
      height: 120px;
      margin-right: 10px; }
      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%;
        object-position: center;
        transition: all 350ms ease-out;
        width: auto; }
      section.shop-section.product-detail .image-browser #image-nav .image-slide.is-selected, .section.shop-section.product-detail .image-browser #image-nav .image-slide.is-selected {
        border: 2px solid #707070; }
    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: #707070; }
section.shop-section.product-detail .product-gallery, .section.shop-section.product-detail .product-gallery {
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -10px;
  max-width: none;
  width: calc(100% + 20px); }
  section.shop-section.product-detail .product-gallery > div, .section.shop-section.product-detail .product-gallery > div {
    display: inline-block;
    flex: 0 0 auto;
    padding: 10px;
    width: 100%;
    z-index: 1; }
    section.shop-section.product-detail .product-gallery > div > a, .section.shop-section.product-detail .product-gallery > div > a {
      border: 1px solid #b0b0b0;
      color: #707070;
      display: inline-block;
      font-size: 1.8rem;
      line-height: 0;
      opacity: 1;
      outline: none;
      text-decoration: none;
      width: 100%;
      /*.info {
        display: inline-block;
        text-align: center;
        width: 100%;
        > div {
          display: inline-block;
          width: 100%;
          &.title {
            font-weight: 500;
            padding: 20px 0 10px 0;
          }
          &.alt {
            font-size: 1.4rem;
          }
        }
      }*/ }
      section.shop-section.product-detail .product-gallery > div > a .tn, .section.shop-section.product-detail .product-gallery > div > a .tn {
        background-color: white;
        display: inline-block;
        flex: 0 0 auto;
        overflow: hidden;
        position: relative;
        transition: all 350ms ease-out;
        width: 100%; }
        section.shop-section.product-detail .product-gallery > div > a .tn .tn-img, .section.shop-section.product-detail .product-gallery > div > a .tn .tn-img {
          display: inline-block;
          height: auto;
          min-width: 0;
          transform: scale(1);
          transform-origin: center;
          transition: all 700ms ease-out;
          width: 100%;
          z-index: 0; }
      section.shop-section.product-detail .product-gallery > div > a:hover .tn .tn-img, section.shop-section.product-detail .product-gallery > div > a:focus .tn .tn-img, .section.shop-section.product-detail .product-gallery > div > a:hover .tn .tn-img, .section.shop-section.product-detail .product-gallery > div > a:focus .tn .tn-img {
        transform: scale(1.02); }
    section.shop-section.product-detail .product-gallery > div:first-child, .section.shop-section.product-detail .product-gallery > div:first-child {
      padding-top: 0; }
    section.shop-section.product-detail .product-gallery > div:not(:first-child), .section.shop-section.product-detail .product-gallery > div:not(:first-child) {
      display: inline-block;
      width: 25%; }
      section.shop-section.product-detail .product-gallery > div:not(:first-child):nth-child(n+6), .section.shop-section.product-detail .product-gallery > div:not(:first-child):nth-child(n+6) {
        display: none; }
      section.shop-section.product-detail .product-gallery > div:not(:first-child) > a .tn::after, .section.shop-section.product-detail .product-gallery > div:not(:first-child) > a .tn::after {
        content: '';
        display: table;
        padding-bottom: 75%; }
      section.shop-section.product-detail .product-gallery > div:not(:first-child) > a .tn .tn-img, .section.shop-section.product-detail .product-gallery > div:not(:first-child) > a .tn .tn-img {
        display: inline-block;
        height: 100%;
        left: 0;
        object-fit: contain;
        position: absolute;
        top: 0; }
section.shop-section.product-detail .description, .section.shop-section.product-detail .description {
  color: #656666;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 30px; }
section.shop-section.product-detail .attrs, .section.shop-section.product-detail .attrs {
  border: 1px solid #e1e1e1;
  border-top: 0;
  border-right: 0;
  display: table;
  margin: 0 0 2em 0; }
  section.shop-section.product-detail .attrs .attr, .section.shop-section.product-detail .attrs .attr {
    display: table-row; }
    section.shop-section.product-detail .attrs .attr > span, .section.shop-section.product-detail .attrs .attr > span {
      border: 1px solid #e1e1e1;
      border-bottom: 0;
      border-left: 0;
      display: table-cell;
      padding: 8px 12px; }
      section.shop-section.product-detail .attrs .attr > span:first-child, .section.shop-section.product-detail .attrs .attr > span:first-child {
        color: #6ea9ad; }
section.shop-section.product-detail .price, .section.shop-section.product-detail .price {
  display: inline-block;
  margin-bottom: 20px; }
  section.shop-section.product-detail .price > span, .section.shop-section.product-detail .price > span {
    display: inline-block;
    padding: 10px 15px; }
    section.shop-section.product-detail .price > span.label, .section.shop-section.product-detail .price > span.label {
      background-color: #6ea9ad;
      color: white; }
    section.shop-section.product-detail .price > span.price-string, .section.shop-section.product-detail .price > span.price-string {
      border: 1px solid #e1e1e1; }
section.shop-section.product-detail form, .section.shop-section.product-detail form {
  align-items: flex-end;
  display: flex; }
  section.shop-section.product-detail form:last-child, .section.shop-section.product-detail form:last-child {
    margin-bottom: 0; }
  section.shop-section.product-detail form .spinner, .section.shop-section.product-detail form .spinner {
    margin-right: 10px; }
    section.shop-section.product-detail form .spinner label, .section.shop-section.product-detail form .spinner label {
      font-size: 1.8rem;
      font-weight: 500; }
  section.shop-section.product-detail form button.form-enter, .section.shop-section.product-detail form button.form-enter {
    padding: 15px; }
section.shop-section.product-detail .header, .section.shop-section.product-detail .header {
  max-width: 1400px; }
  section.shop-section.product-detail .header .maf-content, .section.shop-section.product-detail .header .maf-content {
    align-items: flex-start;
    padding-top: 25px;
    text-align: left; }
section.shop-section.product-detail .row, .section.shop-section.product-detail .row {
  max-width: 1400px;
  padding-top: 25px; }
  section.shop-section.product-detail .row .column, .section.shop-section.product-detail .row .column {
    padding-top: 0; }
    section.shop-section.product-detail .row .column .maf-content, .section.shop-section.product-detail .row .column .maf-content {
      align-items: flex-start;
      text-align: left; }
    section.shop-section.product-detail .row .column.maf-col-1 .maf-content.product-gallery, .section.shop-section.product-detail .row .column.maf-col-1 .maf-content.product-gallery {
      justify-content: flex-start; }
    @media only screen and (min-width: 1024px) {
      section.shop-section.product-detail .row .column.maf-col-2, .section.shop-section.product-detail .row .column.maf-col-2 {
        max-width: 600px; } }
section.shop-section.shop-highlight h1, section.shop-section.shop-highlight .h1-style, section.shop-section.shop-highlight h2, section.shop-section.shop-highlight .h2-style, section.shop-section.shop-highlight h3, section.shop-section.shop-highlight .h3-style, section.shop-section.shop-highlight h4, section.shop-section.shop-highlight .h4-style, section.shop-section.shop-highlight h5, section.shop-section.shop-highlight .h5-style, section.shop-section.shop-highlight h6.h6-style, .section.shop-section.shop-highlight h1, .section.shop-section.shop-highlight .h1-style, .section.shop-section.shop-highlight h2, .section.shop-section.shop-highlight .h2-style, .section.shop-section.shop-highlight h3, .section.shop-section.shop-highlight .h3-style, .section.shop-section.shop-highlight h4, .section.shop-section.shop-highlight .h4-style, .section.shop-section.shop-highlight h5, .section.shop-section.shop-highlight .h5-style, .section.shop-section.shop-highlight h6.h6-style {
  color: #6ea9ad; }
section.shop-section.shop-highlight .footer .maf-content + .maf-content, .section.shop-section.shop-highlight .footer .maf-content + .maf-content {
  margin-top: 1em; }
section.shop-section.shop-highlight.maf-h-f .row .column, .section.shop-section.shop-highlight.maf-h-f .row .column {
  padding-bottom: 20px; }
@media only screen and (min-width: 1024px) {
  section.slideshow-section .row, .section.slideshow-section .row {
    margin-top: 80px;
    margin-bottom: 80px; } }
section.slideshow-section .row .column > .maf-content, .section.slideshow-section .row .column > .maf-content {
  max-width: 1400px; }
section.slideshow-section .flickity-slideshow, section.slideshow-section .flickity-slideshow-edit, .section.slideshow-section .flickity-slideshow, .section.slideshow-section .flickity-slideshow-edit {
  width: 100%; }
  section.slideshow-section .flickity-slideshow .ss-slide, section.slideshow-section .flickity-slideshow-edit .ss-slide, .section.slideshow-section .flickity-slideshow .ss-slide, .section.slideshow-section .flickity-slideshow-edit .ss-slide {
    background-color: transparent;
    padding: 0 15px;
    position: relative;
    width: 100%; }
    @media only screen and (min-width: 576px) {
      section.slideshow-section .flickity-slideshow .ss-slide, section.slideshow-section .flickity-slideshow-edit .ss-slide, .section.slideshow-section .flickity-slideshow .ss-slide, .section.slideshow-section .flickity-slideshow-edit .ss-slide {
        padding: 0 30px; } }
    section.slideshow-section .flickity-slideshow .ss-slide > div, section.slideshow-section .flickity-slideshow-edit .ss-slide > div, .section.slideshow-section .flickity-slideshow .ss-slide > div, .section.slideshow-section .flickity-slideshow-edit .ss-slide > div {
      align-items: center;
      align-content: center;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      padding-bottom: 40px;
      position: relative;
      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 {
        line-height: 1.4;
        max-width: 835px; }
        section.slideshow-section .flickity-slideshow .ss-slide > div p:not(:first-child):last-child, section.slideshow-section .flickity-slideshow-edit .ss-slide > div p:not(:first-child):last-child, .section.slideshow-section .flickity-slideshow .ss-slide > div p:not(:first-child):last-child, .section.slideshow-section .flickity-slideshow-edit .ss-slide > div p:not(:first-child):last-child {
          font-weight: 600; }
        section.slideshow-section .flickity-slideshow .ss-slide > div p:last-child, section.slideshow-section .flickity-slideshow-edit .ss-slide > div p:last-child, .section.slideshow-section .flickity-slideshow .ss-slide > div p:last-child, .section.slideshow-section .flickity-slideshow-edit .ss-slide > div p:last-child {
          margin-bottom: 0; }
  section.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: #6ea9ad; }
    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 {
      background-color: #6ea9ad; }
section.slideshow-section.has-aspect .row, .section.slideshow-section.has-aspect .row {
  padding: 0; }
  section.slideshow-section.has-aspect .row .column, .section.slideshow-section.has-aspect .row .column {
    padding: 0; }
section.slideshow-section.has-aspect .flickity-slideshow .ss-slide::before, section.slideshow-section.has-aspect .flickity-slideshow-edit .ss-slide::before, .section.slideshow-section.has-aspect .flickity-slideshow .ss-slide::before, .section.slideshow-section.has-aspect .flickity-slideshow-edit .ss-slide::before {
  content: '';
  display: table;
  padding-bottom: 56.25%; }
section.slideshow-section.has-aspect .flickity-slideshow .ss-slide .label, section.slideshow-section.has-aspect .flickity-slideshow-edit .ss-slide .label, .section.slideshow-section.has-aspect .flickity-slideshow .ss-slide .label, .section.slideshow-section.has-aspect .flickity-slideshow-edit .ss-slide .label {
  bottom: 80px;
  font-size: 1.6rem;
  position: absolute;
  right: 3%; }
section.slideshow-section.has-aspect .flickity-page-dots, .section.slideshow-section.has-aspect .flickity-page-dots {
  bottom: 40px;
  position: absolute;
  right: 3%;
  width: auto; }
  section.slideshow-section.has-aspect .flickity-page-dots .dot, .section.slideshow-section.has-aspect .flickity-page-dots .dot {
    background-color: transparent;
    background-image: none;
    border-color: white;
    height: 20px;
    width: 20px; }
    section.slideshow-section.has-aspect .flickity-page-dots .dot::before, .section.slideshow-section.has-aspect .flickity-page-dots .dot::before {
      background-color: white; }
    section.slideshow-section.has-aspect .flickity-page-dots .dot.is-selected::before, .section.slideshow-section.has-aspect .flickity-page-dots .dot.is-selected::before {
      height: 60%;
      width: 60%; }
section.slideshow-section.maf-h-h .row .column, .section.slideshow-section.maf-h-h .row .column {
  padding-top: 30px; }
section.slideshow-section.brand-slide h1, .section.slideshow-section.brand-slide h1 {
  width: 100%;
  padding: 50px 0 0 0; }
section.slideshow-section.brand-slide h2, .section.slideshow-section.brand-slide h2 {
  font-size: 4rem; }
  @media only screen and (min-width: 576px) {
    section.slideshow-section.brand-slide h2, .section.slideshow-section.brand-slide h2 {
      font-size: 5rem; } }
section.slideshow-section.brand-slide hr, .section.slideshow-section.brand-slide hr {
  border-color: #295e81;
  max-width: 120px; }
section.slideshow-section.brand-slide .row, .section.slideshow-section.brand-slide .row {
  margin-bottom: 0;
  max-width: 96%; }
  @media only screen and (min-width: 960px) {
    section.slideshow-section.brand-slide .row, .section.slideshow-section.brand-slide .row {
      max-width: 100%; } }
  section.slideshow-section.brand-slide .row .header .maf-content, .section.slideshow-section.brand-slide .row .header .maf-content {
    align-self: flex-start;
    text-align: center;
    padding: 0;
    margin-bottom: 0; }
    @media only screen and (min-width: 576px) {
      section.slideshow-section.brand-slide .row .header .maf-content, .section.slideshow-section.brand-slide .row .header .maf-content {
        text-align: left;
        padding: 0;
        margin-bottom: 50px; } }
    section.slideshow-section.brand-slide .row .header .maf-content img, .section.slideshow-section.brand-slide .row .header .maf-content img {
      max-width: 80%;
      margin: 0 20px; }
  section.slideshow-section.brand-slide .row .column, .section.slideshow-section.brand-slide .row .column {
    padding-top: 1em;
    padding-bottom: 0; }
    section.slideshow-section.brand-slide .row .column .maf-content, .section.slideshow-section.brand-slide .row .column .maf-content {
      align-items: center;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center; }
      section.slideshow-section.brand-slide .row .column .maf-content p, .section.slideshow-section.brand-slide .row .column .maf-content p {
        margin: 0 20px 10px 20px;
        width: auto; }
        section.slideshow-section.brand-slide .row .column .maf-content p img, .section.slideshow-section.brand-slide .row .column .maf-content p img {
          max-width: 160px; }
section.slideshow-section.brand-slide .flickity-slideshow .ss-slide, section.slideshow-section.brand-slide .flickity-slideshow-edit .ss-slide, .section.slideshow-section.brand-slide .flickity-slideshow .ss-slide, .section.slideshow-section.brand-slide .flickity-slideshow-edit .ss-slide {
  width: 50%;
  margin: 0 10px; }
  @media only screen and (min-width: 576px) {
    section.slideshow-section.brand-slide .flickity-slideshow .ss-slide, section.slideshow-section.brand-slide .flickity-slideshow-edit .ss-slide, .section.slideshow-section.brand-slide .flickity-slideshow .ss-slide, .section.slideshow-section.brand-slide .flickity-slideshow-edit .ss-slide {
      width: 25%;
      margin: 0; } }
  @media only screen and (min-width: 1024px) {
    section.slideshow-section.brand-slide .flickity-slideshow .ss-slide, section.slideshow-section.brand-slide .flickity-slideshow-edit .ss-slide, .section.slideshow-section.brand-slide .flickity-slideshow .ss-slide, .section.slideshow-section.brand-slide .flickity-slideshow-edit .ss-slide {
      width: 16.666%; } }
  section.slideshow-section.brand-slide .flickity-slideshow .ss-slide::before, section.slideshow-section.brand-slide .flickity-slideshow-edit .ss-slide::before, .section.slideshow-section.brand-slide .flickity-slideshow .ss-slide::before, .section.slideshow-section.brand-slide .flickity-slideshow-edit .ss-slide::before {
    content: ''; }
section.simple-gallery figcaption, .section.simple-gallery figcaption {
  display: none; }
section.simple-gallery .row .header .maf-content > *:first-child, .section.simple-gallery .row .header .maf-content > *:first-child {
  margin-top: 20px; }
section.simple-gallery .row .column.maf-col-1, .section.simple-gallery .row .column.maf-col-1 {
  padding-top: 40px;
  padding-bottom: 40px; }
  section.simple-gallery .row .column.maf-col-1 .is-simple-gallery, .section.simple-gallery .row .column.maf-col-1 .is-simple-gallery {
    max-width: 1400px; }
section.simple-gallery .row .footer .maf-content, .section.simple-gallery .row .footer .maf-content {
  max-width: 960px; }
  section.simple-gallery .row .footer .maf-content p, .section.simple-gallery .row .footer .maf-content p {
    font-size: 1.4rem;
    line-height: 1.6; }
  section.simple-gallery .row .footer .maf-content > *:last-child, .section.simple-gallery .row .footer .maf-content > *:last-child {
    margin-bottom: 30px !important; }
section.social-section, .section.social-section {
  background-color: #707070; }
  section.social-section .blog-nav, .section.social-section .blog-nav {
    width: 100%; }
    section.social-section .blog-nav .blog-aside-content > a, .section.social-section .blog-nav .blog-aside-content > a {
      margin-bottom: 10px; }
      section.social-section .blog-nav .blog-aside-content > a .blog-current-item, .section.social-section .blog-nav .blog-aside-content > a .blog-current-item {
        font-size: 1.8rem; }
        section.social-section .blog-nav .blog-aside-content > a .blog-current-item p, .section.social-section .blog-nav .blog-aside-content > a .blog-current-item p {
          line-height: 1.4; }
      section.social-section .blog-nav .blog-aside-content > a:hover .blog-current-item, .section.social-section .blog-nav .blog-aside-content > a:hover .blog-current-item {
        color: #6ea9ad; }
  section.social-section .row, .section.social-section .row {
    padding-top: 30px;
    padding-bottom: 30px; }
    section.social-section .row .column, .section.social-section .row .column {
      justify-content: flex-start; }
      section.social-section .row .column .maf-content, .section.social-section .row .column .maf-content {
        text-align: center; }
        section.social-section .row .column .maf-content p.label, .section.social-section .row .column .maf-content p.label {
          font-family: "Roboto", sans-serif;
          font-size: 5rem;
          font-weight: 700;
          border-bottom: 1px solid white;
          color: white;
          margin-bottom: 100px;
          width: auto; }
          @media only screen and (min-width: 576px) {
            section.social-section .row .column .maf-content p.label, .section.social-section .row .column .maf-content p.label {
              font-size: 6rem; } }
      section.social-section .row .column.maf-col-1, .section.social-section .row .column.maf-col-1 {
        align-items: flex-start; }
      section.social-section .row .column.maf-col-3 .maf-content .sc-links a, .section.social-section .row .column.maf-col-3 .maf-content .sc-links a {
        margin-right: 20px;
        margin-bottom: 20px; }
        section.social-section .row .column.maf-col-3 .maf-content .sc-links a:last-child, .section.social-section .row .column.maf-col-3 .maf-content .sc-links a:last-child {
          margin-right: 0; }
        section.social-section .row .column.maf-col-3 .maf-content .sc-links a img, .section.social-section .row .column.maf-col-3 .maf-content .sc-links a img {
          height: 40px; }
section.projects .header, .section.projects .header {
  padding-top: 0;
  padding-bottom: 30px; }
  section.projects .header .maf-content, .section.projects .header .maf-content {
    padding-top: 30px;
    position: relative; }
    section.projects .header .maf-content::before, .section.projects .header .maf-content::before {
      background-color: #707070;
      content: '';
      display: inline-block;
      height: 1px;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: calc( 100% - 30px );
      position: absolute; }
section.projects .row, .section.projects .row {
  margin-bottom: 30px; }
  section.projects .row::before, .section.projects .row::before {
    background-color: #707070;
    bottom: 0;
    content: '';
    display: inline-block;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: calc( 100% - 60px );
    position: absolute; }
  section.projects .row .column.quarter, .section.projects .row .column.quarter {
    max-width: 25%; }
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, .section.search-section .row .column.whole .maf-content {
    max-width: 900px; }
    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;
      max-width: 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 {
      font-family: "Roboto", sans-serif;
      font-size: 2.0rem;
      line-height: 1.4;
      font-weight: 700; }
      @media only screen and (min-width: 576px) {
        section.search-section .row .column.whole .maf-content p.label, .section.search-section .row .column.whole .maf-content p.label {
          font-size: 2.4rem; } }
    section.search-section .row .column.whole .maf-content.results, .section.search-section .row .column.whole .maf-content.results {
      align-items: flex-start;
      margin-bottom: 20px; }
section.search-section .label, .section.search-section .label {
  margin-bottom: 10px; }
section[class*='portal-'].portal-section, .section[class*='portal-'].portal-section {
  border: 0; }
  section[class*='portal-'].portal-section div.cardbox article.card.art-card.cat-1, section[class*='portal-'].portal-section div.cardbox div.card.art-card.cat-1, .section[class*='portal-'].portal-section div.cardbox article.card.art-card.cat-1, .section[class*='portal-'].portal-section div.cardbox div.card.art-card.cat-1 {
    --card-colour: #707070; }
  section[class*='portal-'].portal-section div.cardbox article.card.art-card.cat-2, section[class*='portal-'].portal-section div.cardbox div.card.art-card.cat-2, .section[class*='portal-'].portal-section div.cardbox article.card.art-card.cat-2, .section[class*='portal-'].portal-section div.cardbox div.card.art-card.cat-2 {
    --card-colour: #6ea9ad; }
  section[class*='portal-'].portal-section div.cardbox article.card.art-card.cat-3, section[class*='portal-'].portal-section div.cardbox div.card.art-card.cat-3, .section[class*='portal-'].portal-section div.cardbox article.card.art-card.cat-3, .section[class*='portal-'].portal-section div.cardbox div.card.art-card.cat-3 {
    --card-colour: #e37541; }
  section[class*='portal-'].portal-section div.cardbox article.card.art-card.cat-4, section[class*='portal-'].portal-section div.cardbox div.card.art-card.cat-4, .section[class*='portal-'].portal-section div.cardbox article.card.art-card.cat-4, .section[class*='portal-'].portal-section div.cardbox div.card.art-card.cat-4 {
    --card-colour: #e65279; }
  section[class*='portal-'].portal-section div.cardbox article.card.ev-card.cat-1, section[class*='portal-'].portal-section div.cardbox div.card.ev-card.cat-1, .section[class*='portal-'].portal-section div.cardbox article.card.ev-card.cat-1, .section[class*='portal-'].portal-section div.cardbox div.card.ev-card.cat-1 {
    --card-colour: #707070; }
  section[class*='portal-'].portal-section div.cardbox article.card.ev-card.cat-2, section[class*='portal-'].portal-section div.cardbox div.card.ev-card.cat-2, .section[class*='portal-'].portal-section div.cardbox article.card.ev-card.cat-2, .section[class*='portal-'].portal-section div.cardbox div.card.ev-card.cat-2 {
    --card-colour: #6ea9ad; }
  section[class*='portal-'].portal-section div.cardbox article.card.ev-card.cat-3, section[class*='portal-'].portal-section div.cardbox div.card.ev-card.cat-3, .section[class*='portal-'].portal-section div.cardbox article.card.ev-card.cat-3, .section[class*='portal-'].portal-section div.cardbox div.card.ev-card.cat-3 {
    --card-colour: #e37541; }
  section[class*='portal-'].portal-section div.cardbox article.card.ev-card.cat-4, section[class*='portal-'].portal-section div.cardbox div.card.ev-card.cat-4, .section[class*='portal-'].portal-section div.cardbox article.card.ev-card.cat-4, .section[class*='portal-'].portal-section div.cardbox div.card.ev-card.cat-4 {
    --card-colour: #e65279; }
  section[class*='portal-'].portal-section div.cardbox article.card.list-card.cat-3, section[class*='portal-'].portal-section div.cardbox div.card.list-card.cat-3, .section[class*='portal-'].portal-section div.cardbox article.card.list-card.cat-3, .section[class*='portal-'].portal-section div.cardbox div.card.list-card.cat-3 {
    --card-colour: #6ea9ad; }
  section[class*='portal-'].portal-section div.cardbox article.card.list-card.cat-4, section[class*='portal-'].portal-section div.cardbox div.card.list-card.cat-4, .section[class*='portal-'].portal-section div.cardbox article.card.list-card.cat-4, .section[class*='portal-'].portal-section div.cardbox div.card.list-card.cat-4 {
    --card-colour: #707070; }
  section[class*='portal-'].portal-section div.cardbox article.card.list-card.cat-5, section[class*='portal-'].portal-section div.cardbox div.card.list-card.cat-5, .section[class*='portal-'].portal-section div.cardbox article.card.list-card.cat-5, .section[class*='portal-'].portal-section div.cardbox div.card.list-card.cat-5 {
    --card-colour: #e37541; }
  section[class*='portal-'].portal-section .header .maf-content p, .section[class*='portal-'].portal-section .header .maf-content p {
    max-width: 510px; }
  section[class*='portal-'].portal-section .row .column, .section[class*='portal-'].portal-section .row .column {
    max-width: 1250px; }
  section[class*='portal-'].portal-section.is-slider .flickity-slideshow, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow {
    margin: 0 -15px;
    width: calc(100% + 30px); }
    section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card {
      display: flex;
      flex: 0 0 auto;
      justify-content: center;
      margin-bottom: 0;
      min-height: 100%;
      padding: 0 15px;
      width: 100%;
      z-index: 1; }
      @media only screen and (min-width: 768px) {
        section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card {
          width: 50%; } }
      @media only screen and (min-width: 1280px) {
        section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card {
          width: 33.333%; } }
      @media only screen and (min-width: 1440px) {
        section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card {
          width: 25%; } }
      section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item {
        background-color: white;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border: 1px solid #f2f2f2;
        color: #22aae2;
        cursor: pointer;
        display: inline-block;
        font-size: 1.6rem;
        font-weight: 600;
        height: 100%;
        overflow: visible;
        opacity: 1;
        max-width: 320px;
        position: relative;
        text-align: center;
        text-decoration: none;
        transform: scale(1);
        transition: all 350ms ease-out;
        width: 100%; }
        section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content {
          align-items: flex-start;
          display: flex;
          flex-direction: column;
          height: 100%;
          justify-content: center;
          min-height: 544px;
          position: relative;
          transition: all 350ms ease-out;
          width: 100%; }
          section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-cats, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-cats {
            color: #6ea9ad;
            display: inline-block;
            font-size: 1.4rem;
            font-weight: 700;
            padding-top: 15px;
            text-transform: uppercase;
            z-index: 1; }
          section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn {
            display: inline-block;
            flex: 0 0 auto;
            overflow: hidden;
            position: relative;
            transition: all 350ms ease-out;
            width: 100%; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .tn-img, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .tn-img {
              height: 100%;
              margin: 0 auto;
              object-fit: cover;
              transform: scale(1);
              transform-origin: center;
              transition: all 700ms ease-out;
              width: 100%;
              z-index: 0; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na {
              align-items: center;
              display: inline-flex;
              flex-direction: column;
              justify-content: center;
              left: 0;
              height: 100%;
              font-size: 2rem;
              padding: 20px;
              position: absolute;
              top: 0;
              width: 100%; }
              section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na span, section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na i, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na span, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na i {
                display: inline-block;
                flex: 0 0 auto; }
              section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na span, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na span {
                text-align: center;
                width: 100%; }
              section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na i, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na i {
                font-size: 2em; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.no-img .maf-na, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.no-img .maf-na {
              position: static; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.square::after, section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree::after, section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom::after, section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all::after, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.square::after, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree::after, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom::after, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all::after {
              content: '';
              display: table;
              padding-bottom: 100%; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.square .tn-img, section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree .tn-img, section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom .tn-img, section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all .tn-img, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.square .tn-img, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree .tn-img, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom .tn-img, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all .tn-img {
              left: 0;
              position: absolute;
              top: 0;
              transform: scale(1);
              min-width: 100%; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree::after, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.fourthree::after {
              padding-bottom: 75%; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static {
              overflow: visible;
              position: static; }
              section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static .tn-img, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static .tn-img {
                height: auto;
                max-width: 100%;
                object-fit: scale-down;
                transform-origin: center bottom;
                width: auto; }
              section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static.no-img, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static.no-img {
                min-height: 100px; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all::after, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all::after {
              padding-bottom: 50%; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all .tn-img, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.show-all .tn-img {
              object-fit: contain; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom::after, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.custom::after {
              padding-bottom: 85%; }
          section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .info, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .info {
            align-items: center;
            display: flex;
            flex: 1 1 auto;
            flex-direction: column;
            justify-content: flex-start;
            padding: 15px 20px;
            position: relative;
            transition: all 350ms ease-out;
            width: 100%;
            z-index: +1; }
          section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .title, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .title {
            align-items: flex-start;
            color: #6ea9ad;
            display: flex;
            font-family: "Roboto", sans-serif;
            font-size: 2rem;
            font-weight: 700;
            justify-content: center;
            line-height: 1.1;
            margin: 0;
            padding: 10px 0 3px 0;
            position: relative;
            text-transform: none;
            width: 100%; }
          section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date {
            color: #f2f2f2;
            display: inline-flex;
            justify-content: center;
            line-height: 1;
            margin: auto 0 0 0;
            overflow: hidden;
            padding: 25px 0 5px;
            width: 100%; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date time, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date time {
              display: inline-block;
              position: relative;
              text-transform: uppercase; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date i, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .date i {
              display: none; }
          section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .desc, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .desc {
            color: inherit;
            display: inline-block;
            margin: auto 0 0 0;
            min-height: 130px;
            padding: 15px 0;
            width: 100%; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .desc p, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .desc p {
              margin-bottom: 0; }
          section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .attr, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .attr {
            display: flex;
            margin-top: auto;
            padding: 10px 0;
            width: 100%; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .attr span, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .attr span {
              display: inline-block;
              flex: 1 1 auto;
              line-height: 1.2; }
          section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-button, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-button {
            background-color: transparent;
            border: 2px solid #6ea9ad;
            border-radius: 30px;
            color: #6ea9ad;
            font-size: 1.4rem;
            font-weight: 900;
            margin: auto 0 20px 0;
            min-width: 0;
            padding: 10px 20px; }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-button::after, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .card-button::after {
              display: none; }
        section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item.no-link, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item.no-link {
          cursor: default; }
          section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item.no-link .portal-content .info .card-button, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item.no-link .portal-content .info .card-button {
            display: none; }
        section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item:hover, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item:hover {
          transform: scale(1.01); }
          section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content .tn .tn-img, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content .tn .tn-img {
              transform: scale(1.05); }
            section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content .card-button, .section[class*='portal-'].portal-section.is-slider .flickity-slideshow .card .portal-item:hover .portal-content .card-button {
              background-color: #6ea9ad;
              color: white; }
  section[class*='portal-'].portal-section.is-slider .row, .section[class*='portal-'].portal-section.is-slider .row {
    padding: 0 15px; }
    @media only screen and (min-width: 576px) {
      section[class*='portal-'].portal-section.is-slider .row, .section[class*='portal-'].portal-section.is-slider .row {
        padding: 0 30px; } }
    @media only screen and (min-width: 960px) {
      section[class*='portal-'].portal-section.is-slider .row, .section[class*='portal-'].portal-section.is-slider .row {
        padding: 0 30px; } }
  section[class*='portal-'].portal-section.alt-1 div.cardbox article.card .portal-item .portal-content .desc, section[class*='portal-'].portal-section.alt-1 div.cardbox div.card .portal-item .portal-content .desc, .section[class*='portal-'].portal-section.alt-1 div.cardbox article.card .portal-item .portal-content .desc, .section[class*='portal-'].portal-section.alt-1 div.cardbox div.card .portal-item .portal-content .desc {
    color: #6ea9ad; }
  section[class*='portal-'].portal-section.maf-h-h .row .column, .section[class*='portal-'].portal-section.maf-h-h .row .column {
    padding-top: 60px; }
  section[class*='portal-'].portal-section.maf-h-f .row .column, .section[class*='portal-'].portal-section.maf-h-f .row .column {
    padding-bottom: 60px; }
  section[class*='portal-'].portal-section[class*='bg-'], .section[class*='portal-'].portal-section[class*='bg-'] {
    border: 0.8125vw solid white;
    border-top: 0; }
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 30px; }
  @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: 30px;
    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: 700px; } }
    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: 350px;
      min-height: 350px; }
  section[class*='patchwork-'].patchwork-4col-2 .row .column.maf-col-2, .section[class*='patchwork-'].patchwork-4col-2 .row .column.maf-col-2 {
    min-height: 350px; }
  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: 350px; }
section[class*='patchwork-'].patchwork-4col-2 .row.maf-row-1, .section[class*='patchwork-'].patchwork-4col-2 .row.maf-row-1 {
  box-shadow: 0 0 18px 5px rgba(0, 0, 0, 0.3);
  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.contact-section .contact-meth, .section.contact-section .contact-meth {
  display: block;
  width: 100%;
  padding: 0 0 0 15px; }
  @media only screen and (min-width: 1024px) {
    section.contact-section .contact-meth, .section.contact-section .contact-meth {
      display: flex; } }
section.contact-section .contact-meth p, .section.contact-section .contact-meth p {
  padding: 25px 0 0 0; }
section.contact-section .maf-form form label, section.contact-section .maf-form .form label, .section.contact-section .maf-form form label, .section.contact-section .maf-form .form label {
  font-weight: 700;
  font-size: 2.4rem;
  color: #6ea9ad;
  display: inline-block; }
  section.contact-section .maf-form form label:hover, section.contact-section .maf-form .form label:hover, .section.contact-section .maf-form form label:hover, .section.contact-section .maf-form .form label:hover {
    color: #295e81; }
section.contact-section .contact-meth ul, .section.contact-section .contact-meth ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto; }
section.contact-section ul li, .section.contact-section ul li {
  color: #295e81;
  display: inline-block;
  position: relative;
  width: 50%;
  height: 100px; }
section.contact-section ul li input[type=radio], .section.contact-section ul li input[type=radio] {
  position: absolute;
  visibility: hidden; }
section.contact-section ul li label, .section.contact-section ul li label {
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 1.35em;
  padding: 25px 25px 25px 80px;
  margin: 10px auto;
  height: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear; }
section.contact-section ul li:hover label, .section.contact-section ul li:hover label {
  color: #FFFFFF; }
section.contact-section ul li .check, .section.contact-section ul li .check {
  display: block;
  position: absolute;
  border: 5px solid #295e81;
  height: 40px;
  width: 40px;
  top: 30px;
  left: 20px;
  z-index: 5;
  transition: border .25s linear;
  -webkit-transition: border .25s linear; }
section.contact-section ul li:hover .check, .section.contact-section ul li:hover .check {
  border: 5px solid #295e81; }
section.contact-section ul li .check::before, .section.contact-section ul li .check::before {
  display: block;
  position: absolute;
  content: '';
  height: 40px;
  width: 40px;
  top: -5px;
  left: -5px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear; }
section.contact-section input[type=radio]:checked ~ .check, .section.contact-section input[type=radio]:checked ~ .check {
  border: 5px solid #6ea9ad; }
section.contact-section input[type=radio]:checked ~ .check::before, .section.contact-section input[type=radio]:checked ~ .check::before {
  background: #295e81; }
section.contact-section input[type=radio]:checked ~ label, .section.contact-section input[type=radio]:checked ~ label {
  color: #295e81; }
section.contact-section .maf-content ul li:before, .section.contact-section .maf-content ul li:before {
  display: none; }
section.contact-section p.phone, .section.contact-section p.phone {
  font-size: 2.4rem;
  margin-bottom: 5px;
  font-weight: 700; }
  section.contact-section p.phone span, .section.contact-section p.phone span {
    display: inline-block;
    color: #6ea9ad; }
  section.contact-section p.phone a:not(.button), .section.contact-section p.phone a:not(.button) {
    color: #295e81;
    text-decoration: none; }
  section.contact-section p.phone .img, .section.contact-section p.phone .img {
    display: inline-block;
    margin-right: 10px;
    width: 20px; }
    section.contact-section p.phone .img img, .section.contact-section p.phone .img img {
      vertical-align: middle; }
section.contact-section p.email, .section.contact-section p.email {
  font-size: 2.4rem;
  font-weight: 700; }
  section.contact-section p.email span, .section.contact-section p.email span {
    display: inline-block;
    color: #6ea9ad; }
  section.contact-section p.email a:not(.button), .section.contact-section p.email a:not(.button) {
    color: #295e81;
    text-decoration: none; }
section.contact-section p.img-ico, .section.contact-section p.img-ico {
  align-items: center;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  justify-content: flex-start; }
  section.contact-section p.img-ico span, .section.contact-section p.img-ico span {
    display: inline-block;
    flex: 0 0 auto;
    line-height: 1.1; }
    section.contact-section p.img-ico span:last-child, .section.contact-section p.img-ico span:last-child {
      flex: 1 1 auto;
      padding-left: 10px; }
    section.contact-section p.img-ico span a, .section.contact-section p.img-ico span a {
      color: #707070; }
section.contact-section p a.button, .section.contact-section p a.button {
  margin-top: 10px; }
section.contact-section p.title, .section.contact-section p.title {
  font-size: 2.4rem; }
section.contact-section .sicon, .section.contact-section .sicon {
  align-items: center;
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 30px; }
  section.contact-section .sicon .label, .section.contact-section .sicon .label {
    font-weight: 600;
    width: 100%; }
section.contact-section .social-icons, .section.contact-section .social-icons {
  align-self: flex-start; }
  section.contact-section .social-icons a, .section.contact-section .social-icons a {
    border-radius: 50%;
    color: white;
    font-size: 3rem;
    margin-top: 8px;
    margin-right: 8px; }
    section.contact-section .social-icons a i, .section.contact-section .social-icons a i {
      background-color: transparent;
      border: 0;
      height: 50px;
      width: 50px; }
    section.contact-section .social-icons a:hover, .section.contact-section .social-icons a:hover {
      background-color: transparent;
      color: #6ea9ad; }
      section.contact-section .social-icons a:hover i, .section.contact-section .social-icons a:hover i {
        color: #6ea9ad; }
section.contact-section #logo-contact, .section.contact-section #logo-contact {
  max-width: 350px; }
section.contact-section address, .section.contact-section address {
  font-weight: 700;
  font-size: 2.4rem;
  color: #295e81;
  display: inline-block;
  margin-bottom: 1em;
  width: auto;
  align-self: flex-start; }
section.contact-section .is-map, .section.contact-section .is-map {
  min-height: 310px; }
section.contact-section iframe, .section.contact-section iframe {
  max-width: 100%; }
@media only screen and (min-width: 1024px) {
  section.contact-section form, .section.contact-section form {
    max-width: 860px; } }
section.contact-section form .maf-input textarea, .section.contact-section form .maf-input textarea {
  min-height: 276px; }
section.contact-section form .maf-input.cap-con, .section.contact-section form .maf-input.cap-con {
  display: flex; }
  section.contact-section form .maf-input.cap-con .g-recap-con, .section.contact-section form .maf-input.cap-con .g-recap-con {
    margin: 0; }
section.contact-section .row, .section.contact-section .row {
  padding: 0;
  padding-top: 50px;
  max-width: 1400px;
  flex-direction: column-reverse; }
  @media only screen and (min-width: 576px) {
    section.contact-section .row, .section.contact-section .row {
      padding: 0 15px;
      padding-top: 50px; } }
  @media only screen and (min-width: 1024px) {
    section.contact-section .row, .section.contact-section .row {
      flex-direction: row; } }
  section.contact-section .row .column, .section.contact-section .row .column {
    padding: 50px 15px;
    padding-top: 0; }
    @media only screen and (min-width: 960px) {
      section.contact-section .row .column, .section.contact-section .row .column {
        padding: 50px 15px;
        padding-top: 0; } }
    section.contact-section .row .column .maf-content, .section.contact-section .row .column .maf-content {
      align-items: flex-start;
      text-align: left; }
      section.contact-section .row .column .maf-content + .maf-content, .section.contact-section .row .column .maf-content + .maf-content {
        margin-top: 40px; }
    section.contact-section .row .column.maf-col-2, .section.contact-section .row .column.maf-col-2 {
      margin-top: 90px; }
      section.contact-section .row .column.maf-col-2 .maf-content, .section.contact-section .row .column.maf-col-2 .maf-content {
        height: 100%;
        min-height: 500px;
        position: relative; }
        section.contact-section .row .column.maf-col-2 .maf-content iframe, .section.contact-section .row .column.maf-col-2 .maf-content iframe {
          height: 100%;
          left: 0;
          position: absolute;
          top: 0;
          width: 100%; }
section.product-static .intro .button, .section.product-static .intro .button {
  background-color: #707070;
  color: white; }
  section.product-static .intro .button:hover, .section.product-static .intro .button:hover {
    background-color: transparent;
    color: #707070; }
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: #295e81; }
section.product-static .is-toggle-group, .section.product-static .is-toggle-group {
  margin-bottom: 1em; }
section.product-static .row .column .maf-content, .section.product-static .row .column .maf-content {
  margin-bottom: 1em; }
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-style, section.privacy-policy h3, section.privacy-policy .h3-style, section.privacy-policy h4, section.privacy-policy .h4-style, section.privacy-policy h5, section.privacy-policy .h5-style, section.privacy-policy h6.h6-style, .section.privacy-policy h2, .section.privacy-policy .h2-style, .section.privacy-policy h3, .section.privacy-policy .h3-style, .section.privacy-policy h4, .section.privacy-policy .h4-style, .section.privacy-policy h5, .section.privacy-policy .h5-style, .section.privacy-policy h6.h6-style {
    width: 100%; }
  section.privacy-policy h1, section.privacy-policy .h1-style, .section.privacy-policy h1, .section.privacy-policy .h1-style {
    align-self: center;
    border-bottom: 1px solid #707070;
    padding-bottom: 10px;
    text-align: center;
    width: auto; }
  section.privacy-policy h2, .section.privacy-policy h2 {
    font-size: 3rem;
    margin: 1em 0;
    text-transform: none; }
  section.privacy-policy p.page-lead, .section.privacy-policy p.page-lead {
    text-align: center;
    margin-bottom: 25px; }
  section.privacy-policy ol li, .section.privacy-policy ol li {
    margin-bottom: 20px; }
  section.privacy-policy .row .column, .section.privacy-policy .row .column {
    align-items: center;
    padding-top: 50px;
    padding-bottom: 100px;
    text-align: left; }
    section.privacy-policy .row .column .maf-content, .section.privacy-policy .row .column .maf-content {
      align-items: flex-start;
      justify-content: flex-start;
      max-width: 800px; }
section.account .row, .section.account .row {
  max-width: 1500px; }
section.account#login p, section.account#register p, .section.account#login p, .section.account#register p {
  max-width: 650px; }
section.account#login h1, section.account#login .h1-style, section.account#login h2, section.account#login .h2-style, section.account#login h3, section.account#login .h3-style, section.account#login h4, section.account#login .h4-style, section.account#login h5, section.account#login .h5-style, section.account#login h6.h6-style, section.account#register h1, section.account#register .h1-style, section.account#register h2, section.account#register .h2-style, section.account#register h3, section.account#register .h3-style, section.account#register h4, section.account#register .h4-style, section.account#register h5, section.account#register .h5-style, section.account#register h6.h6-style, .section.account#login h1, .section.account#login .h1-style, .section.account#login h2, .section.account#login .h2-style, .section.account#login h3, .section.account#login .h3-style, .section.account#login h4, .section.account#login .h4-style, .section.account#login h5, .section.account#login .h5-style, .section.account#login h6.h6-style, .section.account#register h1, .section.account#register .h1-style, .section.account#register h2, .section.account#register .h2-style, .section.account#register h3, .section.account#register .h3-style, .section.account#register h4, .section.account#register .h4-style, .section.account#register h5, .section.account#register .h5-style, .section.account#register h6.h6-style {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  max-width: 750px;
  padding-bottom: 35px;
  position: relative; }
  section.account#login h1::after, section.account#login .h1-style::after, section.account#login h2::after, section.account#login .h2-style::after, section.account#login h3::after, section.account#login .h3-style::after, section.account#login h4::after, section.account#login .h4-style::after, section.account#login h5::after, section.account#login .h5-style::after, section.account#login h6.h6-style::after, section.account#register h1::after, section.account#register .h1-style::after, section.account#register h2::after, section.account#register .h2-style::after, section.account#register h3::after, section.account#register .h3-style::after, section.account#register h4::after, section.account#register .h4-style::after, section.account#register h5::after, section.account#register .h5-style::after, section.account#register h6.h6-style::after, .section.account#login h1::after, .section.account#login .h1-style::after, .section.account#login h2::after, .section.account#login .h2-style::after, .section.account#login h3::after, .section.account#login .h3-style::after, .section.account#login h4::after, .section.account#login .h4-style::after, .section.account#login h5::after, .section.account#login .h5-style::after, .section.account#login h6.h6-style::after, .section.account#register h1::after, .section.account#register .h1-style::after, .section.account#register h2::after, .section.account#register .h2-style::after, .section.account#register h3::after, .section.account#register .h3-style::after, .section.account#register h4::after, .section.account#register .h4-style::after, .section.account#register h5::after, .section.account#register .h5-style::after, .section.account#register h6.h6-style::after {
    background-image: url("/images/Layout/hr-bg-green.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 0;
    content: '';
    height: 15px;
    left: 0;
    position: absolute;
    width: 100%; }
  section.account#login h1.login, section.account#login .h1-style.login, section.account#login h2.login, section.account#login .h2-style.login, section.account#login h3.login, section.account#login .h3-style.login, section.account#login h4.login, section.account#login .h4-style.login, section.account#login h5.login, section.account#login .h5-style.login, section.account#login h6.h6-style.login, section.account#register h1.login, section.account#register .h1-style.login, section.account#register h2.login, section.account#register .h2-style.login, section.account#register h3.login, section.account#register .h3-style.login, section.account#register h4.login, section.account#register .h4-style.login, section.account#register h5.login, section.account#register .h5-style.login, section.account#register h6.h6-style.login, .section.account#login h1.login, .section.account#login .h1-style.login, .section.account#login h2.login, .section.account#login .h2-style.login, .section.account#login h3.login, .section.account#login .h3-style.login, .section.account#login h4.login, .section.account#login .h4-style.login, .section.account#login h5.login, .section.account#login .h5-style.login, .section.account#login h6.h6-style.login, .section.account#register h1.login, .section.account#register .h1-style.login, .section.account#register h2.login, .section.account#register .h2-style.login, .section.account#register h3.login, .section.account#register .h3-style.login, .section.account#register h4.login, .section.account#register .h4-style.login, .section.account#register h5.login, .section.account#register .h5-style.login, .section.account#register h6.h6-style.login {
    max-width: 350px; }
section.account#login h1, section.account#login .h1-style, section.account#login h2, section.account#login .h2-style, section.account#register h1, section.account#register .h1-style, section.account#register h2, section.account#register .h2-style, .section.account#login h1, .section.account#login .h1-style, .section.account#login h2, .section.account#login .h2-style, .section.account#register h1, .section.account#register .h1-style, .section.account#register h2, .section.account#register .h2-style {
  font-size: 3.4rem; }
section.account#login h3, section.account#login .h3-style, section.account#register h3, section.account#register .h3-style, .section.account#login h3, .section.account#login .h3-style, .section.account#register h3, .section.account#register .h3-style {
  font-size: 2.8rem; }
section.account#login h4, section.account#login .h4-style, section.account#login h5, section.account#login .h5-style, section.account#register h4, section.account#register .h4-style, section.account#register h5, section.account#register .h5-style, .section.account#login h4, .section.account#login .h4-style, .section.account#login h5, .section.account#login .h5-style, .section.account#register h4, .section.account#register .h4-style, .section.account#register h5, .section.account#register .h5-style {
  font-size: 2.6rem; }
section.account#login .row .column .maf-content.maf-form form, section.account#register .row .column .maf-content.maf-form form, .section.account#login .row .column .maf-content.maf-form form, .section.account#register .row .column .maf-content.maf-form form {
  max-width: 770px; }
section.account#login .row .column.maf-col-1 .maf-content, section.account#register .row .column.maf-col-1 .maf-content, .section.account#login .row .column.maf-col-1 .maf-content, .section.account#register .row .column.maf-col-1 .maf-content {
  align-items: flex-start; }
section.account#login .row .column .maf-content.maf-form form, .section.account#login .row .column .maf-content.maf-form form {
  max-width: 370px; }
section.account.welcome h1, section.account.welcome .h1-style, section.account.welcome h2, section.account.welcome .h2-style, section.account.welcome h3, section.account.welcome .h3-style, section.account.welcome h4, section.account.welcome .h4-style, section.account.welcome h5, section.account.welcome .h5-style, section.account.welcome h6.h6-style, .section.account.welcome h1, .section.account.welcome .h1-style, .section.account.welcome h2, .section.account.welcome .h2-style, .section.account.welcome h3, .section.account.welcome .h3-style, .section.account.welcome h4, .section.account.welcome .h4-style, .section.account.welcome h5, .section.account.welcome .h5-style, .section.account.welcome h6.h6-style {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  max-width: 750px;
  padding-bottom: 35px;
  position: relative; }
  section.account.welcome h1::after, section.account.welcome .h1-style::after, section.account.welcome h2::after, section.account.welcome .h2-style::after, section.account.welcome h3::after, section.account.welcome .h3-style::after, section.account.welcome h4::after, section.account.welcome .h4-style::after, section.account.welcome h5::after, section.account.welcome .h5-style::after, section.account.welcome h6.h6-style::after, .section.account.welcome h1::after, .section.account.welcome .h1-style::after, .section.account.welcome h2::after, .section.account.welcome .h2-style::after, .section.account.welcome h3::after, .section.account.welcome .h3-style::after, .section.account.welcome h4::after, .section.account.welcome .h4-style::after, .section.account.welcome h5::after, .section.account.welcome .h5-style::after, .section.account.welcome h6.h6-style::after {
    background-image: url("/images/Layout/hr-bg-green.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 0;
    content: '';
    height: 15px;
    left: 0;
    position: absolute;
    width: 100%; }
  section.account.welcome h1.login, section.account.welcome .h1-style.login, section.account.welcome h2.login, section.account.welcome .h2-style.login, section.account.welcome h3.login, section.account.welcome .h3-style.login, section.account.welcome h4.login, section.account.welcome .h4-style.login, section.account.welcome h5.login, section.account.welcome .h5-style.login, section.account.welcome h6.h6-style.login, .section.account.welcome h1.login, .section.account.welcome .h1-style.login, .section.account.welcome h2.login, .section.account.welcome .h2-style.login, .section.account.welcome h3.login, .section.account.welcome .h3-style.login, .section.account.welcome h4.login, .section.account.welcome .h4-style.login, .section.account.welcome h5.login, .section.account.welcome .h5-style.login, .section.account.welcome h6.h6-style.login {
    max-width: 350px; }
section.account.welcome h1, section.account.welcome .h1-style, section.account.welcome h2, section.account.welcome .h2-style, .section.account.welcome h1, .section.account.welcome .h1-style, .section.account.welcome h2, .section.account.welcome .h2-style {
  font-size: 3.4rem; }
section.account.welcome h3, section.account.welcome .h3-style, .section.account.welcome h3, .section.account.welcome .h3-style {
  font-size: 2.8rem; }
section.account.welcome h4, section.account.welcome .h4-style, section.account.welcome h5, section.account.welcome .h5-style, .section.account.welcome h4, .section.account.welcome .h4-style, .section.account.welcome h5, .section.account.welcome .h5-style {
  font-size: 2.6rem; }
section.account.account-menu, .section.account.account-menu {
  background-color: #e1e1e1; }
  section.account.account-menu .row .column, .section.account.account-menu .row .column {
    padding-top: 10px;
    padding-bottom: 15px; }
    section.account.account-menu .row .column .actions, .section.account.account-menu .row .column .actions {
      width: 100%; }
      section.account.account-menu .row .column .actions .button, .section.account.account-menu .row .column .actions .button {
        background-color: white;
        margin: 5px 2px 0 2px; }
        section.account.account-menu .row .column .actions .button:hover, .section.account.account-menu .row .column .actions .button:hover {
          background-color: #6ea9ad; }
        section.account.account-menu .row .column .actions .button.active, .section.account.account-menu .row .column .actions .button.active {
          background-color: #6ea9ad;
          color: white; }
section.account.account-update h1, section.account.account-update .h1-style, section.account.account-update h2, section.account.account-update .h2-style, section.account.account-update h3, section.account.account-update .h3-style, section.account.account-update h4, section.account.account-update .h4-style, section.account.account-update h5, section.account.account-update .h5-style, section.account.account-update h6.h6-style, .section.account.account-update h1, .section.account.account-update .h1-style, .section.account.account-update h2, .section.account.account-update .h2-style, .section.account.account-update h3, .section.account.account-update .h3-style, .section.account.account-update h4, .section.account.account-update .h4-style, .section.account.account-update h5, .section.account.account-update .h5-style, .section.account.account-update h6.h6-style {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  max-width: 750px;
  padding-bottom: 35px;
  position: relative; }
  section.account.account-update h1::after, section.account.account-update .h1-style::after, section.account.account-update h2::after, section.account.account-update .h2-style::after, section.account.account-update h3::after, section.account.account-update .h3-style::after, section.account.account-update h4::after, section.account.account-update .h4-style::after, section.account.account-update h5::after, section.account.account-update .h5-style::after, section.account.account-update h6.h6-style::after, .section.account.account-update h1::after, .section.account.account-update .h1-style::after, .section.account.account-update h2::after, .section.account.account-update .h2-style::after, .section.account.account-update h3::after, .section.account.account-update .h3-style::after, .section.account.account-update h4::after, .section.account.account-update .h4-style::after, .section.account.account-update h5::after, .section.account.account-update .h5-style::after, .section.account.account-update h6.h6-style::after {
    background-image: url("/images/Layout/hr-bg-green.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 0;
    content: '';
    height: 15px;
    left: 0;
    position: absolute;
    width: 100%; }
  section.account.account-update h1.login, section.account.account-update .h1-style.login, section.account.account-update h2.login, section.account.account-update .h2-style.login, section.account.account-update h3.login, section.account.account-update .h3-style.login, section.account.account-update h4.login, section.account.account-update .h4-style.login, section.account.account-update h5.login, section.account.account-update .h5-style.login, section.account.account-update h6.h6-style.login, .section.account.account-update h1.login, .section.account.account-update .h1-style.login, .section.account.account-update h2.login, .section.account.account-update .h2-style.login, .section.account.account-update h3.login, .section.account.account-update .h3-style.login, .section.account.account-update h4.login, .section.account.account-update .h4-style.login, .section.account.account-update h5.login, .section.account.account-update .h5-style.login, .section.account.account-update h6.h6-style.login {
    max-width: 350px; }
section.account.account-update h1, section.account.account-update .h1-style, section.account.account-update h2, section.account.account-update .h2-style, .section.account.account-update h1, .section.account.account-update .h1-style, .section.account.account-update h2, .section.account.account-update .h2-style {
  font-size: 3.4rem; }
section.account.account-update h3, section.account.account-update .h3-style, .section.account.account-update h3, .section.account.account-update .h3-style {
  font-size: 2.8rem; }
section.account.account-update h4, section.account.account-update .h4-style, section.account.account-update h5, section.account.account-update .h5-style, .section.account.account-update h4, .section.account.account-update .h4-style, .section.account.account-update h5, .section.account.account-update .h5-style {
  font-size: 2.6rem; }
section.account.account-update .avatar, .section.account.account-update .avatar {
  margin-bottom: 40px;
  max-width: 480px;
  text-align: center;
  width: 100%; }
section.account.account-update .row .column .maf-content.links, .section.account.account-update .row .column .maf-content.links {
  margin-top: 60px; }
section.account.account-update #op, .section.account.account-update #op {
  height: 0;
  overflow: hidden;
  transition: all 350ms ease-out;
  width: 100%; }
  section.account.account-update #op #op-msg, .section.account.account-update #op #op-msg {
    bottom: 0;
    font-weight: 500;
    left: 0;
    padding: 10px 20px;
    position: fixed;
    text-align: center;
    transition: all 350ms ease-out;
    width: 100%;
    z-index: 777; }
  section.account.account-update #op.show, .section.account.account-update #op.show {
    height: 55px;
    transition: all 350ms ease-out; }
    section.account.account-update #op.show #op-msg, .section.account.account-update #op.show #op-msg {
      background-color: #295e81;
      color: white;
      min-height: 55px; }
      section.account.account-update #op.show #op-msg.error, .section.account.account-update #op.show #op-msg.error {
        background-color: red; }
section.account.account-update.pw .row .column, .section.account.account-update.pw .row .column {
  max-width: 700px; }
  section.account.account-update.pw .row .column .maf-content.maf-form form, .section.account.account-update.pw .row .column .maf-content.maf-form form {
    max-width: 400px; }
section.account.account-update.account-details .row .column, .section.account.account-update.account-details .row .column {
  max-width: 900px; }
section.account.listings .cardbox, .section.account.listings .cardbox {
  margin-top: 40px; }
  section.account.listings .cardbox .card .portal-item, .section.account.listings .cardbox .card .portal-item {
    color: white; }
    section.account.listings .cardbox .card .portal-item .portal-content .title, .section.account.listings .cardbox .card .portal-item .portal-content .title {
      text-transform: uppercase; }
section.account.product-list .cardbox, .section.account.product-list .cardbox {
  margin-top: 60px; }
  section.account.product-list .cardbox .card .portal-item, .section.account.product-list .cardbox .card .portal-item {
    color: white; }
    section.account.product-list .cardbox .card .portal-item .portal-content .card-button, .section.account.product-list .cardbox .card .portal-item .portal-content .card-button {
      color: #707070; }
      section.account.product-list .cardbox .card .portal-item .portal-content .card-button::after, .section.account.product-list .cardbox .card .portal-item .portal-content .card-button::after {
        background-color: #707070; }
section.account.product-list .footer-button:hover, section.account.product-list .footer-button:focus, .section.account.product-list .footer-button:hover, .section.account.product-list .footer-button:focus {
  background-color: #707070; }
section.account-listings-section div.cardbox article.card.cat-3, .section.account-listings-section div.cardbox article.card.cat-3 {
  --card-colour: #6ea9ad; }
section.account-listings-section div.cardbox article.card.cat-4, .section.account-listings-section div.cardbox article.card.cat-4 {
  --card-colour: #707070; }
section.account-listings-section div.cardbox article.card.cat-5, .section.account-listings-section div.cardbox article.card.cat-5 {
  --card-colour: #e37541; }
section.account-listings-section.account-listings-top-level .header .maf-content p, .section.account-listings-section.account-listings-top-level .header .maf-content p {
  max-width: 510px; }
section.account-listings-section.account-listings-top-level .row, .section.account-listings-section.account-listings-top-level .row {
  max-width: 1300px; }
  section.account-listings-section.account-listings-top-level .row .column, .section.account-listings-section.account-listings-top-level .row .column {
    padding-top: 40px; }
section.account-listings-section.account-listings-highlight .header .maf-content p, .section.account-listings-section.account-listings-highlight .header .maf-content p {
  max-width: 510px; }
section.account-listings-section.account-listings-highlight .row, .section.account-listings-section.account-listings-highlight .row {
  max-width: 1300px; }
  @media only screen and (min-width: 960px) {
    section.account-listings-section.account-listings-highlight .row .column, .section.account-listings-section.account-listings-highlight .row .column {
      padding-top: 60px;
      padding-bottom: 60px; } }
section.account-listings-section.account-listing-detail h1::after, section.account-listings-section.account-listing-detail .h1-style::after, section.account-listings-section.account-listing-detail h2::after, section.account-listings-section.account-listing-detail .h2-style::after, section.account-listings-section.account-listing-detail h3::after, section.account-listings-section.account-listing-detail .h3-style::after, section.account-listings-section.account-listing-detail h4::after, section.account-listings-section.account-listing-detail .h4-style::after, section.account-listings-section.account-listing-detail h5::after, section.account-listings-section.account-listing-detail .h5-style::after, section.account-listings-section.account-listing-detail h6.h6-style::after, .section.account-listings-section.account-listing-detail h1::after, .section.account-listings-section.account-listing-detail .h1-style::after, .section.account-listings-section.account-listing-detail h2::after, .section.account-listings-section.account-listing-detail .h2-style::after, .section.account-listings-section.account-listing-detail h3::after, .section.account-listings-section.account-listing-detail .h3-style::after, .section.account-listings-section.account-listing-detail h4::after, .section.account-listings-section.account-listing-detail .h4-style::after, .section.account-listings-section.account-listing-detail h5::after, .section.account-listings-section.account-listing-detail .h5-style::after, .section.account-listings-section.account-listing-detail h6.h6-style::after {
  width: 100%; }
section.account-listings-section.account-listing-detail #blog-bar, .section.account-listings-section.account-listing-detail #blog-bar {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  display: flex;
  font-size: 1.6rem;
  margin-bottom: 2em;
  padding: 20px 0;
  width: 100%; }
  section.account-listings-section.account-listing-detail #blog-bar > div, .section.account-listings-section.account-listing-detail #blog-bar > div {
    display: inline-block;
    flex: 1 1 auto; }
    section.account-listings-section.account-listing-detail #blog-bar > div p, .section.account-listings-section.account-listing-detail #blog-bar > div p {
      font-weight: 300;
      margin: 0; }
      section.account-listings-section.account-listing-detail #blog-bar > div p span, section.account-listings-section.account-listing-detail #blog-bar > div p strong, section.account-listings-section.account-listing-detail #blog-bar > div p a, .section.account-listings-section.account-listing-detail #blog-bar > div p span, .section.account-listings-section.account-listing-detail #blog-bar > div p strong, .section.account-listings-section.account-listing-detail #blog-bar > div p a {
        margin-right: 2%; }
        section.account-listings-section.account-listing-detail #blog-bar > div p span.date, section.account-listings-section.account-listing-detail #blog-bar > div p strong.date, section.account-listings-section.account-listing-detail #blog-bar > div p a.date, .section.account-listings-section.account-listing-detail #blog-bar > div p span.date, .section.account-listings-section.account-listing-detail #blog-bar > div p strong.date, .section.account-listings-section.account-listing-detail #blog-bar > div p a.date {
          text-transform: uppercase; }
    section.account-listings-section.account-listing-detail #blog-bar > div:first-child, .section.account-listings-section.account-listing-detail #blog-bar > div:first-child {
      text-transform: uppercase; }
    section.account-listings-section.account-listing-detail #blog-bar > div:last-child, .section.account-listings-section.account-listing-detail #blog-bar > div:last-child {
      text-align: right; }
      section.account-listings-section.account-listing-detail #blog-bar > div:last-child p > *:last-child, .section.account-listings-section.account-listing-detail #blog-bar > div:last-child p > *:last-child {
        margin-right: 0; }
section.account-listings-section.account-listing-detail .account-listing-body, .section.account-listings-section.account-listing-detail .account-listing-body {
  width: 100%; }
  section.account-listings-section.account-listing-detail .account-listing-body figure, .section.account-listings-section.account-listing-detail .account-listing-body figure {
    display: inline-block;
    margin: 0.5em auto;
    width: 100%; }
    section.account-listings-section.account-listing-detail .account-listing-body figure img, .section.account-listings-section.account-listing-detail .account-listing-body figure img {
      width: 100%; }
    section.account-listings-section.account-listing-detail .account-listing-body figure figcaption, .section.account-listings-section.account-listing-detail .account-listing-body figure figcaption {
      border-bottom: 1px solid #707070;
      display: inline-block;
      font-size: 0.666em;
      padding: 15px 0;
      width: 100%; }
section.account-listings-section.account-listing-detail .main-img, .section.account-listings-section.account-listing-detail .main-img {
  margin-bottom: 40px;
  width: 100%; }
section.account-listings-section.account-listing-detail .avatar, .section.account-listings-section.account-listing-detail .avatar {
  margin-bottom: 60px;
  text-align: center; }
  section.account-listings-section.account-listing-detail .avatar img, .section.account-listings-section.account-listing-detail .avatar img {
    border: 30px solid #e37541;
    border-radius: 8px;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
    transform: rotate(-4deg); }
section.account-listings-section.account-listing-detail .is-map, .section.account-listings-section.account-listing-detail .is-map {
  margin-top: 60px;
  margin-bottom: 1em; }
  section.account-listings-section.account-listing-detail .is-map::after, .section.account-listings-section.account-listing-detail .is-map::after {
    content: '';
    display: table;
    padding-bottom: 100%; }
section.account-listings-section.account-listing-detail .address, .section.account-listings-section.account-listing-detail .address {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  max-width: 280px; }
  section.account-listings-section.account-listing-detail .address i, .section.account-listings-section.account-listing-detail .address i {
    color: #707070;
    display: none;
    font-size: 3rem;
    margin-right: 8px; }
  section.account-listings-section.account-listing-detail .address address, .section.account-listings-section.account-listing-detail .address address {
    display: inline-block;
    line-height: 1.4;
    margin: 0; }
section.account-listings-section.account-listing-detail .social-icons, .section.account-listings-section.account-listing-detail .social-icons {
  font-size: 2rem;
  margin-bottom: 1em; }
  section.account-listings-section.account-listing-detail .social-icons a, .section.account-listings-section.account-listing-detail .social-icons a {
    margin-right: 5px; }
    section.account-listings-section.account-listing-detail .social-icons a i, .section.account-listings-section.account-listing-detail .social-icons a i {
      background-color: #6ea9ad;
      border-color: #6ea9ad;
      height: 1.9em;
      width: 1.9em; }
      section.account-listings-section.account-listing-detail .social-icons a i::before, .section.account-listings-section.account-listing-detail .social-icons a i::before {
        color: white; }
    section.account-listings-section.account-listing-detail .social-icons a:hover i, .section.account-listings-section.account-listing-detail .social-icons a:hover i {
      background-color: transparent; }
      section.account-listings-section.account-listing-detail .social-icons a:hover i::before, .section.account-listings-section.account-listing-detail .social-icons a:hover i::before {
        color: #6ea9ad;
        top: 50%; }
section.account-listings-section.account-listing-detail .image-box .image, .section.account-listings-section.account-listing-detail .image-box .image {
  max-width: 100px;
  text-align: center;
  width: 100%; }
  section.account-listings-section.account-listing-detail .image-box .image img, .section.account-listings-section.account-listing-detail .image-box .image img {
    display: inline-block;
    width: auto; }
section.account-listings-section.account-listing-detail .image-box .text, .section.account-listings-section.account-listing-detail .image-box .text {
  padding-left: 10px; }
section.account-listings-section.account-listing-detail .web-link span, .section.account-listings-section.account-listing-detail .web-link span {
  font-weight: 700; }
section.account-listings-section.account-listing-detail .row, .section.account-listings-section.account-listing-detail .row {
  padding: 0;
  padding-top: 50px;
  max-width: 1300px; }
  @media only screen and (min-width: 576px) {
    section.account-listings-section.account-listing-detail .row, .section.account-listings-section.account-listing-detail .row {
      padding: 0 15px;
      padding-top: 50px; } }
  section.account-listings-section.account-listing-detail .row .column, .section.account-listings-section.account-listing-detail .row .column {
    padding: 50px 15px;
    padding-top: 0; }
    @media only screen and (min-width: 960px) {
      section.account-listings-section.account-listing-detail .row .column, .section.account-listings-section.account-listing-detail .row .column {
        padding: 50px 15px;
        padding-top: 0; } }
    section.account-listings-section.account-listing-detail .row .column .maf-content, .section.account-listings-section.account-listing-detail .row .column .maf-content {
      align-items: flex-start;
      text-align: left; }
    section.account-listings-section.account-listing-detail .row .column.maf-col-1, .section.account-listings-section.account-listing-detail .row .column.maf-col-1 {
      align-items: flex-start; }
      section.account-listings-section.account-listing-detail .row .column.maf-col-1 .maf-content, .section.account-listings-section.account-listing-detail .row .column.maf-col-1 .maf-content {
        max-width: 750px; }
section.account-listings-section.cat-list .row, .section.account-listings-section.cat-list .row {
  padding: 0 25px; }
  @media only screen and (min-width: 1450px) {
    section.account-listings-section.cat-list .row, .section.account-listings-section.cat-list .row {
      padding: 0; } }
  section.account-listings-section.cat-list .row .column, .section.account-listings-section.cat-list .row .column {
    padding-right: 0;
    padding-left: 0; }
section.account-listings-section.al-list .row, .section.account-listings-section.al-list .row {
  padding: 0 25px; }
  @media only screen and (min-width: 1450px) {
    section.account-listings-section.al-list .row, .section.account-listings-section.al-list .row {
      padding: 0; } }
  section.account-listings-section.al-list .row .column, .section.account-listings-section.al-list .row .column {
    padding-right: 0;
    padding-left: 0; }
    section.account-listings-section.al-list .row .column.maf-col-2, .section.account-listings-section.al-list .row .column.maf-col-2 {
      padding-top: 0; }
section.map, .section.map {
  border-top: 1px solid #f2f2f2;
  background-color: #e65279;
  background-image: url("/images/Layout/map-bg.png");
  background-position: top;
  background-size: 100% auto; }
  section.map.interactive-map > .maf-sprite-layer #map-spr1, .section.map.interactive-map > .maf-sprite-layer #map-spr1 {
    max-width: 303px;
    position: absolute;
    right: 9vw;
    top: 40px;
    width: 18.9375vw; }
  section.map.interactive-map .is-map, .section.map.interactive-map .is-map {
    display: none;
    height: auto; }
    section.map.interactive-map .is-map::before, .section.map.interactive-map .is-map::before {
      content: '';
      display: table;
      padding-bottom: 125%;
      width: 100%; }
      @media only screen and (min-width: 576px) {
        section.map.interactive-map .is-map::before, .section.map.interactive-map .is-map::before {
          padding-bottom: 100%; } }
      @media only screen and (min-width: 768px) {
        section.map.interactive-map .is-map::before, .section.map.interactive-map .is-map::before {
          padding-bottom: 75%; } }
      @media only screen and (min-width: 1024px) {
        section.map.interactive-map .is-map::before, .section.map.interactive-map .is-map::before {
          padding-bottom: 50%; } }
    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: transparent !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      max-width: 380px !important;
      overflow: visible !important; }
      section.map.interactive-map .is-map #google-map-interactive .gm-style-iw.gm-style-iw-c .gm-style-iw-d, .section.map.interactive-map .is-map #google-map-interactive .gm-style-iw.gm-style-iw-c .gm-style-iw-d {
        overflow: auto !important; }
      section.map.interactive-map .is-map #google-map-interactive .gm-style-iw.gm-style-iw-c > button, .section.map.interactive-map .is-map #google-map-interactive .gm-style-iw.gm-style-iw-c > button {
        top: 10px !important;
        right: 10px !important;
        width: 30px !important;
        height: 30px !important; }
        section.map.interactive-map .is-map #google-map-interactive .gm-style-iw.gm-style-iw-c > button img, .section.map.interactive-map .is-map #google-map-interactive .gm-style-iw.gm-style-iw-c > button img {
          width: 20px !important;
          height: 20px !important; }
    section.map.interactive-map .is-map #google-map-interactive .map-info-content, .section.map.interactive-map .is-map #google-map-interactive .map-info-content {
      background-color: white;
      padding: 30px 10px 20px 10px; }
      section.map.interactive-map .is-map #google-map-interactive .map-info-content .logo, .section.map.interactive-map .is-map #google-map-interactive .map-info-content .logo {
        background-color: #6ea9ad;
        padding: 21px; }
      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.6rem;
        margin-bottom: 10px;
        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 {
          color: #6ea9ad;
          font-family: "Roboto", sans-serif;
          font-size: 2.4rem;
          font-weight: 600;
          line-height: 1;
          margin-bottom: 15px; }
      section.map.interactive-map .is-map #google-map-interactive .map-info-content a:not(.button), .section.map.interactive-map .is-map #google-map-interactive .map-info-content a:not(.button) {
        color: #6ea9ad;
        font-weight: 600; }
        section.map.interactive-map .is-map #google-map-interactive .map-info-content a:not(.button):hover, .section.map.interactive-map .is-map #google-map-interactive .map-info-content a:not(.button):hover {
          color: #e37541; }
      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: #295e81;
        border-color: #295e81;
        border-radius: 20px;
        color: white;
        font-size: 1.2rem;
        font-weight: 700;
        margin: 10px 0;
        min-height: 0;
        min-width: 0;
        padding: 3px 25px; }
        section.map.interactive-map .is-map #google-map-interactive .map-info-content a.button:hover, .section.map.interactive-map .is-map #google-map-interactive .map-info-content a.button:hover {
          background-color: transparent;
          color: #295e81; }
    section.map.interactive-map .is-map.show, .section.map.interactive-map .is-map.show {
      display: block; }
  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: 1px solid #707070;
      border-radius: 0;
      color: #707070;
      font-weight: 400;
      margin: 0 3px 6px 0;
      padding: 20px 23px; }
      section.map.interactive-map #map-filters .button:hover, section.map.interactive-map #map-filters .button.active, .section.map.interactive-map #map-filters .button:hover, .section.map.interactive-map #map-filters .button.active {
        background-color: #707070;
        border-color: #707070;
        color: white; }
  section.map.interactive-map #map-list-view, .section.map.interactive-map #map-list-view {
    align-content: stretch;
    align-items: stretch;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -10px;
    width: calc(100% + 20px); }
    section.map.interactive-map #map-list-view > div, .section.map.interactive-map #map-list-view > div {
      display: inline-block;
      flex: 0 0 auto;
      padding: 10px;
      width: 25%; }
      section.map.interactive-map #map-list-view > div > div, .section.map.interactive-map #map-list-view > div > div {
        display: flex;
        height: 100%;
        flex-direction: column;
        border: 1px solid #22aae2;
        padding: 15px 20px; }
        section.map.interactive-map #map-list-view > div > div > div, .section.map.interactive-map #map-list-view > div > div > div {
          display: inline-block;
          padding: 5px 0;
          width: 100%; }
          section.map.interactive-map #map-list-view > div > div > div.name, .section.map.interactive-map #map-list-view > div > div > div.name {
            color: #6ea9ad;
            font-size: 2rem;
            font-weight: 600; }
          section.map.interactive-map #map-list-view > div > div > div.address, .section.map.interactive-map #map-list-view > div > div > div.address {
            display: flex;
            flex-direction: column; }
            section.map.interactive-map #map-list-view > div > div > div.address > span, .section.map.interactive-map #map-list-view > div > div > div.address > span {
              display: inline-block;
              width: 100%; }
    section.map.interactive-map #map-list-view.show, .section.map.interactive-map #map-list-view.show {
      display: flex; }
  section.map.interactive-map #sh-ctrlr, .section.map.interactive-map #sh-ctrlr {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-top: 12px;
    text-align: right;
    width: 100%; }
    @media only screen and (min-width: 576px) {
      section.map.interactive-map #sh-ctrlr, .section.map.interactive-map #sh-ctrlr {
        align-items: flex-start;
        flex-direction: row; } }
    section.map.interactive-map #sh-ctrlr > span, section.map.interactive-map #sh-ctrlr > a, .section.map.interactive-map #sh-ctrlr > span, .section.map.interactive-map #sh-ctrlr > a {
      background-color: #6ea9ad;
      border: 1px solid #6ea9ad;
      color: white;
      cursor: pointer;
      display: none;
      font-weight: 500;
      margin-bottom: 10px;
      padding: 8px 12px; }
      section.map.interactive-map #sh-ctrlr > span:last-child, section.map.interactive-map #sh-ctrlr > span:nth-last-child(2), section.map.interactive-map #sh-ctrlr > a:last-child, section.map.interactive-map #sh-ctrlr > a:nth-last-child(2), .section.map.interactive-map #sh-ctrlr > span:last-child, .section.map.interactive-map #sh-ctrlr > span:nth-last-child(2), .section.map.interactive-map #sh-ctrlr > a:last-child, .section.map.interactive-map #sh-ctrlr > a:nth-last-child(2) {
        margin-bottom: 0; }
      @media only screen and (min-width: 576px) {
        section.map.interactive-map #sh-ctrlr > span, section.map.interactive-map #sh-ctrlr > a, .section.map.interactive-map #sh-ctrlr > span, .section.map.interactive-map #sh-ctrlr > a {
          margin-bottom: 0;
          margin-left: 10px; }
          section.map.interactive-map #sh-ctrlr > span:first-child, section.map.interactive-map #sh-ctrlr > a:first-child, .section.map.interactive-map #sh-ctrlr > span:first-child, .section.map.interactive-map #sh-ctrlr > a:first-child {
            margin-left: 0; } }
      @media only screen and (min-width: 576px) {
        section.map.interactive-map #sh-ctrlr > span.spacer, section.map.interactive-map #sh-ctrlr > a.spacer, .section.map.interactive-map #sh-ctrlr > span.spacer, .section.map.interactive-map #sh-ctrlr > a.spacer {
          margin-right: auto; } }
      section.map.interactive-map #sh-ctrlr > span:hover, section.map.interactive-map #sh-ctrlr > a:hover, .section.map.interactive-map #sh-ctrlr > span:hover, .section.map.interactive-map #sh-ctrlr > a:hover {
        background-color: transparent;
        color: #6ea9ad; }
      section.map.interactive-map #sh-ctrlr > span.active, section.map.interactive-map #sh-ctrlr > a.active, .section.map.interactive-map #sh-ctrlr > span.active, .section.map.interactive-map #sh-ctrlr > a.active {
        display: inline-block;
        flex: 0 0 auto; }
  section.map.interactive-map .header h1, section.map.interactive-map .header .h1-style, section.map.interactive-map .header h2, section.map.interactive-map .header .h2-style, section.map.interactive-map .header h3, section.map.interactive-map .header .h3-style, section.map.interactive-map .header h4, section.map.interactive-map .header .h4-style, section.map.interactive-map .header h5, section.map.interactive-map .header .h5-style, section.map.interactive-map .header h6.h6-style, .section.map.interactive-map .header h1, .section.map.interactive-map .header .h1-style, .section.map.interactive-map .header h2, .section.map.interactive-map .header .h2-style, .section.map.interactive-map .header h3, .section.map.interactive-map .header .h3-style, .section.map.interactive-map .header h4, .section.map.interactive-map .header .h4-style, .section.map.interactive-map .header h5, .section.map.interactive-map .header .h5-style, .section.map.interactive-map .header h6.h6-style {
    color: #6ea9ad; }
  section.map.interactive-map .header p, .section.map.interactive-map .header p {
    color: #e4e4e4;
    font-size: 2.4rem;
    font-weight: 700;
    max-width: 900px; }
  section.map.interactive-map .header .maf-content, .section.map.interactive-map .header .maf-content {
    padding-top: 135px; }
  section.map.interactive-map .row .column, .section.map.interactive-map .row .column {
    padding-top: 120px;
    padding-bottom: 130px; }
    section.map.interactive-map .row .column .maf-content, .section.map.interactive-map .row .column .maf-content {
      background-color: white;
      border: 1px solid #f2f2f2;
      padding: 15px 15px 12px 15px; }
      @media only screen and (min-width: 1024px) {
        section.map.interactive-map .row .column .maf-content, .section.map.interactive-map .row .column .maf-content {
          padding: 30px 30px 12px 30px; } }
section.counter-section, .section.counter-section {
  background-color: #e1e1e1; }
  section.counter-section .header .maf-content, .section.counter-section .header .maf-content {
    max-width: 1050px; }
  section.counter-section .row .column .maf-content, .section.counter-section .row .column .maf-content {
    align-items: stretch;
    align-content: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    margin: 0 -20px;
    max-width: 1190px;
    width: calc(100% + 40px); }
    section.counter-section .row .column .maf-content .stat-counter, .section.counter-section .row .column .maf-content .stat-counter {
      align-items: center;
      display: flex;
      flex-direction: column;
      font-size: 1.8rem;
      font-weight: 400;
      margin: 20px;
      padding: 0;
      width: calc(100% - 40px); }
      @media only screen and (min-width: 576px) {
        section.counter-section .row .column .maf-content .stat-counter, .section.counter-section .row .column .maf-content .stat-counter {
          width: calc(50% - 40px); } }
      @media only screen and (min-width: 960px) {
        section.counter-section .row .column .maf-content .stat-counter, .section.counter-section .row .column .maf-content .stat-counter {
          width: calc(25% - 40px); } }
      section.counter-section .row .column .maf-content .stat-counter .counter, .section.counter-section .row .column .maf-content .stat-counter .counter {
        align-items: center;
        aspect-ratio: 1/1;
        background-color: #707070;
        border-radius: 50%;
        color: #e1e1e1;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
        max-width: 254px;
        width: 100%; }
        section.counter-section .row .column .maf-content .stat-counter .counter.col, .section.counter-section .row .column .maf-content .stat-counter .counter.col {
          flex-direction: column; }
        section.counter-section .row .column .maf-content .stat-counter .counter.rowr, .section.counter-section .row .column .maf-content .stat-counter .counter.rowr {
          flex-direction: row-reverse; }
      section.counter-section .row .column .maf-content .stat-counter .stat, section.counter-section .row .column .maf-content .stat-counter .unit, .section.counter-section .row .column .maf-content .stat-counter .stat, .section.counter-section .row .column .maf-content .stat-counter .unit {
        font-family: "Roboto", sans-serif;
        font-size: 8.4rem;
        line-height: 0.9; }
      section.counter-section .row .column .maf-content .stat-counter .stat.small, .section.counter-section .row .column .maf-content .stat-counter .stat.small {
        font-size: 6.8rem; }
      section.counter-section .row .column .maf-content .stat-counter .unit, .section.counter-section .row .column .maf-content .stat-counter .unit {
        font-size: 3.9rem; }
        section.counter-section .row .column .maf-content .stat-counter .unit.sup, .section.counter-section .row .column .maf-content .stat-counter .unit.sup {
          margin-bottom: 1em; }
        section.counter-section .row .column .maf-content .stat-counter .unit.lrg, .section.counter-section .row .column .maf-content .stat-counter .unit.lrg {
          font-size: 6.8rem; }
      section.counter-section .row .column .maf-content .stat-counter p, .section.counter-section .row .column .maf-content .stat-counter p {
        color: #6ea9ad;
        line-height: 1.2;
        margin-bottom: 5px; }
        section.counter-section .row .column .maf-content .stat-counter p:last-child, .section.counter-section .row .column .maf-content .stat-counter p:last-child {
          margin-top: auto;
          margin-bottom: 0; }
        section.counter-section .row .column .maf-content .stat-counter p strong, .section.counter-section .row .column .maf-content .stat-counter p strong {
          color: #707070; }
      section.counter-section .row .column .maf-content .stat-counter input[type="number"], .section.counter-section .row .column .maf-content .stat-counter input[type="number"] {
        border-color: #707070;
        color: #e1e1e1;
        font-family: "Roboto", sans-serif;
        font-size: 4.5rem;
        font-weight: 700;
        text-align: center; }
      section.counter-section .row .column .maf-content .stat-counter .mceEditor, .section.counter-section .row .column .maf-content .stat-counter .mceEditor {
        display: inline-flex;
        flex: 1 1 auto;
        flex-direction: column;
        width: 100%; }
  section.counter-section.maf-h-h .row .column, .section.counter-section.maf-h-h .row .column {
    padding-top: 40px; }
  section.counter-section.maf-h-f .row .column, .section.counter-section.maf-h-f .row .column {
    padding-bottom: 40px; }
section.no-spacing .header, .section.no-spacing .header {
  padding-top: 0; }
  section.no-spacing .header .maf-content, .section.no-spacing .header .maf-content {
    padding-top: 0; }
section.no-spacing .row, .section.no-spacing .row {
  padding-top: 0;
  padding-bottom: 0; }
  section.no-spacing .row .column, .section.no-spacing .row .column {
    padding-top: 0;
    padding-bottom: 0; }
section.no-spacing .footer, .section.no-spacing .footer {
  padding-bottom: 0; }
  section.no-spacing .footer .maf-content, .section.no-spacing .footer .maf-content {
    padding-bottom: 0; }
section.no-spacing-top .header, .section.no-spacing-top .header {
  padding-top: 0; }
  section.no-spacing-top .header .maf-content, .section.no-spacing-top .header .maf-content {
    padding-top: 0; }
section.no-spacing-top .row, .section.no-spacing-top .row {
  padding-top: 0 !important; }
  section.no-spacing-top .row .column, .section.no-spacing-top .row .column {
    padding-top: 0 !important; }
section.no-spacing-top.maf-rep-pad .row, .section.no-spacing-top.maf-rep-pad .row {
  padding-bottom: 0 !important; }
  section.no-spacing-top.maf-rep-pad .row .column, .section.no-spacing-top.maf-rep-pad .row .column {
    padding-bottom: 50px !important; }
    @media only screen and (min-width: 960px) {
      section.no-spacing-top.maf-rep-pad .row .column, .section.no-spacing-top.maf-rep-pad .row .column {
        padding-bottom: 50px !important; } }
section.no-spacing-bottom .row, .section.no-spacing-bottom .row {
  padding-bottom: 0 !important; }
  section.no-spacing-bottom .row .column, .section.no-spacing-bottom .row .column {
    padding-bottom: 0 !important; }
section.no-spacing-bottom.maf-rep-pad .row, .section.no-spacing-bottom.maf-rep-pad .row {
  padding-bottom: 0 !important; }
section.no-spacing-bottom .footer, .section.no-spacing-bottom .footer {
  padding-bottom: 0; }
  section.no-spacing-bottom .footer .maf-content, .section.no-spacing-bottom .footer .maf-content {
    padding-bottom: 0; }
section.video-bg, .section.video-bg {
  background-color: black;
  color: white;
  min-height: 56.25vw;
  overflow: hidden; }
  section.video-bg .row .column, .section.video-bg .row .column {
    align-items: center;
    justify-content: center; }
section.basket, .section.basket {
  font-size: 1.8rem;
  overflow: visible;
  padding: 0 15px; }
  section.basket .basketerror, .section.basket .basketerror {
    color: #c30028; }
  section.basket .basket-title, .section.basket .basket-title {
    font-family: "Roboto", sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    max-width: 750px;
    padding-bottom: 35px;
    position: relative; }
    section.basket .basket-title::after, .section.basket .basket-title::after {
      background-image: url("/images/Layout/hr-bg-green.png");
      background-repeat: no-repeat;
      background-size: 100% 100%;
      bottom: 0;
      content: '';
      height: 15px;
      left: 0;
      position: absolute;
      width: 100%; }
  section.basket .maf-checkout-con, .section.basket .maf-checkout-con {
    width: 100%;
    padding: 0;
    margin: 0 auto 50px auto; }
    section.basket .maf-checkout-con .no-items, .section.basket .maf-checkout-con .no-items {
      min-height: 40vh;
      padding: 0 25px; }
    section.basket .maf-checkout-con a, .section.basket .maf-checkout-con a {
      color: #b01e59;
      text-decoration: none; }
      section.basket .maf-checkout-con a:hover, .section.basket .maf-checkout-con a:hover {
        opacity: 0.9; }
    section.basket .maf-checkout-con input, .section.basket .maf-checkout-con input {
      background-color: white; }
      section.basket .maf-checkout-con input[type="submit"], section.basket .maf-checkout-con input input[type="reset"], .section.basket .maf-checkout-con input[type="submit"], .section.basket .maf-checkout-con input input[type="reset"] {
        background-color: #336633;
        border-color: #336633;
        color: white;
        min-height: 50px; }
        section.basket .maf-checkout-con input[type="submit"]:hover, section.basket .maf-checkout-con input input[type="reset"]:hover, .section.basket .maf-checkout-con input[type="submit"]:hover, .section.basket .maf-checkout-con input input[type="reset"]:hover {
          opacity: 0.9; }
        section.basket .maf-checkout-con input[type="submit"].update-button, section.basket .maf-checkout-con input input[type="reset"].update-button, .section.basket .maf-checkout-con input[type="submit"].update-button, .section.basket .maf-checkout-con input input[type="reset"].update-button {
          border-radius: 0;
          font-size: 1.4rem;
          font-weight: 700;
          min-height: 0;
          min-width: 0;
          padding: 5px 8px;
          text-transform: capitalize; }
    section.basket .maf-checkout-con .basket-row-head,
    section.basket .maf-checkout-con .basket-row, section.basket .maf-checkout-con .basket-row-disco, .section.basket .maf-checkout-con .basket-row-head,
    .section.basket .maf-checkout-con .basket-row, .section.basket .maf-checkout-con .basket-row-disco {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      width: 100%; }
      @media only screen and (min-width: 768px) {
        section.basket .maf-checkout-con .basket-row-head,
        section.basket .maf-checkout-con .basket-row, section.basket .maf-checkout-con .basket-row-disco, .section.basket .maf-checkout-con .basket-row-head,
        .section.basket .maf-checkout-con .basket-row, .section.basket .maf-checkout-con .basket-row-disco {
          flex-wrap: nowrap; } }
      section.basket .maf-checkout-con .basket-row-head.price,
      section.basket .maf-checkout-con .basket-row.price, section.basket .maf-checkout-con .basket-row-disco.price, .section.basket .maf-checkout-con .basket-row-head.price,
      .section.basket .maf-checkout-con .basket-row.price, .section.basket .maf-checkout-con .basket-row-disco.price {
        font-size: 1.5rem; }
        @media only screen and (min-width: 768px) {
          section.basket .maf-checkout-con .basket-row-head.price,
          section.basket .maf-checkout-con .basket-row.price, section.basket .maf-checkout-con .basket-row-disco.price, .section.basket .maf-checkout-con .basket-row-head.price,
          .section.basket .maf-checkout-con .basket-row.price, .section.basket .maf-checkout-con .basket-row-disco.price {
            justify-content: flex-end; } }
      section.basket .maf-checkout-con .basket-row-head.totals,
      section.basket .maf-checkout-con .basket-row.totals, section.basket .maf-checkout-con .basket-row-disco.totals, .section.basket .maf-checkout-con .basket-row-head.totals,
      .section.basket .maf-checkout-con .basket-row.totals, .section.basket .maf-checkout-con .basket-row-disco.totals {
        border-top: 1px solid #707070;
        margin-top: 5px; }
      section.basket .maf-checkout-con .basket-row-head > div,
      section.basket .maf-checkout-con .basket-row > div, section.basket .maf-checkout-con .basket-row-disco > div, .section.basket .maf-checkout-con .basket-row-head > div,
      .section.basket .maf-checkout-con .basket-row > div, .section.basket .maf-checkout-con .basket-row-disco > div {
        display: inline-block;
        flex: 1 1 auto;
        font-size: 1.5rem;
        padding: 5px;
        width: 100%; }
        @media only screen and (min-width: 768px) {
          section.basket .maf-checkout-con .basket-row-head > div,
          section.basket .maf-checkout-con .basket-row > div, section.basket .maf-checkout-con .basket-row-disco > div, .section.basket .maf-checkout-con .basket-row-head > div,
          .section.basket .maf-checkout-con .basket-row > div, .section.basket .maf-checkout-con .basket-row-disco > div {
            font-size: 1.6rem; } }
        section.basket .maf-checkout-con .basket-row-head > div.to-pay,
        section.basket .maf-checkout-con .basket-row > div.to-pay, section.basket .maf-checkout-con .basket-row-disco > div.to-pay, .section.basket .maf-checkout-con .basket-row-head > div.to-pay,
        .section.basket .maf-checkout-con .basket-row > div.to-pay, .section.basket .maf-checkout-con .basket-row-disco > div.to-pay {
          background-color: #99cc99; }
      section.basket .maf-checkout-con .basket-row-head .basket-name,
      section.basket .maf-checkout-con .basket-row .basket-name, section.basket .maf-checkout-con .basket-row-disco .basket-name, .section.basket .maf-checkout-con .basket-row-head .basket-name,
      .section.basket .maf-checkout-con .basket-row .basket-name, .section.basket .maf-checkout-con .basket-row-disco .basket-name {
        padding: 8px 5px; }
        section.basket .maf-checkout-con .basket-row-head .basket-name.update,
        section.basket .maf-checkout-con .basket-row .basket-name.update, section.basket .maf-checkout-con .basket-row-disco .basket-name.update, .section.basket .maf-checkout-con .basket-row-head .basket-name.update,
        .section.basket .maf-checkout-con .basket-row .basket-name.update, .section.basket .maf-checkout-con .basket-row-disco .basket-name.update {
          align-items: center;
          display: inline-flex;
          font-size: 0.8em;
          font-weight: 700; }
          @media only screen and (min-width: 768px) {
            section.basket .maf-checkout-con .basket-row-head .basket-name.update,
            section.basket .maf-checkout-con .basket-row .basket-name.update, section.basket .maf-checkout-con .basket-row-disco .basket-name.update, .section.basket .maf-checkout-con .basket-row-head .basket-name.update,
            .section.basket .maf-checkout-con .basket-row .basket-name.update, .section.basket .maf-checkout-con .basket-row-disco .basket-name.update {
              justify-content: flex-end; } }
      section.basket .maf-checkout-con .basket-row-head .basket-quantity,
      section.basket .maf-checkout-con .basket-row .basket-quantity, section.basket .maf-checkout-con .basket-row-disco .basket-quantity, .section.basket .maf-checkout-con .basket-row-head .basket-quantity,
      .section.basket .maf-checkout-con .basket-row .basket-quantity, .section.basket .maf-checkout-con .basket-row-disco .basket-quantity {
        max-width: 75px; }
        @media only screen and (min-width: 768px) {
          section.basket .maf-checkout-con .basket-row-head .basket-quantity,
          section.basket .maf-checkout-con .basket-row .basket-quantity, section.basket .maf-checkout-con .basket-row-disco .basket-quantity, .section.basket .maf-checkout-con .basket-row-head .basket-quantity,
          .section.basket .maf-checkout-con .basket-row .basket-quantity, .section.basket .maf-checkout-con .basket-row-disco .basket-quantity {
            max-width: 100px;
            text-align: center; } }
        section.basket .maf-checkout-con .basket-row-head .basket-quantity input[type="number"],
        section.basket .maf-checkout-con .basket-row .basket-quantity input[type="number"], section.basket .maf-checkout-con .basket-row-disco .basket-quantity input[type="number"], .section.basket .maf-checkout-con .basket-row-head .basket-quantity input[type="number"],
        .section.basket .maf-checkout-con .basket-row .basket-quantity input[type="number"], .section.basket .maf-checkout-con .basket-row-disco .basket-quantity input[type="number"] {
          font-size: 1.6rem;
          max-width: 50px;
          padding: 3px; }
        section.basket .maf-checkout-con .basket-row-head .basket-quantity.update input,
        section.basket .maf-checkout-con .basket-row .basket-quantity.update input, section.basket .maf-checkout-con .basket-row-disco .basket-quantity.update input, .section.basket .maf-checkout-con .basket-row-head .basket-quantity.update input,
        .section.basket .maf-checkout-con .basket-row .basket-quantity.update input, .section.basket .maf-checkout-con .basket-row-disco .basket-quantity.update input {
          margin: 0; }
      section.basket .maf-checkout-con .basket-row-head .basket-price,
      section.basket .maf-checkout-con .basket-row .basket-price, section.basket .maf-checkout-con .basket-row-disco .basket-price, .section.basket .maf-checkout-con .basket-row-head .basket-price,
      .section.basket .maf-checkout-con .basket-row .basket-price, .section.basket .maf-checkout-con .basket-row-disco .basket-price {
        max-width: 150px; }
        section.basket .maf-checkout-con .basket-row-head .basket-price.to-pay,
        section.basket .maf-checkout-con .basket-row .basket-price.to-pay, section.basket .maf-checkout-con .basket-row-disco .basket-price.to-pay, .section.basket .maf-checkout-con .basket-row-head .basket-price.to-pay,
        .section.basket .maf-checkout-con .basket-row .basket-price.to-pay, .section.basket .maf-checkout-con .basket-row-disco .basket-price.to-pay {
          max-width: 150px; }
      section.basket .maf-checkout-con .basket-row-head .basket-total-row,
      section.basket .maf-checkout-con .basket-row .basket-total-row, section.basket .maf-checkout-con .basket-row-disco .basket-total-row, .section.basket .maf-checkout-con .basket-row-head .basket-total-row,
      .section.basket .maf-checkout-con .basket-row .basket-total-row, .section.basket .maf-checkout-con .basket-row-disco .basket-total-row {
        max-width: 70px; }
        @media only screen and (min-width: 768px) {
          section.basket .maf-checkout-con .basket-row-head .basket-total-row,
          section.basket .maf-checkout-con .basket-row .basket-total-row, section.basket .maf-checkout-con .basket-row-disco .basket-total-row, .section.basket .maf-checkout-con .basket-row-head .basket-total-row,
          .section.basket .maf-checkout-con .basket-row .basket-total-row, .section.basket .maf-checkout-con .basket-row-disco .basket-total-row {
            max-width: 120px; } }
      section.basket .maf-checkout-con .basket-row-head .basket-delete,
      section.basket .maf-checkout-con .basket-row .basket-delete, section.basket .maf-checkout-con .basket-row-disco .basket-delete, .section.basket .maf-checkout-con .basket-row-head .basket-delete,
      .section.basket .maf-checkout-con .basket-row .basket-delete, .section.basket .maf-checkout-con .basket-row-disco .basket-delete {
        color: #c30028;
        font-weight: 400;
        max-width: 70px;
        text-align: center;
        white-space: nowrap; }
        @media only screen and (min-width: 768px) {
          section.basket .maf-checkout-con .basket-row-head .basket-delete,
          section.basket .maf-checkout-con .basket-row .basket-delete, section.basket .maf-checkout-con .basket-row-disco .basket-delete, .section.basket .maf-checkout-con .basket-row-head .basket-delete,
          .section.basket .maf-checkout-con .basket-row .basket-delete, .section.basket .maf-checkout-con .basket-row-disco .basket-delete {
            max-width: 80px; } }
        section.basket .maf-checkout-con .basket-row-head .basket-delete a,
        section.basket .maf-checkout-con .basket-row .basket-delete a, section.basket .maf-checkout-con .basket-row-disco .basket-delete a, .section.basket .maf-checkout-con .basket-row-head .basket-delete a,
        .section.basket .maf-checkout-con .basket-row .basket-delete a, .section.basket .maf-checkout-con .basket-row-disco .basket-delete a {
          color: inherit; }
    section.basket .maf-checkout-con .basket-row-head, .section.basket .maf-checkout-con .basket-row-head {
      border-bottom: 1px solid #707070;
      color: #707070; }
      section.basket .maf-checkout-con .basket-row-head > div, .section.basket .maf-checkout-con .basket-row-head > div {
        font-weight: 700; }
    section.basket .maf-checkout-con .basket-row.item, .section.basket .maf-checkout-con .basket-row.item {
      margin: 5px 0; }
      @media only screen and (min-width: 768px) {
        section.basket .maf-checkout-con .basket-row.item, .section.basket .maf-checkout-con .basket-row.item {
          margin: 0; } }
      section.basket .maf-checkout-con .basket-row.item:nth-of-type(odd), .section.basket .maf-checkout-con .basket-row.item:nth-of-type(odd) {
        background-color: #ebebeb; }
    section.basket .maf-checkout-con .basket-row-disco, .section.basket .maf-checkout-con .basket-row-disco {
      flex-wrap: wrap;
      font-size: 2rem;
      font-weight: 700; }
      section.basket .maf-checkout-con .basket-row-disco span, .section.basket .maf-checkout-con .basket-row-disco span {
        margin-bottom: 10px;
        padding-right: 10px;
        width: 100%; }
        section.basket .maf-checkout-con .basket-row-disco span.error, .section.basket .maf-checkout-con .basket-row-disco span.error {
          color: #c30028; }
      section.basket .maf-checkout-con .basket-row-disco input, .section.basket .maf-checkout-con .basket-row-disco input {
        margin-bottom: 5px; }
      section.basket .maf-checkout-con .basket-row-disco .disco, .section.basket .maf-checkout-con .basket-row-disco .disco {
        flex: 1 1 auto;
        font-size: 1.5rem;
        margin-right: 10px;
        max-width: 350px; }
        @media only screen and (min-width: 576px) {
          section.basket .maf-checkout-con .basket-row-disco .disco, .section.basket .maf-checkout-con .basket-row-disco .disco {
            font-size: 1.6rem; } }
      section.basket .maf-checkout-con .basket-row-disco .redeem, .section.basket .maf-checkout-con .basket-row-disco .redeem {
        font-weight: bold;
        min-width: 150px; }
      section.basket .maf-checkout-con .basket-row-disco.form, .section.basket .maf-checkout-con .basket-row-disco.form {
        margin-bottom: 20px; }
  section.basket .basket-buttons, .section.basket .basket-buttons {
    text-align: center;
    width: 100%; }
    section.basket .basket-buttons input, .section.basket .basket-buttons input {
      margin: 5px; }
  section.basket .billing-overview, .section.basket .billing-overview {
    align-self: flex-start;
    background-color: #ebebeb;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
    padding: 10px;
    width: 100%; }
    @media only screen and (min-width: 1024px) {
      section.basket .billing-overview, .section.basket .billing-overview {
        flex-direction: row;
        padding: 20px; } }
    section.basket .billing-overview p, .section.basket .billing-overview p {
      font-size: 1.8rem;
      margin: 0; }
      section.basket .billing-overview p.head, .section.basket .billing-overview p.head {
        font-weight: 600;
        padding-top: 20px; }
        section.basket .billing-overview p.head:first-child, .section.basket .billing-overview p.head:first-child {
          padding-top: 0; }
    section.basket .billing-overview > div, .section.basket .billing-overview > div {
      display: inline-block;
      flex: 1 1 50%;
      max-width: 380px;
      padding: 5px; }
      section.basket .billing-overview > div p span, .section.basket .billing-overview > div p span {
        display: inline-block;
        font-weight: 700;
        max-width: 140px;
        width: 100%; }
  section.basket .row, .section.basket .row {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1400px; }
    section.basket .row .column, .section.basket .row .column {
      padding-top: 45px;
      text-align: left; }
      section.basket .row .column .maf-content.maf-form form, .section.basket .row .column .maf-content.maf-form form {
        justify-content: flex-start; }
section.contentline-bottom .row::after, .section.contentline-bottom .row::after {
  background-color: #6ea9ad;
  bottom: 0;
  content: '';
  display: inline-block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 30px); }
  @media only screen and (min-width: 576px) {
    section.contentline-bottom .row::after, .section.contentline-bottom .row::after {
      width: calc(100% - 60px); } }
  @media only screen and (min-width: 960px) {
    section.contentline-bottom .row::after, .section.contentline-bottom .row::after {
      width: calc(100% - 120px); } }
section.contentline-top .row::before, .section.contentline-top .row::before {
  background-color: #6ea9ad;
  content: '';
  display: inline-block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: calc(100% - 30px); }
  @media only screen and (min-width: 576px) {
    section.contentline-top .row::before, .section.contentline-top .row::before {
      width: calc(100% - 60px); } }
  @media only screen and (min-width: 960px) {
    section.contentline-top .row::before, .section.contentline-top .row::before {
      width: calc(100% - 120px); } }
section.rss-feed div.cardbox, .section.rss-feed div.cardbox {
  justify-content: flex-start; }
  section.rss-feed div.cardbox article.card, section.rss-feed div.cardbox div.card, .section.rss-feed div.cardbox article.card, .section.rss-feed div.cardbox div.card {
    width: 100%; }
    section.rss-feed div.cardbox article.card .portal-item, section.rss-feed div.cardbox div.card .portal-item, .section.rss-feed div.cardbox article.card .portal-item, .section.rss-feed div.cardbox div.card .portal-item {
      color: #707070;
      cursor: default;
      font-weight: 400;
      text-align: left;
      transform: none; }
      section.rss-feed div.cardbox article.card .portal-item .portal-content, section.rss-feed div.cardbox div.card .portal-item .portal-content, .section.rss-feed div.cardbox article.card .portal-item .portal-content, .section.rss-feed div.cardbox div.card .portal-item .portal-content {
        align-content: stretch;
        align-items: stretch;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px 5px; }
        section.rss-feed div.cardbox article.card .portal-item .portal-content .info, section.rss-feed div.cardbox div.card .portal-item .portal-content .info, .section.rss-feed div.cardbox article.card .portal-item .portal-content .info, .section.rss-feed div.cardbox div.card .portal-item .portal-content .info {
          flex: 0 0 auto;
          padding: 20px 20px 0 20px;
          width: 100%; }
          @media only screen and (min-width: 768px) {
            section.rss-feed div.cardbox article.card .portal-item .portal-content .info, section.rss-feed div.cardbox div.card .portal-item .portal-content .info, .section.rss-feed div.cardbox article.card .portal-item .portal-content .info, .section.rss-feed div.cardbox div.card .portal-item .portal-content .info {
              padding: 20px;
              width: 66.666%; } }
          @media only screen and (min-width: 960px) {
            section.rss-feed div.cardbox article.card .portal-item .portal-content .info, section.rss-feed div.cardbox div.card .portal-item .portal-content .info, .section.rss-feed div.cardbox article.card .portal-item .portal-content .info, .section.rss-feed div.cardbox div.card .portal-item .portal-content .info {
              width: 75%; } }
          section.rss-feed div.cardbox article.card .portal-item .portal-content .info .title, section.rss-feed div.cardbox div.card .portal-item .portal-content .info .title, .section.rss-feed div.cardbox article.card .portal-item .portal-content .info .title, .section.rss-feed div.cardbox div.card .portal-item .portal-content .info .title {
            font-size: 2.6rem;
            justify-content: flex-start;
            padding: 0; }
            @media only screen and (min-width: 960px) {
              section.rss-feed div.cardbox article.card .portal-item .portal-content .info .title, section.rss-feed div.cardbox div.card .portal-item .portal-content .info .title, .section.rss-feed div.cardbox article.card .portal-item .portal-content .info .title, .section.rss-feed div.cardbox div.card .portal-item .portal-content .info .title {
                font-size: 3.6rem; } }
          section.rss-feed div.cardbox article.card .portal-item .portal-content .info .desc, section.rss-feed div.cardbox div.card .portal-item .portal-content .info .desc, .section.rss-feed div.cardbox article.card .portal-item .portal-content .info .desc, .section.rss-feed div.cardbox div.card .portal-item .portal-content .info .desc {
            min-height: 0; }
            section.rss-feed div.cardbox article.card .portal-item .portal-content .info .desc img, section.rss-feed div.cardbox div.card .portal-item .portal-content .info .desc img, .section.rss-feed div.cardbox article.card .portal-item .portal-content .info .desc img, .section.rss-feed div.cardbox div.card .portal-item .portal-content .info .desc img {
              display: none; }
            section.rss-feed div.cardbox article.card .portal-item .portal-content .info .desc p, section.rss-feed div.cardbox div.card .portal-item .portal-content .info .desc p, .section.rss-feed div.cardbox article.card .portal-item .portal-content .info .desc p, .section.rss-feed div.cardbox div.card .portal-item .portal-content .info .desc p {
              font-size: 1.8rem;
              margin-bottom: 20px; }
        section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col, section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col, .section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col, .section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col {
          display: inline-block;
          flex: 0 0 auto;
          padding: 20px;
          width: 100%; }
          @media only screen and (min-width: 768px) {
            section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col, section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col, .section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col, .section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col {
              width: 33.333%; } }
          @media only screen and (min-width: 960px) {
            section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col, section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col, .section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col, .section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col {
              width: 25%; } }
          section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col div, section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col div, .section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col div, .section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col div {
            font-size: 1.8rem;
            margin-bottom: 20px; }
          section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col .button, section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col .button, .section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col .button, .section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col .button {
            background-color: transparent;
            border-color: #6ea9ad;
            color: #6ea9ad; }
            section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col .button:hover, section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col .button:hover, .section.rss-feed div.cardbox article.card .portal-item .portal-content .side-col .button:hover, .section.rss-feed div.cardbox div.card .portal-item .portal-content .side-col .button:hover {
              background-color: #6ea9ad;
              color: white; }
      section.rss-feed div.cardbox article.card .portal-item:hover, section.rss-feed div.cardbox div.card .portal-item:hover, .section.rss-feed div.cardbox article.card .portal-item:hover, .section.rss-feed div.cardbox div.card .portal-item:hover {
        transform: none; }
section.mobile-hide, .section.mobile-hide {
  display: none; }
  @media only screen and (min-width: 576px) {
    section.mobile-hide, .section.mobile-hide {
      display: flex; } }

.is-footer {
  background-color: #00456b;
  position: relative;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 25px; }
  .is-footer a:not(.button) {
    color: inherit;
    text-decoration: none; }
  .is-footer .button {
    background-color: #6ea9ad;
    border: 2px solid #6ea9ad; }
    .is-footer .button:hover {
      background-color: transparent;
      border: 2px solid white;
      color: white; }
  .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 {
    padding-bottom: 0; }
    .is-footer h1::after, .is-footer .h1-style::after, .is-footer h2::after, .is-footer .h2-style::after, .is-footer h3::after, .is-footer .h3-style::after, .is-footer h4::after, .is-footer .h4-style::after, .is-footer h5::after, .is-footer .h5-style::after, .is-footer h6.h6-style::after {
      display: none; }
  .is-footer h2, .is-footer .h2-style {
    font-size: 3rem;
    margin-bottom: 1em; }
    .is-footer h2:not(:first-child), .is-footer .h2-style:not(:first-child) {
      margin-top: 20px; }
  .is-footer p i, .is-footer address i, .is-footer .name i, .is-footer .label i {
    display: none;
    height: 20px;
    font-size: 1.6rem;
    margin-right: 10px;
    position: relative;
    vertical-align: -10%;
    width: 20px; }
    .is-footer p i::before, .is-footer address i::before, .is-footer .name i::before, .is-footer .label i::before {
      display: inline-block;
      left: 50%;
      position: absolute;
      top: 0;
      transform: translateX(-50%); }
  .is-footer p.small, .is-footer p.compno {
    font-size: 1.4rem; }
  .is-footer p.name {
    font-weight: 700;
    margin-bottom: 0; }
  .is-footer p.footer-logo {
    margin-bottom: 0; }
  .is-footer p.by {
    max-width: 290px; }
  .is-footer address {
    margin-bottom: 1em;
    max-width: 300px; }
  .is-footer .badges {
    align-items: center;
    display: flex;
    width: 100%; }
    .is-footer .badges a {
      display: inline-block;
      flex: 0 0 auto;
      margin: 0 auto;
      padding: 0 5px;
      text-align: center; }
      .is-footer .badges a img {
        height: 75px; }
      .is-footer .badges a:first-child {
        padding-left: 0; }
  .is-footer .maf-logo {
    margin-bottom: auto;
    width: 100%; }
    .is-footer .maf-logo svg #name {
      fill: white !important; }
    .is-footer .maf-logo svg #strap {
      display: none; }
  .is-footer .phone-block {
    font-family: "Roboto", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.1em; }
    .is-footer .phone-block strong, .is-footer .phone-block span {
      display: inline-block;
      padding-right: 3px;
      color: #6ea9ad; }
    .is-footer .phone-block a {
      font-weight: 600; }
    .is-footer .phone-block.company-tel {
      font-size: 1.8rem; }
    .is-footer .phone-block.company-email {
      margin-bottom: 1em; }
  .is-footer .site-nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%; }
    .is-footer .site-nav .bottom-nav {
      display: flex;
      flex: 0 0 auto;
      flex-direction: column;
      margin: 0;
      width: 100%; }
      .is-footer .site-nav .bottom-nav a {
        display: inline-block;
        font-weight: 400;
        padding: 6px 0;
        text-decoration: none;
        width: auto; }
        .is-footer .site-nav .bottom-nav a:hover {
          text-decoration: underline; }
        .is-footer .site-nav .bottom-nav a.lvl-2 {
          padding-left: 20px; }
  .is-footer .social-icons {
    --icon-colour: transparent;
    --text-colour: white;
    font-size: 2rem;
    padding: 40px 40px 0 0; }
    .is-footer .social-icons a i {
      width: 50px;
      height: 50px; }
    .is-footer .social-icons a:hover {
      color: #6ea9ad; }
  .is-footer .row {
    padding: 50px 0 0 0;
    flex-direction: column; }
    @media only screen and (min-width: 960px) {
      .is-footer .row {
        padding: 50px 30px 0 30px; } }
    @media only screen and (min-width: 960px) {
      .is-footer .row {
        flex-direction: row;
        flex-wrap: wrap; } }
    .is-footer .row .column {
      padding: 50px 15px;
      padding-top: 0;
      justify-content: flex-start;
      text-align: left; }
      @media only screen and (min-width: 960px) {
        .is-footer .row .column {
          padding: 50px 15px;
          padding-top: 0; } }
      @media only screen and (min-width: 960px) {
        .is-footer .row .column.half {
          width: 50%; } }
      @media only screen and (min-width: 960px) {
        .is-footer .row .column.third {
          width: 33.333%; } }
      .is-footer .row .column .maf-content {
        align-items: flex-start; }
        .is-footer .row .column .maf-content.flow-margin {
          margin-bottom: 1em; }
        .is-footer .row .column .maf-content.maf-form .button {
          background-color: transparent;
          border-color: white; }
          .is-footer .row .column .maf-content.maf-form .button:hover {
            background-color: white;
            color: #00456b; }
  .is-footer section {
    border: 0;
    color: white; }
    .is-footer section.footer-section {
      font-size: 1.6rem;
      overflow: hidden;
      position: relative; }
      .is-footer section.footer-section .row {
        flex-direction: column;
        padding: 50px 30px 0 30px; }
        @media only screen and (min-width: 960px) {
          .is-footer section.footer-section .row {
            flex-direction: row;
            padding: 50px 30px 0 30px; } }
        .is-footer section.footer-section .row .column {
          align-items: flex-start; }
          .is-footer section.footer-section .row .column.maf-col-1 {
            border-bottom: solid 1px #6ea9ad;
            margin-bottom: 30px; }
            .is-footer section.footer-section .row .column.maf-col-1 .maf-content {
              align-items: flex-start;
              flex-direction: column; }
              @media only screen and (min-width: 960px) {
                .is-footer section.footer-section .row .column.maf-col-1 .maf-content {
                  flex-direction: row;
                  align-items: flex-end; } }
          @media only screen and (min-width: 960px) {
            .is-footer section.footer-section .row .column.maf-col-4 .maf-content {
              text-align: right;
              align-items: flex-end; } }
    .is-footer section.legals {
      background-color: white;
      color: #707070;
      overflow: hidden;
      position: relative;
      z-index: 1; }
      .is-footer section.legals .row {
        padding-top: 0;
        padding-bottom: 0; }
        .is-footer section.legals .row p {
          font-size: 1.4rem;
          font-weight: 500; }
          .is-footer section.legals .row p a {
            color: #707070; }
            .is-footer section.legals .row p a:hover {
              text-decoration: underline; }
        .is-footer section.legals .row .column {
          padding-top: 30px;
          padding-bottom: 30px;
          text-align: right; }
          .is-footer section.legals .row .column .maf-content {
            max-width: none; }

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

/*section.is-hero + section.page-content-section {
  .row {
    .column {
      padding-top: 125px !important;
    }
  }
}*/

/*# sourceMappingURL=tvw-main.css.map */
