@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: "Frutiger LT W01_55 Roma1475738", 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: rgb(16, 16, 36);
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-weight: 400;
  line-height: 1.55;
  position: relative;
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  header, section, footer, .section {
    font-size: 1.8rem;
  }
}

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: 1600px;
  padding: 0 0 0 0;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  .header {
    padding: 0 25px 0 25px;
  }
}
@media only screen and (min-width: 960px) {
  .header {
    padding: 0 50px 0 50px;
  }
}
.header .maf-content {
  align-items: center;
  padding: 40px 25px 0 25px;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  .header .maf-content {
    padding: 40px 25px 0 25px;
  }
}
@media only screen and (min-width: 960px) {
  .header .maf-content {
    padding: 85px 50px 0 50px;
  }
}
.header .maf-content > *:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

.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: 40px 25px;
  padding-top: 0;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .maf-header {
    padding: 85px 50px;
    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: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100% + 1px);
  left: 50%;
  overflow: hidden;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
  top: 50%;
  width: calc(100% + 2px);
  z-index: 0;
}
.maf-bg-overlay .texture, .maf-background .texture, .maf-background-image .texture, .image-overlay .texture, .maf-sprite-layer .texture {
  height: 100%;
  width: 100%;
}
.maf-bg-overlay.is-texture, .maf-background.is-texture, .maf-background-image.is-texture, .image-overlay.is-texture, .maf-sprite-layer.is-texture {
  mix-blend-mode: overlay;
  opacity: 0.2;
}
.maf-bg-overlay.is-texture.screen, .maf-background.is-texture.screen, .maf-background-image.is-texture.screen, .image-overlay.is-texture.screen, .maf-sprite-layer.is-texture.screen {
  mix-blend-mode: screen;
  opacity: 0.8;
}

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

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

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

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

.bg-colour-page {
  background-color: 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;
  width: auto;
}
figure figcaption {
  color: rgb(14, 56, 85);
  display: inline-block;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  padding: 10px 0 0 0;
  text-align: right;
  width: auto;
}

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

a, a:visited {
  color: rgb(100, 11, 9);
  line-height: 1.55;
  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 0 2em 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: 400;
}
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.55;
}

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

h1, .h1-style, h2, .h2-style, h3, .h3-style, h4, .h4-style, h5, .h5-style, h6.h6-style {
  font-feature-settings: "lnum" 1;
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0.4em;
}

h1, .h1-style {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 3.2rem;
  text-transform: none;
}
@media only screen and (min-width: 576px) {
  h1, .h1-style {
    font-size: 4.8rem;
  }
}

h2, .h2-style {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 3.2rem;
}
@media only screen and (min-width: 576px) {
  h2, .h2-style {
    font-size: 4.8rem;
  }
}

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

h4, .h4-style {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 2.5rem;
}
@media only screen and (min-width: 576px) {
  h4, .h4-style {
    font-size: 3rem;
  }
}

h5, .h5-style {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 2.4rem;
}
@media only screen and (min-width: 576px) {
  h5, .h5-style {
    font-size: 2.8rem;
  }
}

h6, .h6-style {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 2.2rem;
}
@media only screen and (min-width: 576px) {
  h6, .h6-style {
    font-size: 2.4rem;
  }
}

p, .p-style, li, blockquote, address, .body-text {
  font-feature-settings: "lnum" 1;
  line-height: 1.55;
}
p.al-left, .p-style.al-left, li.al-left, blockquote.al-left, address.al-left, .body-text.al-left {
  margin-right: auto;
  text-align: left !important;
}
p.al-right, .p-style.al-right, li.al-right, blockquote.al-right, address.al-right, .body-text.al-right {
  margin-left: auto;
  text-align: right !important;
}
p.al-centre, .p-style.al-centre, li.al-centre, blockquote.al-centre, address.al-centre, .body-text.al-centre {
  margin-right: auto;
  margin-left: auto;
  text-align: center !important;
}
p img.al-left, .p-style img.al-left, li img.al-left, blockquote img.al-left, address img.al-left, .body-text img.al-left {
  float: left;
  margin: 0 5px 5px 0;
}
p img.al-right, .p-style img.al-right, li img.al-right, blockquote img.al-right, address img.al-right, .body-text img.al-right {
  float: right;
  margin: 0 0 5px 5px;
}

strong {
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
}

sup {
  font-size: 0.5em;
}

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

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

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

.maf-content ul, .maf-content ol {
  list-style-position: outside;
  margin: 0 0 2em 0;
  padding: 0 0 0 20px;
  width: 100%;
}
.maf-content ul li, .maf-content ol li {
  margin: 0 0 2em 0;
}
.maf-content ul li > p, .maf-content ol li > p {
  margin: 0;
}
.maf-content ul {
  list-style-type: none;
  padding-left: 19px;
}
.maf-content ul li {
  margin-bottom: 12px;
  position: relative;
}
.maf-content ul li::before {
  background-color: rgb(16, 16, 36);
  border-radius: 50%;
  content: "";
  color: inherit;
  display: inline-block;
  font-weight: 400;
  height: 3px;
  left: -8px;
  position: absolute;
  top: 0.5em;
  width: 3px;
}
.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: 8px;
  position: relative;
}
.maf-content ol li::before {
  content: counter(maf-ol-counter) ".";
  color: rgb(14, 56, 85);
  display: inline-block;
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  height: 30px;
  left: -1.3em;
  line-height: 1;
  margin-right: 0.8rem;
  opacity: 1;
  position: absolute;
  top: 0.2em;
  transform: translateY(0.1em);
  vertical-align: top;
  width: 0.9em;
}

.is-faq dl {
  border-bottom: 1px solid rgb(65, 65, 65);
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  width: 100%;
}
.is-faq dl dt {
  background-color: transparent;
  border-top: 1px solid rgb(65, 65, 65);
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: 400;
  padding: 20px 0 20px 25px;
  position: relative;
  transition: background-color 350ms ease-out;
  width: 100%;
}
.is-faq dl dt::before {
  border-right: 2px solid rgb(65, 65, 65);
  border-bottom: 2px solid rgb(65, 65, 65);
  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, .is-faq dl dt:focus::before {
  top: 32px;
}
.is-faq dl dt:first-child {
  border-top: 0;
}
.is-faq dl dt.open::before {
  top: 30px;
  transform: rotate(45deg) scaleX(-1) scaleY(-1);
}
.is-faq dl dd {
  display: none;
  margin: 0 0 5px 0;
  padding: 0 0 16px 24px;
  width: 100%;
}
.is-faq dl dd > * {
  line-height: 1.6;
}
.is-faq dl dd > *:last-child {
  margin-bottom: 0;
}

blockquote {
  border: 1px solid rgb(65, 65, 65);
  color: rgb(14, 56, 85);
  display: inline-block;
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 400;
  margin: 60px 0;
  padding: 60px 40px;
  position: relative;
  text-align: center;
}
blockquote p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2 !important;
}
blockquote p.small-text {
  color: rgb(16, 16, 36);
  font-size: 1.8rem !important;
  font-weight: 700 !important;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote.heavy {
  font-family: "Frutiger LT W01_65 Bold1475746", 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: rgb(65, 65, 65);
  font-size: 2.4rem;
}
blockquote + blockquote {
  margin-top: 0;
}

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

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

input, textarea {
  background-color: transparent;
  border: 0;
  border: 1px solid rgb(14, 56, 85);
  color: rgb(16, 16, 36);
  display: inline-block;
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-feature-settings: "lnum" 1;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: normal;
  margin: 0;
  outline: none;
  outline-color: transparent;
  padding: 10px 15px;
  transition: all 350ms ease-out;
  width: 100%;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgb(14, 56, 85);
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
}
input::placeholder, textarea::placeholder {
  color: rgb(14, 56, 85);
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
}
input:focus, textarea:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgb(100, 11, 9);
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0.2;
}
input:focus::placeholder, textarea:focus::placeholder {
  opacity: 0.2;
}

textarea {
  resize: none;
}

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

select {
  margin-bottom: 1.2em;
  outline-color: rgb(14, 56, 85);
}

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

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

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

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

.radio {
  align-items: center;
  cursor: pointer;
  display: flex;
  margin-bottom: 2em;
  width: 100%;
}
.radio .pretty-radio {
  display: inline-block;
  position: relative;
  margin: 0;
  width: 40px;
}
.radio .pretty-radio label {
  border-radius: 50%;
  border: 10px solid rgb(14, 56, 85);
  cursor: pointer;
  height: 40px;
  left: 0;
  margin: 0;
  position: absolute;
  transition: background-color 350ms ease-out;
  width: 40px;
  top: 1px;
}
.radio .pretty-radio label:after {
  background: transparent;
  border: 2px solid rgb(14, 56, 85);
  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, .radio .pretty-radio label:focus {
  background: rgb(75, 160, 216);
}
.radio .pretty-radio label:hover::after {
  opacity: 0.7;
}
.radio .pretty-radio input[type=radio] {
  height: 40px;
  visibility: hidden;
  width: 40px;
}
.radio .pretty-radio input[type=radio]:checked + label {
  background: rgb(75, 160, 216);
}
.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, .radio:focus .pretty-radio label {
  background: rgb(75, 160, 216);
}

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

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

.g-recap-con {
  margin-top: 2em;
  margin-bottom: 2em;
  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;
  width: 100%;
}
.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: 2em;
  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.half.left, .maf-form .form .maf-input.half.left {
    padding-right: 10px;
  }
  .maf-form form .maf-input.half.right, .maf-form .form .maf-input.half.right {
    padding-left: 10px;
  }
}
.maf-form form .maf-input.centre, .maf-form form .maf-input.center, .maf-form .form .maf-input.centre, .maf-form .form .maf-input.center {
  justify-content: center;
  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-input.actions .button, .maf-form .form .maf-input.actions .button {
  background-color: rgb(14, 56, 85);
  border: 2px solid rgb(14, 56, 85);
  border-radius: 30px;
  color: white;
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  min-width: 0;
  padding: 13px 26px;
}
.maf-form form .maf-input.actions .button::after, .maf-form .form .maf-input.actions .button::after {
  display: none;
}
.maf-form form .maf-input.actions .button:hover, .maf-form form .maf-input.actions .button:focus, .maf-form .form .maf-input.actions .button:hover, .maf-form .form .maf-input.actions .button:focus {
  background-color: transparent;
  color: rgb(14, 56, 85);
}
.maf-form form label, .maf-form .form label {
  color: white;
  font-size: 1.8rem;
  font-weight: 300;
  margin: 10px 0 0 0;
  padding: 0;
}
.maf-form form label sup, .maf-form .form label sup {
  color: rgb(14, 56, 85);
}
.maf-form form .cap-con, .maf-form .form .cap-con {
  flex-wrap: wrap;
}
.maf-form form .cap-con .g-recap-con, .maf-form .form .cap-con .g-recap-con {
  margin: 0 auto;
  display: inline-block;
  width: 302px;
}
.maf-form .a-f-resp {
  opacity: 0;
  position: absolute;
  transition: opacity 700ms ease-out 700ms;
  width: 100%;
}
.maf-form .a-f-resp.show {
  opacity: 1;
  position: static;
}
.maf-form .a-f-resp h3 {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.maf-msg {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 20px;
  padding: 10px 20px;
  text-align: center;
  width: 100%;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2em;
}
@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 rgb(14, 56, 85);
  color: rgb(14, 56, 85);
}
.maf-msg.success-msg {
  background-color: rgb(206, 240, 206);
  border: 1px solid rgb(30, 60, 30);
  color: rgb(30, 60, 30);
}
.maf-msg.input-msg {
  border-radius: 0 0 5px 5px;
  font-size: 1.4rem;
  margin: 0;
}

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

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

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

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

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

.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: 400;
  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, .insta-feed .eapps-instagram-feed-posts-grid-load-more-container .eapps-instagram-feed-posts-grid-load-more:focus {
  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, .insta-feed .eapps-instagram-feed-posts-grid-load-more-container .eapps-instagram-feed-posts-grid-load-more:focus .eapps-instagram-feed-posts-grid-load-more-text {
  color: rgb(38, 38, 38) !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.maf-share-this {
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  width: auto;
}
div.maf-share-this i {
  font-size: 1.8rem;
}
div.maf-share-this .maf-share-btn {
  background-color: white;
  border: 1px solid rgb(65, 65, 65);
  height: 40px;
  padding: 5px;
  position: relative;
  transition: background-color 350ms ease-out;
  width: 40px;
}
div.maf-share-this .maf-share-btn i {
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
}
div.maf-share-this .maf-share-btn:hover, div.maf-share-this .maf-share-btn:focus {
  background-color: rgb(16, 16, 36);
}
div.maf-share-this .maf-share-btn:hover i, div.maf-share-this .maf-share-btn:focus i {
  color: white;
}
div.maf-share-this .maf-share-acts {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgb(16, 16, 36);
  display: flex;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all 350ms ease-out;
  top: 100%;
  visibility: hidden;
}
div.maf-share-this .maf-share-acts a {
  color: rgb(16, 16, 36);
  display: inline-block;
  height: 40px;
  padding: 5px;
  position: relative;
  width: 40px;
}
div.maf-share-this .maf-share-acts a i {
  font-size: 2rem;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
}
div.maf-share-this .maf-share-acts a:hover, div.maf-share-this .maf-share-acts a:focus {
  background-color: rgb(16, 16, 36);
}
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 .maf-share-acts, div.maf-share-this:focus .maf-share-acts {
  opacity: 1;
  visibility: visible;
}
div.maf-share-this.floater {
  height: 40px;
  position: absolute;
  right: 0;
  top: calc(50vh - 20px);
  width: 40px;
}
div.maf-share-this.floater i {
  font-size: 2rem;
}
@media only screen and (min-width: 576px) {
  div.maf-share-this.floater {
    height: 70px;
    top: calc(50vh - 35px);
    width: 70px;
  }
  div.maf-share-this.floater i {
    font-size: 3rem;
  }
}
div.maf-share-this.floater .maf-share-btn {
  height: 100%;
  width: 100%;
}
div.maf-share-this.floater .maf-share-acts {
  bottom: 100%;
  left: auto;
  right: 0;
  top: auto;
}

div#email-floater {
  background-color: white;
  border: 1px solid rgb(14, 56, 85);
  border-radius: 12px 0 0 12px;
  font-size: 1.4rem;
  height: auto;
  line-height: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 40vh;
  width: 40px;
}
@media only screen and (min-width: 1600px) {
  div#email-floater {
    height: auto;
    padding: 20px 15px;
    width: 142px;
  }
}
div#email-floater img {
  display: none;
  margin-bottom: 12px;
  width: 50px;
}
@media only screen and (min-width: 1600px) {
  div#email-floater img {
    display: inline-block;
  }
}
div#email-floater button, div#email-floater a {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: rgb(14, 56, 85);
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 400;
  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 button:focus, div#email-floater a:hover, div#email-floater a:focus {
  color: rgb(75, 160, 216);
}
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: "Frutiger LT W01_65 Bold1475746", 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 rgb(14, 56, 85);
  bottom: 0;
  color: rgb(16, 16, 36);
  display: flex;
  height: 100vh;
  flex-direction: row;
  float: none;
  margin: 0;
  max-width: 930px;
  overflow-y: auto;
  padding: 40px 15px 25px 25px;
  position: fixed;
  right: -110%;
  transform: rotateZ(0);
  transition: all 500ms ease;
  width: 100%;
  z-index: 999;
}
#conco-f #close {
  background-color: transparent;
  border: 1px solid rgb(14, 56, 85);
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  height: 40px;
  left: 25px;
  outline: transparent;
  position: absolute;
  top: 20px;
  transition: transform 350ms ease-out;
  width: 40px;
}
#conco-f #close::before, #conco-f #close::after {
  background-color: rgb(14, 56, 85);
  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, #conco-f #close:focus {
  transform: rotate(90deg);
}
#conco-f h2 {
  color: rgb(65, 65, 65);
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  margin-bottom: 3px;
  text-transform: none;
}
#conco-f p {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}
#conco-f p a {
  color: rgb(16, 16, 36);
}
#conco-f .details {
  display: none;
  flex: 0 0 40%;
}
#conco-f .details a {
  color: rgb(16, 16, 36);
  text-decoration: none;
}
#conco-f .details .company-name {
  font-weight: 400;
}
@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: rgb(160, 160, 160);
  color: rgb(160, 160, 160);
}
#conco-f .form .maf-form input::-moz-placeholder, #conco-f .form .maf-form textarea::-moz-placeholder {
  color: rgb(160, 160, 160);
}
#conco-f .form .maf-form input::placeholder, #conco-f .form .maf-form textarea::placeholder {
  color: rgb(160, 160, 160);
}
#conco-f .form .maf-form textarea {
  height: 150px;
}
#conco-f .form .maf-form .g-recaptcha {
  float: left;
  margin-right: 10px;
}
#conco-f .form .maf-form .button {
  width: 100%;
}
#conco-f .form .maf-form i {
  font-size: 2rem;
}
#conco-f.open {
  right: 0;
}

#fader {
  background-color: rgb(16, 16, 36);
  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: 0;
  display: block;
  margin: 0;
  padding: 0;
}
.flickity-slideshow .flickity-page-dots .dot, .flickity-slideshow-edit .flickity-page-dots .dot {
  background: transparent;
  border: 1px solid rgb(14, 56, 85);
  height: 20px;
  margin: 0 5px;
  opacity: 1;
  position: relative;
  width: 20px;
}
.flickity-slideshow .flickity-page-dots .dot::before, .flickity-slideshow-edit .flickity-page-dots .dot::before {
  background-color: rgb(14, 56, 85);
  border-radius: 50%;
  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: 60%;
  width: 60%;
}
.flickity-slideshow .flickity-button, .flickity-slideshow-edit .flickity-button {
  background-color: transparent;
  display: inline-block;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  height: 80px;
  margin: 0;
  opacity: 1;
  padding: 0;
  transform-origin: center;
  transform: translate(0, -50%);
  transition: all 350ms ease-out;
  width: 80px;
  z-index: 2;
}
.flickity-slideshow .flickity-button.flickity-prev-next-button .flickity-button-icon path, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button .flickity-button-icon path {
  fill: rgb(14, 56, 85);
}
.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 .flickity-button.flickity-prev-next-button:focus, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button:hover, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button:focus {
  background-color: rgba(255, 255, 255, 0.6);
}
.flickity-slideshow .flickity-button.flickity-prev-next-button:disabled, .flickity-slideshow-edit .flickity-button.flickity-prev-next-button:disabled {
  opacity: 0.2;
}

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

.blog-nav {
  width: 100%;
}
.blog-nav .nav-title {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 3rem;
  color: rgb(14, 56, 85);
  margin-bottom: 50px;
}
@media only screen and (min-width: 576px) {
  .blog-nav .nav-title {
    font-size: 3.6rem;
  }
}
.blog-nav > hr {
  margin-top: 0;
}
.blog-nav .blog-aside-content {
  display: inline-block;
  margin-bottom: 10px;
  width: 100%;
}
.blog-nav .blog-aside-content a {
  color: rgb(75, 160, 216);
  display: inline-block;
  line-height: 1.2;
  text-decoration: none;
  width: 100%;
}
.blog-nav .blog-aside-content a .blog-current-item {
  background: none;
  border-bottom: 1px solid rgb(75, 160, 216);
  border-radius: 0;
  box-shadow: none;
  color: rgb(16, 16, 36);
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: flex-start;
  line-height: 1.3;
  margin: 0 0 0 0;
  outline: transparent;
  overflow: hidden;
  margin-top: 10px;
  padding: 0 0 15px 0;
  position: relative;
  text-align: left;
  text-transform: capitalize;
  transition: all 350ms ease-out;
  width: 100%;
  z-index: 1;
}
.blog-nav .blog-aside-content a .blog-current-item::before, .blog-nav .blog-aside-content a .blog-current-item::after {
  content: "";
  background-color: rgb(75, 160, 216);
  display: none;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  transform: skewX(-18deg);
  transform-origin: top right;
  transition: all 350ms ease-out;
  width: 120%;
  z-index: -1;
}
.blog-nav .blog-aside-content a .blog-current-item:hover, .blog-nav .blog-aside-content a .blog-current-item.active {
  border-bottom: 1px solid black;
}
.blog-nav .blog-aside-content a .blog-current-item:hover::before, .blog-nav .blog-aside-content a .blog-current-item:hover::after, .blog-nav .blog-aside-content a .blog-current-item.active::before, .blog-nav .blog-aside-content a .blog-current-item.active::after {
  right: 0;
}
.blog-nav .blog-aside-content a .blog-current-item p {
  line-height: 1.2;
  margin: 0;
}
.blog-nav .blog-aside-content a .blog-current-item time {
  display: inline-block;
  font-size: 1.6rem;
  margin-top: 5px;
  opacity: 0.8;
}
.blog-nav .blog-aside-content.nav-filter button {
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: rgb(16, 16, 36);
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: flex-start;
  line-height: 1.2;
  margin: 0 0 10px 0;
  outline: transparent;
  overflow: hidden;
  padding: 5px 3px;
  text-align: left;
  text-transform: capitalize;
  transition: all 350ms ease-out;
  width: 100%;
  z-index: 1;
}
.blog-nav .blog-aside-content.nav-filter button::before {
  content: "";
  background-color: rgb(75, 160, 216);
  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, .blog-nav .blog-aside-content.nav-filter button:focus {
  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, .blog-nav .blog-aside-content.nav-filter button:focus::before {
  right: 0;
}
.blog-nav .blog-aside-content.is-toggle-group .toggle-group.is-on {
  border-top: none;
}
.blog-nav .blog-aside-content.is-toggle-group .toggle-group a {
  color: rgb(16, 16, 36);
  font-size: 1.6rem;
  font-weight: 400;
  padding: 5px 10px;
}
.blog-nav .blog-aside-content.is-toggle-group .toggle-group a:hover, .blog-nav .blog-aside-content.is-toggle-group .toggle-group a:focus {
  background-color: rgb(14, 56, 85);
  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: 25px;
}
aside.pg-nav .button.next {
  margin-right: 25px;
  margin-left: auto;
}

.pagination {
  align-self: flex-start;
  color: rgb(14, 56, 85);
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  padding: 0;
  text-align: right;
  width: 100%;
}
.pagination a {
  color: rgb(14, 56, 85);
  padding: 0.4rem 0.8rem;
  text-decoration: none;
}
.pagination a:hover, .pagination a:focus {
  background-color: rgb(14, 56, 85);
  color: white;
}
.pagination a.previous {
  margin-right: 2px;
}
.pagination a.next {
  margin-left: 2px;
}
.pagination span.active {
  background-color: rgb(100, 11, 9);
  color: white;
  padding: 0.4rem 0.8rem;
}

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

.fb-gallery {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -10px;
  width: calc(100% + 20px);
}
.fb-gallery > a {
  display: inline-block;
  flex: 0 0 auto;
  padding: 10px;
  width: 100%;
}
.fb-gallery > a > div {
  border: 30px solid rgb(65, 65, 65);
  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, .fb-gallery > a > div:focus img.maf-tn {
  transform: scale(1.1);
}
.fb-gallery > a:not(:first-child) {
  width: 33.333%;
}
@media only screen and (min-width: 768px) {
  .fb-gallery > a:not(:first-child) {
    width: 16.666%;
  }
}
.fb-gallery > a:not(:first-child) > div {
  border: 10px solid rgb(65, 65, 65);
}
.fb-gallery > a:not(:first-child) > div::after {
  content: "";
  display: table;
  padding-bottom: 100%;
}
.fb-gallery > a:not(:first-child) > div img.maf-tn {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.fb-gallery > a.video-item > div .maf-vp {
  display: inline-block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
}
.fb-gallery > a.video-item > div .maf-vp img {
  filter: drop-shadow(0 0 7px black);
  transition: all 350ms ease-out;
}
.fb-gallery > a.video-item:hover > div .maf-vp img, .fb-gallery > a.video-item:focus > div .maf-vp img {
  transform: scale(1.3);
}
.fb-gallery > a:first-child {
  padding-top: 0;
}

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

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

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

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

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

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

div.cardbox, aside.cardbox {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -12.5px;
  width: calc(100% + 25px);
}
@media only screen and (min-width: 1366px) {
  div.cardbox, aside.cardbox {
    margin: 0 -25px;
    width: calc(100% + 50px);
  }
}
div.cardbox .maf-content, aside.cardbox .maf-content {
  padding: 0;
}
div.cardbox article.card, aside.cardbox article.card {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  margin-bottom: 40px;
  padding: 0 12.5px;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  div.cardbox article.card, aside.cardbox article.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  div.cardbox article.card, aside.cardbox article.card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1152px) {
  div.cardbox article.card, aside.cardbox article.card {
    width: 25%;
  }
}
@media only screen and (min-width: 1366px) {
  div.cardbox article.card, aside.cardbox article.card {
    padding: 0 25px;
  }
}
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;
  border: 1px solid rgb(65, 65, 65);
  color: rgb(65, 65, 65);
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  height: 100%;
  overflow: visible;
  opacity: 1;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: scale(1);
  transition: all 350ms ease-out;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content, aside.cardbox article.card .portal-item .portal-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  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 {
  color: rgb(14, 56, 85);
  display: none;
  font-size: 1.4rem;
  font-weight: 400;
  padding-top: 15px;
  text-transform: uppercase;
  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;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: all 700ms ease-out;
  width: 100%;
  z-index: 0;
}
div.cardbox article.card .portal-item .portal-content .tn .maf-na, aside.cardbox article.card .portal-item .portal-content .tn .maf-na {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  height: 100%;
  font-size: 2rem;
  padding: 20px;
  position: absolute;
  top: 0;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn .maf-na span, div.cardbox article.card .portal-item .portal-content .tn .maf-na i, aside.cardbox article.card .portal-item .portal-content .tn .maf-na span, aside.cardbox article.card .portal-item .portal-content .tn .maf-na i {
  display: inline-block;
  flex: 0 0 auto;
}
div.cardbox article.card .portal-item .portal-content .tn .maf-na span, aside.cardbox article.card .portal-item .portal-content .tn .maf-na span {
  text-align: center;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn .maf-na i, aside.cardbox article.card .portal-item .portal-content .tn .maf-na i {
  font-size: 2em;
}
div.cardbox article.card .portal-item .portal-content .tn.no-img .maf-na, aside.cardbox article.card .portal-item .portal-content .tn.no-img .maf-na {
  position: static;
}
div.cardbox article.card .portal-item .portal-content .tn.square::after, div.cardbox article.card .portal-item .portal-content .tn.fourthree::after, div.cardbox article.card .portal-item .portal-content .tn.custom::after, div.cardbox article.card .portal-item .portal-content .tn.show-all::after, aside.cardbox article.card .portal-item .portal-content .tn.square::after, aside.cardbox article.card .portal-item .portal-content .tn.fourthree::after, aside.cardbox article.card .portal-item .portal-content .tn.custom::after, aside.cardbox article.card .portal-item .portal-content .tn.show-all::after {
  content: "";
  display: table;
  padding-bottom: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn.square .tn-img, div.cardbox article.card .portal-item .portal-content .tn.fourthree .tn-img, div.cardbox article.card .portal-item .portal-content .tn.custom .tn-img, div.cardbox article.card .portal-item .portal-content .tn.show-all .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.square .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.fourthree .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.custom .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.show-all .tn-img {
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(1);
  min-width: 100%;
}
div.cardbox article.card .portal-item .portal-content .tn.fourthree::after, aside.cardbox article.card .portal-item .portal-content .tn.fourthree::after {
  padding-bottom: 75%;
}
div.cardbox article.card .portal-item .portal-content .tn.static, aside.cardbox article.card .portal-item .portal-content .tn.static {
  overflow: visible;
  position: static;
}
div.cardbox article.card .portal-item .portal-content .tn.static .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.static .tn-img {
  height: auto;
  max-width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  transform-origin: center bottom;
  width: auto;
}
div.cardbox article.card .portal-item .portal-content .tn.static.no-img, aside.cardbox article.card .portal-item .portal-content .tn.static.no-img {
  min-height: 100px;
}
div.cardbox article.card .portal-item .portal-content .tn.show-all::after, aside.cardbox article.card .portal-item .portal-content .tn.show-all::after {
  padding-bottom: 50%;
}
div.cardbox article.card .portal-item .portal-content .tn.show-all .tn-img, aside.cardbox article.card .portal-item .portal-content .tn.show-all .tn-img {
  -o-object-fit: contain;
     object-fit: contain;
}
div.cardbox article.card .portal-item .portal-content .tn.custom::after, aside.cardbox article.card .portal-item .portal-content .tn.custom::after {
  padding-bottom: 85%;
}
div.cardbox article.card .portal-item .portal-content .info, aside.cardbox article.card .portal-item .portal-content .info {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  position: relative;
  transition: all 350ms ease-out;
  width: 100%;
  z-index: 1;
}
div.cardbox article.card .portal-item .portal-content .title, aside.cardbox article.card .portal-item .portal-content .title {
  align-items: flex-start;
  color: rgb(14, 56, 85);
  display: flex;
  font-size: 2.4rem;
  font-weight: 400;
  justify-content: center;
  line-height: 1.1;
  margin: 0;
  padding: 10px 0 3px 0;
  position: relative;
  text-transform: none;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .title.no-desc, aside.cardbox article.card .portal-item .portal-content .title.no-desc {
  margin-bottom: auto;
}
div.cardbox article.card .portal-item .portal-content .date, aside.cardbox article.card .portal-item .portal-content .date {
  color: rgb(100, 11, 9);
  display: inline-flex;
  justify-content: center;
  line-height: 1;
  margin: auto 0 0 0;
  overflow: hidden;
  padding: 25px 0 5px;
  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;
  text-transform: uppercase;
}
div.cardbox article.card .portal-item .portal-content .date i, aside.cardbox article.card .portal-item .portal-content .date i {
  display: none;
}
div.cardbox article.card .portal-item .portal-content .desc, aside.cardbox article.card .portal-item .portal-content .desc {
  color: inherit;
  display: inline-block;
  margin: auto 0 0 0;
  min-height: 130px;
  padding: 15px 0;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .desc p, aside.cardbox article.card .portal-item .portal-content .desc p {
  margin-bottom: 0;
}
div.cardbox article.card .portal-item .portal-content .attr, aside.cardbox article.card .portal-item .portal-content .attr {
  display: flex;
  margin-top: auto;
  padding: 10px 0;
  width: 100%;
}
div.cardbox article.card .portal-item .portal-content .attr span, aside.cardbox article.card .portal-item .portal-content .attr span {
  display: inline-block;
  flex: 1 1 auto;
  line-height: 1.2;
}
div.cardbox article.card .portal-item .portal-content .card-button, aside.cardbox article.card .portal-item .portal-content .card-button {
  background-color: transparent;
  border: 2px solid rgb(14, 56, 85);
  border-radius: 30px;
  color: rgb(14, 56, 85);
  font-size: 1.4rem;
  font-weight: 900;
  margin: 33px 0;
  min-width: 0;
  padding: 10px 20px;
}
div.cardbox article.card .portal-item .portal-content .card-button::after, aside.cardbox article.card .portal-item .portal-content .card-button::after {
  display: none;
}
div.cardbox article.card .portal-item.no-link, aside.cardbox article.card .portal-item.no-link {
  cursor: default;
}
div.cardbox article.card .portal-item.no-link .portal-content .info .card-button, aside.cardbox article.card .portal-item.no-link .portal-content .info .card-button {
  display: none;
}
div.cardbox article.card .portal-item.edit .portal-content .info, aside.cardbox article.card .portal-item.edit .portal-content .info {
  position: static;
  transform: none;
}
div.cardbox article.card .portal-item:hover, div.cardbox article.card .portal-item:focus, aside.cardbox article.card .portal-item:hover, aside.cardbox article.card .portal-item:focus {
  transform: scale(1.01);
}
div.cardbox article.card .portal-item:hover .portal-content, div.cardbox article.card .portal-item:focus .portal-content, aside.cardbox article.card .portal-item:hover .portal-content, aside.cardbox article.card .portal-item:focus .portal-content {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
div.cardbox article.card .portal-item:hover .portal-content .tn .tn-img, div.cardbox article.card .portal-item:focus .portal-content .tn .tn-img, aside.cardbox article.card .portal-item:hover .portal-content .tn .tn-img, aside.cardbox article.card .portal-item:focus .portal-content .tn .tn-img {
  transform: scale(1.05);
}
div.cardbox article.card .portal-item:hover .portal-content .card-button, div.cardbox article.card .portal-item:focus .portal-content .card-button, aside.cardbox article.card .portal-item:hover .portal-content .card-button, aside.cardbox article.card .portal-item:focus .portal-content .card-button {
  background-color: rgb(14, 56, 85);
  color: white;
}
div.cardbox article.card:hover, div.cardbox article.card:focus, aside.cardbox article.card:hover, aside.cardbox article.card:focus {
  z-index: 100;
}
div.cardbox article.card.maf-clr-1 .portal-item .portal-content .info .title, aside.cardbox article.card.maf-clr-1 .portal-item .portal-content .info .title {
  background-color: rgb(14, 56, 85);
}
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 25px;
  width: 100%;
}
div.cardbox aside.ad-block, aside.cardbox aside.ad-block {
  cursor: pointer;
  display: inline-block;
  flex: 0 0 auto;
  margin-bottom: 100px;
  padding: 0 25px;
  width: 100%;
}
div.cardbox .maf-msg, aside.cardbox .maf-msg {
  margin: 0 12.5px 30px 12.5px;
  z-index: 1;
}
@media only screen and (min-width: 1366px) {
  div.cardbox .maf-msg, aside.cardbox .maf-msg {
    margin: 0 25px 30px 25px;
  }
}

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

#filters {
  margin-top: 50px;
  width: 100%;
}
#filters .filter-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
#filters .filter-content .filter-set {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
#filters .filter-content .filter-set .label {
  display: none;
  margin: 0 30px 8px 0;
  width: auto;
}
#filters .filter-content .filter-set button {
  background-color: transparent;
  border: 2px solid rgb(14, 56, 85);
  border-radius: 0;
  box-shadow: none;
  color: rgb(14, 56, 85);
  cursor: pointer;
  flex: 0 0 auto;
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  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, #filters .filter-content .filter-set button:focus {
  background-color: rgb(14, 56, 85);
  color: white;
}
#filters .filter-content .filter-set button.active:not(:first-of-type):hover, #filters .filter-content .filter-set button.active:not(:first-of-type):focus {
  background-color: transparent;
  color: rgb(14, 56, 85);
}
#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;
}

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

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

.modal {
  background-color: rgba(0, 0, 0, 0.8);
  display: inline-block;
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-size: 1.8rem;
  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;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.2);
  display: inline-block;
  height: 0;
  left: 50%;
  max-height: 485px;
  max-width: 400px;
  opacity: 0;
  padding: 30px 0 20px 20px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 200ms ease-out;
  width: 0;
}
@media only screen and (min-width: 1024px) {
  .modal > div {
    padding: 30px 0 30px 50px;
  }
}
.modal > div .mod-content {
  height: 100%;
  overflow-y: auto;
  padding-right: 30px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .modal > div .mod-content {
    padding-right: 50px;
  }
}
.modal > div .close {
  background-color: transparent;
  border: 0;
  color: rgb(75, 160, 216);
  cursor: pointer;
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  height: 20px;
  position: absolute;
  right: 10px;
  text-transform: uppercase;
  top: 10px;
  width: 20px;
}
.modal > div .close i {
  font-size: 2rem;
  vertical-align: -15%;
}
.modal > div .close::before, .modal > div .close::after {
  background-color: rgb(75, 160, 216);
  content: "";
  display: inline-block;
  height: 2px;
  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, .modal > div .close:focus::before, .modal > div .close:focus::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-nagger > div .mod-content p {
  color: rgb(75, 160, 216);
}
#mp-nagger > div .mod-content p.title {
  margin: 40px 0 20px 0;
}

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

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

.maf-portal {
  justify-content: center;
  min-height: 280px;
  padding-top: 0;
  padding-bottom: 0;
}
.maf-portal .maf-content {
  background-color: rgb(14, 56, 85);
  border: 1px solid rgb(237, 244, 255);
  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% - 100px);
  justify-content: center;
  padding: 25px;
  text-align: center;
  transition: all 350ms ease-out;
  width: 100%;
}
.maf-portal .maf-content:hover, .maf-portal .maf-content:focus {
  background-color: rgb(75, 160, 216) !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% - 100px);
  }
}

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

section, .section {
  overflow: hidden;
}

section p.page-lead, section span.page-lead, .section p.page-lead, .section span.page-lead, footer p.page-lead, footer span.page-lead, .bo-row p.page-lead, .bo-row span.page-lead {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2em;
}
@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: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-size: 1.4rem;
}
section p.massive-text, section span.massive-text, .section p.massive-text, .section span.massive-text, footer p.massive-text, footer span.massive-text, .bo-row p.massive-text, .bo-row span.massive-text {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1;
}
section p.tiny-text, section span.tiny-text, .section p.tiny-text, .section span.tiny-text, footer p.tiny-text, footer span.tiny-text, .bo-row p.tiny-text, .bo-row span.tiny-text {
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-size: 0.5em !important;
}
section p.script-text, section span.script-text, .section p.script-text, .section span.script-text, footer p.script-text, footer span.script-text, .bo-row p.script-text, .bo-row span.script-text {
  font-family: cursive;
}
section p.p-yes, section p.p-no, section span.p-yes, section span.p-no, .section p.p-yes, .section p.p-no, .section span.p-yes, .section span.p-no, footer p.p-yes, footer p.p-no, footer span.p-yes, footer span.p-no, .bo-row p.p-yes, .bo-row p.p-no, .bo-row span.p-yes, .bo-row span.p-no {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  padding-left: 11%;
  position: relative;
}
section p.p-yes::before, section p.p-no::before, section span.p-yes::before, section span.p-no::before, .section p.p-yes::before, .section p.p-no::before, .section span.p-yes::before, .section span.p-no::before, footer p.p-yes::before, footer p.p-no::before, footer span.p-yes::before, footer span.p-no::before, .bo-row p.p-yes::before, .bo-row p.p-no::before, .bo-row span.p-yes::before, .bo-row span.p-no::before {
  background-image: url("/images/Layout/ui/tick-circ.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 9%;
}
section p.p-yes::before, section span.p-yes::before, .section p.p-yes::before, .section span.p-yes::before, footer p.p-yes::before, footer span.p-yes::before, .bo-row p.p-yes::before, .bo-row span.p-yes::before {
  background-image: url("/images/Layout/ui/tick-circ.svg");
}
section p.p-no::before, section span.p-no::before, .section p.p-no::before, .section span.p-no::before, footer p.p-no::before, footer span.p-no::before, .bo-row p.p-no::before, .bo-row span.p-no::before {
  background-image: url("/images/Layout/ui/cross-circ.svg");
}
section p.has-img img, .section p.has-img img, footer p.has-img img, .bo-row p.has-img img {
  margin: 0 20px 20px 0 !important;
}
section p.has-img figure img, .section p.has-img figure img, footer p.has-img figure img, .bo-row p.has-img figure img {
  margin: 0 !important;
}
section p.p-links, .section p.p-links, footer p.p-links, .bo-row p.p-links {
  margin: 10px -15px 30px -15px;
  position: relative;
  width: calc(100% + 30px);
}
section p.p-links a, .section p.p-links a, footer p.p-links a, .bo-row p.p-links a {
  margin: 0 15px 10px 15px;
}
section p.p-links a img, .section p.p-links a img, footer p.p-links a img, .bo-row p.p-links a img {
  display: inline-block;
}
section 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: 2rem;
  font-weight: 400;
  margin-bottom: 2em;
}
@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: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-size: 0.5em !important;
}
section h1.highlight-text, section .h1-style.highlight-text, section h2.highlight-text, section .h2-style.highlight-text, section h3.highlight-text, section .h3-style.highlight-text, section h4.highlight-text, section .h4-style.highlight-text, section h5.highlight-text, section .h5-style.highlight-text, section h6.highlight-text, section .h6-style.highlight-text, section p.highlight-text, section .p-style.highlight-text, .section h1.highlight-text, .section .h1-style.highlight-text, .section h2.highlight-text, .section .h2-style.highlight-text, .section h3.highlight-text, .section .h3-style.highlight-text, .section h4.highlight-text, .section .h4-style.highlight-text, .section h5.highlight-text, .section .h5-style.highlight-text, .section h6.highlight-text, .section .h6-style.highlight-text, .section p.highlight-text, .section .p-style.highlight-text, footer h1.highlight-text, footer .h1-style.highlight-text, footer h2.highlight-text, footer .h2-style.highlight-text, footer h3.highlight-text, footer .h3-style.highlight-text, footer h4.highlight-text, footer .h4-style.highlight-text, footer h5.highlight-text, footer .h5-style.highlight-text, footer h6.highlight-text, footer .h6-style.highlight-text, footer p.highlight-text, footer .p-style.highlight-text, .bo-row h1.highlight-text, .bo-row .h1-style.highlight-text, .bo-row h2.highlight-text, .bo-row .h2-style.highlight-text, .bo-row h3.highlight-text, .bo-row .h3-style.highlight-text, .bo-row h4.highlight-text, .bo-row .h4-style.highlight-text, .bo-row h5.highlight-text, .bo-row .h5-style.highlight-text, .bo-row h6.highlight-text, .bo-row .h6-style.highlight-text, .bo-row p.highlight-text, .bo-row .p-style.highlight-text {
  border-top: 1px solid rgb(16, 16, 36);
  border-bottom: 1px solid rgb(16, 16, 36);
  font-size: 3rem;
  font-weight: 400;
  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: 1em;
}
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: 3em;
}
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.8rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  section h1.p-style, section .h1-style.p-style, section h2.p-style, section .h2-style.p-style, section h3.p-style, section .h3-style.p-style, section h4.p-style, section .h4-style.p-style, section h5.p-style, section .h5-style.p-style, section h6.p-style, section .h6-style.p-style, section p.p-style, section .p-style.p-style, .section h1.p-style, .section .h1-style.p-style, .section h2.p-style, .section .h2-style.p-style, .section h3.p-style, .section .h3-style.p-style, .section h4.p-style, .section .h4-style.p-style, .section h5.p-style, .section .h5-style.p-style, .section h6.p-style, .section .h6-style.p-style, .section p.p-style, .section .p-style.p-style, footer h1.p-style, footer .h1-style.p-style, footer h2.p-style, footer .h2-style.p-style, footer h3.p-style, footer .h3-style.p-style, footer h4.p-style, footer .h4-style.p-style, footer h5.p-style, footer .h5-style.p-style, footer h6.p-style, footer .h6-style.p-style, footer p.p-style, footer .p-style.p-style, .bo-row h1.p-style, .bo-row .h1-style.p-style, .bo-row h2.p-style, .bo-row .h2-style.p-style, .bo-row h3.p-style, .bo-row .h3-style.p-style, .bo-row h4.p-style, .bo-row .h4-style.p-style, .bo-row h5.p-style, .bo-row .h5-style.p-style, .bo-row h6.p-style, .bo-row .h6-style.p-style, .bo-row p.p-style, .bo-row .p-style.p-style {
    font-size: 1.8rem;
  }
}
section div.hr-button, .section div.hr-button, footer div.hr-button, .bo-row div.hr-button {
  display: inline-block;
  margin: 30px 0;
  max-width: 800px;
  overflow: hidden;
  width: 100%;
}
section div.hr-button a, .section div.hr-button a, footer div.hr-button a, .bo-row div.hr-button a {
  border: 2px solid rgb(75, 160, 216);
  border-radius: 50px;
  color: rgb(75, 160, 216);
  display: inline-block;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 3px 50px;
  position: relative;
  text-transform: uppercase;
}
section div.hr-button a::before, section div.hr-button a::after, .section div.hr-button a::before, .section div.hr-button a::after, footer div.hr-button a::before, footer div.hr-button a::after, .bo-row div.hr-button a::before, .bo-row div.hr-button a::after {
  background-color: rgb(75, 160, 216);
  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:focus, .section div.hr-button a:hover, .section div.hr-button a:focus, footer div.hr-button a:hover, footer div.hr-button a:focus, .bo-row div.hr-button a:hover, .bo-row div.hr-button a:focus {
  background-color: rgb(75, 160, 216);
  color: white;
}
section div.hr-button a:hover::before, section div.hr-button a:focus::before, .section div.hr-button a:hover::before, .section div.hr-button a:focus::before, footer div.hr-button a:hover::before, footer div.hr-button a:focus::before, .bo-row div.hr-button a:hover::before, .bo-row div.hr-button a:focus::before {
  left: 100%;
}
section div.hr-button a:hover::after, section div.hr-button a:focus::after, .section div.hr-button a:hover::after, .section div.hr-button a:focus::after, footer div.hr-button a:hover::after, footer div.hr-button a:focus::after, .bo-row div.hr-button a:hover::after, .bo-row div.hr-button a:focus::after {
  right: 100%;
}
section a.button.square, section div.button.square, section button.button.square, section button.maf-button.square, .section a.button.square, .section div.button.square, .section button.button.square, .section button.maf-button.square, footer a.button.square, footer div.button.square, footer button.button.square, footer button.maf-button.square, .bo-row a.button.square, .bo-row div.button.square, .bo-row button.button.square, .bo-row button.maf-button.square {
  border: 1px solid rgb(14, 56, 85);
  border-radius: 0;
  color: rgb(14, 56, 85);
}
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 a.button.square:focus, section div.button.square:hover, section div.button.square:focus, section button.button.square:hover, section button.button.square:focus, section button.maf-button.square:hover, section button.maf-button.square:focus, .section a.button.square:hover, .section a.button.square:focus, .section div.button.square:hover, .section div.button.square:focus, .section button.button.square:hover, .section button.button.square:focus, .section button.maf-button.square:hover, .section button.maf-button.square:focus, footer a.button.square:hover, footer a.button.square:focus, footer div.button.square:hover, footer div.button.square:focus, footer button.button.square:hover, footer button.button.square:focus, footer button.maf-button.square:hover, footer button.maf-button.square:focus, .bo-row a.button.square:hover, .bo-row a.button.square:focus, .bo-row div.button.square:hover, .bo-row div.button.square:focus, .bo-row button.button.square:hover, .bo-row button.button.square:focus, .bo-row button.maf-button.square:hover, .bo-row button.maf-button.square:focus {
  background-color: rgb(14, 56, 85);
  color: white;
}
section a.button.light, section div.button.light, section button.button.light, section button.maf-button.light, .section a.button.light, .section div.button.light, .section button.button.light, .section button.maf-button.light, footer a.button.light, footer div.button.light, footer button.button.light, footer button.maf-button.light, .bo-row a.button.light, .bo-row div.button.light, .bo-row button.button.light, .bo-row button.maf-button.light {
  background-color: rgb(75, 160, 216);
}
section a.button.light::before, section a.button.light::after, section div.button.light::before, section div.button.light::after, section button.button.light::before, section button.button.light::after, section button.maf-button.light::before, section button.maf-button.light::after, .section a.button.light::before, .section a.button.light::after, .section div.button.light::before, .section div.button.light::after, .section button.button.light::before, .section button.button.light::after, .section button.maf-button.light::before, .section button.maf-button.light::after, footer a.button.light::before, footer a.button.light::after, footer div.button.light::before, footer div.button.light::after, footer button.button.light::before, footer button.button.light::after, footer button.maf-button.light::before, footer button.maf-button.light::after, .bo-row a.button.light::before, .bo-row a.button.light::after, .bo-row div.button.light::before, .bo-row div.button.light::after, .bo-row button.button.light::before, .bo-row button.button.light::after, .bo-row button.maf-button.light::before, .bo-row button.maf-button.light::after {
  background-color: rgb(14, 56, 85);
}
section a.button.chev-point, section div.button.chev-point, section button.button.chev-point, section button.maf-button.chev-point, .section a.button.chev-point, .section div.button.chev-point, .section button.button.chev-point, .section button.maf-button.chev-point, footer a.button.chev-point, footer div.button.chev-point, footer button.button.chev-point, footer button.maf-button.chev-point, .bo-row a.button.chev-point, .bo-row div.button.chev-point, .bo-row button.button.chev-point, .bo-row button.maf-button.chev-point {
  background-color: transparent;
  border: 0;
  color: rgb(100, 11, 9);
  box-shadow: none;
  line-height: 1;
  padding: 15px 18px 15px 0;
  position: relative;
}
section a.button.chev-point::after, section div.button.chev-point::after, section button.button.chev-point::after, section button.maf-button.chev-point::after, .section a.button.chev-point::after, .section div.button.chev-point::after, .section button.button.chev-point::after, .section button.maf-button.chev-point::after, footer a.button.chev-point::after, footer div.button.chev-point::after, footer button.button.chev-point::after, footer button.maf-button.chev-point::after, .bo-row a.button.chev-point::after, .bo-row div.button.chev-point::after, .bo-row button.button.chev-point::after, .bo-row button.maf-button.chev-point::after {
  background-color: transparent;
  border: 3px solid rgb(100, 11, 9);
  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 a.button.chev-point:focus::after, section div.button.chev-point:hover::after, section div.button.chev-point:focus::after, section button.button.chev-point:hover::after, section button.button.chev-point:focus::after, section button.maf-button.chev-point:hover::after, section button.maf-button.chev-point:focus::after, .section a.button.chev-point:hover::after, .section a.button.chev-point:focus::after, .section div.button.chev-point:hover::after, .section div.button.chev-point:focus::after, .section button.button.chev-point:hover::after, .section button.button.chev-point:focus::after, .section button.maf-button.chev-point:hover::after, .section button.maf-button.chev-point:focus::after, footer a.button.chev-point:hover::after, footer a.button.chev-point:focus::after, footer div.button.chev-point:hover::after, footer div.button.chev-point:focus::after, footer button.button.chev-point:hover::after, footer button.button.chev-point:focus::after, footer button.maf-button.chev-point:hover::after, footer button.maf-button.chev-point:focus::after, .bo-row a.button.chev-point:hover::after, .bo-row a.button.chev-point:focus::after, .bo-row div.button.chev-point:hover::after, .bo-row div.button.chev-point:focus::after, .bo-row button.button.chev-point:hover::after, .bo-row button.button.chev-point:focus::after, .bo-row button.maf-button.chev-point:hover::after, .bo-row button.maf-button.chev-point:focus::after {
  top: 46%;
}
section a.button.dl-pdf, section div.button.dl-pdf, section button.button.dl-pdf, section button.maf-button.dl-pdf, .section a.button.dl-pdf, .section div.button.dl-pdf, .section button.button.dl-pdf, .section button.maf-button.dl-pdf, footer a.button.dl-pdf, footer div.button.dl-pdf, footer button.button.dl-pdf, footer button.maf-button.dl-pdf, .bo-row a.button.dl-pdf, .bo-row div.button.dl-pdf, .bo-row button.button.dl-pdf, .bo-row button.maf-button.dl-pdf {
  background-color: transparent;
  border: 0;
  color: rgb(75, 160, 216);
  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 a.button.dl-pdf:focus, section div.button.dl-pdf:hover, section div.button.dl-pdf:focus, section button.button.dl-pdf:hover, section button.button.dl-pdf:focus, section button.maf-button.dl-pdf:hover, section button.maf-button.dl-pdf:focus, .section a.button.dl-pdf:hover, .section a.button.dl-pdf:focus, .section div.button.dl-pdf:hover, .section div.button.dl-pdf:focus, .section button.button.dl-pdf:hover, .section button.button.dl-pdf:focus, .section button.maf-button.dl-pdf:hover, .section button.maf-button.dl-pdf:focus, footer a.button.dl-pdf:hover, footer a.button.dl-pdf:focus, footer div.button.dl-pdf:hover, footer div.button.dl-pdf:focus, footer button.button.dl-pdf:hover, footer button.button.dl-pdf:focus, footer button.maf-button.dl-pdf:hover, footer button.maf-button.dl-pdf:focus, .bo-row a.button.dl-pdf:hover, .bo-row a.button.dl-pdf:focus, .bo-row div.button.dl-pdf:hover, .bo-row div.button.dl-pdf:focus, .bo-row button.button.dl-pdf:hover, .bo-row button.button.dl-pdf:focus, .bo-row button.maf-button.dl-pdf:hover, .bo-row button.maf-button.dl-pdf:focus {
  background-color: white;
}
section a.button.dl-pdf:hover::before, section a.button.dl-pdf:focus::before, section div.button.dl-pdf:hover::before, section div.button.dl-pdf:focus::before, section button.button.dl-pdf:hover::before, section button.button.dl-pdf:focus::before, section button.maf-button.dl-pdf:hover::before, section button.maf-button.dl-pdf:focus::before, .section a.button.dl-pdf:hover::before, .section a.button.dl-pdf:focus::before, .section div.button.dl-pdf:hover::before, .section div.button.dl-pdf:focus::before, .section button.button.dl-pdf:hover::before, .section button.button.dl-pdf:focus::before, .section button.maf-button.dl-pdf:hover::before, .section button.maf-button.dl-pdf:focus::before, footer a.button.dl-pdf:hover::before, footer a.button.dl-pdf:focus::before, footer div.button.dl-pdf:hover::before, footer div.button.dl-pdf:focus::before, footer button.button.dl-pdf:hover::before, footer button.button.dl-pdf:focus::before, footer button.maf-button.dl-pdf:hover::before, footer button.maf-button.dl-pdf:focus::before, .bo-row a.button.dl-pdf:hover::before, .bo-row a.button.dl-pdf:focus::before, .bo-row div.button.dl-pdf:hover::before, .bo-row div.button.dl-pdf:focus::before, .bo-row button.button.dl-pdf:hover::before, .bo-row button.button.dl-pdf:focus::before, .bo-row button.maf-button.dl-pdf:hover::before, .bo-row button.maf-button.dl-pdf:focus::before {
  animation: point-d 1.5s ease-out infinite;
}
section a.button.tri-box, section div.button.tri-box, section button.button.tri-box, section button.maf-button.tri-box, .section a.button.tri-box, .section div.button.tri-box, .section button.button.tri-box, .section button.maf-button.tri-box, footer a.button.tri-box, footer div.button.tri-box, footer button.button.tri-box, footer button.maf-button.tri-box, .bo-row a.button.tri-box, .bo-row div.button.tri-box, .bo-row button.button.tri-box, .bo-row button.maf-button.tri-box {
  background-color: rgb(14, 56, 85);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: white;
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: flex-start;
  min-height: 42px;
  min-width: 0;
  padding: 5px 50px 5px 20px;
  text-transform: uppercase;
  width: 100%;
}
section a.button.tri-box::before, section div.button.tri-box::before, section button.button.tri-box::before, section button.maf-button.tri-box::before, .section a.button.tri-box::before, .section div.button.tri-box::before, .section button.button.tri-box::before, .section button.maf-button.tri-box::before, footer a.button.tri-box::before, footer div.button.tri-box::before, footer button.button.tri-box::before, footer button.maf-button.tri-box::before, .bo-row a.button.tri-box::before, .bo-row div.button.tri-box::before, .bo-row button.button.tri-box::before, .bo-row button.maf-button.tri-box::before {
  background-color: rgb(75, 160, 216);
  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 a.button.tri-box:focus, section div.button.tri-box:hover, section div.button.tri-box:focus, section button.button.tri-box:hover, section button.button.tri-box:focus, section button.maf-button.tri-box:hover, section button.maf-button.tri-box:focus, .section a.button.tri-box:hover, .section a.button.tri-box:focus, .section div.button.tri-box:hover, .section div.button.tri-box:focus, .section button.button.tri-box:hover, .section button.button.tri-box:focus, .section button.maf-button.tri-box:hover, .section button.maf-button.tri-box:focus, footer a.button.tri-box:hover, footer a.button.tri-box:focus, footer div.button.tri-box:hover, footer div.button.tri-box:focus, footer button.button.tri-box:hover, footer button.button.tri-box:focus, footer button.maf-button.tri-box:hover, footer button.maf-button.tri-box:focus, .bo-row a.button.tri-box:hover, .bo-row a.button.tri-box:focus, .bo-row div.button.tri-box:hover, .bo-row div.button.tri-box:focus, .bo-row button.button.tri-box:hover, .bo-row button.button.tri-box:focus, .bo-row button.maf-button.tri-box:hover, .bo-row button.maf-button.tri-box:focus {
  background-color: rgb(14, 56, 85);
  border-color: rgb(14, 56, 85);
}
section a.button.tri-box:hover::after, section a.button.tri-box:focus::after, section div.button.tri-box:hover::after, section div.button.tri-box:focus::after, section button.button.tri-box:hover::after, section button.button.tri-box:focus::after, section button.maf-button.tri-box:hover::after, section button.maf-button.tri-box:focus::after, .section a.button.tri-box:hover::after, .section a.button.tri-box:focus::after, .section div.button.tri-box:hover::after, .section div.button.tri-box:focus::after, .section button.button.tri-box:hover::after, .section button.button.tri-box:focus::after, .section button.maf-button.tri-box:hover::after, .section button.maf-button.tri-box:focus::after, footer a.button.tri-box:hover::after, footer a.button.tri-box:focus::after, footer div.button.tri-box:hover::after, footer div.button.tri-box:focus::after, footer button.button.tri-box:hover::after, footer button.button.tri-box:focus::after, footer button.maf-button.tri-box:hover::after, footer button.maf-button.tri-box:focus::after, .bo-row a.button.tri-box:hover::after, .bo-row a.button.tri-box:focus::after, .bo-row div.button.tri-box:hover::after, .bo-row div.button.tri-box:focus::after, .bo-row button.button.tri-box:hover::after, .bo-row button.button.tri-box:focus::after, .bo-row button.maf-button.tri-box:hover::after, .bo-row button.maf-button.tri-box:focus::after {
  right: 10px;
}
section a.button.white, section div.button.white, section button.button.white, section button.maf-button.white, .section a.button.white, .section div.button.white, .section button.button.white, .section button.maf-button.white, footer a.button.white, footer div.button.white, footer button.button.white, footer button.maf-button.white, .bo-row a.button.white, .bo-row div.button.white, .bo-row button.button.white, .bo-row button.maf-button.white {
  background-color: white;
  border-color: rgb(14, 56, 85);
  color: rgb(14, 56, 85);
}
section a.button.white:hover, section a.button.white:focus, section div.button.white:hover, section div.button.white:focus, section button.button.white:hover, section button.button.white:focus, section button.maf-button.white:hover, section button.maf-button.white:focus, .section a.button.white:hover, .section a.button.white:focus, .section div.button.white:hover, .section div.button.white:focus, .section button.button.white:hover, .section button.button.white:focus, .section button.maf-button.white:hover, .section button.maf-button.white:focus, footer a.button.white:hover, footer a.button.white:focus, footer div.button.white:hover, footer div.button.white:focus, footer button.button.white:hover, footer button.button.white:focus, footer button.maf-button.white:hover, footer button.maf-button.white:focus, .bo-row a.button.white:hover, .bo-row a.button.white:focus, .bo-row div.button.white:hover, .bo-row div.button.white:focus, .bo-row button.button.white:hover, .bo-row button.button.white:focus, .bo-row button.maf-button.white:hover, .bo-row button.maf-button.white:focus {
  background-color: rgb(14, 56, 85);
  border-color: rgb(14, 56, 85);
  color: white;
}
section a.button.blue, section div.button.blue, section button.button.blue, section button.maf-button.blue, .section a.button.blue, .section div.button.blue, .section button.button.blue, .section button.maf-button.blue, footer a.button.blue, footer div.button.blue, footer button.button.blue, footer button.maf-button.blue, .bo-row a.button.blue, .bo-row div.button.blue, .bo-row button.button.blue, .bo-row button.maf-button.blue {
  background-color: rgb(14, 56, 85);
  border-color: rgb(14, 56, 85);
  color: white;
}
section a.button.blue:hover, section a.button.blue:focus, section div.button.blue:hover, section div.button.blue:focus, section button.button.blue:hover, section button.button.blue:focus, section button.maf-button.blue:hover, section button.maf-button.blue:focus, .section a.button.blue:hover, .section a.button.blue:focus, .section div.button.blue:hover, .section div.button.blue:focus, .section button.button.blue:hover, .section button.button.blue:focus, .section button.maf-button.blue:hover, .section button.maf-button.blue:focus, footer a.button.blue:hover, footer a.button.blue:focus, footer div.button.blue:hover, footer div.button.blue:focus, footer button.button.blue:hover, footer button.button.blue:focus, footer button.maf-button.blue:hover, footer button.maf-button.blue:focus, .bo-row a.button.blue:hover, .bo-row a.button.blue:focus, .bo-row div.button.blue:hover, .bo-row div.button.blue:focus, .bo-row button.button.blue:hover, .bo-row button.button.blue:focus, .bo-row button.maf-button.blue:hover, .bo-row button.maf-button.blue:focus {
  background-color: transparent;
  color: rgb(14, 56, 85);
}
@media (prefers-reduced-motion: no-preference) {
  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;
  }
}
@media (prefers-reduced-motion: no-preference) {
  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;
  }
}
@media (prefers-reduced-motion: no-preference) {
  section.animate .cardbox .card:nth-child(1), .section.animate .cardbox .card:nth-child(1), footer.animate .cardbox .card:nth-child(1), .bo-row.animate .cardbox .card:nth-child(1) {
    transition-delay: 350ms;
  }
  section.animate .cardbox .card:nth-child(2), .section.animate .cardbox .card:nth-child(2), footer.animate .cardbox .card:nth-child(2), .bo-row.animate .cardbox .card:nth-child(2) {
    transition-delay: 700ms;
  }
  section.animate .cardbox .card:nth-child(3), .section.animate .cardbox .card:nth-child(3), footer.animate .cardbox .card:nth-child(3), .bo-row.animate .cardbox .card:nth-child(3) {
    transition-delay: 1050ms;
  }
  section.animate .cardbox .card:nth-child(4), .section.animate .cardbox .card:nth-child(4), footer.animate .cardbox .card:nth-child(4), .bo-row.animate .cardbox .card:nth-child(4) {
    transition-delay: 1400ms;
  }
  section.animate .cardbox .card:nth-child(5), .section.animate .cardbox .card:nth-child(5), footer.animate .cardbox .card:nth-child(5), .bo-row.animate .cardbox .card:nth-child(5) {
    transition-delay: 1750ms;
  }
  section.animate .cardbox .card:nth-child(6), .section.animate .cardbox .card:nth-child(6), footer.animate .cardbox .card:nth-child(6), .bo-row.animate .cardbox .card:nth-child(6) {
    transition-delay: 2100ms;
  }
  section.animate .cardbox .card:nth-child(7), .section.animate .cardbox .card:nth-child(7), footer.animate .cardbox .card:nth-child(7), .bo-row.animate .cardbox .card:nth-child(7) {
    transition-delay: 2450ms;
  }
  section.animate .cardbox .card:nth-child(8), .section.animate .cardbox .card:nth-child(8), footer.animate .cardbox .card:nth-child(8), .bo-row.animate .cardbox .card:nth-child(8) {
    transition-delay: 2800ms;
  }
  section.animate .cardbox .card:nth-child(9), .section.animate .cardbox .card:nth-child(9), footer.animate .cardbox .card:nth-child(9), .bo-row.animate .cardbox .card:nth-child(9) {
    transition-delay: 3150ms;
  }
  section.animate .cardbox .card:nth-child(10), .section.animate .cardbox .card:nth-child(10), footer.animate .cardbox .card:nth-child(10), .bo-row.animate .cardbox .card:nth-child(10) {
    transition-delay: 3500ms;
  }
  section.animate .cardbox .card:nth-child(11), .section.animate .cardbox .card:nth-child(11), footer.animate .cardbox .card:nth-child(11), .bo-row.animate .cardbox .card:nth-child(11) {
    transition-delay: 3850ms;
  }
  section.animate .cardbox .card:nth-child(12), .section.animate .cardbox .card:nth-child(12), footer.animate .cardbox .card:nth-child(12), .bo-row.animate .cardbox .card:nth-child(12) {
    transition-delay: 4200ms;
  }
  section.animate .cardbox .card:nth-child(13), .section.animate .cardbox .card:nth-child(13), footer.animate .cardbox .card:nth-child(13), .bo-row.animate .cardbox .card:nth-child(13) {
    transition-delay: 4550ms;
  }
  section.animate .cardbox .card:nth-child(14), .section.animate .cardbox .card:nth-child(14), footer.animate .cardbox .card:nth-child(14), .bo-row.animate .cardbox .card:nth-child(14) {
    transition-delay: 4900ms;
  }
  section.animate .cardbox .card:nth-child(15), .section.animate .cardbox .card:nth-child(15), footer.animate .cardbox .card:nth-child(15), .bo-row.animate .cardbox .card:nth-child(15) {
    transition-delay: 5250ms;
  }
  section.animate .cardbox .card:nth-child(16), .section.animate .cardbox .card:nth-child(16), footer.animate .cardbox .card:nth-child(16), .bo-row.animate .cardbox .card:nth-child(16) {
    transition-delay: 5600ms;
  }
  section.animate .cardbox .card:nth-child(17), .section.animate .cardbox .card:nth-child(17), footer.animate .cardbox .card:nth-child(17), .bo-row.animate .cardbox .card:nth-child(17) {
    transition-delay: 5950ms;
  }
  section.animate .cardbox .card:nth-child(18), .section.animate .cardbox .card:nth-child(18), footer.animate .cardbox .card:nth-child(18), .bo-row.animate .cardbox .card:nth-child(18) {
    transition-delay: 6300ms;
  }
  section.animate .cardbox .card:nth-child(19), .section.animate .cardbox .card:nth-child(19), footer.animate .cardbox .card:nth-child(19), .bo-row.animate .cardbox .card:nth-child(19) {
    transition-delay: 6650ms;
  }
  section.animate .cardbox .card:nth-child(20), .section.animate .cardbox .card:nth-child(20), footer.animate .cardbox .card:nth-child(20), .bo-row.animate .cardbox .card:nth-child(20) {
    transition-delay: 7000ms;
  }
  section.animate .cardbox .card:nth-child(21), .section.animate .cardbox .card:nth-child(21), footer.animate .cardbox .card:nth-child(21), .bo-row.animate .cardbox .card:nth-child(21) {
    transition-delay: 7350ms;
  }
  section.animate .cardbox .card:nth-child(22), .section.animate .cardbox .card:nth-child(22), footer.animate .cardbox .card:nth-child(22), .bo-row.animate .cardbox .card:nth-child(22) {
    transition-delay: 7700ms;
  }
  section.animate .cardbox .card:nth-child(23), .section.animate .cardbox .card:nth-child(23), footer.animate .cardbox .card:nth-child(23), .bo-row.animate .cardbox .card:nth-child(23) {
    transition-delay: 8050ms;
  }
}
section.animate.anim-1 .maf-content, section.animate.anim-1 .column, section.animate.anim-1 .row::after, .section.animate.anim-1 .maf-content, .section.animate.anim-1 .column, .section.animate.anim-1 .row::after, footer.animate.anim-1 .maf-content, footer.animate.anim-1 .column, footer.animate.anim-1 .row::after, .bo-row.animate.anim-1 .maf-content, .bo-row.animate.anim-1 .column, .bo-row.animate.anim-1 .row::after {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0);
}
section.animate.anim-2 .insta-feed, section.animate.anim-2 .cardbox .card, .section.animate.anim-2 .insta-feed, .section.animate.anim-2 .cardbox .card, footer.animate.anim-2 .insta-feed, footer.animate.anim-2 .cardbox .card, .bo-row.animate.anim-2 .insta-feed, .bo-row.animate.anim-2 .cardbox .card {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0);
}
section.animate.anim-3 .footer, .section.animate.anim-3 .footer, footer.animate.anim-3 .footer, .bo-row.animate.anim-3 .footer {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(0);
}

@keyframes bgcolourfade {
  0% {
    background: rgb(16, 16, 36);
  }
  20% {
    background: rgb(75, 160, 216);
  }
  40% {
    background: rgb(65, 65, 65);
  }
  60% {
    background: rgb(237, 244, 255);
  }
  80% {
    background: rgb(65, 65, 65);
  }
  100% {
    background: rgb(16, 16, 36);
  }
}
.bg-1 {
  background-color: rgb(237, 244, 255) !important;
}

.bg-2 {
  background-color: rgb(235, 243, 250) !important;
}

.bg-3 {
  background-color: rgb(100, 11, 9) !important;
  color: white;
}
.bg-3 h1, .bg-3 .h1-style, .bg-3 h2, .bg-3 .h2-style, .bg-3 h3, .bg-3 .h3-style, .bg-3 h4, .bg-3 .h4-style, .bg-3 h5, .bg-3 .h5-style, .bg-3 h6.h6-style {
  color: white;
}
.bg-3 p {
  color: white;
}
.bg-3 a.button.white {
  background-color: transparent;
  border-color: white;
  color: white;
}
.bg-3 a.button.white:hover, .bg-3 a.button.white:focus {
  background-color: white;
  color: rgb(100, 11, 9);
}

.bg-4 {
  background-color: rgb(19, 145, 131) !important;
  color: white;
}
.bg-4 h1, .bg-4 .h1-style, .bg-4 h2, .bg-4 .h2-style, .bg-4 h3, .bg-4 .h3-style, .bg-4 h4, .bg-4 .h4-style, .bg-4 h5, .bg-4 .h5-style, .bg-4 h6.h6-style {
  color: white;
}
.bg-4 p {
  color: white;
}
.bg-4 a.button.white {
  background-color: transparent;
  border-color: white;
  color: white;
}
.bg-4 a.button.white:hover, .bg-4 a.button.white:focus {
  background-color: white;
  color: rgb(19, 145, 131);
}

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

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

.is-main-header {
  background-color: white;
  border-bottom: 1px solid transparent;
  color: rgb(16, 16, 36);
  display: inline-block;
  height: 100px;
  padding: 0 0;
  transition: all 350ms ease-out;
  width: 100%;
  z-index: 666;
}
.is-main-header.is-fixed {
  left: 0;
  position: fixed;
  top: 0;
  transform: translateZ(0);
}
@media only screen and (min-width: 768px) {
  .is-main-header {
    height: 120px;
  }
}
.is-main-header > div.h-con {
  align-items: center;
  align-content: center;
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  position: relative;
  text-align: center;
  transition: all 350ms ease-out;
  width: 100%;
}
.is-main-header > div.h-con .ui-con {
  display: flex;
  flex: 1 1 auto;
  height: auto;
  justify-content: flex-start;
  line-height: 0;
  margin: auto;
  max-height: 100%;
  padding: 10px 0 10px 15px;
  position: relative;
  text-align: center;
  transition: all 350ms ease-out;
  z-index: 100;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con .ui-con {
    padding: 10px 0 10px 25px;
  }
}
@media only screen and (min-width: 1152px) {
  .is-main-header > div.h-con .ui-con {
    padding: 10px 0 10px 50px;
  }
}
.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: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-size: 1.5rem;
  line-height: 0;
  max-width: 100%;
  position: relative;
  text-align: left;
  width: auto;
  z-index: 102;
}
.is-main-header > div.h-con .ui-con .company-brand #logo, .is-main-header > div.h-con .ui-con .company-brand svg {
  display: inline-block;
  flex: 0 0 0;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  opacity: 1;
  width: auto;
}
.is-main-header > div.h-con .ui-con #header-ui {
  align-items: flex-end;
  color: rgb(16, 16, 36);
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0;
  margin-left: auto;
  max-width: 1600px;
  padding: 10px;
  position: absolute;
  right: 10px;
  top: 10px;
  transition: top 350ms ease-out;
  width: auto;
  z-index: 103;
}
.is-main-header > div.h-con .ui-con #header-ui .login {
  background-color: black;
  border-radius: 8px 8px 0 0;
  color: white;
  display: inline-block;
  font-size: 1.6rem;
  margin: 0 1px 0 8px;
  padding: 8px 10px 10px 10px;
  transition: all 350ms ease-out;
  transform: translateY(0);
  width: auto;
}
.is-main-header > div.h-con .ui-con #header-ui .login:hover, .is-main-header > div.h-con .ui-con #header-ui .login:focus {
  color: rgb(14, 56, 85);
  padding: 8px 10px 16px 10px;
  transform: translateY(-8px);
}
.is-main-header > div.h-con .n-con {
  align-items: flex-end;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 150px;
  padding: 0 15px;
  transition: opacity 350ms ease-out 500ms;
  width: auto;
  z-index: 101;
}
@media only screen and (min-width: 576px) {
  .is-main-header > div.h-con .n-con {
    min-width: 200px;
    padding: 0 10px 0 25px;
  }
}
@media only screen and (min-width: 1152px) {
  .is-main-header > div.h-con .n-con {
    padding: 0 35px 0 50px;
  }
}
.is-main-header > div.h-con #ss-con {
  justify-content: flex-end;
  margin-bottom: 20px;
  max-width: 350px;
  padding: 0;
  padding-right: 0;
  transition: padding-bottom 350ms ease-out;
}
@media only screen and (min-width: 768px) {
  .is-main-header > div.h-con #ss-con {
    padding-right: 15px;
  }
}
@media only screen and (min-width: 1024px) {
  .is-main-header > div.h-con #ss-con {
    margin-bottom: 0;
    padding-bottom: 10px;
  }
}
.is-main-header > div.h-con #ss-con:focus-within {
  min-width: 300px;
}
.is-main-header > div.h-con #ss-con #site-search {
  background-color: white;
  border: 1px solid rgb(14, 56, 85);
  border-radius: 0;
  box-shadow: none;
  height: 35px;
  font-size: 1.6rem;
}
.is-main-header > div.h-con #ss-con #site-search:focus {
  min-width: 260px;
}
.is-main-header > div.h-con #ss-con #site-search-go {
  box-shadow: none;
  height: 35px;
  padding: 0 8px;
}
.is-main-header.squish {
  background-color: white;
  border-color: rgb(65, 65, 65);
  height: 100px;
  top: 0;
}
.is-main-header.squish > div.h-con .n-con #ss-con {
  margin-bottom: 25px;
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .is-main-header.squish > div.h-con .n-con #ss-con {
    margin-bottom: 0;
  }
}

section .header {
  align-items: flex-start;
}
section .header p {
  max-width: 700px;
}
section .header p.page-lead {
  max-width: 800px;
}
section .header .maf-content {
  align-items: flex-start;
  text-align: left;
}
section.is-hero {
  background-color: rgb(235, 243, 250);
  border-top: 1px solid rgb(186, 186, 186);
  border-bottom: 1px solid rgb(186, 186, 186);
  min-height: 241px;
  position: relative;
  transition: all 350ms ease-out;
}
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 {
  font-weight: 400;
  margin-bottom: 20px;
}
section.is-hero p {
  max-width: 650px;
}
section.is-hero #hero-logo {
  display: none;
  margin: auto;
  transition: all 350ms ease-out;
}
section.is-hero #hero-logo p {
  display: inline-block;
}
section.is-hero > .maf-background {
  background-image: url("/images/Layout/hero-pg-bg.png");
  background-position: right;
  background-size: auto 100%;
  transition: opacity 350ms ease-out;
}
section.is-hero .row {
  flex-direction: row;
  justify-content: flex-start;
  transition: opacity 350ms ease-out;
}
section.is-hero .row .column {
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
  overflow: visible;
  text-align: left;
}
section.is-hero .row .column.maf-col-1 {
  flex: 0 0 auto;
  max-width: 100%;
  position: relative;
  width: auto;
}
section.is-hero .row .column.maf-col-1::after {
  background-image: url("/images/Layout/hero-title-block.png");
  background-position: right;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 100%;
  opacity: 0.8;
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100vw + 150px);
}
section.is-hero .row .column.maf-col-1 .maf-content {
  position: relative;
  width: auto;
}
section.is-hero .row .column.maf-col-1 .maf-content > * {
  text-shadow: 0 0 3px rgb(235, 243, 250);
}
body.is-home section.is-hero {
  background-color: white;
  background-image: none;
  min-height: 100vh;
}
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 {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 2.5rem;
  color: rgb(14, 56, 85);
}
@media only screen and (min-width: 576px) {
  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 {
    font-size: 3rem;
  }
}
body.is-home section.is-hero > .maf-background {
  background-image: none;
  background-position: center;
  background-size: cover;
  opacity: 1;
}
body.is-home section.is-hero .row {
  padding: 0;
  padding-top: 40px;
  padding-top: 20px;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 576px) {
  body.is-home section.is-hero .row {
    padding: 0 25px;
    padding-top: 85px;
  }
}
@media only screen and (min-width: 960px) {
  body.is-home section.is-hero .row {
    padding: 0 50px;
    padding-top: 85px;
  }
}
body.is-home section.is-hero .row .column.maf-col-1 {
  flex: 1 1 auto;
  justify-content: space-around;
  padding-top: 10px;
  padding-bottom: 110px;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  body.is-home section.is-hero .row .column.maf-col-1 {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 960px) {
  body.is-home section.is-hero .row .column.maf-col-1 {
    padding-bottom: 0;
  }
}
body.is-home section.is-hero .row .column.maf-col-1::after {
  display: none;
}
body.is-home section.is-hero .row .column.maf-col-1 .maf-content.prtl {
  cursor: pointer;
  margin: 0;
  padding: 20px;
  max-width: 440px;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  body.is-home section.is-hero .row .column.maf-col-1 .maf-content.prtl {
    border: 1px solid rgb(65, 65, 65);
    margin: 25px 0;
  }
}
body.is-home section.is-hero .row .column.maf-col-1 .maf-content.prtl p {
  font-weight: 400;
  max-width: 360px;
}
body.is-home section.is-hero .row .column.maf-col-1 .maf-content.prtl p .button {
  margin-top: 0;
}
body.is-home section.is-hero .row .column.maf-col-1 .maf-content.prtl > * {
  text-shadow: none;
}
body.is-home section.is-hero .row .column.maf-col-1 .maf-content.prtl:hover, body.is-home section.is-hero .row .column.maf-col-1 .maf-content.prtl:focus {
  background-color: rgba(255, 255, 255, 0.7);
  border-color: rgb(14, 56, 85);
  transform: translateY(8px) scale(1.05);
}
body.is-home section.is-hero .row .column.maf-col-1 .maf-content.prtl:hover .button, body.is-home section.is-hero .row .column.maf-col-1 .maf-content.prtl:focus .button {
  background-color: transparent;
  color: rgb(100, 11, 9);
}
body.is-home section.is-hero .row .column.maf-col-1 .maf-content.prtl:hover:last-child, body.is-home section.is-hero .row .column.maf-col-1 .maf-content.prtl:focus:last-child {
  transform: translateY(-8px) scale(1.05);
}
body.is-home section.is-hero .row .column.maf-col-1 > .maf-sprite-layer {
  overflow: visible;
  text-align: right;
}
body.is-home section.is-hero .row .column.maf-col-1 > .maf-sprite-layer #hero-spr1 {
  bottom: 0;
  display: inline-block;
  max-width: 877px;
  opacity: 0;
  position: absolute;
  right: 3%;
  width: 54.4666%;
}
@media (prefers-reduced-motion: no-preference) {
  body.is-home section.is-hero .row .column.maf-col-1 > .maf-sprite-layer #hero-spr1 {
    opacity: 1;
  }
}
body.is-home section.is-hero .row .column.maf-col-1 > .maf-sprite-layer #hero-spr2 {
  bottom: 0.65%;
  display: inline-block;
  max-width: 145px;
  opacity: 0;
  position: absolute;
  right: 30%;
  transition: all 350ms ease-out;
  width: 10.4666%;
}
@media (prefers-reduced-motion: no-preference) {
  body.is-home section.is-hero .row .column.maf-col-1 > .maf-sprite-layer #hero-spr2 {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  body.is-home section.is-hero .row .column.maf-col-1 > .maf-sprite-layer #hero-spr2.active {
    filter: drop-shadow(0 0 5px rgba(30, 123, 191, 0.5));
    max-width: 157px;
    width: 12%;
  }
}
body.is-home section.is-hero .row .column.maf-col-1 > .maf-sprite-layer #hero-spr3 {
  bottom: 0.65%;
  display: inline-block;
  max-width: 168px;
  opacity: 0;
  position: absolute;
  right: 19.3%;
  transition: all 350ms ease-out;
  width: 11.2%;
}
@media (prefers-reduced-motion: no-preference) {
  body.is-home section.is-hero .row .column.maf-col-1 > .maf-sprite-layer #hero-spr3 {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  body.is-home section.is-hero .row .column.maf-col-1 > .maf-sprite-layer #hero-spr3.active {
    filter: drop-shadow(0 0 5px rgba(30, 123, 191, 0.5));
    max-width: 178px;
    width: 14%;
  }
}
body.is-home section.is-hero .row .column.maf-col-hh {
  align-items: flex-end;
  align-self: flex-end;
  flex: 0 0 auto;
  padding: 27px 0 20px 0;
  text-align: right;
}
body.is-home section.is-hero .row .column.maf-col-hh .maf-content {
  align-items: flex-end;
  margin-right: 6.666%;
}
body.is-home section.is-hero .row .column.maf-col-hh .maf-content > * {
  opacity: 1;
  transition: opacity 700ms ease-out;
}
body.is-home section.is-hero .row .column.maf-col-hh .maf-content > *:nth-child(1n) {
  transition-delay: 800ms;
}
body.is-home section.is-hero .row .column.maf-col-hh .maf-content > *:nth-child(2n) {
  transition-delay: 1100ms;
}
body.is-home section.is-hero .row .column.maf-col-hh .maf-content > *:nth-child(3n) {
  transition-delay: 1400ms;
}
body.is-home section.is-hero .row .column.maf-col-hh .maf-content > *:nth-child(4n) {
  transition-delay: 1700ms;
}
body.is-home section.is-hero .row .column.maf-col-hh .maf-content > *:nth-child(5n) {
  transition-delay: 2000ms;
}
body.is-home section.is-hero .row .column.maf-col-hh .maf-content p {
  margin: 0;
}
body.is-home section.is-hero .row .column.maf-col-hh .maf-content h1 {
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0;
}
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.animate.anim-1 .row .column.maf-col-1 > .maf-sprite-layer #hero-spr1 {
  opacity: 1;
}
body.is-home section.is-hero.animate.anim-1 .row .column.maf-col-1 > .maf-sprite-layer #hero-spr2 {
  opacity: 1;
}
body.is-home section.is-hero.animate.anim-1 .row .column.maf-col-1 > .maf-sprite-layer #hero-spr3 {
  opacity: 1;
}
body.is-home section.is-hero.edit .row .column.maf-col-1 > .maf-sprite-layer #hero-spr1 {
  opacity: 1;
}
body.is-home section.is-hero.edit .row .column.maf-col-1 > .maf-sprite-layer #hero-spr2 {
  opacity: 1;
}
body.is-home section.is-hero.edit .row .column.maf-col-1 > .maf-sprite-layer #hero-spr3 {
  opacity: 1;
}
body.is-home section.is-hero.below-nav {
  min-height: calc(100vh - 100px);
}
@media only screen and (min-width: 768px) {
  body.is-home section.is-hero.below-nav {
    min-height: calc(100vh - 120px);
  }
}
body.is-home section.is-hero.below-nav.squish {
  min-height: calc(100vh - 100px);
}
body.manageable-bo section.is-hero > .maf-background {
  margin: 0;
}
body.manageable-bo section.is-hero .row {
  padding-top: 0;
}
section.is-hero.slideshow > .maf-background {
  background-image: none;
}
section.is-hero.slideshow .flickity-slideshow, section.is-hero.slideshow .flickity-slideshow-edit {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-background, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-background {
  background-position: bottom right;
  background-size: 100% auto;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content {
  align-items: flex-start;
  max-width: 1600px;
  position: relative;
}
section.is-hero.slideshow .flickity-slideshow .ss-slide .maf-content > *, section.is-hero.slideshow .flickity-slideshow-edit .ss-slide .maf-content > * {
  max-width: 450px;
}
section.one-column {
  border-bottom: 1px solid rgb(186, 186, 186);
}
section.one-column p {
  max-width: 700px;
}
section.one-column p.page-lead {
  max-width: 900px;
}
section.one-column .row .column .maf-content {
  align-items: flex-start;
  text-align: left;
}
section.one-column.brands hr {
  border-color: rgb(75, 160, 216);
  max-width: 126px;
}
section.one-column.brands .row .column {
  padding-top: 2em;
}
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 {
  margin: 20px 30px;
  width: auto;
}
section.one-column.bg-right .maf-background {
  background-position: right;
}
section.one-column.bg-right .row .column {
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
section.one-column.bg-right .row .column .maf-content {
  align-items: flex-start;
  max-width: 505px;
}
section.one-column.bg-left {
  min-height: 666px;
}
section.one-column.bg-left .maf-background {
  background-position: right;
}
section.one-column.bg-left .row .column {
  justify-content: center;
  text-align: left;
}
@media only screen and (min-width: 1024px) {
  section.one-column.bg-left .row .column {
    align-items: flex-end;
  }
}
section.one-column.bg-left .row .column .maf-content {
  align-items: flex-start;
  max-width: 600px;
}
section.one-column.video .row {
  max-width: none;
  padding: 0;
}
section.one-column.video .row .column {
  padding: 0;
}
section.one-column.video .row .column .maf-content {
  max-width: none;
}
section.one-column.full-width p {
  max-width: none;
}
section.one-column.nhs-app, section.one-column.is-widget {
  background-image: url("/images/Layout/nhs-app-bg.png");
  background-position: bottom;
  background-size: 100% auto;
  border-top: 1px solid rgb(186, 186, 186);
  min-height: 780px;
}
section.one-column.nhs-app h1, section.one-column.nhs-app .h1-style, section.one-column.nhs-app h2, section.one-column.nhs-app .h2-style, section.one-column.nhs-app h3, section.one-column.nhs-app .h3-style, section.one-column.nhs-app h4, section.one-column.nhs-app .h4-style, section.one-column.nhs-app h5, section.one-column.nhs-app .h5-style, section.one-column.nhs-app h6.h6-style, section.one-column.is-widget h1, section.one-column.is-widget .h1-style, section.one-column.is-widget h2, section.one-column.is-widget .h2-style, section.one-column.is-widget h3, section.one-column.is-widget .h3-style, section.one-column.is-widget h4, section.one-column.is-widget .h4-style, section.one-column.is-widget h5, section.one-column.is-widget .h5-style, section.one-column.is-widget h6.h6-style {
  color: rgb(14, 56, 85);
}
section.one-column.nhs-app > .maf-sprite-layer, section.one-column.is-widget > .maf-sprite-layer {
  align-content: flex-end;
  align-items: flex-end;
  display: flex;
  justify-content: flex-end;
}
section.one-column.nhs-app > .maf-sprite-layer img, section.one-column.is-widget > .maf-sprite-layer img {
  margin-right: 6.25vw;
  max-height: 100%;
  max-width: 268px;
  width: 16.75vw;
}
section.one-column.nhs-app .row .column, section.one-column.is-widget .row .column {
  padding-bottom: 180px;
}
@media only screen and (min-width: 768px) {
  section.one-column.nhs-app .row .column, section.one-column.is-widget .row .column {
    padding-bottom: 80px;
  }
}
section.one-column.vid-embed {
  background-image: url("/images/Layout/embed-vid-bg.png");
  background-position: bottom;
  background-size: 100% auto;
  border-top: 1px solid rgb(186, 186, 186);
  min-height: 780px;
}
section.one-column.vid-embed h1, section.one-column.vid-embed .h1-style, section.one-column.vid-embed h2, section.one-column.vid-embed .h2-style, section.one-column.vid-embed h3, section.one-column.vid-embed .h3-style, section.one-column.vid-embed h4, section.one-column.vid-embed .h4-style, section.one-column.vid-embed h5, section.one-column.vid-embed .h5-style, section.one-column.vid-embed h6.h6-style {
  color: rgb(14, 56, 85);
}
section.one-column.vid-embed p {
  color: rgb(65, 65, 65);
}
section.one-column.vid-embed > .maf-sprite-layer .vid-embed-spr1 {
  bottom: 0;
  max-width: 196px;
  position: absolute;
  right: 9.875vw;
  width: 12.25vw;
}
section.one-column.vid-embed .row .column {
  align-items: flex-start;
}
section.one-column.vid-embed .row .column .maf-content {
  max-width: 700px;
}
section.one-column.quote {
  border-top: 1px solid rgb(186, 186, 186);
  font-size: 1.8rem;
}
section.one-column.quote p {
  line-height: 1.4;
  max-width: none;
}
section.one-column.quote p:not(:first-child):last-child {
  color: rgb(65, 65, 65);
  font-size: 1.4rem;
  margin-top: 45px;
}
section.one-column.quote > .maf-sprite-layer #quote-spr1 {
  bottom: 0;
  max-width: 414px;
  position: absolute;
  right: 0;
  width: 25.875vw;
}
section.one-column.quote .row .column {
  padding-top: 110px;
  padding-bottom: 100px;
}
section.one-column.quote .row .column .maf-content {
  max-width: 800px;
}
section.one-column.intro h1, section.one-column.intro .h1-style, section.one-column.intro h2, section.one-column.intro .h2-style, section.one-column.intro h3, section.one-column.intro .h3-style, section.one-column.intro h4, section.one-column.intro .h4-style, section.one-column.intro h5, section.one-column.intro .h5-style, section.one-column.intro h6.h6-style {
  font-weight: 400;
  margin-bottom: 1em;
}
section.one-column.intro p {
  max-width: none;
}
section.one-column.intro p.page-lead {
  margin-bottom: 2em;
}
section.one-column.intro > .maf-sprite-layer {
  align-content: flex-end;
  align-items: flex-end;
  display: flex;
  justify-content: flex-end;
}
section.one-column.intro > .maf-sprite-layer img {
  max-height: 100%;
  max-width: 605px;
  width: 37.8125vw;
}
section.one-column.intro .row {
  padding-bottom: 150px;
}
@media only screen and (min-width: 960px) {
  section.one-column.intro .row {
    padding-bottom: 0;
  }
}
section.one-column.intro .row .column {
  align-items: flex-start;
}
@media only screen and (min-width: 960px) {
  section.one-column.intro .row .column {
    padding-top: 100px;
  }
}
section.one-column.intro .row .column .maf-content {
  max-width: 700px;
}
section.one-column.covid-widget {
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 3000px;
}
section.one-column.covid-widget .row {
  max-width: 100%;
  padding: 0;
  margin: 0;
}
section.one-column.covid-widget .row .column {
  padding: 0 50px;
}
section.two-column p, section.two-column li {
  color: rgb(65, 65, 65);
}
section.two-column .row {
  padding: 0;
  padding-top: 40px;
}
@media only screen and (min-width: 576px) {
  section.two-column .row {
    padding: 0 25px;
    padding-top: 85px;
  }
}
@media only screen and (min-width: 960px) {
  section.two-column .row {
    padding: 0 50px;
    padding-top: 85px;
  }
}
section.two-column .row .column {
  padding: 40px 25px;
  padding-top: 0;
  justify-content: flex-start;
}
@media only screen and (min-width: 960px) {
  section.two-column .row .column {
    padding: 85px 50px;
    padding-top: 0;
  }
}
section.two-column .row .column .maf-content {
  align-items: flex-start;
  justify-content: center;
}
section.two-column .row .column .maf-content > div {
  width: 100%;
}
section.two-column.full-width .row {
  max-width: none;
}
section.two-column.maf-col-bg-full {
  padding: 0;
}
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 {
  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 {
    max-width: 700px;
  }
}
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 {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.maf-col-bg-full .row .column.maf-col-2 {
    align-items: flex-start;
  }
}
section.two-column.maf-col-bg-full .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 {
    min-height: 50vw;
  }
}
section.two-column.maf-col-bg-full.full-width .row .column .maf-col-i {
  max-width: none;
}
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 {
  max-height: 100%;
  max-width: 55%;
}
section.two-column.bg-left .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  section.two-column.bg-left .row {
    flex-direction: row;
  }
}
section.two-column.bg-left .row .column {
  padding-bottom: 25px;
}
section.two-column.bg-left .row .column .maf-col-i {
  justify-content: center;
}
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 {
  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 {
  height: auto;
  width: 100%;
}
section.two-column.bg-left .row .column.maf-col-1 .maf-col-i {
  color: white;
  max-width: 684px;
  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 {
    right: 0;
    transform: translate(0, -50%);
  }
}
section.two-column.img-right > .maf-background {
  background-position: right;
}
section.two-column.img-right .row > .maf-background {
  background-position: right;
}
section.two-column.img-right .row .column.maf-col-2 {
  min-height: 500px;
}
@media only screen and (min-width: 1024px) {
  section.two-column.img-right .row .column.maf-col-2 {
    min-height: 0;
  }
}
section.two-column.img-left > .maf-background {
  background-position: left;
}
section.two-column.img-left .row > .maf-background {
  background-position: left;
}
@media only screen and (min-width: 1024px) {
  section.two-column.img-left .row .column.maf-col-2 {
    align-items: flex-start;
    padding-left: 0;
  }
}
section.two-column.img-left.round .row .column.maf-col-1 .maf-content p img {
  border-radius: 50%;
}
section.two-column.maf-rep-pad .row {
  padding: 0;
  padding-top: 40px;
}
@media only screen and (min-width: 576px) {
  section.two-column.maf-rep-pad .row {
    padding: 0 25px;
    padding-top: 85px;
  }
}
@media only screen and (min-width: 960px) {
  section.two-column.maf-rep-pad .row {
    padding: 0 50px;
    padding-top: 85px;
  }
}
section.two-column.maf-rep-pad .row .column {
  padding: 40px 25px;
  padding-top: 0;
}
@media only screen and (min-width: 960px) {
  section.two-column.maf-rep-pad .row .column {
    padding: 85px 50px;
    padding-top: 0;
  }
}
section.two-column.maf-h-h .header {
  padding-bottom: 50px;
}
section.two-column.app-callout, section.two-column.app-callout-smoke {
  border-top: 1px solid rgb(186, 186, 186);
}
section.two-column.app-callout > .maf-background, section.two-column.app-callout-smoke > .maf-background {
  background-image: url("/images/Layout/app-callout-bg.png");
  background-position: bottom;
}
section.two-column.app-callout > .maf-sprite-layer #app-call-spr1, section.two-column.app-callout-smoke > .maf-sprite-layer #app-call-spr1 {
  bottom: 0;
  display: inline-block;
  left: -100vw;
  max-width: 385px;
  position: absolute;
  transform: rotate(-40deg);
  transition: all 1200ms ease-out 350ms;
  width: 24.0625vw;
}
@media (prefers-reduced-motion: reduce) {
  section.two-column.app-callout > .maf-sprite-layer #app-call-spr1, section.two-column.app-callout-smoke > .maf-sprite-layer #app-call-spr1 {
    left: 12.5vw;
    transform: rotate(0);
  }
}
section.two-column.app-callout > .maf-sprite-layer #app-call-spr2, section.two-column.app-callout-smoke > .maf-sprite-layer #app-call-spr2 {
  bottom: -500px;
  left: 20vw;
  max-width: 580px;
  position: absolute;
  transition: all 1200ms ease-out 700ms;
  width: 36.25vw;
}
@media (prefers-reduced-motion: reduce) {
  section.two-column.app-callout > .maf-sprite-layer #app-call-spr2, section.two-column.app-callout-smoke > .maf-sprite-layer #app-call-spr2 {
    bottom: 0;
    left: 12.5vw;
  }
}
section.two-column.app-callout .row, section.two-column.app-callout-smoke .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  section.two-column.app-callout .row, section.two-column.app-callout-smoke .row {
    flex-direction: row;
  }
}
section.two-column.app-callout .row .column.maf-col-1, section.two-column.app-callout-smoke .row .column.maf-col-1 {
  min-height: 150px;
}
section.two-column.app-callout.anim-2 > .maf-sprite-layer #app-call-spr1, section.two-column.app-callout-smoke.anim-2 > .maf-sprite-layer #app-call-spr1 {
  left: 12.5vw;
  transform: rotate(0);
}
section.two-column.app-callout.anim-3 > .maf-sprite-layer #app-call-spr2, section.two-column.app-callout-smoke.anim-3 > .maf-sprite-layer #app-call-spr2 {
  bottom: 0;
  left: 12.5vw;
}
section.two-column.app-callout.edit > .maf-sprite-layer #app-call-spr1, section.two-column.app-callout-smoke.edit > .maf-sprite-layer #app-call-spr1 {
  left: 12.5vw;
  transform: rotate(0);
}
section.two-column.app-callout.edit > .maf-sprite-layer #app-call-spr2, section.two-column.app-callout-smoke.edit > .maf-sprite-layer #app-call-spr2 {
  bottom: 0;
  left: 12.5vw;
}
section.two-column.staff-callout {
  border: 1px solid rgb(186, 186, 186);
  min-height: 650px;
}
section.two-column.staff-callout h1, section.two-column.staff-callout .h1-style, section.two-column.staff-callout h2, section.two-column.staff-callout .h2-style, section.two-column.staff-callout h3, section.two-column.staff-callout .h3-style, section.two-column.staff-callout h4, section.two-column.staff-callout .h4-style, section.two-column.staff-callout h5, section.two-column.staff-callout .h5-style, section.two-column.staff-callout h6.h6-style {
  font-weight: 400;
}
section.two-column.staff-callout p.page-lead {
  font-weight: 400;
}
section.two-column.staff-callout > .maf-background {
  background-position: bottom;
}
section.two-column.staff-callout > .maf-sprite-layer #staff-call-spr1 {
  bottom: 0;
  left: 15.625vw;
  max-width: 471px;
  position: absolute;
  width: 29.4375vw;
}
section.two-column.staff-callout .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  section.two-column.staff-callout .row {
    flex-direction: row;
  }
}
section.two-column.red-callout {
  background-color: rgb(100, 11, 9);
  color: white;
}
section.two-column.red-callout h1, section.two-column.red-callout .h1-style, section.two-column.red-callout h2, section.two-column.red-callout .h2-style, section.two-column.red-callout h3, section.two-column.red-callout .h3-style, section.two-column.red-callout h4, section.two-column.red-callout .h4-style, section.two-column.red-callout h5, section.two-column.red-callout .h5-style, section.two-column.red-callout h6.h6-style {
  font-weight: 400;
  margin-bottom: 1em;
}
section.two-column.red-callout p {
  color: white;
}
section.two-column.red-callout a.button.white {
  background-color: transparent;
  border-color: white;
  color: white;
}
section.two-column.red-callout a.button.white:hover, section.two-column.red-callout a.button.white:focus {
  background-color: white;
  color: rgb(100, 11, 9);
}
section.two-column.red-callout > .maf-background {
  background-image: url("/images/Layout/red-call-bg.png");
}
section.two-column.red-callout .row {
  padding: 0;
  margin: 0 auto;
}
@media only screen and (min-width: 576px) {
  section.two-column.red-callout .row {
    padding: 0 25px;
  }
}
@media only screen and (min-width: 960px) {
  section.two-column.red-callout .row {
    padding: 0 50px;
  }
}
section.two-column.red-callout .row .column {
  padding: 40px 25px;
}
@media only screen and (min-width: 960px) {
  section.two-column.red-callout .row .column {
    padding: 85px 50px;
  }
}
section.two-column.red-callout .row .column.maf-col-1 {
  padding-top: 50px !important;
  padding-bottom: 0 !important;
  justify-content: flex-end;
}
@media only screen and (min-width: 1024px) {
  section.two-column.red-callout .row .column.maf-col-1 {
    padding-left: 0 !important;
  }
}
section.two-column.red-callout .row .column.maf-col-2 {
  align-items: flex-end;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  section.two-column.red-callout .row .column.maf-col-2 {
    padding-right: 0 !important;
  }
}
section.two-column.red-callout .row .column.maf-col-2 .maf-content {
  max-width: 600px;
}
section.two-column.red-callout-rev {
  background-color: rgb(100, 11, 9);
  color: white;
  min-height: 620px;
}
section.two-column.red-callout-rev h1, section.two-column.red-callout-rev .h1-style, section.two-column.red-callout-rev h2, section.two-column.red-callout-rev .h2-style, section.two-column.red-callout-rev h3, section.two-column.red-callout-rev .h3-style, section.two-column.red-callout-rev h4, section.two-column.red-callout-rev .h4-style, section.two-column.red-callout-rev h5, section.two-column.red-callout-rev .h5-style, section.two-column.red-callout-rev h6.h6-style {
  font-weight: 400;
  margin-bottom: 1em;
}
section.two-column.red-callout-rev p {
  color: white;
}
section.two-column.red-callout-rev a.button.white {
  background-color: transparent;
  border-color: white;
  color: white;
}
section.two-column.red-callout-rev a.button.white:hover, section.two-column.red-callout-rev a.button.white:focus {
  background-color: white;
  color: rgb(100, 11, 9);
}
section.two-column.red-callout-rev > .maf-background {
  background-image: url("/images/Layout/red-call-rev-bg.png");
}
section.two-column.red-callout-rev .row {
  padding: 0;
  margin: 0 auto;
}
@media only screen and (min-width: 576px) {
  section.two-column.red-callout-rev .row {
    padding: 0 25px;
  }
}
@media only screen and (min-width: 960px) {
  section.two-column.red-callout-rev .row {
    padding: 0 50px;
  }
}
section.two-column.red-callout-rev .row .column {
  padding: 40px 25px;
}
@media only screen and (min-width: 960px) {
  section.two-column.red-callout-rev .row .column {
    padding: 85px 50px;
  }
}
section.two-column.red-callout-rev .row .column.maf-col-1 {
  align-items: flex-start;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  section.two-column.red-callout-rev .row .column.maf-col-1 {
    padding-right: 0 !important;
  }
}
section.two-column.red-callout-rev .row .column.maf-col-1 .maf-content {
  max-width: 600px;
}
section.two-column.red-callout-rev .row .column.maf-col-2 {
  padding-top: 50px !important;
  padding-bottom: 0 !important;
  justify-content: flex-end;
}
@media only screen and (min-width: 1024px) {
  section.two-column.red-callout-rev .row .column.maf-col-2 {
    padding-left: 0 !important;
  }
}
section.two-column.red-callout-rev .row .column.maf-col-2 p {
  max-width: none;
}
section.two-column.green-callout {
  background-color: rgb(19, 145, 131);
  color: white;
}
section.two-column.green-callout h1, section.two-column.green-callout .h1-style, section.two-column.green-callout h2, section.two-column.green-callout .h2-style, section.two-column.green-callout h3, section.two-column.green-callout .h3-style, section.two-column.green-callout h4, section.two-column.green-callout .h4-style, section.two-column.green-callout h5, section.two-column.green-callout .h5-style, section.two-column.green-callout h6.h6-style {
  font-weight: 400;
  margin-bottom: 1em;
}
section.two-column.green-callout p {
  color: white;
}
section.two-column.green-callout a.button.white {
  background-color: transparent;
  border-color: white;
  color: white;
}
section.two-column.green-callout a.button.white:hover, section.two-column.green-callout a.button.white:focus {
  background-color: white;
  color: rgb(19, 145, 131);
}
section.two-column.green-callout > .maf-background {
  background-image: url("/images/Layout/green-call-bg.png");
}
section.two-column.green-callout .row {
  padding: 0;
  flex-direction: column-reverse;
  margin: 0 auto;
}
@media only screen and (min-width: 576px) {
  section.two-column.green-callout .row {
    padding: 0 25px;
  }
}
@media only screen and (min-width: 960px) {
  section.two-column.green-callout .row {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.green-callout .row {
    flex-direction: row;
  }
}
section.two-column.green-callout .row .column {
  padding: 40px 25px;
}
@media only screen and (min-width: 960px) {
  section.two-column.green-callout .row .column {
    padding: 85px 50px;
  }
}
section.two-column.green-callout .row .column.maf-col-1 {
  padding-top: 50px !important;
  padding-bottom: 0 !important;
  justify-content: flex-end;
}
@media only screen and (min-width: 1024px) {
  section.two-column.green-callout .row .column.maf-col-1 {
    padding-left: 0 !important;
  }
}
section.two-column.green-callout .row .column.maf-col-2 {
  align-items: flex-start;
  justify-content: center;
}
section.two-column.green-callout .row .column.maf-col-2 .maf-content {
  max-width: 600px;
}
section.two-column.staff-profiles h1, section.two-column.staff-profiles .h1-style, section.two-column.staff-profiles h2, section.two-column.staff-profiles .h2-style, section.two-column.staff-profiles h3, section.two-column.staff-profiles .h3-style, section.two-column.staff-profiles h4, section.two-column.staff-profiles .h4-style, section.two-column.staff-profiles h5, section.two-column.staff-profiles .h5-style, section.two-column.staff-profiles h6.h6-style {
  color: rgb(14, 56, 85);
}
section.two-column.staff-profiles h2, section.two-column.staff-profiles .h2-style {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 3rem;
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) {
  section.two-column.staff-profiles h2, section.two-column.staff-profiles .h2-style {
    font-size: 3.6rem;
  }
}
section.two-column.staff-profiles p.page-lead {
  color: rgb(16, 16, 36);
}
section.two-column.staff-profiles .row .column .maf-content p.has-img {
  background-color: rgb(14, 56, 85);
  border-radius: 50%;
  display: inline-block;
  margin: 0 0 10px 0;
  max-width: 430px;
  padding: 10px;
  width: auto;
}
section.two-column.staff-profiles .row .column .maf-content p.has-img img {
  border-radius: 50%;
  border: 5px solid white;
  display: inline-block;
  margin: 0 !important;
  max-width: 400px;
  width: 100%;
}
section.two-column.staff-profiles .row .column.maf-col-1 .maf-content {
  align-items: center;
}
section.two-column.mind-map .row .column.maf-col-2 .maf-content {
  align-items: center;
}
section.two-column.depression-widget-left #tool_self-assessments_42 {
  z-index: 100;
}
section.two-column.mood-widget-right #tool_self-assessments_44 {
  z-index: 100;
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout .row {
    margin: 30px auto;
  }
}
@media only screen and (min-width: 1024px) {
  section.two-column.callout .row .column.maf-col-2 {
    padding-left: 0;
  }
}
section.two-column.callout .row .column.maf-col-2 .maf-content p {
  max-width: 600px;
}
section.two-column.boxed-right .row .column.maf-col-2 .maf-content {
  border: 1px solid rgb(186, 186, 186);
  min-height: 100%;
  padding: 25px;
}
section.two-column.portal-left .row .column.maf-col-1 .maf-content {
  border: 1px solid rgb(186, 186, 186);
  cursor: pointer;
  min-height: 100%;
  padding: 25px;
  transition: all 350ms ease-out;
}
section.two-column.portal-left .row .column.maf-col-1 .maf-content.no-link {
  cursor: default;
}
section.two-column.portal-left .row .column.maf-col-1 .maf-content:hover, section.two-column.portal-left .row .column.maf-col-1 .maf-content.no-link {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgb(14, 56, 85);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
section.two-column.portal-right .row .column.maf-col-2 .maf-content {
  border: 1px solid rgb(186, 186, 186);
  cursor: pointer;
  min-height: 100%;
  padding: 25px;
  transition: all 350ms ease-out;
}
section.two-column.portal-right .row .column.maf-col-2 .maf-content.no-link {
  cursor: default;
}
section.two-column.portal-right .row .column.maf-col-2 .maf-content:hover, section.two-column.portal-right .row .column.maf-col-2 .maf-content.no-link {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgb(14, 56, 85);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
section.two-column.portal-both .row .column .maf-content {
  border: 1px solid rgb(186, 186, 186);
  cursor: pointer;
  min-height: 100%;
  padding: 25px;
  transition: all 350ms ease-out;
}
section.two-column.portal-both .row .column .maf-content.no-link {
  cursor: default;
}
section.two-column.portal-both .row .column .maf-content:hover, section.two-column.portal-both .row .column .maf-content.no-link {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgb(14, 56, 85);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
section.two-column.portal-both.images .row .column .maf-content {
  flex-direction: column-reverse;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  section.two-column.portal-both.images .row .column .maf-content {
    flex-direction: row;
    text-align: left;
  }
  section.two-column.portal-both.images .row .column .maf-content p {
    flex: 0 0 auto;
    width: auto;
  }
  section.two-column.portal-both.images .row .column .maf-content p:first-child {
    flex: 1 1 auto;
    padding-right: 10px;
    width: auto;
  }
}
section.two-column.maf-h-h .row .header .maf-content {
  padding-top: 0;
}
section.third-twothirds p.phone {
  margin-bottom: 5px;
}
section.third-twothirds p.phone a {
  color: rgb(16, 16, 36);
  text-decoration: none;
}
section.third-twothirds p.phone a:hover, section.third-twothirds p.phone a:focus {
  opacity: 0.7;
}
section.third-twothirds p.phone .img {
  display: inline-block;
  margin-right: 10px;
  width: 20px;
}
section.third-twothirds p.phone .img img {
  vertical-align: middle;
}
section.third-twothirds .row .header {
  align-items: flex-start;
}
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 {
  margin-bottom: 5px;
}
section.third-twothirds .row .header .maf-content p.page-lead {
  color: rgb(14, 56, 85);
}
section.twothirds-third .row {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  section.twothirds-third .row {
    flex-direction: row;
  }
}
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 {
    text-align: left;
  }
}
@media only screen and (min-width: 1024px) {
  section.twothirds-third .row .column.maf-col-1 {
    align-items: flex-start;
  }
}
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 {
    padding-bottom: 85px;
    padding-left: 0;
    text-align: right;
  }
  section.twothirds-third .row .column.maf-col-2 .maf-content {
    padding-left: 0;
  }
}
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 {
  font-weight: 400;
}
section.three-column.our-aims p {
  line-height: 1.4;
}
section.three-column.our-aims p.page-lead {
  color: rgb(14, 56, 85);
  font-weight: 300;
}
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 {
  padding: 0 25px 170px 25px;
}
@media only screen and (min-width: 960px) {
  section.three-column.our-aims .row {
    padding: 0 75px 300px 75px;
  }
}
section.three-column.our-aims .row .column {
  padding: 42.5px 0 0 0;
}
@media only screen and (min-width: 576px) {
  section.three-column.our-aims .row .column {
    padding: 42.5px 25px 0 25px;
  }
}
section.three-column.our-aims .row .column .maf-content {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgb(65, 65, 65);
  height: 100%;
  padding: 20px;
}
section.three-column.our-aims .row .column .maf-content > *:last-child:not(:first-child) {
  margin-top: auto;
}
section.three-column.welcome .header .maf-content {
  align-items: center;
  text-align: center;
}
section.three-column.welcome .row {
  padding: 0 25px 40px 25px;
}
@media only screen and (min-width: 960px) {
  section.three-column.welcome .row {
    padding: 0 75px 85px 75px;
  }
}
section.three-column.welcome .row .column {
  padding: 42.5px 0 0 0;
}
@media only screen and (min-width: 576px) {
  section.three-column.welcome .row .column {
    padding: 42.5px 25px 0 25px;
  }
}
section.three-column.welcome .row .column .maf-content {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgb(65, 65, 65);
  height: 100%;
  justify-content: center;
  max-width: 500px;
  padding: 50px;
}
section.three-column.welcome .footer {
  padding-top: 42.5px;
  padding-bottom: 0;
}
section.three-column.welcome.maf-f-c .footer {
  padding-top: 0;
}
section.four-column h3, section.four-column .h3-style {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 3rem;
  margin: 0;
}
section.four-column .header {
  min-height: 25vw;
  justify-content: center;
}
section.four-column .row {
  padding: 0;
}
section.four-column .row .column {
  text-align: center;
}
section.four-column .row .column .maf-content {
  padding: 0;
}
section.four-column.bg-2 {
  color: rgb(65, 65, 65);
}
section.four-column.bg-2 .maf-content * {
  color: rgb(65, 65, 65);
}
section.four-column.bg-2 .maf-content hr {
  border-color: rgb(65, 65, 65);
}
section.four-column.bg-2 .maf-content a.button {
  background-color: transparent;
  border-color: rgb(65, 65, 65);
  color: rgb(65, 65, 65);
}
section.four-column.bg-2 .maf-content a.button:hover, section.four-column.bg-2 .maf-content a.button:focus {
  background-color: rgb(65, 65, 65);
  color: white;
}
section.divider .row {
  max-width: 1600px;
}
section.page-content-section {
  font-size: 1.6rem;
}
section.page-content-section h1, section.page-content-section .h1-style, section.page-content-section h2, section.page-content-section .h2-style, section.page-content-section h3, section.page-content-section .h3-style, section.page-content-section h4, section.page-content-section .h4-style, section.page-content-section h5, section.page-content-section .h5-style, section.page-content-section h6.h6-style {
  color: rgb(14, 56, 85);
  font-weight: 400;
  margin-bottom: 1em;
}
section.page-content-section .is-simple-gallery {
  margin-bottom: 20px;
}
section.page-content-section .is-simple-gallery figure figcaption {
  display: none;
}
section.page-content-section #contact-form {
  margin-bottom: 2em;
}
section.page-content-section .row {
  padding: 0;
  padding-top: 40px;
}
@media only screen and (min-width: 576px) {
  section.page-content-section .row {
    padding: 0 25px;
    padding-top: 85px;
  }
}
@media only screen and (min-width: 960px) {
  section.page-content-section .row {
    padding: 0 50px;
    padding-top: 85px;
  }
}
section.page-content-section .row .column {
  padding: 40px 25px;
  padding-top: 0;
  text-align: left;
}
@media only screen and (min-width: 960px) {
  section.page-content-section .row .column {
    padding: 85px 50px;
    padding-top: 0;
  }
}
section.page-content-section .row .column .maf-content {
  align-items: flex-start;
  max-width: 800px;
}
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 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2em;
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) {
  section.page-content-section .row .column .maf-content ul.big-list li {
    font-size: 2.4rem;
  }
}
section.page-content-section .row .column .maf-content ul.big-list li::before {
  top: 10px;
}
section.page-content-section .row .column .maf-content p {
  line-height: 1.4;
}
section.page-content-section .row .column .maf-content p.page-lead {
  font-weight: 400;
}
section.page-content-section .row .column.maf-col-1 h4, section.page-content-section .row .column.maf-col-1 .h4-style {
  font-weight: 400;
}
section.page-content-section .row .column.maf-col-1 h5, section.page-content-section .row .column.maf-col-1 .h5-style {
  font-weight: 400;
}
section.page-content-section.timeline {
  background-color: rgb(235, 243, 250);
}
section.page-content-section.timeline h1, section.page-content-section.timeline .h1-style, section.page-content-section.timeline h2, section.page-content-section.timeline .h2-style {
  margin-bottom: 0.3em;
}
section.page-content-section.timeline h3, section.page-content-section.timeline .h3-style, section.page-content-section.timeline h4, section.page-content-section.timeline .h4-style, section.page-content-section.timeline h5, section.page-content-section.timeline .h5-style, section.page-content-section.timeline h6.h6-style {
  margin-bottom: 0.6em;
}
section.page-content-section.timeline ul {
  max-width: 500px;
}
section.page-content-section.timeline > .maf-sprite-layer #timeline-spr1 {
  bottom: 0;
  max-width: 414px;
  position: absolute;
  right: 0;
  width: 25.875vw;
}
section.blog-section div.cardbox article.card .portal-item .portal-content .desc {
  display: none;
  margin-top: 0;
}
section.blog-section.is-hero .row {
  flex-direction: row;
  overflow: hidden;
}
section.blog-section.is-hero .row > .maf-bg-overlay {
  background-color: rgba(0, 87, 147, 0.7);
}
section.blog-section.is-hero .row .column {
  align-items: flex-start;
  flex: 0 0 auto;
  max-width: 1450px;
  text-align: left;
}
section.blog-section.is-hero .row .column .maf-content .pub-date {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  margin: 5px;
  opacity: 0.5;
}
section.blog-section.blog-top-level {
  background-color: rgb(235, 243, 250);
  background-image: url("/images/Layout/blog-bg.png");
  background-position: top;
  background-size: 100% auto;
  padding-top: 10px;
}
section.blog-section.blog-top-level .header h1, section.blog-section.blog-top-level .header .h1-style, section.blog-section.blog-top-level .header h2, section.blog-section.blog-top-level .header .h2-style, section.blog-section.blog-top-level .header h3, section.blog-section.blog-top-level .header .h3-style, section.blog-section.blog-top-level .header h4, section.blog-section.blog-top-level .header .h4-style, section.blog-section.blog-top-level .header h5, section.blog-section.blog-top-level .header .h5-style, section.blog-section.blog-top-level .header h6.h6-style {
  color: rgb(14, 56, 85);
}
section.blog-section.blog-top-level .header p {
  font-size: 2.4rem;
  font-weight: 400;
  max-width: 770px;
}
section.blog-section.blog-top-level .header .blog-aside-content {
  border: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0;
  padding: 25px 0 20px 0;
  width: 100%;
}
section.blog-section.blog-top-level .header .blog-aside-content:not(:first-child) {
  border-top: 0;
}
section.blog-section.blog-top-level .header .blog-aside-content a {
  line-height: 1;
  margin-bottom: 5px;
  text-decoration: none;
}
section.blog-section.blog-top-level .header .blog-aside-content a .blog-current-item {
  border-right: 1px solid rgb(14, 56, 85);
  color: rgb(14, 56, 85);
  margin-right: 16px;
  padding: 0 16px 0 0;
}
section.blog-section.blog-top-level .header .blog-aside-content a .blog-current-item p {
  color: inherit;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 5px;
  text-decoration: underline;
}
section.blog-section.blog-top-level .header .blog-aside-content a .blog-current-item.active p {
  text-decoration: none;
}
section.blog-section.blog-top-level .header .blog-aside-content a:hover .blog-current-item, section.blog-section.blog-top-level .header .blog-aside-content a:focus .blog-current-item {
  color: rgb(100, 11, 9);
}
section.blog-section.blog-top-level .header .blog-aside-content a:hover .blog-current-item p, section.blog-section.blog-top-level .header .blog-aside-content a:focus .blog-current-item p {
  text-decoration: none;
}
section.blog-section.blog-top-level .header .blog-aside-content a:first-child .blog-current-item {
  padding-left: 0;
}
section.blog-section.blog-top-level .row .column {
  padding-top: 40px;
}
section.blog-section.blog-top-level .row .column .maf-content.search {
  background-color: rgb(237, 244, 255);
  margin-bottom: 50px;
  padding: 25px;
}
section.blog-section.blog-highlight {
  background-color: rgb(235, 243, 250);
  background-image: url("/images/Layout/blog-bg.png");
  background-position: top;
  background-size: 100% auto;
  padding-top: 35px;
  padding-bottom: 20px;
}
section.blog-section.blog-highlight:after {
  background-color: transparent;
  bottom: 0;
  content: "";
  height: 20px;
  position: absolute;
  width: 100vw;
  z-index: 0;
}
section.blog-section.blog-highlight > .maf-sprite-layer {
  z-index: 1;
}
section.blog-section.blog-highlight > .maf-sprite-layer #bgh-spr1 {
  max-width: 154px;
  position: absolute;
  right: -100vw;
  top: 45px;
  transition: right 1200ms ease-out;
  width: 9.625vw;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  section.blog-section.blog-highlight > .maf-sprite-layer #bgh-spr1 {
    right: 36.5%;
  }
}
section.blog-section.blog-highlight > .maf-sprite-layer #bgh-spr2 {
  bottom: 0;
  left: -100vw;
  max-width: 147px;
  position: absolute;
  transition: left 2000ms ease-out;
  width: 9.1875vw;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  section.blog-section.blog-highlight > .maf-sprite-layer #bgh-spr2 {
    left: 9.375vw;
  }
}
@media only screen and (min-width: 768px) {
  section.blog-section.blog-highlight div.blog-feed {
    justify-content: flex-start;
  }
}
section.blog-section.blog-highlight div.blog-feed article.blog-summary {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-highlight div.blog-feed article.blog-summary {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  section.blog-section.blog-highlight div.blog-feed article.blog-summary {
    width: 25%;
  }
}
section.blog-section.blog-highlight div.blog-feed aside.ad-block {
  margin-bottom: 0;
}
section.blog-section.blog-highlight .header h1, section.blog-section.blog-highlight .header .h1-style, section.blog-section.blog-highlight .header h2, section.blog-section.blog-highlight .header .h2-style, section.blog-section.blog-highlight .header h3, section.blog-section.blog-highlight .header .h3-style, section.blog-section.blog-highlight .header h4, section.blog-section.blog-highlight .header .h4-style, section.blog-section.blog-highlight .header h5, section.blog-section.blog-highlight .header .h5-style, section.blog-section.blog-highlight .header h6.h6-style {
  color: rgb(14, 56, 85);
}
section.blog-section.blog-highlight .header p {
  color: rgb(65, 65, 65);
  font-size: 2.4rem;
  font-weight: 400;
  max-width: 770px;
}
section.blog-section.blog-highlight .row {
  z-index: 2;
}
section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content:first-child {
  padding-bottom: 70px;
}
section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content:first-child h1, section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content:first-child .h1-style, section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content:first-child h2, section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content:first-child .h2-style, section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content:first-child h3, section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content:first-child .h3-style, section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content:first-child h4, section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content:first-child .h4-style, section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content:first-child h5, section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content:first-child .h5-style, section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content:first-child h6.h6-style {
  color: rgb(14, 56, 85);
}
section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content:first-child p {
  color: rgb(65, 65, 65);
  font-size: 2.4rem;
  font-weight: 400;
  max-width: 770px;
}
section.blog-section.blog-highlight .row .column.maf-col-1 .maf-content.foot {
  padding-top: 20px;
  text-align: center;
}
section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content:first-child {
  padding-bottom: 70px;
}
section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content:first-child h1, section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content:first-child .h1-style, section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content:first-child h2, section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content:first-child .h2-style, section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content:first-child h3, section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content:first-child .h3-style, section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content:first-child h4, section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content:first-child .h4-style, section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content:first-child h5, section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content:first-child .h5-style, section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content:first-child h6.h6-style {
  color: rgb(14, 56, 85);
}
section.blog-section.blog-highlight .row .column.maf-col-2 .maf-content:first-child p {
  color: rgb(65, 65, 65);
  font-size: 2.4rem;
  font-weight: 400;
  max-width: 770px;
}
section.blog-section.blog-highlight.anim-1 > .maf-sprite-layer #bgh-spr1 {
  right: 36.5%;
}
section.blog-section.blog-highlight.anim-3 #bgh-spr2 {
  left: 9.375vw;
}
section.blog-section.blog-highlight.edit > .maf-sprite-layer #bgh-spr1 {
  right: 36.5%;
}
section.blog-section.blog-highlight.edit #bgh-spr2 {
  left: 9.375vw;
}
section.blog-section.blog-detail h1, section.blog-section.blog-detail .h1-style, section.blog-section.blog-detail h2, section.blog-section.blog-detail .h2-style, section.blog-section.blog-detail h3, section.blog-section.blog-detail .h3-style, section.blog-section.blog-detail h4, section.blog-section.blog-detail .h4-style, section.blog-section.blog-detail h5, section.blog-section.blog-detail .h5-style, section.blog-section.blog-detail h6.h6-style {
  margin-bottom: 1.2em;
}
section.blog-section.blog-detail .pub-date {
  font-size: 1.4rem;
  font-style: italic;
  margin: 5px;
}
section.blog-section.blog-detail .blog-body {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
}
section.blog-section.blog-detail .blog-body > p {
  margin-bottom: 1.2em;
}
section.blog-section.blog-detail .blog-body > p:first-child {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2em;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-detail .blog-body > p:first-child {
    font-size: 2.4rem;
  }
}
section.blog-section.blog-detail .blog-body > p.has-img {
  max-width: none;
  padding: 0;
}
section.blog-section.blog-detail .blog-body figure {
  margin-top: 1em;
  margin-bottom: 1em;
}
section.blog-section.blog-detail .main-img {
  margin-bottom: 2em;
}
section.blog-section.blog-detail .button.back {
  margin-top: 30px;
}
section.blog-section.blog-detail .row {
  padding: 0;
  padding-top: 40px;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-detail .row {
    padding: 0 25px;
    padding-top: 85px;
  }
}
@media only screen and (min-width: 960px) {
  section.blog-section.blog-detail .row {
    padding: 0 50px;
    padding-top: 85px;
  }
}
section.blog-section.blog-detail .row .header .maf-content .head-img {
  margin-bottom: 42.5px;
  width: 100%;
}
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 {
  border-right: 1px solid rgb(16, 16, 36);
  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 {
  border: 0;
  padding-right: 0;
  margin-right: 0;
}
section.blog-section.blog-detail .row .column {
  padding: 40px 25px;
  padding-top: 0;
}
@media only screen and (min-width: 960px) {
  section.blog-section.blog-detail .row .column {
    padding: 85px 50px;
    padding-top: 0;
  }
}
section.blog-section.blog-detail .row .column.maf-col-1 {
  align-items: flex-start;
}
@media only screen and (min-width: 1024px) {
  section.blog-section.blog-detail .row .column.maf-col-1 {
    width: 67.85%;
  }
}
section.blog-section.blog-detail .row .column.maf-col-1 .maf-content {
  align-items: flex-start;
  max-width: 850px;
}
section.blog-section.blog-detail .row .column.maf-col-1 h1, section.blog-section.blog-detail .row .column.maf-col-1 .h1-style {
  color: rgb(14, 56, 85);
}
section.blog-section.blog-detail .row .column.maf-col-1 h2, section.blog-section.blog-detail .row .column.maf-col-1 .h2-style {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 3rem;
  color: rgb(14, 56, 85);
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-detail .row .column.maf-col-1 h2, section.blog-section.blog-detail .row .column.maf-col-1 .h2-style {
    font-size: 3.6rem;
  }
}
section.blog-section.blog-detail .row .column.maf-col-1 h3, section.blog-section.blog-detail .row .column.maf-col-1 .h3-style {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 2.5rem;
  color: rgb(14, 56, 85);
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-detail .row .column.maf-col-1 h3, section.blog-section.blog-detail .row .column.maf-col-1 .h3-style {
    font-size: 3rem;
  }
}
section.blog-section.blog-detail .row .column.maf-col-1 h4, section.blog-section.blog-detail .row .column.maf-col-1 .h4-style {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 2.4rem;
  color: rgb(14, 56, 85);
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
}
@media only screen and (min-width: 576px) {
  section.blog-section.blog-detail .row .column.maf-col-1 h4, section.blog-section.blog-detail .row .column.maf-col-1 .h4-style {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 1024px) {
  section.blog-section.blog-detail .row .column.maf-col-2 {
    width: 32.15%;
  }
}
section.blog-section.blog-detail .row .column.maf-col-2 .maf-content {
  margin-bottom: 2em;
}
section.blog-section.assoc .header {
  padding: 0;
}
section.blog-section.assoc .header h2 {
  color: rgb(14, 56, 85);
}
section.blog-section.assoc .header .maf-content {
  max-width: none;
  text-align: left;
}
section.blog-section.assoc .row {
  background-color: white;
}
section.blog-section.assoc .row .column {
  padding-top: 42.5px;
}
section.faq-section > .maf-sprite-layer .faq-spr1 {
  bottom: 0;
  max-width: 414px;
  position: absolute;
  right: 0;
  width: 25.875vw;
}
section.faq-section .header {
  align-items: center;
}
section.faq-section .header .maf-content {
  max-width: 900px;
}
section.faq-section .row .column {
  padding-bottom: 135px;
}
section.faq-section .row .column .maf-content {
  max-width: 800px;
}
section.faq-section .row .footer .maf-content {
  max-width: 800px;
}
section.faq-section.maf-h-h .row .column {
  padding-top: 50px;
}
section.faq-section.timeline {
  background-color: rgb(235, 243, 250);
}
section.faq-section.timeline > .maf-sprite-layer #timeline-spr1 {
  bottom: 0;
  max-width: 414px;
  position: absolute;
  right: 0;
  width: 25.875vw;
}
section.slideshow-section .header {
  max-width: 900px;
}
section.slideshow-section .header .maf-content {
  align-items: flex-start;
}
section.slideshow-section .header .maf-content h1, section.slideshow-section .header .maf-content .h1-style, section.slideshow-section .header .maf-content h2, section.slideshow-section .header .maf-content .h2-style, section.slideshow-section .header .maf-content h3, section.slideshow-section .header .maf-content .h3-style, section.slideshow-section .header .maf-content h4, section.slideshow-section .header .maf-content .h4-style, section.slideshow-section .header .maf-content h5, section.slideshow-section .header .maf-content .h5-style, section.slideshow-section .header .maf-content h6.h6-style {
  color: rgb(14, 56, 85);
}
section.slideshow-section .header .maf-content p.page-lead {
  font-weight: 400;
}
section.slideshow-section .row .column {
  justify-content: center;
  max-width: 900px;
  padding-top: 50px;
}
section.slideshow-section .flickity-slideshow, section.slideshow-section .flickity-slideshow-edit {
  width: 100%;
}
section.slideshow-section .flickity-slideshow .ss-slide, section.slideshow-section .flickity-slideshow-edit .ss-slide {
  background-color: transparent;
  padding: 35px 0;
  position: relative;
  width: 100%;
}
section.slideshow-section .flickity-slideshow .ss-slide > div, section.slideshow-section .flickity-slideshow-edit .ss-slide > div {
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
}
section.slideshow-section .flickity-slideshow .ss-slide > div p, section.slideshow-section .flickity-slideshow-edit .ss-slide > div p {
  color: rgb(14, 56, 85);
  font-size: 3rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
}
@media only screen and (min-width: 576px) {
  section.slideshow-section .flickity-slideshow .ss-slide > div p, section.slideshow-section .flickity-slideshow-edit .ss-slide > div p {
    font-size: 3.6rem;
  }
}
section.slideshow-section .flickity-slideshow .ss-slide > div p:not(:first-child):last-child, section.slideshow-section .flickity-slideshow-edit .ss-slide > div p:not(:first-child):last-child {
  color: rgb(16, 16, 36);
  font-size: 1.6rem;
  font-weight: 400;
  text-align: right;
}
section.slideshow-section.has-aspect .row {
  padding: 0;
}
section.slideshow-section.has-aspect .row .column {
  padding: 0;
}
section.slideshow-section.has-aspect .flickity-slideshow .ss-slide::before, section.slideshow-section.has-aspect .flickity-slideshow-edit .ss-slide::before {
  content: "";
  display: table;
  padding-bottom: 56.25%;
}
section.slideshow-section.has-aspect .flickity-slideshow .ss-slide .label, section.slideshow-section.has-aspect .flickity-slideshow-edit .ss-slide .label {
  bottom: 80px;
  font-size: 1.6rem;
  position: absolute;
  right: 3%;
}
section.slideshow-section.has-aspect .flickity-page-dots {
  bottom: 40px;
  position: absolute;
  right: 3%;
  width: auto;
}
section.slideshow-section.has-aspect .flickity-page-dots .dot {
  background-color: transparent;
  background-image: none;
  border-color: white;
  height: 20px;
  width: 20px;
}
section.slideshow-section.has-aspect .flickity-page-dots .dot::before {
  background-color: white;
}
section.slideshow-section.has-aspect .flickity-page-dots .dot.is-selected::before {
  height: 60%;
  width: 60%;
}
section.simple-gallery figcaption {
  display: none;
}
section.simple-gallery .row .header .maf-content > *:first-child {
  margin-top: 20px;
}
section.simple-gallery .row .column.maf-col-1 {
  padding-top: 40px;
  padding-bottom: 40px;
}
section.simple-gallery .row .column.maf-col-1 .is-simple-gallery {
  max-width: 1400px;
}
section.simple-gallery .row .footer .maf-content {
  max-width: 960px;
}
section.simple-gallery .row .footer .maf-content p {
  font-size: 1.4rem;
  line-height: 1.6;
}
section.simple-gallery .row .footer .maf-content > *:last-child {
  margin-bottom: 30px !important;
}
section.social-section {
  background-color: rgb(237, 244, 255);
}
section.social-section .blog-nav {
  width: 100%;
}
section.social-section .blog-nav .blog-aside-content > a {
  margin-bottom: 10px;
}
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 {
  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:focus .blog-current-item {
  color: rgb(14, 56, 85);
}
section.social-section .row {
  padding-top: 30px;
  padding-bottom: 30px;
}
section.social-section .row .column {
  justify-content: flex-start;
}
section.social-section .row .column .maf-content {
  text-align: center;
}
section.social-section .row .column .maf-content p.label {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 3.2rem;
  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 {
    font-size: 4.8rem;
  }
}
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 {
  margin-right: 20px;
  margin-bottom: 20px;
}
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 {
  height: 40px;
}
section[class*=portal-].portal-section {
  background-color: rgb(235, 243, 250);
  background-image: url("/images/Layout/portal-object-bg.png");
  background-position: top;
  background-size: 100% auto;
}
section[class*=portal-].portal-section.bg-1 {
  background-image: url("/images/Layout/portal-object-bg-blue.png");
}
section[class*=portal-].portal-section > .maf-sprite-layer #portal-sprite {
  max-width: 165px;
  position: absolute;
  right: -100vw;
  top: 70px;
  transition: right 1200ms ease-out;
  width: 10.3125vw;
}
@media (prefers-reduced-motion: reduce) {
  section[class*=portal-].portal-section > .maf-sprite-layer #portal-sprite {
    right: 15vw;
  }
}
section[class*=portal-].portal-section .header .maf-content {
  align-items: flex-start;
  padding-top: 135px;
  text-align: left;
}
section[class*=portal-].portal-section .header .maf-content h1, section[class*=portal-].portal-section .header .maf-content .h1-style, section[class*=portal-].portal-section .header .maf-content h2, section[class*=portal-].portal-section .header .maf-content .h2-style, section[class*=portal-].portal-section .header .maf-content h3, section[class*=portal-].portal-section .header .maf-content .h3-style, section[class*=portal-].portal-section .header .maf-content h4, section[class*=portal-].portal-section .header .maf-content .h4-style, section[class*=portal-].portal-section .header .maf-content h5, section[class*=portal-].portal-section .header .maf-content .h5-style, section[class*=portal-].portal-section .header .maf-content h6.h6-style {
  color: rgb(14, 56, 85);
}
section[class*=portal-].portal-section .header .maf-content p {
  color: rgb(65, 65, 65);
}
section[class*=portal-].portal-section .header .maf-content p.page-lead {
  font-size: 2.4rem;
  font-weight: 400;
  max-width: 900px;
}
section[class*=portal-].portal-section .row .column {
  padding-top: 50px;
}
@media only screen and (min-width: 1024px) {
  section[class*=portal-].portal-section .row .column {
    padding-top: 80px;
  }
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow {
  margin: 0 -25px;
  width: calc(100% + 50px);
}
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 25px;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  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 {
    width: 33.333%;
  }
}
@media only screen and (min-width: 1440px) {
  section[class*=portal-].portal-section.is-slider .flickity-slideshow .card {
    width: 25%;
  }
}
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 rgb(65, 65, 65);
  color: rgb(65, 65, 65);
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 400;
  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 {
  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 {
  color: rgb(14, 56, 85);
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  padding-top: 15px;
  text-transform: uppercase;
  z-index: 1;
}
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 {
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: all 700ms ease-out;
  width: 100%;
  z-index: 0;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn .maf-na {
  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 {
  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 {
  text-align: center;
  width: 100%;
}
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 {
  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 {
  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 {
  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 {
  padding-bottom: 75%;
}
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 {
  height: auto;
  max-width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  transform-origin: center bottom;
  width: auto;
}
section[class*=portal-].portal-section.is-slider .flickity-slideshow .card .portal-item .portal-content .tn.static.no-img {
  min-height: 100px;
}
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 {
  -o-object-fit: contain;
     object-fit: contain;
}
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 {
  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 {
  align-items: flex-start;
  color: rgb(14, 56, 85);
  display: flex;
  font-size: 2rem;
  font-weight: 400;
  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 {
  color: rgb(100, 11, 9);
  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 {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}
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 {
  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 {
  margin-bottom: 0;
}
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 {
  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 {
  background-color: transparent;
  border: 2px solid rgb(14, 56, 85);
  border-radius: 30px;
  color: rgb(14, 56, 85);
  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 {
  display: none;
}
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 {
  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:focus {
  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:focus .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:focus .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:focus .portal-content .card-button {
  background-color: rgb(14, 56, 85);
  color: white;
}
section[class*=portal-].portal-section.is-slider .row {
  padding: 0 25px;
}
@media only screen and (min-width: 576px) {
  section[class*=portal-].portal-section.is-slider .row {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 960px) {
  section[class*=portal-].portal-section.is-slider .row {
    padding: 0 50px;
  }
}
section[class*=portal-].portal-section.is-slider.narrow .flickity-slideshow .card .portal-item .portal-content {
  min-height: 404px;
}
section[class*=portal-].portal-section.anim-1 > .maf-sprite-layer #portal-sprite, section[class*=portal-].portal-section.edit > .maf-sprite-layer #portal-sprite {
  right: 15vw;
}
section[class*=portal-].portal-section.alt-1 div.cardbox article.card, section[class*=portal-].portal-section.alt-1 div.cardbox div.card {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section[class*=portal-].portal-section.alt-1 div.cardbox article.card, section[class*=portal-].portal-section.alt-1 div.cardbox div.card {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) {
  section[class*=portal-].portal-section.alt-1 div.cardbox article.card, section[class*=portal-].portal-section.alt-1 div.cardbox div.card {
    width: 33.333%;
  }
}
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 {
  margin-top: 0;
}
section[class*=portal-].portal-section.alt-1 div.cardbox article.card .portal-item .portal-content .desc p, section[class*=portal-].portal-section.alt-1 div.cardbox div.card .portal-item .portal-content .desc p {
  color: rgb(16, 16, 36);
  font-weight: 400;
  padding-bottom: 20px;
}
section[class*=portal-].portal-section.alt-1 div.cardbox article.card .portal-item .portal-content .desc p strong, section[class*=portal-].portal-section.alt-1 div.cardbox div.card .portal-item .portal-content .desc p strong {
  color: rgb(14, 56, 85);
  font-weight: 400;
}
section[class*=portal-].portal-section.alt-1 div.cardbox article.card .portal-item .portal-content .desc p.page-lead, section[class*=portal-].portal-section.alt-1 div.cardbox div.card .portal-item .portal-content .desc p.page-lead {
  font-size: 1.8rem;
  font-weight: 400;
}
section[class*=portal-].portal-section.alt-2, section[class*=portal-].portal-section.alt-3 {
  background-color: transparent;
  background-image: none;
}
section[class*=portal-].portal-section.alt-2 > .maf-sprite-layer #portal-sprite, section[class*=portal-].portal-section.alt-3 > .maf-sprite-layer #portal-sprite {
  display: none;
}
section[class*=portal-].portal-section.alt-2 .header .maf-content, section[class*=portal-].portal-section.alt-3 .header .maf-content {
  padding-top: 40px;
}
@media only screen and (min-width: 960px) {
  section[class*=portal-].portal-section.alt-2 .header .maf-content, section[class*=portal-].portal-section.alt-3 .header .maf-content {
    padding-top: 85px;
  }
}
section[class*=portal-].portal-section.alt-2 .row .column, section[class*=portal-].portal-section.alt-3 .row .column {
  padding-top: 50px;
}
section[class*=portal-].portal-section.alt-2 div.cardbox, section[class*=portal-].portal-section.alt-3 div.cardbox {
  justify-content: flex-start;
  margin: 0 -15px;
  width: calc(100% + 30px);
}
section[class*=portal-].portal-section.alt-2 div.cardbox article.card, section[class*=portal-].portal-section.alt-2 div.cardbox div.card, section[class*=portal-].portal-section.alt-3 div.cardbox article.card, section[class*=portal-].portal-section.alt-3 div.cardbox div.card {
  margin-bottom: 20px;
  padding: 0 15px;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section[class*=portal-].portal-section.alt-2 div.cardbox article.card, section[class*=portal-].portal-section.alt-2 div.cardbox div.card, section[class*=portal-].portal-section.alt-3 div.cardbox article.card, section[class*=portal-].portal-section.alt-3 div.cardbox div.card {
    width: 33.333%;
  }
}
@media only screen and (min-width: 768px) {
  section[class*=portal-].portal-section.alt-2 div.cardbox article.card, section[class*=portal-].portal-section.alt-2 div.cardbox div.card, section[class*=portal-].portal-section.alt-3 div.cardbox article.card, section[class*=portal-].portal-section.alt-3 div.cardbox div.card {
    width: 25%;
  }
}
@media only screen and (min-width: 960px) {
  section[class*=portal-].portal-section.alt-2 div.cardbox article.card, section[class*=portal-].portal-section.alt-2 div.cardbox div.card, section[class*=portal-].portal-section.alt-3 div.cardbox article.card, section[class*=portal-].portal-section.alt-3 div.cardbox div.card {
    width: 25%;
  }
}
@media only screen and (min-width: 1024px) {
  section[class*=portal-].portal-section.alt-2 div.cardbox article.card, section[class*=portal-].portal-section.alt-2 div.cardbox div.card, section[class*=portal-].portal-section.alt-3 div.cardbox article.card, section[class*=portal-].portal-section.alt-3 div.cardbox div.card {
    width: 20%;
  }
}
section[class*=portal-].portal-section.alt-2 div.cardbox article.card .portal-item, section[class*=portal-].portal-section.alt-2 div.cardbox div.card .portal-item, section[class*=portal-].portal-section.alt-3 div.cardbox article.card .portal-item, section[class*=portal-].portal-section.alt-3 div.cardbox div.card .portal-item {
  font-size: 1.4rem;
}
section[class*=portal-].portal-section.alt-2 div.cardbox article.card .portal-item .portal-content.fourthree::after, section[class*=portal-].portal-section.alt-2 div.cardbox div.card .portal-item .portal-content.fourthree::after, section[class*=portal-].portal-section.alt-3 div.cardbox article.card .portal-item .portal-content.fourthree::after, section[class*=portal-].portal-section.alt-3 div.cardbox div.card .portal-item .portal-content.fourthree::after {
  padding-bottom: 56.25%;
}
section[class*=portal-].portal-section.alt-2 div.cardbox article.card .portal-item .info, section[class*=portal-].portal-section.alt-2 div.cardbox div.card .portal-item .info, section[class*=portal-].portal-section.alt-3 div.cardbox article.card .portal-item .info, section[class*=portal-].portal-section.alt-3 div.cardbox div.card .portal-item .info {
  padding: 15px 10px;
}
section[class*=portal-].portal-section.alt-2 div.cardbox article.card .portal-item .title, section[class*=portal-].portal-section.alt-2 div.cardbox div.card .portal-item .title, section[class*=portal-].portal-section.alt-3 div.cardbox article.card .portal-item .title, section[class*=portal-].portal-section.alt-3 div.cardbox div.card .portal-item .title {
  font-size: 2rem;
  margin: 0;
  padding: 0 0 10px 0;
}
section[class*=portal-].portal-section.alt-2 div.cardbox article.card .portal-item .desc, section[class*=portal-].portal-section.alt-2 div.cardbox div.card .portal-item .desc, section[class*=portal-].portal-section.alt-3 div.cardbox article.card .portal-item .desc, section[class*=portal-].portal-section.alt-3 div.cardbox div.card .portal-item .desc {
  font-weight: 400;
  min-height: 0;
  padding: 0 0 10px 0;
}
section[class*=portal-].portal-section.alt-2 div.cardbox article.card .portal-item .card-button, section[class*=portal-].portal-section.alt-2 div.cardbox div.card .portal-item .card-button, section[class*=portal-].portal-section.alt-3 div.cardbox article.card .portal-item .card-button, section[class*=portal-].portal-section.alt-3 div.cardbox div.card .portal-item .card-button {
  font-size: 1.2rem;
  margin: auto 0 0 0;
  padding: 7px 15px;
}
section[class*=portal-].portal-section.alt-3 div.cardbox {
  justify-content: center;
}
section[class*=portal-].portal-section.alt-4 > .maf-sprite-layer {
  display: none;
}
section[class*=portal-].portal-section.alt-4 div.cardbox article.card, section[class*=portal-].portal-section.alt-4 div.cardbox div.card {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section[class*=portal-].portal-section.alt-4 div.cardbox article.card, section[class*=portal-].portal-section.alt-4 div.cardbox div.card {
    width: 50%;
  }
}
section[class*=portal-].portal-section.alt-4 div.cardbox article.card .portal-item .portal-content .tn.fourthree::after, section[class*=portal-].portal-section.alt-4 div.cardbox div.card .portal-item .portal-content .tn.fourthree::after {
  padding-bottom: 25%;
}
section[class*=portal-].portal-section.alt-4 div.cardbox article.card .portal-item .portal-content .desc, section[class*=portal-].portal-section.alt-4 div.cardbox div.card .portal-item .portal-content .desc {
  min-height: 0;
}
section[class*=portal-].portal-section.alt-4 div.cardbox article.card .portal-item .portal-content .card-button, section[class*=portal-].portal-section.alt-4 div.cardbox div.card .portal-item .portal-content .card-button {
  margin: 10px 0;
}
section.contact-section p.page-lead {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2em;
  color: rgb(14, 56, 85);
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) {
  section.contact-section p.page-lead {
    font-size: 2.4rem;
  }
}
section.contact-section p.phone {
  max-width: 500px;
}
section.contact-section p.phone span {
  display: inline-block;
  font-weight: 400;
  width: 100%;
}
section.contact-section p.phone a:not(.button) {
  color: rgb(14, 56, 85);
}
section.contact-section p.phone a:not(.button):hover, section.contact-section p.phone a:not(.button):focus {
  opacity: 0.7;
}
section.contact-section p.phone .img {
  display: inline-block;
  margin-right: 10px;
  width: 20px;
}
section.contact-section p.phone .img img {
  vertical-align: middle;
}
section.contact-section p.email span {
  display: inline-block;
  font-weight: 400;
  width: 100%;
}
section.contact-section p.email a:not(.button) {
  color: rgb(14, 56, 85);
}
section.contact-section p.email a:not(.button):hover, section.contact-section p.email a:not(.button):focus {
  opacity: 0.7;
}
section.contact-section p.img-ico {
  align-items: center;
  display: flex;
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-size: 1.6rem;
  justify-content: flex-start;
}
section.contact-section p.img-ico span {
  display: inline-block;
  flex: 0 0 auto;
  line-height: 1.1;
}
section.contact-section p.img-ico span:last-child {
  flex: 1 1 auto;
  padding-left: 10px;
}
section.contact-section p.img-ico span a {
  color: rgb(16, 16, 36);
}
section.contact-section p a.button {
  margin-top: 10px;
}
section.contact-section span.name {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2em;
  color: rgb(14, 56, 85);
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) {
  section.contact-section span.name {
    font-size: 2.4rem;
  }
}
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 {
  font-weight: 400;
  width: 100%;
}
section.contact-section .social-icons a {
  background-color: rgb(14, 56, 85);
  border: 1px solid rgb(14, 56, 85);
  color: white;
  font-size: 3rem;
  margin-top: 10px;
  margin-right: 10px;
}
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:focus {
  background-color: transparent;
  color: rgb(14, 56, 85);
}
section.contact-section .social-icons a:hover i, section.contact-section .social-icons a:focus i {
  color: rgb(14, 56, 85);
}
section.contact-section #logo-contact {
  max-width: 350px;
}
section.contact-section address {
  display: inline-block;
  margin-bottom: 2em;
  max-width: 300px;
  width: auto;
}
section.contact-section .is-map {
  min-height: 310px;
}
section.contact-section form .maf-input textarea {
  min-height: 276px;
}
section.contact-section form .maf-input.cap-con {
  display: flex;
  padding-top: 0;
  padding-bottom: 0;
}
section.contact-section form .maf-input.cap-con .g-recap-con {
  margin: 0;
}
section.contact-section > .maf-background {
  background-position: top;
}
section.contact-section .row {
  padding: 0;
  padding-top: 40px;
}
@media only screen and (min-width: 576px) {
  section.contact-section .row {
    padding: 0 25px;
    padding-top: 85px;
  }
}
@media only screen and (min-width: 960px) {
  section.contact-section .row {
    padding: 0 50px;
    padding-top: 85px;
  }
}
section.contact-section .row .column {
  padding: 40px 25px;
  padding-top: 0;
}
@media only screen and (min-width: 960px) {
  section.contact-section .row .column {
    padding: 85px 50px;
    padding-top: 0;
  }
}
section.contact-section .row .column .maf-content {
  align-items: flex-start;
  text-align: left;
}
section.contact-section .row .column.maf-col-1 .maf-content {
  max-width: 500px;
}
section.squeeze-download {
  padding: 50px 0;
}
section.squeeze-download .header {
  text-align: center;
}
section.squeeze-download .g-recap-con .g-recaptcha {
  left: 50%;
  transform: translateX(-50%);
}
section.squeeze-download .row .column .maf-content {
  max-width: 750px;
}
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 {
  width: 100%;
}
section.privacy-policy h1, section.privacy-policy .h1-style {
  align-self: center;
  border-bottom: 1px solid rgb(16, 16, 36);
  padding-bottom: 10px;
  text-align: center;
  width: auto;
}
section.privacy-policy h2 {
  font-size: 3rem;
  margin: 2em 0;
  text-transform: none;
}
section.privacy-policy p.page-lead {
  text-align: center;
  margin-bottom: 42.5px;
}
section.privacy-policy ol li {
  margin-bottom: 20px;
}
section.privacy-policy .row .column {
  align-items: center;
  padding-top: 85px;
  padding-bottom: 170px;
  text-align: left;
}
section.privacy-policy .row .column .maf-content {
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 800px;
}
section.account h1, section.account .h1-style {
  color: rgb(14, 56, 85);
}
section.account .maf-form form label {
  font-size: 1.8rem;
  padding: 0;
}
section.account .maf-form form textarea {
  min-height: 200px;
}
section.account .form .column {
  padding-top: 0;
  padding-bottom: 0;
}
section.account.one-column {
  margin-bottom: 0;
}
section.account.one-column .row .column .maf-content {
  max-width: none;
}
section.account.one-column .row .column .maf-form {
  max-width: none;
}
section.account.one-column .row .column .maf-form button {
  font-size: 2.8rem;
  font-weight: 400;
  margin-top: 50px;
}
section.account#login-s .row .column .maf-form {
  max-width: 400px;
}
section.account#login-menu-s .row {
  max-width: none;
}
section.account#login-menu-s .row .column {
  padding-top: 5px;
  padding-bottom: 10px;
}
section.account#login-menu-s .row .column .maf-content {
  align-items: flex-end;
  flex-direction: row;
  justify-content: flex-end;
  max-width: none;
}
section.account#login-menu-s .row .column .maf-content .maf-form {
  display: inline-block;
  max-width: 400px;
  width: auto;
}
section.account#login-menu-s .row .column .maf-content button, section.account#login-menu-s .row .column .maf-content .button {
  align-self: auto;
  background-color: rgb(75, 160, 216);
  border-color: rgb(75, 160, 216);
  color: white;
  margin-bottom: 0;
  margin-left: 10px;
  min-height: 0;
  padding: 3px 10px;
  width: auto;
}
section.account#login-menu-s + section::after {
  display: none;
}
section.account#login .row .column {
  background-color: transparent;
  padding-bottom: 0;
}
section.account#login .row .column .maf-content {
  max-width: none;
}
section.account#login .row .column .maf-content .maf-form {
  padding-top: 0;
}
section.account#register h1, section.account#register .h1-style {
  color: rgb(65, 65, 65);
}
section.account#register .row .column .maf-content form {
  max-width: none;
  justify-content: center;
}
section.account#register .row .column .maf-content form .packages {
  display: inline-block;
  margin-bottom: 2em;
}
section.account#register .row .column .maf-content .form {
  max-width: none;
}
section.account.account-menu .row .column {
  padding-top: 2em;
  padding-bottom: 0;
}
section.account.account-menu .row .column .actions {
  border-top: 1px solid rgb(16, 16, 36);
  border-bottom: 1px solid rgb(16, 16, 36);
  padding-bottom: 15px;
  width: 100%;
}
section.account.account-menu .row .column .actions .button {
  margin: 15px 2px 0 2px;
}
section.account.account-update h3, section.account.account-update .h3-style {
  color: rgb(65, 65, 65);
}
section.account.account-update form, section.account.account-update .form {
  max-width: none;
}
section.account.account-update .row .column {
  padding-top: 2em;
}
section.account.account-update.pw .maf-form form {
  align-items: center;
  flex-direction: column;
}
section.account.account-update.pw .maf-form form .maf-input {
  max-width: 400px;
}
section.account.account-update.regc form, section.account.account-update.regc .form {
  max-width: 700px;
}
section.health-checks {
  border-top: 1px solid rgb(186, 186, 186);
}
section.health-checks .row {
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 85px;
}
section.health-checks .row .column {
  padding-top: 30px;
  padding-bottom: 0;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  section.health-checks .row .column {
    width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  section.health-checks .row .column {
    width: 33.333%;
  }
}
section.health-checks .row .column .maf-content > div {
  width: 100%;
}
@media only screen and (min-width: 1440px) {
  section.health-checks .row .column.maf-col-1 {
    padding-right: 12.5px;
  }
}
@media only screen and (min-width: 1440px) {
  section.health-checks .row .column.maf-col-2 {
    padding-right: 12.5px;
    padding-left: 12.5px;
  }
}
@media only screen and (min-width: 1440px) {
  section.health-checks .row .column.maf-col-3 {
    padding-left: 12.5px;
  }
}
section.map {
  border-top: 1px solid rgb(186, 186, 186);
  background-color: rgb(235, 243, 250);
  background-image: url("/images/Layout/map-bg.png");
  background-position: top;
  background-size: 100% auto;
}
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 {
  display: none;
  height: auto;
}
section.map.interactive-map .is-map::before {
  content: "";
  display: table;
  padding-bottom: 125%;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.map.interactive-map .is-map::before {
    padding-bottom: 100%;
  }
}
@media only screen and (min-width: 768px) {
  section.map.interactive-map .is-map::before {
    padding-bottom: 75%;
  }
}
@media only screen and (min-width: 1024px) {
  section.map.interactive-map .is-map::before {
    padding-bottom: 50%;
  }
}
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 {
  overflow: auto !important;
}
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 {
  width: 20px !important;
  height: 20px !important;
}
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 {
  background-color: rgb(14, 56, 85);
  padding: 21px;
}
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 {
  color: rgb(14, 56, 85);
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 15px;
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content a:not(.button) {
  color: rgb(14, 56, 85);
  font-weight: 400;
}
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):focus {
  color: rgb(100, 11, 9);
}
section.map.interactive-map .is-map #google-map-interactive .map-info-content a.button {
  background-color: rgb(75, 160, 216);
  border-color: rgb(75, 160, 216);
  border-radius: 20px;
  color: white;
  font-size: 1.2rem;
  font-weight: 400;
  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:focus {
  background-color: transparent;
  color: rgb(75, 160, 216);
}
section.map.interactive-map .is-map.show {
  display: block;
}
section.map.interactive-map #map-filters {
  padding-top: 20px;
}
section.map.interactive-map #map-filters .button {
  border: 1px solid rgb(16, 16, 36);
  border-radius: 0;
  color: rgb(16, 16, 36);
  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:focus, section.map.interactive-map #map-filters .button.active {
  background-color: rgb(237, 244, 255);
  border-color: rgb(237, 244, 255);
  color: white;
}
section.map.interactive-map #map-list-view {
  align-content: stretch;
  align-items: stretch;
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -10px;
  width: calc(100% + 20px);
}
section.map.interactive-map #map-list-view > div {
  display: inline-block;
  flex: 0 0 auto;
  padding: 10px;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.map.interactive-map #map-list-view > div {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  section.map.interactive-map #map-list-view > div {
    width: 25%;
  }
}
section.map.interactive-map #map-list-view > div > div {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid rgb(65, 65, 65);
  padding: 15px 20px;
}
section.map.interactive-map #map-list-view > div > div > div {
  display: inline-block;
  padding: 5px 0;
  width: 100%;
}
section.map.interactive-map #map-list-view > div > div > div.name {
  color: rgb(14, 56, 85);
  font-size: 2rem;
  font-weight: 400;
}
section.map.interactive-map #map-list-view > div > div > div.address {
  display: flex;
  flex-direction: column;
}
section.map.interactive-map #map-list-view > div > div > div.address > span {
  display: inline-block;
  width: 100%;
}
section.map.interactive-map #map-list-view.show {
  display: flex;
}
section.map.interactive-map #sh-ctrlr {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  text-align: right;
  width: 100%;
}
@media only screen and (min-width: 576px) {
  section.map.interactive-map #sh-ctrlr {
    align-items: flex-start;
    flex-direction: row;
  }
}
section.map.interactive-map #sh-ctrlr > span, section.map.interactive-map #sh-ctrlr > a {
  background-color: rgb(14, 56, 85);
  border: 1px solid rgb(14, 56, 85);
  color: white;
  cursor: pointer;
  display: none;
  font-weight: 400;
  margin-bottom: 10px;
  padding: 8px 12px;
}
section.map.interactive-map #sh-ctrlr > span:last-child, section.map.interactive-map #sh-ctrlr > span:nth-last-child(2), section.map.interactive-map #sh-ctrlr > a:last-child, section.map.interactive-map #sh-ctrlr > a:nth-last-child(2) {
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) {
  section.map.interactive-map #sh-ctrlr > span, section.map.interactive-map #sh-ctrlr > a {
    margin-bottom: 0;
    margin-left: 10px;
  }
  section.map.interactive-map #sh-ctrlr > span:first-child, section.map.interactive-map #sh-ctrlr > a:first-child {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) {
  section.map.interactive-map #sh-ctrlr > span.spacer, section.map.interactive-map #sh-ctrlr > a.spacer {
    margin-right: auto;
  }
}
section.map.interactive-map #sh-ctrlr > span:hover, section.map.interactive-map #sh-ctrlr > span:focus, section.map.interactive-map #sh-ctrlr > a:hover, section.map.interactive-map #sh-ctrlr > a:focus {
  background-color: transparent;
  color: rgb(14, 56, 85);
}
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 {
  color: rgb(14, 56, 85);
}
section.map.interactive-map .header p {
  color: rgb(65, 65, 65);
  font-size: 2.4rem;
  font-weight: 400;
  max-width: 900px;
}
section.map.interactive-map .header .maf-content {
  padding-top: 135px;
}
@media only screen and (min-width: 1024px) {
  section.map.interactive-map .row .column {
    padding-top: 120px;
    padding-bottom: 130px;
  }
}
section.map.interactive-map .row .column .maf-content {
  background-color: white;
  border: 1px solid rgb(186, 186, 186);
  padding: 12px 25px 25px 25px;
}
@media only screen and (min-width: 1024px) {
  section.map.interactive-map .row .column .maf-content {
    padding: 12px 50px 50px 50px;
  }
}
section.counter-section {
  border-top: 1px solid rgb(186, 186, 186);
  color: rgb(65, 65, 65);
}
section.counter-section h1, section.counter-section .h1-style, section.counter-section h2, section.counter-section .h2-style, section.counter-section h3, section.counter-section .h3-style, section.counter-section h4, section.counter-section .h4-style, section.counter-section h5, section.counter-section .h5-style, section.counter-section h6.h6-style {
  font-weight: 400;
}
section.counter-section .header .maf-content {
  align-items: center;
  text-align: center;
}
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 -13px;
  width: calc(100% + 26px);
}
section.counter-section .row .column .maf-content .stat-counter {
  border: 1px solid rgb(65, 65, 65);
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  font-weight: 400;
  margin: 13px;
  padding: 20px 25px;
  width: calc(100% - 26px);
}
@media only screen and (min-width: 576px) {
  section.counter-section .row .column .maf-content .stat-counter {
    width: calc(50% - 26px);
  }
}
@media only screen and (min-width: 960px) {
  section.counter-section .row .column .maf-content .stat-counter {
    width: calc(33.333% - 26px);
  }
}
@media only screen and (min-width: 1366px) {
  section.counter-section .row .column .maf-content .stat-counter {
    width: calc(20% - 26px);
  }
}
section.counter-section .row .column .maf-content .stat-counter .stat, section.counter-section .row .column .maf-content .stat-counter .unit {
  font-size: 4.5rem;
}
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 input[type=number] {
  border-color: rgb(65, 65, 65);
  color: rgb(65, 65, 65);
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  text-align: center;
}
section.counter-section .row .column .maf-content .stat-counter .mceEditor {
  display: inline-flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
}
section.counter-section .row .footer .maf-content {
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media only screen and (min-width: 960px) {
  section.counter-section .row .footer .maf-content {
    flex-direction: row;
    text-align: left;
  }
}
section.counter-section .row .footer .maf-content p {
  font-size: 2.4rem;
  max-width: 785px;
  width: auto;
}
@media only screen and (min-width: 960px) {
  section.counter-section .row .footer .maf-content p {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  section.counter-section .row .footer .maf-content p {
    padding: 0 25px;
  }
}
section.no-spacing .header {
  padding-top: 0;
}
section.no-spacing .header .maf-content {
  padding-top: 0;
}
section.no-spacing .row {
  padding-top: 0;
  padding-bottom: 0;
}
section.no-spacing .row .column {
  padding-top: 0;
  padding-bottom: 0;
}
section.no-spacing .footer {
  padding-bottom: 0;
}
section.no-spacing .footer .maf-content {
  padding-bottom: 0;
}
section.no-spacing-top .header {
  padding-top: 0 !important;
}
section.no-spacing-top .header .maf-content {
  padding-top: 0 !important;
}
section.no-spacing-top .row {
  padding-top: 0 !important;
}
section.no-spacing-top .row .column {
  padding-top: 0 !important;
}
section.no-spacing-top.maf-rep-pad .row {
  padding-bottom: 0 !important;
}
section.no-spacing-top.maf-rep-pad .row .column {
  padding-bottom: 40px !important;
}
@media only screen and (min-width: 960px) {
  section.no-spacing-top.maf-rep-pad .row .column {
    padding-bottom: 85px !important;
  }
}
section.no-spacing-bottom .row {
  padding-bottom: 0 !important;
}
section.no-spacing-bottom .row .column {
  padding-bottom: 0 !important;
}
section.no-spacing-bottom.maf-rep-pad .row {
  padding-bottom: 0 !important;
}
section.no-spacing-bottom .footer {
  padding-bottom: 0;
}
section.no-spacing-bottom .footer .maf-content {
  padding-bottom: 0;
}
section.video-bg {
  background-color: black;
  color: white;
  min-height: 56.25vw;
  overflow: hidden;
}
section.video-bg .row .column {
  align-items: center;
  justify-content: center;
}
section.contentline-bottom .row::after {
  background-color: rgb(14, 56, 85);
  bottom: 0;
  content: "";
  display: inline-block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 50px);
}
@media only screen and (min-width: 576px) {
  section.contentline-bottom .row::after {
    width: calc(100% - 100px);
  }
}
@media only screen and (min-width: 960px) {
  section.contentline-bottom .row::after {
    width: calc(100% - 200px);
  }
}
section.contentline-top .row::before {
  background-color: rgb(14, 56, 85);
  content: "";
  display: inline-block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: calc(100% - 50px);
}
@media only screen and (min-width: 576px) {
  section.contentline-top .row::before {
    width: calc(100% - 100px);
  }
}
@media only screen and (min-width: 960px) {
  section.contentline-top .row::before {
    width: calc(100% - 200px);
  }
}
section.job-portal-rss div.cardbox {
  justify-content: flex-start;
}
section.job-portal-rss div.cardbox article.card, section.job-portal-rss div.cardbox div.card {
  width: 100%;
}
section.job-portal-rss div.cardbox article.card .portal-item, section.job-portal-rss div.cardbox div.card .portal-item {
  color: rgb(16, 16, 36);
  cursor: default;
  font-weight: 400;
  text-align: left;
  transform: none;
}
section.job-portal-rss div.cardbox article.card .portal-item .portal-content, section.job-portal-rss div.cardbox div.card .portal-item .portal-content {
  align-content: stretch;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px 5px;
}
section.job-portal-rss div.cardbox article.card .portal-item .portal-content .info, section.job-portal-rss 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.job-portal-rss div.cardbox article.card .portal-item .portal-content .info, section.job-portal-rss div.cardbox div.card .portal-item .portal-content .info {
    padding: 20px;
    width: 66.666%;
  }
}
@media only screen and (min-width: 960px) {
  section.job-portal-rss div.cardbox article.card .portal-item .portal-content .info, section.job-portal-rss div.cardbox div.card .portal-item .portal-content .info {
    width: 75%;
  }
}
section.job-portal-rss div.cardbox article.card .portal-item .portal-content .info .title, section.job-portal-rss 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.job-portal-rss div.cardbox article.card .portal-item .portal-content .info .title, section.job-portal-rss div.cardbox div.card .portal-item .portal-content .info .title {
    font-size: 3.6rem;
  }
}
section.job-portal-rss div.cardbox article.card .portal-item .portal-content .info .desc, section.job-portal-rss div.cardbox div.card .portal-item .portal-content .info .desc {
  min-height: 0;
}
section.job-portal-rss div.cardbox article.card .portal-item .portal-content .info .desc img, section.job-portal-rss div.cardbox div.card .portal-item .portal-content .info .desc img {
  display: none;
}
section.job-portal-rss div.cardbox article.card .portal-item .portal-content .info .desc p, section.job-portal-rss div.cardbox div.card .portal-item .portal-content .info .desc p {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
section.job-portal-rss div.cardbox article.card .portal-item .portal-content .side-col, section.job-portal-rss 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.job-portal-rss div.cardbox article.card .portal-item .portal-content .side-col, section.job-portal-rss div.cardbox div.card .portal-item .portal-content .side-col {
    width: 33.333%;
  }
}
@media only screen and (min-width: 960px) {
  section.job-portal-rss div.cardbox article.card .portal-item .portal-content .side-col, section.job-portal-rss div.cardbox div.card .portal-item .portal-content .side-col {
    width: 25%;
  }
}
section.job-portal-rss div.cardbox article.card .portal-item .portal-content .side-col div, section.job-portal-rss div.cardbox div.card .portal-item .portal-content .side-col div {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
section.job-portal-rss div.cardbox article.card .portal-item .portal-content .side-col .button, section.job-portal-rss div.cardbox div.card .portal-item .portal-content .side-col .button {
  background-color: transparent;
  border-color: rgb(14, 56, 85);
  color: rgb(14, 56, 85);
}
section.job-portal-rss div.cardbox article.card .portal-item .portal-content .side-col .button:hover, section.job-portal-rss div.cardbox article.card .portal-item .portal-content .side-col .button:focus, section.job-portal-rss div.cardbox div.card .portal-item .portal-content .side-col .button:hover, section.job-portal-rss div.cardbox div.card .portal-item .portal-content .side-col .button:focus {
  background-color: rgb(14, 56, 85);
  color: white;
}
section.job-portal-rss div.cardbox article.card .portal-item:hover, section.job-portal-rss div.cardbox article.card .portal-item:focus, section.job-portal-rss div.cardbox div.card .portal-item:hover, section.job-portal-rss div.cardbox div.card .portal-item:focus {
  transform: none;
}
section.mobile-hide {
  display: none;
}
@media only screen and (min-width: 576px) {
  section.mobile-hide {
    display: flex;
  }
}

.is-footer {
  background-color: rgb(14, 56, 85);
  font-size: 1.8rem;
  position: relative;
}
.is-footer a:not(.button) {
  color: white;
}
.is-footer a:not(.button):hover, .is-footer a:not(.button):focus {
  color: rgb(237, 244, 255);
}
.is-footer .button {
  background-color: transparent;
  border-color: white;
  color: white;
  font-family: "Frutiger LT W01_55 Roma1475738", sans-serif;
  font-weight: 400;
  padding: 10px 15px;
}
.is-footer .button::after {
  display: none;
}
.is-footer .button:hover, .is-footer .button:focus {
  background-color: white;
  color: rgb(14, 56, 85);
}
.is-footer .button.sign-up {
  max-width: 200px;
  width: 100%;
}
.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 {
  margin-bottom: 25px;
}
.is-footer h2 {
  font-family: "Frutiger LT W01_65 Bold1475746", sans-serif;
  font-size: 2.2rem;
}
@media only screen and (min-width: 576px) {
  .is-footer h2 {
    font-size: 2.4rem;
  }
}
.is-footer p, .is-footer address, .is-footer .name, .is-footer .label {
  margin-bottom: 25px;
}
.is-footer p i, .is-footer address i, .is-footer .name i, .is-footer .label i {
  display: none;
  height: 20px;
  font-size: 1.6rem;
  margin-right: 10px;
  position: relative;
  vertical-align: -10%;
  width: 20px;
}
.is-footer p i::before, .is-footer address i::before, .is-footer .name i::before, .is-footer .label i::before {
  display: inline-block;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}
.is-footer p {
  font-weight: 400;
}
.is-footer p.small, .is-footer p.compno {
  font-size: 1.4rem;
}
.is-footer address {
  max-width: 340px;
}
.is-footer .company-name {
  margin-bottom: 0;
}
.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 strong, .is-footer .phone-block span {
  padding-right: 3px;
}
.is-footer .social-icons {
  color: white;
  font-size: 2.6rem;
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 45px;
}
.is-footer .social-icons a {
  border: 1px solid transparent;
  color: inherit;
}
.is-footer .social-icons a i {
  background-color: transparent;
  border: 0;
  height: 30px;
  padding: 0;
  width: 30px;
}
.is-footer .social-icons a:hover, .is-footer .social-icons a:focus {
  border-color: white;
  color: rgb(75, 160, 216);
}
.is-footer .row {
  flex-direction: column;
  padding: 25px;
  padding-top: 40px;
}
@media only screen and (min-width: 576px) {
  .is-footer .row {
    padding: 0 25px;
    padding-top: 40px;
  }
}
@media only screen and (min-width: 960px) {
  .is-footer .row {
    padding: 0 50px;
    padding-top: 85px;
  }
}
@media only screen and (min-width: 960px) {
  .is-footer .row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.is-footer .row .column {
  padding: 40px 25px;
  padding-top: 0;
  justify-content: flex-start;
  text-align: left;
}
@media only screen and (min-width: 960px) {
  .is-footer .row .column {
    padding: 85px 50px;
    padding-top: 0;
  }
}
@media only screen and (min-width: 960px) {
  .is-footer .row .column.half {
    width: 50%;
  }
}
.is-footer .row .column .maf-content {
  align-items: flex-start;
}
.is-footer .row .column .maf-content.flow-margin {
  margin-bottom: 2em;
}
.is-footer .row .column .maf-content.maf-form {
  margin: 70px 0 150px 0;
}
.is-footer .row .column .maf-content.maf-form .button {
  background-color: transparent;
  border-color: white;
}
.is-footer .row .column .maf-content.maf-form .button:hover, .is-footer .row .column .maf-content.maf-form .button:focus {
  background-color: white;
  color: rgb(14, 56, 85);
}
.is-footer section {
  color: white;
}
.is-footer section.footer-section {
  overflow: hidden;
  position: relative;
}
.is-footer section.footer-section #foot-spr1 {
  opacity: 0.07;
  position: absolute;
  right: -28.125vw;
  top: -79.4375vw;
  transition: all 1200ms ease-out 1200ms;
  width: 79.4375vw;
}
@media (prefers-reduced-motion: reduce) {
  .is-footer section.footer-section #foot-spr1 {
    top: 80px;
  }
}
.is-footer section.footer-section .row .column {
  padding-right: 0;
  padding-left: 0;
}
.is-footer section.footer-section .row .column.maf-col-0 {
  padding-bottom: 0;
}
.is-footer section.footer-section .row .column.maf-col-0 .maf-content {
  flex-direction: row;
  flex-wrap: wrap;
}
.is-footer section.footer-section .row .column.maf-col-0 .maf-content p {
  margin: 0 0 20px 0;
  padding-right: 10px;
  flex: 1 1 auto;
  width: auto;
}
.is-footer section.footer-section .row .column.maf-col-0 .maf-content p.nhs-logo {
  font-size: 2.4rem;
  font-weight: 400;
  padding-right: 0;
  text-align: right;
}
.is-footer section.footer-section .row .column.maf-col-0 .maf-content p.nhs-logo img {
  margin-bottom: 3px;
}
.is-footer section.footer-section .row .column.maf-col-1 {
  padding-top: 40px;
}
.is-footer section.footer-section .row .column.maf-col-1 .maf-content {
  border: 1px solid white;
  border-right: 0;
  border-left: 0;
  padding: 60px 25px;
}
.is-footer section.legals {
  background-color: white;
  color: rgb(16, 16, 36);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.is-footer section.legals .row {
  padding-top: 0;
}
.is-footer section.legals .row p {
  color: rgb(16, 16, 36);
  font-size: 1.2rem;
  text-transform: uppercase;
}
.is-footer section.legals .row p a {
  color: rgb(16, 16, 36);
}
.is-footer section.legals .row p a:hover, .is-footer section.legals .row p a:focus {
  text-decoration: underline;
}
.is-footer section.legals .row .column {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
.is-footer section.legals .row .column .maf-content {
  max-width: none;
}
.is-footer.anim-1 section.footer-section #foot-spr1 {
  top: 80px;
}

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

section.staff-profiles + section.staff-profiles .row {
  padding-top: 0;
}/*# sourceMappingURL=tvw-main.css.map */